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

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

Issue 1678103002: [interpreter] Remove special "prototype" load in class literals. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 months 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
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 OperandType::kIdx8) \ 135 OperandType::kIdx8) \
136 V(StoreICSloppyWide, OperandType::kReg8, OperandType::kIdx16, \ 136 V(StoreICSloppyWide, OperandType::kReg8, OperandType::kIdx16, \
137 OperandType::kIdx16) \ 137 OperandType::kIdx16) \
138 V(StoreICStrictWide, OperandType::kReg8, OperandType::kIdx16, \ 138 V(StoreICStrictWide, OperandType::kReg8, OperandType::kIdx16, \
139 OperandType::kIdx16) \ 139 OperandType::kIdx16) \
140 V(KeyedStoreICSloppyWide, OperandType::kReg8, OperandType::kReg8, \ 140 V(KeyedStoreICSloppyWide, OperandType::kReg8, OperandType::kReg8, \
141 OperandType::kIdx16) \ 141 OperandType::kIdx16) \
142 V(KeyedStoreICStrictWide, OperandType::kReg8, OperandType::kReg8, \ 142 V(KeyedStoreICStrictWide, OperandType::kReg8, OperandType::kReg8, \
143 OperandType::kIdx16) \ 143 OperandType::kIdx16) \
144 \ 144 \
145 /* Class information */ \
146 V(LdaInitialMap, OperandType::kNone) \
147 \
148 /* Binary Operators */ \ 145 /* Binary Operators */ \
149 V(Add, OperandType::kReg8) \ 146 V(Add, OperandType::kReg8) \
150 V(Sub, OperandType::kReg8) \ 147 V(Sub, OperandType::kReg8) \
151 V(Mul, OperandType::kReg8) \ 148 V(Mul, OperandType::kReg8) \
152 V(Div, OperandType::kReg8) \ 149 V(Div, OperandType::kReg8) \
153 V(Mod, OperandType::kReg8) \ 150 V(Mod, OperandType::kReg8) \
154 V(BitwiseOr, OperandType::kReg8) \ 151 V(BitwiseOr, OperandType::kReg8) \
155 V(BitwiseXor, OperandType::kReg8) \ 152 V(BitwiseXor, OperandType::kReg8) \
156 V(BitwiseAnd, OperandType::kReg8) \ 153 V(BitwiseAnd, OperandType::kReg8) \
157 V(ShiftLeft, OperandType::kReg8) \ 154 V(ShiftLeft, OperandType::kReg8) \
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 487
491 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); 488 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode);
492 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); 489 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
493 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); 490 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
494 491
495 } // namespace interpreter 492 } // namespace interpreter
496 } // namespace internal 493 } // namespace internal
497 } // namespace v8 494 } // namespace v8
498 495
499 #endif // V8_INTERPRETER_BYTECODES_H_ 496 #endif // V8_INTERPRETER_BYTECODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698