1. 02 Dec, 2016 1 commit
  2. 10 Nov, 2016 1 commit
  3. 20 Oct, 2016 1 commit
  4. 17 Oct, 2016 1 commit
  5. 20 Sep, 2016 1 commit
  6. 23 Jun, 2016 1 commit
  7. 20 Apr, 2016 1 commit
  8. 30 Mar, 2016 2 commits
    • ahaas's avatar
      [wasm] Int64Lowering of Int64Mul on ia32 and arm. · 40bdbef9
      ahaas authored
      Int64Mul is lowered to a new turbofan operator, Int32MulPair. The new
      operator takes 4 inputs an generates 2 outputs. The inputs are the low
      word of the left input, high word of the left input, the low word of the
      right input, and high word of the right input. The ouputs are the low
      and high word of the result of the multiplication.
      
      R=titzer@chromium.org, v8-arm-ports@googlegroups.com
      
      Review URL: https://codereview.chromium.org/1807273002
      
      Cr-Commit-Position: refs/heads/master@{#35131}
      40bdbef9
    • ahaas's avatar
      [wasm] New attempt to implement the Int64Lowering of phis. · 682df6dd
      ahaas authored
      The new implementation deals with cycles in the TF graph in two steps:
      1) The lowering of phis is delayed to avoid cyclic dependencies.
      2) The replacement nodes of phis are created already when the phi is
         pushed onto the stack so that other nodes can use these replacements
         for their lowering.
      
      R=titzer@chromium.org
      
      Review URL: https://codereview.chromium.org/1844553002
      
      Cr-Commit-Position: refs/heads/master@{#35126}
      682df6dd
  9. 15 Mar, 2016 1 commit
  10. 04 Mar, 2016 1 commit
  11. 25 Feb, 2016 1 commit
  12. 18 Feb, 2016 1 commit
  13. 04 Feb, 2016 1 commit
    • ahaas's avatar
      [wasm] Initial commit for the Int64Reducer. · 11017398
      ahaas authored
      The goal of the Int64Reducer is to replace all int64 nodes in a tf graph
      with a set of int32 nodes such that 64 bit tf functions can be executed
      on 32 bit platforms. At the moment the Int64Reducer only replaces
      Int64Constants, TruncateInt64ToInt32, and Word64And.
      
      R=titzer@chromium.org
      
      Review URL: https://codereview.chromium.org/1655883002
      
      Cr-Commit-Position: refs/heads/master@{#33721}
      11017398