1. 30 Jul, 2015 1 commit
  2. 28 Jul, 2015 1 commit
  3. 27 Jul, 2015 2 commits
  4. 20 Jul, 2015 1 commit
  5. 13 Jul, 2015 1 commit
  6. 01 Jul, 2015 1 commit
    • mbrandy's avatar
      PPC: Make context register implicit for CallInterfaceDescriptors · f4eb08f4
      mbrandy authored
      Port 7015fd20
      
      Original commit message:
          Up until now the context register was listed explicitly in each stub's
          CallInterfaceDescriptor. This was problematic, because it was listed
          first in the list of register parameters--which is fine for Crankshaft,
          which is more or less built to handle the context as the first
          parameter-- but not ideal for TurboFan, which adds the context at
          the end of all function parameters. Now the context register is no
          longer in the register list and can be handled appropriately by both
          compilers. Specifically, this allows the FunctionType specified for
          each CallInterfaceDescriptor to exactly match the parameter register
          list.
      
      R=danno@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1218463004
      
      Cr-Commit-Position: refs/heads/master@{#29421}
      f4eb08f4
  7. 26 Jun, 2015 1 commit
  8. 08 Jun, 2015 1 commit
  9. 15 May, 2015 1 commit
  10. 12 May, 2015 2 commits
  11. 06 May, 2015 1 commit
    • conradw's avatar
      [strong] Fix inlining issue · 97bee8e9
      conradw authored
      The Hydrogen representation for binops was never changed to care about the
      language mode. We thought this was ok, but it turns out we need to keep track
      of it to make sure inlining doesn't mess with the "strongness" of binops.
      
      Also added more rigorous inlining testing.
      
      BUG=v8:3956
      LOG=N
      
      Review URL: https://codereview.chromium.org/1123043002
      
      Cr-Commit-Position: refs/heads/master@{#28253}
      97bee8e9
  12. 28 Apr, 2015 1 commit
  13. 20 Apr, 2015 1 commit
  14. 13 Apr, 2015 1 commit
  15. 23 Mar, 2015 1 commit
  16. 03 Mar, 2015 1 commit
    • michael_dawson's avatar
      Contribution of PowerPC port (continuation of 422063005) - currency · a3465838
      michael_dawson authored
      Contribution of PowerPC port (continuation of 422063005, 817143002,
      866843003, and 901083004. This patch updates the ppc directories
      to make them current with changes in common code, removes the
      optimization to use the ool constant pool, and excludes tests that
      don't pass under the ppc simulator given a 240s timeout.
      
      Subsequent patches will cover:
         - remaining optimizations for PPC
         - 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.
      
      	modified:   src/compiler/ppc/code-generator-ppc.cc
      	modified:   src/ic/ppc/handler-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/debug-ppc.cc
      	modified:   src/ppc/deoptimizer-ppc.cc
      	modified:   src/ppc/frames-ppc.cc
      	modified:   src/ppc/frames-ppc.h
      	modified:   src/ppc/full-codegen-ppc.cc
      	modified:   src/ppc/lithium-codegen-ppc.cc
      	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:   test/cctest/cctest.status
      	modified:   test/mjsunit/mjsunit.status
      
      R=danno@chromium.org, svenpanne@chromium.org
      
      BUG=
      
      Review URL: https://codereview.chromium.org/965823002
      
      Cr-Commit-Position: refs/heads/master@{#26951}
      a3465838
  17. 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
  18. 12 Dec, 2014 1 commit
  19. 11 Nov, 2014 1 commit
  20. 24 Sep, 2014 1 commit
  21. 08 Sep, 2014 1 commit
  22. 03 Sep, 2014 1 commit
  23. 02 Sep, 2014 1 commit
  24. 01 Sep, 2014 1 commit
  25. 12 Aug, 2014 1 commit
  26. 04 Aug, 2014 1 commit
  27. 31 Jul, 2014 1 commit
  28. 30 Jul, 2014 1 commit
  29. 29 Jul, 2014 1 commit
  30. 21 Jul, 2014 1 commit
  31. 17 Jul, 2014 1 commit
  32. 27 Jun, 2014 1 commit
  33. 25 Jun, 2014 1 commit
  34. 20 Jun, 2014 1 commit
  35. 18 Jun, 2014 1 commit
  36. 05 Jun, 2014 1 commit
  37. 03 Jun, 2014 2 commits