1. 22 Dec, 2015 20 commits
  2. 21 Dec, 2015 12 commits
  3. 20 Dec, 2015 1 commit
  4. 19 Dec, 2015 2 commits
  5. 18 Dec, 2015 5 commits
    • mbrandy's avatar
      PPC: [Interpreter] Add basic deoptimization support from TurboFan to Ignition. · f5261a6a
      mbrandy authored
      Port b10d24ff
      
      Original commit message:
          Adds support for generating deoptimization translations for interpreter
          stack frames, and building interpreter frames for these translations
          when a function deopts. Also adds builtins for
          InterpreterNotifyDeoptimized which resume the function's continuation at
          the correct point in the interpreter after deopt.
      
      R=rmcilroy@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=v8:4280
      LOG=N
      
      Review URL: https://codereview.chromium.org/1541483002
      
      Cr-Commit-Position: refs/heads/master@{#32977}
      f5261a6a
    • mbrandy's avatar
      PPC: Fix simulator overflow detection for float -> integer conversions. · 5fa2a112
      mbrandy authored
      R=joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1538943003
      
      Cr-Commit-Position: refs/heads/master@{#32976}
      5fa2a112
    • jacob.bramley's avatar
      [arm64] Improve some new builtins. · efc641a7
      jacob.bramley authored
      - Simplify the variable-length pop sequence on entry. (It now uses
        smaller code with no branches.)
      - Use conditional compare to merge branches where appropriate.
      - Make use of Ldrsw + UntagSmiFieldMemOperand to load smis more
        efficiently.
      - Only load 'undefined' and 'null' once per builtin.
      - A few other small improvements.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1537903004
      
      Cr-Commit-Position: refs/heads/master@{#32975}
      efc641a7
    • mbrandy's avatar
      PPC: [es6] Correct Function.prototype.apply, Reflect.construct and Reflect.apply. · 36afb789
      mbrandy authored
      Port 5bd48324
      
      Original commit message:
          Introduce a new Apply builtin that forms a correct and optimizable
          foundation for the Function.prototype.apply, Reflect.construct and
          Reflect.apply builtins (which properly does the PrepareForTailCall
          as required by the ES2015 spec).
      
          The new Apply builtin avoids going to the runtime if it is safe to
          just access the backing store elements of the argArray, i.e. if you
          pass a JSArray with no holes, or an unmapped, unmodified sloppy or
          strict arguments object.
      
      R=bmeurer@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=v8:4413, v8:4430
      LOG=n
      
      Review URL: https://codereview.chromium.org/1533073003
      
      Cr-Commit-Position: refs/heads/master@{#32974}
      36afb789
    • mbrandy's avatar
      PPC: [runtime] Drop FIRST/LAST_NONCALLABLE_SPEC_OBJECT instance type range. · 5c33ac6c
      mbrandy authored
      Port aafc3e54
      
      Original commit message:
          The FIRST-LAST_NONCALLABLE_SPEC_OBJECT_TYPE range was accidentially used
          in field type tracking, where we should check for JSReceiver instead
          (there's no need to exclude JSProxy or JSFunction from tracking).
      
          And the use in %_ClassOf was actually wrong and didn't match the C++
          implementation in JSReceiver::class_name() anymore. Now it's consistent
          again.
      
      R=bmeurer@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=chromium:535408
      LOG=n
      
      Review URL: https://codereview.chromium.org/1537013002
      
      Cr-Commit-Position: refs/heads/master@{#32973}
      5c33ac6c