| 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_STUB_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_STUB_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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 V(WordNotEqual) \ | 58 V(WordNotEqual) \ |
| 59 V(Word32Equal) \ | 59 V(Word32Equal) \ |
| 60 V(Word32NotEqual) \ | 60 V(Word32NotEqual) \ |
| 61 V(Word64Equal) \ | 61 V(Word64Equal) \ |
| 62 V(Word64NotEqual) | 62 V(Word64NotEqual) |
| 63 | 63 |
| 64 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ | 64 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ |
| 65 CODE_STUB_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ | 65 CODE_STUB_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ |
| 66 V(Float64Add) \ | 66 V(Float64Add) \ |
| 67 V(Float64Sub) \ | 67 V(Float64Sub) \ |
| 68 V(Float64Mul) \ |
| 68 V(Float64InsertLowWord32) \ | 69 V(Float64InsertLowWord32) \ |
| 69 V(Float64InsertHighWord32) \ | 70 V(Float64InsertHighWord32) \ |
| 70 V(IntPtrAdd) \ | 71 V(IntPtrAdd) \ |
| 71 V(IntPtrAddWithOverflow) \ | 72 V(IntPtrAddWithOverflow) \ |
| 72 V(IntPtrSub) \ | 73 V(IntPtrSub) \ |
| 73 V(IntPtrSubWithOverflow) \ | 74 V(IntPtrSubWithOverflow) \ |
| 74 V(Int32Add) \ | 75 V(Int32Add) \ |
| 75 V(Int32AddWithOverflow) \ | 76 V(Int32AddWithOverflow) \ |
| 76 V(Int32Sub) \ | 77 V(Int32Sub) \ |
| 77 V(Int32Mul) \ | 78 V(Int32Mul) \ |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 // Map of variables to the list of value nodes that have been added from each | 467 // Map of variables to the list of value nodes that have been added from each |
| 467 // merge path in their order of merging. | 468 // merge path in their order of merging. |
| 468 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 469 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 469 }; | 470 }; |
| 470 | 471 |
| 471 } // namespace compiler | 472 } // namespace compiler |
| 472 } // namespace internal | 473 } // namespace internal |
| 473 } // namespace v8 | 474 } // namespace v8 |
| 474 | 475 |
| 475 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 476 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |