Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/interpreter/bytecodes.h

Issue 1410953003: [Interpreter] Adds delete operator to interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased the patch Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/interpreter/interpreter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <iosfwd> 8 #include <iosfwd>
9 9
10 // Clients of this interface shouldn't depend on lots of interpreter internals. 10 // Clients of this interface shouldn't depend on lots of interpreter internals.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 V(BitwiseAnd, OperandType::kReg8) \ 84 V(BitwiseAnd, OperandType::kReg8) \
85 V(ShiftLeft, OperandType::kReg8) \ 85 V(ShiftLeft, OperandType::kReg8) \
86 V(ShiftRight, OperandType::kReg8) \ 86 V(ShiftRight, OperandType::kReg8) \
87 V(ShiftRightLogical, OperandType::kReg8) \ 87 V(ShiftRightLogical, OperandType::kReg8) \
88 \ 88 \
89 /* Unary Operators */ \ 89 /* Unary Operators */ \
90 V(Inc, OperandType::kNone) \ 90 V(Inc, OperandType::kNone) \
91 V(Dec, OperandType::kNone) \ 91 V(Dec, OperandType::kNone) \
92 V(LogicalNot, OperandType::kNone) \ 92 V(LogicalNot, OperandType::kNone) \
93 V(TypeOf, OperandType::kNone) \ 93 V(TypeOf, OperandType::kNone) \
94 V(DeletePropertyStrict, OperandType::kReg8) \
95 V(DeletePropertySloppy, OperandType::kReg8) \
94 \ 96 \
95 /* Call operations */ \ 97 /* Call operations */ \
96 V(Call, OperandType::kReg8, OperandType::kReg8, OperandType::kCount8) \ 98 V(Call, OperandType::kReg8, OperandType::kReg8, OperandType::kCount8) \
97 V(CallRuntime, OperandType::kIdx16, OperandType::kReg8, \ 99 V(CallRuntime, OperandType::kIdx16, OperandType::kReg8, \
98 OperandType::kCount8) \ 100 OperandType::kCount8) \
99 \ 101 \
100 /* New operator */ \ 102 /* New operator */ \
101 V(New, OperandType::kReg8, OperandType::kReg8, OperandType::kCount8) \ 103 V(New, OperandType::kReg8, OperandType::kReg8, OperandType::kCount8) \
102 \ 104 \
103 /* Test Operators */ \ 105 /* Test Operators */ \
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 304
303 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); 305 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode);
304 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); 306 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
305 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); 307 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
306 308
307 } // namespace interpreter 309 } // namespace interpreter
308 } // namespace internal 310 } // namespace internal
309 } // namespace v8 311 } // namespace v8
310 312
311 #endif // V8_INTERPRETER_BYTECODES_H_ 313 #endif // V8_INTERPRETER_BYTECODES_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/interpreter/interpreter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698