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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(Float64Mul) \ |
69 V(Float64Div) \ | 69 V(Float64Div) \ |
| 70 V(Float64Mod) \ |
70 V(Float64InsertLowWord32) \ | 71 V(Float64InsertLowWord32) \ |
71 V(Float64InsertHighWord32) \ | 72 V(Float64InsertHighWord32) \ |
72 V(IntPtrAdd) \ | 73 V(IntPtrAdd) \ |
73 V(IntPtrAddWithOverflow) \ | 74 V(IntPtrAddWithOverflow) \ |
74 V(IntPtrSub) \ | 75 V(IntPtrSub) \ |
75 V(IntPtrSubWithOverflow) \ | 76 V(IntPtrSubWithOverflow) \ |
76 V(IntPtrMul) \ | 77 V(IntPtrMul) \ |
77 V(Int32Add) \ | 78 V(Int32Add) \ |
78 V(Int32AddWithOverflow) \ | 79 V(Int32AddWithOverflow) \ |
79 V(Int32Sub) \ | 80 V(Int32Sub) \ |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 // Map of variables to the list of value nodes that have been added from each | 475 // Map of variables to the list of value nodes that have been added from each |
475 // merge path in their order of merging. | 476 // merge path in their order of merging. |
476 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 477 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
477 }; | 478 }; |
478 | 479 |
479 } // namespace compiler | 480 } // namespace compiler |
480 } // namespace internal | 481 } // namespace internal |
481 } // namespace v8 | 482 } // namespace v8 |
482 | 483 |
483 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 484 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |