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 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 V(Float64Log10) \ | 128 V(Float64Log10) \ |
129 V(Float64Cbrt) \ | 129 V(Float64Cbrt) \ |
130 V(Float64Neg) \ | 130 V(Float64Neg) \ |
131 V(Float64Sin) \ | 131 V(Float64Sin) \ |
132 V(Float64Sinh) \ | 132 V(Float64Sinh) \ |
133 V(Float64Sqrt) \ | 133 V(Float64Sqrt) \ |
134 V(Float64Tan) \ | 134 V(Float64Tan) \ |
135 V(Float64Tanh) \ | 135 V(Float64Tanh) \ |
136 V(Float64ExtractLowWord32) \ | 136 V(Float64ExtractLowWord32) \ |
137 V(Float64ExtractHighWord32) \ | 137 V(Float64ExtractHighWord32) \ |
| 138 V(BitcastTaggedToWord) \ |
138 V(BitcastWordToTagged) \ | 139 V(BitcastWordToTagged) \ |
| 140 V(BitcastWordToTaggedSigned) \ |
139 V(TruncateFloat64ToFloat32) \ | 141 V(TruncateFloat64ToFloat32) \ |
140 V(TruncateFloat64ToWord32) \ | 142 V(TruncateFloat64ToWord32) \ |
141 V(TruncateInt64ToInt32) \ | 143 V(TruncateInt64ToInt32) \ |
142 V(ChangeFloat32ToFloat64) \ | 144 V(ChangeFloat32ToFloat64) \ |
143 V(ChangeFloat64ToUint32) \ | 145 V(ChangeFloat64ToUint32) \ |
144 V(ChangeInt32ToFloat64) \ | 146 V(ChangeInt32ToFloat64) \ |
145 V(ChangeInt32ToInt64) \ | 147 V(ChangeInt32ToInt64) \ |
146 V(ChangeUint32ToFloat64) \ | 148 V(ChangeUint32ToFloat64) \ |
147 V(ChangeUint32ToUint64) \ | 149 V(ChangeUint32ToUint64) \ |
148 V(RoundFloat64ToInt32) \ | 150 V(RoundFloat64ToInt32) \ |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 // Map of variables to the list of value nodes that have been added from each | 508 // Map of variables to the list of value nodes that have been added from each |
507 // merge path in their order of merging. | 509 // merge path in their order of merging. |
508 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 510 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
509 }; | 511 }; |
510 | 512 |
511 } // namespace compiler | 513 } // namespace compiler |
512 } // namespace internal | 514 } // namespace internal |
513 } // namespace v8 | 515 } // namespace v8 |
514 | 516 |
515 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 517 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |