1. 06 Apr, 2016 1 commit
    • verwaest's avatar
      Use a dictionary-mode code cache on the map rather than a dual system. · d2eb555e
      verwaest authored
      The previous code cache system required stubs to be marked with a StubType, causing them to be inserted either into a fixed array or into a dictionary-mode code cache. This could cause names to be in both cases, and lookup would just find the "fast" one first. Given that we clear out the caches on each GC, the memory overhead shouldn't be too bad. Additionally, the dictionary itself should just stay linear for small arrays; that's faster anyway.
      
      This CL additionally deletes some dead IC code.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1846963002
      
      Cr-Commit-Position: refs/heads/master@{#35291}
      d2eb555e
  2. 01 Mar, 2016 1 commit
  3. 30 Nov, 2015 1 commit
  4. 27 Nov, 2015 1 commit
  5. 09 Nov, 2015 1 commit
    • mtrofin's avatar
      [assembler] Introduce proper AssemblerBase::Print() for improved debuggability. · ab1d270a
      mtrofin authored
      While working on frame elision, I wanted to disassemble codegen in the
      debugger, as the code generation is progressing. I discovered we had a
       "Print" member on the x64 assembler, without any implementation. I
      pulled it up to AssemblerBase and gave it an implementation that
      should work for the other architectures.
      
      Also checked that ia32, x87, arm and arm64 assemblers didn't have
      such an implementation - free Print.
      
      Arm64 has a naming conflict with the v8::internal::Disassembler. I
      renamed the arm64 type with a more specific name.
      
      Opportunistically fixed a bug in the name converter. This debug-time
      printer doesn't provide a Code object, which should be OK with the
      name converters, by the looks of other APIs there. All this means is that
      when using the Print() API, we just get addresses dumped without any
      context (like what this address may be - a stub maybe, etc). This seems
      fine for the scenario.
      
      There may be other places that assume a Code object. Since this is
      a diagnostics-only scenario, for codegen developers, I feel it is
      reasonable to fix such other places as we find them.
      
      Review URL: https://codereview.chromium.org/1431933003
      
      Cr-Commit-Position: refs/heads/master@{#31869}
      ab1d270a
  6. 24 Aug, 2015 1 commit
    • rmcilroy's avatar
      Add CompileInfo::GetDebugName() · 53ac9fe8
      rmcilroy authored
      Replaces all instances of the code which computed the debug
      name of a stub or function with calls to CompileInfo::GetDebugName instead.
      
      Also:
        - Removes useless parameter on CodeStub::GetMajorName
        - Removes FakeStubForTesting since it is no longer required
        - Adds CompileInfo::ShouldEnsureSpaceForLazyDeopt() to replace unclear calls to IsStub().
      
      Review URL: https://codereview.chromium.org/1297203002
      
      Cr-Commit-Position: refs/heads/master@{#30324}
      53ac9fe8
  7. 14 Aug, 2015 1 commit
  8. 31 Jul, 2015 1 commit
  9. 13 Jul, 2015 2 commits
  10. 10 Jul, 2015 1 commit
    • yangguo's avatar
      Debugger: use debug break slot to break on call. · 8965b683
      yangguo authored
      Break point at calls are currently set via IC. To change this, we
      need to set debug break slots instead. We also need to distinguish
      those debug break slots as calls to support step-in.
      
      To implement this, we add a data field to debug break reloc info to
      indicate non-call debug breaks or in case of call debug breaks, the
      number of arguments. We can later use this to find the callee on the
      evaluation stack in Debug::PrepareStep.
      
      BUG=v8:4269
      R=ulan@chromium.org
      LOG=N
      
      Review URL: https://codereview.chromium.org/1222093007
      
      Cr-Commit-Position: refs/heads/master@{#29561}
      8965b683
  11. 03 Jul, 2015 1 commit
  12. 16 Jun, 2015 1 commit
    • mstarzinger's avatar
      Revert of Decompiler improvements. (patchset #2 id:20001 of... · e2ce4681
      mstarzinger authored
      Revert of Decompiler improvements. (patchset #2 id:20001 of https://codereview.chromium.org/1177123002/)
      
      Reason for revert:
      Code printout has become unreadable. Offsets are printed in decimal numbers everywhere else. This is inconsistent with the rest of the code-base. Some examples are tables for deoptimization data, safepoints and exception handlers. I would be fine with this change if _all_ tracing would be adapted. But there are _many_ places to touch.
      
      Original issue's description:
      > Decompiler improvements.
      >
      > The main motivation is simplifying profiling activities:
      >
      > 1) Use hex instead of decimal for offsets, just like perf does. This
      > affects --print-opt-code
      >
      > 2) When printing block information, indicate loop information: if
      > block is header, where the end is; if block is in a loop, where the
      > loop starts. This affects --code-comments.
      >
      > Using --print-opt-code --code-comments, and cross-referencing with data
      > obtained from perf, one may now find the block a hotspot belongs to
      > without needing to do hex2dec/dec2hex conversions. Once found, loop info
      > is available locally, on the block.
      >
      > BUG=
      >
      > Committed: https://crrev.com/32f4bd659d38eb5485eedb1d0dd236ff1bdc01d5
      > Cr-Commit-Position: refs/heads/master@{#28964}
      
      TBR=jarin@chromium.org,stichnot@chromium.org,jvoung@chromium.org,mtrofin@chromium.org
      NOPRESUBMIT=true
      NOTREECHECKS=true
      NOTRY=true
      BUG=
      
      Review URL: https://codereview.chromium.org/1188093002
      
      Cr-Commit-Position: refs/heads/master@{#29046}
      e2ce4681
  13. 11 Jun, 2015 1 commit
    • mtrofin's avatar
      Decompiler improvements. · 32f4bd65
      mtrofin authored
      The main motivation is simplifying profiling activities:
      
      1) Use hex instead of decimal for offsets, just like perf does. This
      affects --print-opt-code
      
      2) When printing block information, indicate loop information: if
      block is header, where the end is; if block is in a loop, where the
      loop starts. This affects --code-comments.
      
      Using --print-opt-code --code-comments, and cross-referencing with data
      obtained from perf, one may now find the block a hotspot belongs to
      without needing to do hex2dec/dec2hex conversions. Once found, loop info
      is available locally, on the block.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1177123002
      
      Cr-Commit-Position: refs/heads/master@{#28964}
      32f4bd65
  14. 01 Jun, 2015 1 commit
  15. 27 Mar, 2015 1 commit
  16. 06 Mar, 2015 1 commit
    • yangguo's avatar
      Serializer: simplify external reference encoding. · a8e82da6
      yangguo authored
      External references are encoded as a tuple of type and ID. This
      requires both the external reference encode and the decoder to
      create a mapping between the encoding and the external reference
      table index.
      
      Instead, we simply use the external reference table index as
      encoding.
      
      We now also assume that there are no duplicate entries. Existing
      duplicates have been removed in this change.
      
      R=vogelheim@chromium.org
      
      Review URL: https://codereview.chromium.org/982773003
      
      Cr-Commit-Position: refs/heads/master@{#27033}
      a8e82da6
  17. 05 Mar, 2015 1 commit
  18. 20 Feb, 2015 1 commit
    • michael_dawson's avatar
      Contribution of PowerPC port (continuation of 422063005) - PPC dir update 2 - mark2 · 0fb091fc
      michael_dawson authored
      Rebase to latest and use branch created by git new-branch to get a patch that
      only has the required changes.  Created new branch, reset to HEAD and then
      cherry picked across the changes
      
      	modified:   src/compiler/ppc/code-generator-ppc.cc
      	modified:   src/compiler/ppc/instruction-selector-ppc.cc
      	modified:   src/disassembler.cc
      	modified:   src/ic/ppc/handler-compiler-ppc.cc
      	modified:   src/ic/ppc/ic-compiler-ppc.cc
      	modified:   src/ppc/assembler-ppc-inl.h
      	modified:   src/ppc/assembler-ppc.cc
      	modified:   src/ppc/assembler-ppc.h
      	modified:   src/ppc/builtins-ppc.cc
      	modified:   src/ppc/code-stubs-ppc.cc
      	modified:   src/ppc/deoptimizer-ppc.cc
      	modified:   src/ppc/disasm-ppc.cc
      	modified:   src/ppc/full-codegen-ppc.cc
      	modified:   src/ppc/macro-assembler-ppc.cc
      	modified:   src/serialize.cc
      
      R=danno@chromium.org, svenpanne@chromium.org
      
      Review URL: https://codereview.chromium.org/935383002
      
      Cr-Commit-Position: refs/heads/master@{#26762}
      0fb091fc
  19. 09 Feb, 2015 1 commit
  20. 05 Feb, 2015 3 commits
  21. 04 Feb, 2015 2 commits
    • loislo's avatar
      Revert of Externalize deoptimization reasons. (patchset #6 id:100001 of... · bfc5d83b
      loislo authored
      Revert of Externalize deoptimization reasons. (patchset #6 id:100001 of https://codereview.chromium.org/874323003/)
      
      Reason for revert:
      it broke the build
      
      Original issue's description:
      > Externalize deoptimization reasons.
      >
      > 1) The hardcoded strings were converted into DeoptReason enum.
      >
      > 2) Deopt comment were converted into a pair location and deopt reason entries so
      > the deopt reason tracking mode would less affect the size of the RelocInfo table and heap.
      >
      > 3) DeoptReason entry in RelocInfo reuses kCommentTag value and generates short entry in RelocInfo table.
      >
      > BUG=452067
      > LOG=n
      >
      > Committed: https://crrev.com/c49820e45b57f128a98690940875c049f612dde6
      > Cr-Commit-Position: refs/heads/master@{#26434}
      
      TBR=alph@chromium.org,mstarzinger@chromium.org,svenpanne@chromium.org,yurys@chromium.org
      NOPRESUBMIT=true
      NOTREECHECKS=true
      NOTRY=true
      BUG=452067
      
      Review URL: https://codereview.chromium.org/892843007
      
      Cr-Commit-Position: refs/heads/master@{#26435}
      bfc5d83b
    • loislo's avatar
      Externalize deoptimization reasons. · c49820e4
      loislo authored
      1) The hardcoded strings were converted into DeoptReason enum.
      
      2) Deopt comment were converted into a pair location and deopt reason entries so
      the deopt reason tracking mode would less affect the size of the RelocInfo table and heap.
      
      3) DeoptReason entry in RelocInfo reuses kCommentTag value and generates short entry in RelocInfo table.
      
      BUG=452067
      LOG=n
      
      Review URL: https://codereview.chromium.org/874323003
      
      Cr-Commit-Position: refs/heads/master@{#26434}
      c49820e4
  22. 30 Jan, 2015 1 commit
  23. 30 Sep, 2014 1 commit
  24. 25 Sep, 2014 1 commit
  25. 16 Sep, 2014 1 commit
  26. 04 Aug, 2014 1 commit
  27. 23 Jul, 2014 1 commit
  28. 13 Jun, 2014 1 commit
  29. 03 Jun, 2014 1 commit
  30. 29 Apr, 2014 1 commit
  31. 24 Apr, 2014 2 commits
  32. 12 Mar, 2014 1 commit
  33. 31 Jan, 2014 1 commit
  34. 17 Jan, 2014 1 commit
  35. 07 Jan, 2014 1 commit