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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 V(NumberRound) \ | 193 V(NumberRound) \ |
194 V(NumberTrunc) \ | 194 V(NumberTrunc) \ |
195 V(NumberToInt32) \ | 195 V(NumberToInt32) \ |
196 V(NumberToUint32) \ | 196 V(NumberToUint32) \ |
197 V(NumberIsHoleNaN) \ | 197 V(NumberIsHoleNaN) \ |
198 V(StringToNumber) \ | 198 V(StringToNumber) \ |
199 V(ChangeTaggedSignedToInt32) \ | 199 V(ChangeTaggedSignedToInt32) \ |
200 V(ChangeTaggedToInt32) \ | 200 V(ChangeTaggedToInt32) \ |
201 V(ChangeTaggedToUint32) \ | 201 V(ChangeTaggedToUint32) \ |
202 V(ChangeTaggedToFloat64) \ | 202 V(ChangeTaggedToFloat64) \ |
203 V(ChangeInt31ToTaggedSigned) \ | 203 V(ChangeInt31ToTagged) \ |
204 V(ChangeInt32ToTagged) \ | 204 V(ChangeInt32ToTagged) \ |
205 V(ChangeUint32ToTagged) \ | 205 V(ChangeUint32ToTagged) \ |
206 V(ChangeFloat64ToTagged) \ | 206 V(ChangeFloat64ToTagged) \ |
207 V(ChangeTaggedToBit) \ | 207 V(ChangeBoolToBit) \ |
208 V(ChangeBitToTagged) \ | 208 V(ChangeBitToBool) \ |
209 V(TruncateTaggedToWord32) \ | 209 V(TruncateTaggedToWord32) \ |
210 V(Allocate) \ | 210 V(Allocate) \ |
211 V(LoadField) \ | 211 V(LoadField) \ |
212 V(LoadBuffer) \ | 212 V(LoadBuffer) \ |
213 V(LoadElement) \ | 213 V(LoadElement) \ |
214 V(StoreField) \ | 214 V(StoreField) \ |
215 V(StoreBuffer) \ | 215 V(StoreBuffer) \ |
216 V(StoreElement) \ | 216 V(StoreElement) \ |
217 V(ObjectIsCallable) \ | 217 V(ObjectIsCallable) \ |
218 V(ObjectIsNumber) \ | 218 V(ObjectIsNumber) \ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 } | 436 } |
437 }; | 437 }; |
438 | 438 |
439 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 439 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
440 | 440 |
441 } // namespace compiler | 441 } // namespace compiler |
442 } // namespace internal | 442 } // namespace internal |
443 } // namespace v8 | 443 } // namespace v8 |
444 | 444 |
445 #endif // V8_COMPILER_OPCODES_H_ | 445 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |