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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 V(Word64Or) \ | 102 V(Word64Or) \ |
103 V(Word64And) \ | 103 V(Word64And) \ |
104 V(Word64Xor) \ | 104 V(Word64Xor) \ |
105 V(Word64Shr) \ | 105 V(Word64Shr) \ |
106 V(Word64Sar) \ | 106 V(Word64Sar) \ |
107 V(Word64Ror) | 107 V(Word64Ror) |
108 | 108 |
109 #define CODE_ASSEMBLER_UNARY_OP_LIST(V) \ | 109 #define CODE_ASSEMBLER_UNARY_OP_LIST(V) \ |
110 V(Float64Atan) \ | 110 V(Float64Atan) \ |
111 V(Float64Atanh) \ | 111 V(Float64Atanh) \ |
| 112 V(Float64Cos) \ |
112 V(Float64Exp) \ | 113 V(Float64Exp) \ |
113 V(Float64Expm1) \ | 114 V(Float64Expm1) \ |
114 V(Float64Log) \ | 115 V(Float64Log) \ |
115 V(Float64Log1p) \ | 116 V(Float64Log1p) \ |
116 V(Float64Log2) \ | 117 V(Float64Log2) \ |
117 V(Float64Log10) \ | 118 V(Float64Log10) \ |
118 V(Float64Cbrt) \ | 119 V(Float64Cbrt) \ |
119 V(Float64Neg) \ | 120 V(Float64Neg) \ |
| 121 V(Float64Sin) \ |
120 V(Float64Sqrt) \ | 122 V(Float64Sqrt) \ |
121 V(Float64ExtractLowWord32) \ | 123 V(Float64ExtractLowWord32) \ |
122 V(Float64ExtractHighWord32) \ | 124 V(Float64ExtractHighWord32) \ |
123 V(BitcastWordToTagged) \ | 125 V(BitcastWordToTagged) \ |
124 V(TruncateFloat64ToWord32) \ | 126 V(TruncateFloat64ToWord32) \ |
125 V(TruncateInt64ToInt32) \ | 127 V(TruncateInt64ToInt32) \ |
126 V(ChangeFloat64ToUint32) \ | 128 V(ChangeFloat64ToUint32) \ |
127 V(ChangeInt32ToFloat64) \ | 129 V(ChangeInt32ToFloat64) \ |
128 V(ChangeInt32ToInt64) \ | 130 V(ChangeInt32ToInt64) \ |
129 V(ChangeUint32ToFloat64) \ | 131 V(ChangeUint32ToFloat64) \ |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 // Map of variables to the list of value nodes that have been added from each | 419 // Map of variables to the list of value nodes that have been added from each |
418 // merge path in their order of merging. | 420 // merge path in their order of merging. |
419 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 421 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
420 }; | 422 }; |
421 | 423 |
422 } // namespace compiler | 424 } // namespace compiler |
423 } // namespace internal | 425 } // namespace internal |
424 } // namespace v8 | 426 } // namespace v8 |
425 | 427 |
426 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 428 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |