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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
200 V(NumberFround) \ | 200 V(NumberFround) \ |
201 V(NumberAtan) \ | 201 V(NumberAtan) \ |
202 V(NumberAtan2) \ | 202 V(NumberAtan2) \ |
203 V(NumberLog) \ | 203 V(NumberLog) \ |
204 V(NumberLog1p) \ | 204 V(NumberLog1p) \ |
205 V(NumberRound) \ | 205 V(NumberRound) \ |
206 V(NumberSqrt) \ | 206 V(NumberSqrt) \ |
207 V(NumberTrunc) \ | 207 V(NumberTrunc) \ |
208 V(NumberToInt32) \ | 208 V(NumberToInt32) \ |
209 V(NumberToUint32) \ | 209 V(NumberToUint32) \ |
210 V(NumberIsHoleNaN) \ | |
211 V(NumberSilenceNaN) \ | 210 V(NumberSilenceNaN) \ |
212 V(NumberConvertHoleNaN) \ | |
213 V(StringFromCharCode) \ | 211 V(StringFromCharCode) \ |
214 V(StringToNumber) \ | 212 V(StringToNumber) \ |
215 V(ChangeTaggedSignedToInt32) \ | 213 V(ChangeTaggedSignedToInt32) \ |
216 V(ChangeTaggedToInt32) \ | 214 V(ChangeTaggedToInt32) \ |
217 V(ChangeTaggedToUint32) \ | 215 V(ChangeTaggedToUint32) \ |
218 V(ChangeTaggedToFloat64) \ | 216 V(ChangeTaggedToFloat64) \ |
219 V(ChangeInt31ToTaggedSigned) \ | 217 V(ChangeInt31ToTaggedSigned) \ |
220 V(ChangeInt32ToTagged) \ | 218 V(ChangeInt32ToTagged) \ |
221 V(ChangeUint32ToTagged) \ | 219 V(ChangeUint32ToTagged) \ |
222 V(ChangeFloat64ToTagged) \ | 220 V(ChangeFloat64ToTagged) \ |
223 V(ChangeTaggedToBit) \ | 221 V(ChangeTaggedToBit) \ |
224 V(ChangeBitToTagged) \ | 222 V(ChangeBitToTagged) \ |
225 V(CheckedUint32ToInt32) \ | 223 V(CheckedUint32ToInt32) \ |
226 V(CheckedFloat64ToInt32) \ | 224 V(CheckedFloat64ToInt32) \ |
227 V(CheckedTaggedToInt32) \ | 225 V(CheckedTaggedToInt32) \ |
228 V(CheckedTaggedToFloat64) \ | 226 V(CheckedTaggedToFloat64) \ |
227 V(CheckHole) \ | |
228 V(CheckHoleNaN) \ | |
Jarin
2016/06/15 11:18:43
How about somehow making more explicit the represe
Benedikt Meurer
2016/06/15 11:39:09
Done.
| |
229 V(CheckIf) \ | 229 V(CheckIf) \ |
230 V(TruncateTaggedToWord32) \ | 230 V(TruncateTaggedToWord32) \ |
231 V(TruncateTaggedToFloat64) \ | 231 V(TruncateTaggedToFloat64) \ |
232 V(Allocate) \ | 232 V(Allocate) \ |
233 V(LoadField) \ | 233 V(LoadField) \ |
234 V(LoadBuffer) \ | 234 V(LoadBuffer) \ |
235 V(LoadElement) \ | 235 V(LoadElement) \ |
236 V(StoreField) \ | 236 V(StoreField) \ |
237 V(StoreBuffer) \ | 237 V(StoreBuffer) \ |
238 V(StoreElement) \ | 238 V(StoreElement) \ |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
658 } | 658 } |
659 }; | 659 }; |
660 | 660 |
661 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 661 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
662 | 662 |
663 } // namespace compiler | 663 } // namespace compiler |
664 } // namespace internal | 664 } // namespace internal |
665 } // namespace v8 | 665 } // namespace v8 |
666 | 666 |
667 #endif // V8_COMPILER_OPCODES_H_ | 667 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |