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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(Float64Mul) \ |
| 69 V(Float64Div) \ |
69 V(Float64InsertLowWord32) \ | 70 V(Float64InsertLowWord32) \ |
70 V(Float64InsertHighWord32) \ | 71 V(Float64InsertHighWord32) \ |
71 V(IntPtrAdd) \ | 72 V(IntPtrAdd) \ |
72 V(IntPtrAddWithOverflow) \ | 73 V(IntPtrAddWithOverflow) \ |
73 V(IntPtrSub) \ | 74 V(IntPtrSub) \ |
74 V(IntPtrSubWithOverflow) \ | 75 V(IntPtrSubWithOverflow) \ |
| 76 V(IntPtrMul) \ |
75 V(Int32Add) \ | 77 V(Int32Add) \ |
76 V(Int32AddWithOverflow) \ | 78 V(Int32AddWithOverflow) \ |
77 V(Int32Sub) \ | 79 V(Int32Sub) \ |
78 V(Int32Mul) \ | 80 V(Int32Mul) \ |
| 81 V(Int32Div) \ |
79 V(WordOr) \ | 82 V(WordOr) \ |
80 V(WordAnd) \ | 83 V(WordAnd) \ |
81 V(WordXor) \ | 84 V(WordXor) \ |
82 V(WordShl) \ | 85 V(WordShl) \ |
83 V(WordShr) \ | 86 V(WordShr) \ |
84 V(WordSar) \ | 87 V(WordSar) \ |
85 V(WordRor) \ | 88 V(WordRor) \ |
86 V(Word32Or) \ | 89 V(Word32Or) \ |
87 V(Word32And) \ | 90 V(Word32And) \ |
88 V(Word32Xor) \ | 91 V(Word32Xor) \ |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 // Map of variables to the list of value nodes that have been added from each | 481 // Map of variables to the list of value nodes that have been added from each |
479 // merge path in their order of merging. | 482 // merge path in their order of merging. |
480 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 483 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
481 }; | 484 }; |
482 | 485 |
483 } // namespace compiler | 486 } // namespace compiler |
484 } // namespace internal | 487 } // namespace internal |
485 } // namespace v8 | 488 } // namespace v8 |
486 | 489 |
487 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 490 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |