| OLD | NEW | 
|---|
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ | 
| 6 #define V8_COMPILER_CODE_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_ASSEMBLER_H_ | 
| 7 | 7 | 
| 8 #include <map> | 8 #include <map> | 
| 9 | 9 | 
| 10 // Clients of this interface shouldn't depend on lots of compiler internals. | 10 // Clients of this interface shouldn't depend on lots of compiler internals. | 
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 79   V(IntPtrAdd)                             \ | 79   V(IntPtrAdd)                             \ | 
| 80   V(IntPtrAddWithOverflow)                 \ | 80   V(IntPtrAddWithOverflow)                 \ | 
| 81   V(IntPtrSub)                             \ | 81   V(IntPtrSub)                             \ | 
| 82   V(IntPtrSubWithOverflow)                 \ | 82   V(IntPtrSubWithOverflow)                 \ | 
| 83   V(IntPtrMul)                             \ | 83   V(IntPtrMul)                             \ | 
| 84   V(Int32Add)                              \ | 84   V(Int32Add)                              \ | 
| 85   V(Int32AddWithOverflow)                  \ | 85   V(Int32AddWithOverflow)                  \ | 
| 86   V(Int32Sub)                              \ | 86   V(Int32Sub)                              \ | 
| 87   V(Int32Mul)                              \ | 87   V(Int32Mul)                              \ | 
| 88   V(Int32Div)                              \ | 88   V(Int32Div)                              \ | 
|  | 89   V(Int32Mod)                              \ | 
| 89   V(WordOr)                                \ | 90   V(WordOr)                                \ | 
| 90   V(WordAnd)                               \ | 91   V(WordAnd)                               \ | 
| 91   V(WordXor)                               \ | 92   V(WordXor)                               \ | 
| 92   V(WordShl)                               \ | 93   V(WordShl)                               \ | 
| 93   V(WordShr)                               \ | 94   V(WordShr)                               \ | 
| 94   V(WordSar)                               \ | 95   V(WordSar)                               \ | 
| 95   V(WordRor)                               \ | 96   V(WordRor)                               \ | 
| 96   V(Word32Or)                              \ | 97   V(Word32Or)                              \ | 
| 97   V(Word32And)                             \ | 98   V(Word32And)                             \ | 
| 98   V(Word32Xor)                             \ | 99   V(Word32Xor)                             \ | 
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 443   // Map of variables to the list of value nodes that have been added from each | 444   // Map of variables to the list of value nodes that have been added from each | 
| 444   // merge path in their order of merging. | 445   // merge path in their order of merging. | 
| 445   std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 446   std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 
| 446 }; | 447 }; | 
| 447 | 448 | 
| 448 }  // namespace compiler | 449 }  // namespace compiler | 
| 449 }  // namespace internal | 450 }  // namespace internal | 
| 450 }  // namespace v8 | 451 }  // namespace v8 | 
| 451 | 452 | 
| 452 #endif  // V8_COMPILER_CODE_ASSEMBLER_H_ | 453 #endif  // V8_COMPILER_CODE_ASSEMBLER_H_ | 
| OLD | NEW | 
|---|