OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 V(NumberSubtract) \ | 178 V(NumberSubtract) \ |
179 V(NumberMultiply) \ | 179 V(NumberMultiply) \ |
180 V(NumberDivide) \ | 180 V(NumberDivide) \ |
181 V(NumberModulus) \ | 181 V(NumberModulus) \ |
182 V(NumberBitwiseOr) \ | 182 V(NumberBitwiseOr) \ |
183 V(NumberBitwiseXor) \ | 183 V(NumberBitwiseXor) \ |
184 V(NumberBitwiseAnd) \ | 184 V(NumberBitwiseAnd) \ |
185 V(NumberShiftLeft) \ | 185 V(NumberShiftLeft) \ |
186 V(NumberShiftRight) \ | 186 V(NumberShiftRight) \ |
187 V(NumberShiftRightLogical) \ | 187 V(NumberShiftRightLogical) \ |
| 188 V(NumberClz32) \ |
188 V(NumberCeil) \ | 189 V(NumberCeil) \ |
189 V(NumberFloor) \ | 190 V(NumberFloor) \ |
190 V(NumberRound) \ | 191 V(NumberRound) \ |
191 V(NumberTrunc) \ | 192 V(NumberTrunc) \ |
192 V(NumberToInt32) \ | 193 V(NumberToInt32) \ |
193 V(NumberToUint32) \ | 194 V(NumberToUint32) \ |
194 V(NumberIsHoleNaN) \ | 195 V(NumberIsHoleNaN) \ |
195 V(PlainPrimitiveToNumber) \ | 196 V(PlainPrimitiveToNumber) \ |
196 V(StringToNumber) \ | 197 V(StringToNumber) \ |
197 V(ChangeTaggedToInt32) \ | 198 V(ChangeTaggedToInt32) \ |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 } | 427 } |
427 }; | 428 }; |
428 | 429 |
429 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 430 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
430 | 431 |
431 } // namespace compiler | 432 } // namespace compiler |
432 } // namespace internal | 433 } // namespace internal |
433 } // namespace v8 | 434 } // namespace v8 |
434 | 435 |
435 #endif // V8_COMPILER_OPCODES_H_ | 436 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |