1. 02 May, 2019 37 commits
  2. 01 May, 2019 3 commits
    • Milad Farazmand's avatar
      PPC/s390: Reland "[ptr-compr] New RelocInfo for compressed pointers." · 2054c4a1
      Milad Farazmand authored
      Port 18c29ab9
      
      Original Commit Message:
      
          Port ed319e84
      
          Original Commit Message:
      
              Failure addressed by not exposing the new test to the jitless environment.
              (jgruber@ on TBR).
      
              New enum RelocInfo::COMPRESSED_EMBEDDED_OBJECT created to support
              compressed pointers in generated code. Enum name EMBEDDED_OBJECT
              changed to FULL_EMBEDDED_OBJECT.
      
              RelocInfo::[set_]target_object() abstract away the difference between
              FULL_EMBEDDED_OBJECT and COMPRESSED_EMBEDDED_OBJECT.
      
              Compressed embedded objects can only be created at this time on
              x64 with pointer compression turned on. Arm64 constant pools don't
              support compressed objects at this time.
      
      R=miladfar@ca.ibm.com, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      LOG=N
      
      Change-Id: I97ef9b7394f384c2a1b97aab9fdac0eeb80eb734
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1591993Reviewed-by: 's avatarJunliang Yan <jyan@ca.ibm.com>
      Commit-Queue: Junliang Yan <jyan@ca.ibm.com>
      Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
      Cr-Commit-Position: refs/heads/master@{#61143}
      2054c4a1
    • Milad Farazmand's avatar
      PPC/s390: [cleanup] Use Vector::begin instead of Vector::start · 3335d813
      Milad Farazmand authored
      Port 08756826
      
      Original Commit Message:
      
          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=miladfar@ca.ibm.com, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      LOG=N
      
      Change-Id: Ief052e7655ede161504cf058eddd81714e6e5929
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1590168
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61142}
      3335d813
    • Milad Farazmand's avatar
      PPC/s390: [liftoff] Optimise {i32,i64}_{and,or,xor} with immediates · 9d53a080
      Milad Farazmand authored
      Port 403cac98
      
      Original Commit Message:
      
          This is an extension of 138d2dfc.
      
      R=joey.gouly@arm.com, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      LOG=N
      
      Change-Id: If344e23bc4f96835125068497fabbd0d2ba0305a
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1591413Reviewed-by: 's avatarJunliang Yan <jyan@ca.ibm.com>
      Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
      Cr-Commit-Position: refs/heads/master@{#61141}
      9d53a080