OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_INTERPRETER_BYTECODES_H_ | 5 #ifndef V8_INTERPRETER_BYTECODES_H_ |
6 #define V8_INTERPRETER_BYTECODES_H_ | 6 #define V8_INTERPRETER_BYTECODES_H_ |
7 | 7 |
8 #include <cstdint> | 8 #include <cstdint> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 #include <string> | 10 #include <string> |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 /* Closure allocation */ \ | 241 /* Closure allocation */ \ |
242 V(CreateClosure, AccumulatorUse::kWrite, OperandType::kIdx, \ | 242 V(CreateClosure, AccumulatorUse::kWrite, OperandType::kIdx, \ |
243 OperandType::kFlag8) \ | 243 OperandType::kFlag8) \ |
244 \ | 244 \ |
245 /* Context allocation */ \ | 245 /* Context allocation */ \ |
246 V(CreateBlockContext, AccumulatorUse::kReadWrite, OperandType::kIdx) \ | 246 V(CreateBlockContext, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
247 V(CreateCatchContext, AccumulatorUse::kReadWrite, OperandType::kReg, \ | 247 V(CreateCatchContext, AccumulatorUse::kReadWrite, OperandType::kReg, \ |
248 OperandType::kIdx, OperandType::kIdx) \ | 248 OperandType::kIdx, OperandType::kIdx) \ |
249 /* TODO(klaasb) rename Idx or add unsigned Imm OperandType? */ \ | 249 /* TODO(klaasb) rename Idx or add unsigned Imm OperandType? */ \ |
250 V(CreateFunctionContext, AccumulatorUse::kWrite, OperandType::kIdx) \ | 250 V(CreateFunctionContext, AccumulatorUse::kWrite, OperandType::kIdx) \ |
251 V(CreateWithContext, AccumulatorUse::kReadWrite, OperandType::kReg) \ | 251 V(CreateWithContext, AccumulatorUse::kReadWrite, OperandType::kReg, \ |
| 252 OperandType::kIdx) \ |
252 \ | 253 \ |
253 /* Arguments allocation */ \ | 254 /* Arguments allocation */ \ |
254 V(CreateMappedArguments, AccumulatorUse::kWrite) \ | 255 V(CreateMappedArguments, AccumulatorUse::kWrite) \ |
255 V(CreateUnmappedArguments, AccumulatorUse::kWrite) \ | 256 V(CreateUnmappedArguments, AccumulatorUse::kWrite) \ |
256 V(CreateRestParameter, AccumulatorUse::kWrite) \ | 257 V(CreateRestParameter, AccumulatorUse::kWrite) \ |
257 \ | 258 \ |
258 /* Control Flow */ \ | 259 /* Control Flow */ \ |
259 V(Jump, AccumulatorUse::kNone, OperandType::kImm) \ | 260 V(Jump, AccumulatorUse::kNone, OperandType::kImm) \ |
260 V(JumpConstant, AccumulatorUse::kNone, OperandType::kIdx) \ | 261 V(JumpConstant, AccumulatorUse::kNone, OperandType::kIdx) \ |
261 V(JumpIfTrue, AccumulatorUse::kRead, OperandType::kImm) \ | 262 V(JumpIfTrue, AccumulatorUse::kRead, OperandType::kImm) \ |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); | 596 std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); |
596 std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale); | 597 std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale); |
597 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size); | 598 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size); |
598 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); | 599 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); |
599 | 600 |
600 } // namespace interpreter | 601 } // namespace interpreter |
601 } // namespace internal | 602 } // namespace internal |
602 } // namespace v8 | 603 } // namespace v8 |
603 | 604 |
604 #endif // V8_INTERPRETER_BYTECODES_H_ | 605 #endif // V8_INTERPRETER_BYTECODES_H_ |
OLD | NEW |