1. 14 Apr, 2016 1 commit
  2. 12 Apr, 2016 1 commit
  3. 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
  4. 01 Mar, 2016 1 commit
  5. 17 Feb, 2016 1 commit
  6. 05 Feb, 2016 1 commit
  7. 30 Dec, 2015 2 commits
  8. 29 Dec, 2015 2 commits
  9. 27 Nov, 2015 1 commit
  10. 17 Nov, 2015 1 commit
  11. 02 Nov, 2015 1 commit
  12. 01 Oct, 2015 1 commit
  13. 23 Sep, 2015 1 commit
  14. 16 Sep, 2015 1 commit
  15. 09 Sep, 2015 1 commit
    • mbrandy's avatar
      PPC: Reland Vector ICs: platform support for vector-based stores. · 1b191a5d
      mbrandy authored
      Port 40fbed06
      
      Original commit message:
          The last changes for vector store functionality, they are in 3 areas:
      
          1) The new vector [keyed] store code stubs - implementation.
          2) IC and handler compiler adjustments
          3) Odds and ends. A change in ast.cc, a test update, a small Oracle fix.
      
      R=mvstanton@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com, dstence@us.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1330883002
      
      Cr-Commit-Position: refs/heads/master@{#30657}
      1b191a5d
  16. 26 Aug, 2015 1 commit
  17. 14 Aug, 2015 1 commit
  18. 31 Jul, 2015 1 commit
  19. 27 Jul, 2015 1 commit
  20. 23 Jul, 2015 1 commit
    • mbrandy's avatar
      PPC: Unify "runtime-style" IC functions with Runtime intrinsics · 1a57cede
      mbrandy authored
      Port bc8041dc
      
      Original commit message:
          Previous to this CL, ICs used a slightly different code idiom
          to get to C++ code from generated code than runtime intrinsics,
          using an IC_Utility class that in essence provided exactly
          the same functionality as Runtime::FunctionForId, but in its
          own quirky way.
      
          This CL unifies the two mechanisms, folding IC_Utility
          away by making all IC entry points in C++ code, e.g. IC
          miss handlers, full-fledged runtime intrinsics. This makes
          it possible to eliminate a bunch of ad-hoc declarations and
          adapters that the IC system had to needlessly re-invent.
      
          As a bonus and the original reason for this yak-shave:
          IC-related C++ runtime functions are now callable from
          TurboFan.
      
      R=danno@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1249433004
      
      Cr-Commit-Position: refs/heads/master@{#29821}
      1a57cede
  21. 30 Jun, 2015 1 commit
  22. 25 Jun, 2015 1 commit
    • mbrandy's avatar
      PPC: Vector ICs: Like megamorphic keyed koads, use a dummy vector for stores · afb31199
      mbrandy authored
      Port 9e7af9ef
      
      Original commit message:
      It's useful for the megamorphic keyed store case to not require a
      vector and slot as input. Analogous to the load case, we have a dummy
      one-ic-slot vector to aid. Since the only kind of MISS is for
      megamorphic cache stub failures, we don't need the real vector.
      The reason is that megamorphic cache stub failures don't result in any
      change to the type feedback vector state.
      
      R=mvstanton@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1212493002
      
      Cr-Commit-Position: refs/heads/master@{#29302}
      afb31199
  23. 24 Jun, 2015 1 commit
  24. 19 Jun, 2015 1 commit
  25. 18 Jun, 2015 3 commits
  26. 01 Jun, 2015 1 commit
  27. 28 May, 2015 1 commit
  28. 20 May, 2015 1 commit
  29. 15 May, 2015 1 commit
  30. 05 Feb, 2015 1 commit
    • michael_dawson's avatar
      Contribution of PowerPC port (continuation of 422063005) - PPC dir update · 308d913a
      michael_dawson authored
      Contribution of PowerPC port (continuation of 422063005, 817143002 and 866843003)
      This patch brings the ppc directories up to date with our repo. We have
      removed 5 individual optimizations which require changes in both the ppc and common
      directories so they can be more easily reviewed on their own in subsequent patches.
      
      Subsequent patches will cover:
      - individual optimizations for PPC (5)
      - remaining AIX changes not resolved by 4.8 compiler (4.8 is only recently available
      for AIX)
      - incremental updates required to ppc directories due to platform specific changes
      made in google repos while we complete the above steps.
      
      With the update there are still some timeouts seen when run in simulated mode which
      may be a result of the missing optimizations.  Once we have the optimizations in
      we will review the simulation results and address/exclude tests as necessary so that
      the simulated runs are clean.
      
      	new file:   src/compiler/ppc/code-generator-ppc.cc
      	new file:   src/compiler/ppc/instruction-codes-ppc.h
      	new file:   src/compiler/ppc/instruction-selector-ppc.cc
      	new file:   src/compiler/ppc/linkage-ppc.cc
      	modified:   src/ic/ppc/handler-compiler-ppc.cc
      	modified:   src/ic/ppc/ic-compiler-ppc.cc
      	modified:   src/ic/ppc/ic-ppc.cc
      	modified:   src/ic/ppc/stub-cache-ppc.cc
      	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/code-stubs-ppc.h
      	modified:   src/ppc/codegen-ppc.cc
      	modified:   src/ppc/constants-ppc.h
      	modified:   src/ppc/deoptimizer-ppc.cc
      	modified:   src/ppc/disasm-ppc.cc
      	modified:   src/ppc/full-codegen-ppc.cc
      	modified:   src/ppc/interface-descriptors-ppc.cc
      	modified:   src/ppc/lithium-codegen-ppc.cc
      	modified:   src/ppc/lithium-codegen-ppc.h
      	modified:   src/ppc/lithium-ppc.cc
      	modified:   src/ppc/lithium-ppc.h
      	modified:   src/ppc/macro-assembler-ppc.cc
      	modified:   src/ppc/macro-assembler-ppc.h
      	modified:   src/ppc/regexp-macro-assembler-ppc.cc
      	modified:   src/ppc/regexp-macro-assembler-ppc.h
      	modified:   src/ppc/simulator-ppc.cc
      	modified:   src/ppc/simulator-ppc.h
      	new file:   test/unittests/compiler/ppc/instruction-selector-ppc-unittest.cc
      
      R=danno@chromium.org, svenpanne@chromium.org
      
      BUG=
      
      Review URL: https://codereview.chromium.org/901083004
      
      Cr-Commit-Position: refs/heads/master@{#26471}
      308d913a
  31. 11 Nov, 2014 1 commit
  32. 28 Oct, 2014 1 commit
  33. 16 Oct, 2014 1 commit
  34. 09 Oct, 2014 1 commit
  35. 22 Sep, 2014 1 commit
  36. 18 Sep, 2014 1 commit