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

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

Issue 1555063002: [Interpreter] Adds support for wide variant of load/store lookup slots. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated tests to address review comments. Created 4 years, 11 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
« no previous file with comments | « src/interpreter/bytecode-array-builder.cc ('k') | src/interpreter/interpreter.cc » ('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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 \ 62 \
63 /* Context operations */ \ 63 /* Context operations */ \
64 V(PushContext, OperandType::kReg8) \ 64 V(PushContext, OperandType::kReg8) \
65 V(PopContext, OperandType::kReg8) \ 65 V(PopContext, OperandType::kReg8) \
66 V(LdaContextSlot, OperandType::kReg8, OperandType::kIdx8) \ 66 V(LdaContextSlot, OperandType::kReg8, OperandType::kIdx8) \
67 V(StaContextSlot, OperandType::kReg8, OperandType::kIdx8) \ 67 V(StaContextSlot, OperandType::kReg8, OperandType::kIdx8) \
68 \ 68 \
69 /* Load-Store lookup slots */ \ 69 /* Load-Store lookup slots */ \
70 V(LdaLookupSlot, OperandType::kIdx8) \ 70 V(LdaLookupSlot, OperandType::kIdx8) \
71 V(LdaLookupSlotInsideTypeof, OperandType::kIdx8) \ 71 V(LdaLookupSlotInsideTypeof, OperandType::kIdx8) \
72 V(LdaLookupSlotWide, OperandType::kIdx16) \
73 V(LdaLookupSlotInsideTypeofWide, OperandType::kIdx16) \
72 V(StaLookupSlotSloppy, OperandType::kIdx8) \ 74 V(StaLookupSlotSloppy, OperandType::kIdx8) \
73 V(StaLookupSlotStrict, OperandType::kIdx8) \ 75 V(StaLookupSlotStrict, OperandType::kIdx8) \
76 V(StaLookupSlotSloppyWide, OperandType::kIdx16) \
77 V(StaLookupSlotStrictWide, OperandType::kIdx16) \
74 \ 78 \
75 /* Register-accumulator transfers */ \ 79 /* Register-accumulator transfers */ \
76 V(Ldar, OperandType::kReg8) \ 80 V(Ldar, OperandType::kReg8) \
77 V(Star, OperandType::kReg8) \ 81 V(Star, OperandType::kReg8) \
78 \ 82 \
79 /* Register-register transfers */ \ 83 /* Register-register transfers */ \
80 V(Mov, OperandType::kReg8, OperandType::kReg8) \ 84 V(Mov, OperandType::kReg8, OperandType::kReg8) \
81 \ 85 \
82 /* LoadIC operations */ \ 86 /* LoadIC operations */ \
83 V(LoadICSloppy, OperandType::kReg8, OperandType::kIdx8, OperandType::kIdx8) \ 87 V(LoadICSloppy, OperandType::kReg8, OperandType::kIdx8, OperandType::kIdx8) \
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 390
387 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); 391 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode);
388 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); 392 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
389 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); 393 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
390 394
391 } // namespace interpreter 395 } // namespace interpreter
392 } // namespace internal 396 } // namespace internal
393 } // namespace v8 397 } // namespace v8
394 398
395 #endif // V8_INTERPRETER_BYTECODES_H_ 399 #endif // V8_INTERPRETER_BYTECODES_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-array-builder.cc ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698