1. 05 Sep, 2016 35 commits
  2. 04 Sep, 2016 1 commit
  3. 03 Sep, 2016 1 commit
    • v8-autoroll's avatar
      Update V8 DEPS. · e09e08eb
      v8-autoroll authored
      Rolling v8/build to a767a79305018c5ec5affd7d96cff474aa3b03a1
      
      Rolling v8/tools/clang to 052b1cffaca49a038f27168ef9d897db6df04e5a
      
      TBR=machenbach@chromium.org,vogelheim@chromium.org,hablich@chromium.org
      
      Review-Url: https://codereview.chromium.org/2311503003
      Cr-Commit-Position: refs/heads/master@{#39144}
      e09e08eb
  4. 02 Sep, 2016 3 commits
    • bmeurer's avatar
      [turbofan] Migrate remaining DataView builtins to C++. · 97f6266f
      bmeurer authored
      R=franzih@chromium.org
      BUG=v8:3533
      
      Review-Url: https://codereview.chromium.org/2306033002
      Cr-Commit-Position: refs/heads/master@{#39143}
      97f6266f
    • gdeepti's avatar
      [wasm] Fix wasm decoder tracing for prefix opcodes. · eed164b3
      gdeepti authored
      Using --trace-wasm-decoder prints unknowns for prefix opcodes, example:
      
        @3      #01:Block               |  env = 0x5547c10, state = R, reason = block:start, control = #0:Start
      
        @4      #14:GetLocal            | i@4:GetLocal[0]
        @6      #e5:Unknown             | s@6:Unknown
        @8      #15:SetLocal            | s@8:SetLocal[1]
        @10     #14:GetLocal            | s@8:SetLocal[1] i@10:GetLocal[0]
        @12     #14:GetLocal            | s@8:SetLocal[1] i@10:GetLocal[0] s@12:GetLocal[1]
        @14     #cb:I8Const             | s@8:SetLocal[1] i@10:GetLocal[0] s@12:GetLocal[1] i@14:I8Const
        @16     #e5:Unknown             | s@8:SetLocal[1] i@10:GetLocal[0] i@16:Unknown
      
      Fixed to print:
      
        @3        #01:Block               |  env = 0x45cac10, state = R, reason = block:start, control = #0:Start
      
        @4        #14:GetLocal            | i@4:GetLocal[0]
        @6    #e5 #1b:I32x4Splat          | s@6:I32x4Splat
        @8        #15:SetLocal            | s@8:SetLocal[1]
        @10       #14:GetLocal            | s@8:SetLocal[1] i@10:GetLocal[0]
        @12       #14:GetLocal            | s@8:SetLocal[1] i@10:GetLocal[0] s@12:GetLocal[1]
        @14       #cb:I8Const             | s@8:SetLocal[1] i@10:GetLocal[0] s@12:GetLocal[1] i@14:I8Const
        @16   #e5 #1c:I32x4ExtractLane    | s@8:SetLocal[1] i@10:GetLocal[0] i@16:I32x4ExtractLane
      
      R=ahaas@chromium.org, bbudge@chromium.org
      
      Review-Url: https://codereview.chromium.org/2307733002
      Cr-Commit-Position: refs/heads/master@{#39142}
      eed164b3
    • adamk's avatar
      Remove unnessary includes of parser.h · 6dd2bc20
      adamk authored
      This makes for slightly faster rebuilds when touching parser-base.h
      (which changes frequently!). Also takes care of an old TODO,
      moving CompileTimeValue into its own file under ast/, where it
      properly belongs.
      
      BUG=v8:5294
      
      Review-Url: https://codereview.chromium.org/2305883002
      Cr-Commit-Position: refs/heads/master@{#39141}
      6dd2bc20