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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 V(Allocate) \ | 207 V(Allocate) \ |
208 V(LoadField) \ | 208 V(LoadField) \ |
209 V(LoadBuffer) \ | 209 V(LoadBuffer) \ |
210 V(LoadElement) \ | 210 V(LoadElement) \ |
211 V(StoreField) \ | 211 V(StoreField) \ |
212 V(StoreBuffer) \ | 212 V(StoreBuffer) \ |
213 V(StoreElement) \ | 213 V(StoreElement) \ |
214 V(ObjectIsNumber) \ | 214 V(ObjectIsNumber) \ |
215 V(ObjectIsReceiver) \ | 215 V(ObjectIsReceiver) \ |
216 V(ObjectIsSmi) \ | 216 V(ObjectIsSmi) \ |
| 217 V(ObjectIsString) \ |
217 V(ObjectIsUndetectable) | 218 V(ObjectIsUndetectable) |
218 | 219 |
219 // Opcodes for Machine-level operators. | 220 // Opcodes for Machine-level operators. |
220 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 221 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
221 V(Word32Equal) \ | 222 V(Word32Equal) \ |
222 V(Word64Equal) \ | 223 V(Word64Equal) \ |
223 V(Int32LessThan) \ | 224 V(Int32LessThan) \ |
224 V(Int32LessThanOrEqual) \ | 225 V(Int32LessThanOrEqual) \ |
225 V(Uint32LessThan) \ | 226 V(Uint32LessThan) \ |
226 V(Uint32LessThanOrEqual) \ | 227 V(Uint32LessThanOrEqual) \ |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 } | 429 } |
429 }; | 430 }; |
430 | 431 |
431 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
432 | 433 |
433 } // namespace compiler | 434 } // namespace compiler |
434 } // namespace internal | 435 } // namespace internal |
435 } // namespace v8 | 436 } // namespace v8 |
436 | 437 |
437 #endif // V8_COMPILER_OPCODES_H_ | 438 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |