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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 V(ChangeBitToBool) \ | 195 V(ChangeBitToBool) \ |
196 V(Allocate) \ | 196 V(Allocate) \ |
197 V(LoadField) \ | 197 V(LoadField) \ |
198 V(LoadBuffer) \ | 198 V(LoadBuffer) \ |
199 V(LoadElement) \ | 199 V(LoadElement) \ |
200 V(StoreField) \ | 200 V(StoreField) \ |
201 V(StoreBuffer) \ | 201 V(StoreBuffer) \ |
202 V(StoreElement) \ | 202 V(StoreElement) \ |
203 V(ObjectIsNumber) \ | 203 V(ObjectIsNumber) \ |
204 V(ObjectIsReceiver) \ | 204 V(ObjectIsReceiver) \ |
205 V(ObjectIsSmi) \ | 205 V(ObjectIsSmi) |
206 V(ObjectIsUndetectable) | |
207 | 206 |
208 // Opcodes for Machine-level operators. | 207 // Opcodes for Machine-level operators. |
209 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 208 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
210 V(Word32Equal) \ | 209 V(Word32Equal) \ |
211 V(Word64Equal) \ | 210 V(Word64Equal) \ |
212 V(Int32LessThan) \ | 211 V(Int32LessThan) \ |
213 V(Int32LessThanOrEqual) \ | 212 V(Int32LessThanOrEqual) \ |
214 V(Uint32LessThan) \ | 213 V(Uint32LessThan) \ |
215 V(Uint32LessThanOrEqual) \ | 214 V(Uint32LessThanOrEqual) \ |
216 V(Int64LessThan) \ | 215 V(Int64LessThan) \ |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 } | 409 } |
411 }; | 410 }; |
412 | 411 |
413 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 412 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
414 | 413 |
415 } // namespace compiler | 414 } // namespace compiler |
416 } // namespace internal | 415 } // namespace internal |
417 } // namespace v8 | 416 } // namespace v8 |
418 | 417 |
419 #endif // V8_COMPILER_OPCODES_H_ | 418 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |