1. 24 May, 2019 1 commit
  2. 22 May, 2019 1 commit
  3. 21 May, 2019 1 commit
  4. 20 May, 2019 1 commit
  5. 17 May, 2019 2 commits
  6. 10 May, 2019 1 commit
  7. 29 Apr, 2019 1 commit
    • Milad Farazmand's avatar
      PPC/s390: [cleanup] Use Vector::begin instead of Vector::start · 08756826
      Milad Farazmand authored
      Port 4b0f9c85
      
      Original Commit Message:
      
          Our {Vector} template provides both {start} and {begin} methods. They
          return exactly the same value. Since the {begin} method is needed for
          iteration, and is also what standard containers provide, this CL
          switches all uses of the {start} method to use {begin} instead.
      
          Patchset 1 was auto-generated by using this clang AST matcher:
              callExpr(
                  callee(
                    cxxMethodDecl(
                      hasName("start"),
                      ofClass(hasName("v8::internal::Vector")))
                  ),
                  argumentCountIs(0))
      
          Patchset 2 was created by running clang-format. Patchset 3 then
          removes the now unused {Vector::start} method.
      
      R=clemensh@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      LOG=N
      
      Change-Id: I119532691af31a3db1107c47de8b6f0c84697b5c
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1588226Reviewed-by: 's avatarJunliang Yan <jyan@ca.ibm.com>
      Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
      Cr-Commit-Position: refs/heads/master@{#61102}
      08756826
  8. 17 Jan, 2019 1 commit
  9. 06 Jul, 2018 1 commit
  10. 21 Jun, 2018 1 commit
    • Ben L. Titzer's avatar
      [asm] Remove Assembler(isolate...) constructor · ea2f33c6
      Ben L. Titzer authored
      This completes the transition to Assembler::Options, which reduces
      the assemblers's dependency on isolates, and there is now only one
      way to create an Assembler, which is to use the options.
      Note that some operations on assemblers still need an isolate, such
      as GetCode(), and in these cases, the isolate is an additional
      argument to the method.
      
      R=jgruber@chromium.org
      CC=mstarzinger@chromium.org
      
      Change-Id: I413209d816c63a7c3640f1c226764693dcad1e7f
      Reviewed-on: https://chromium-review.googlesource.com/1106169
      Commit-Queue: Ben Titzer <titzer@chromium.org>
      Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#53925}
      ea2f33c6
  11. 01 Sep, 2017 1 commit
  12. 03 Aug, 2017 1 commit
  13. 09 Dec, 2015 1 commit
  14. 23 Nov, 2015 1 commit
  15. 16 Nov, 2015 1 commit
  16. 05 Oct, 2015 1 commit
    • mbrandy's avatar
      PPC: Remove register index/code indirection · f53fda63
      mbrandy authored
      Port 5cf1c0bc
      
      Original commit message:
          Previous to this patch, both the lithium and TurboFan register
          allocators tracked allocated registers by "indices", rather than
          the register codes used elsewhere in the runtime. This patch
          ensures that codes are used everywhere, and in the process cleans
          up a bunch of redundant code and adds more structure to how the
          set of allocatable registers is defined.
      
          Some highlights of changes:
      
          * TurboFan's RegisterConfiguration class moved to V8's top level
            so that it can be shared with Crankshaft.
          * Various "ToAllocationIndex" and related methods removed.
          * Code that can be easily shared between Register classes on
            different platforms is now shared.
          * The list of allocatable registers on each platform is declared
            as a list rather than implicitly via the register index <->
            code mapping.
      
      R=danno@chromium.org, bmeurer@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/1381383002
      
      Cr-Commit-Position: refs/heads/master@{#31114}
      f53fda63
  17. 31 Jul, 2015 1 commit
  18. 30 Jul, 2015 1 commit
  19. 27 Mar, 2015 1 commit
  20. 16 Jan, 2015 1 commit