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

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

Issue 1396693003: [Interpreter] Add function literal support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_newcontext
Patch Set: Make CreateClosure a bytecode Created 5 years, 2 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 V(TestLessThan, OperandType::kReg8) \ 96 V(TestLessThan, OperandType::kReg8) \
97 V(TestGreaterThan, OperandType::kReg8) \ 97 V(TestGreaterThan, OperandType::kReg8) \
98 V(TestLessThanOrEqual, OperandType::kReg8) \ 98 V(TestLessThanOrEqual, OperandType::kReg8) \
99 V(TestGreaterThanOrEqual, OperandType::kReg8) \ 99 V(TestGreaterThanOrEqual, OperandType::kReg8) \
100 V(TestInstanceOf, OperandType::kReg8) \ 100 V(TestInstanceOf, OperandType::kReg8) \
101 V(TestIn, OperandType::kReg8) \ 101 V(TestIn, OperandType::kReg8) \
102 \ 102 \
103 /* Cast operators */ \ 103 /* Cast operators */ \
104 V(ToBoolean, OperandType::kNone) \ 104 V(ToBoolean, OperandType::kNone) \
105 \ 105 \
106 /* Closure allocation */ \
107 V(CreateClosure, OperandType::kImm8) \
108 \
106 /* Control Flow */ \ 109 /* Control Flow */ \
107 V(Jump, OperandType::kImm8) \ 110 V(Jump, OperandType::kImm8) \
108 V(JumpConstant, OperandType::kIdx8) \ 111 V(JumpConstant, OperandType::kIdx8) \
109 V(JumpIfTrue, OperandType::kImm8) \ 112 V(JumpIfTrue, OperandType::kImm8) \
110 V(JumpIfTrueConstant, OperandType::kIdx8) \ 113 V(JumpIfTrueConstant, OperandType::kIdx8) \
111 V(JumpIfFalse, OperandType::kImm8) \ 114 V(JumpIfFalse, OperandType::kImm8) \
112 V(JumpIfFalseConstant, OperandType::kIdx8) \ 115 V(JumpIfFalseConstant, OperandType::kIdx8) \
113 V(Return, OperandType::kNone) 116 V(Return, OperandType::kNone)
114 117
115 118
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 255
253 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); 256 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode);
254 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); 257 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
255 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); 258 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
256 259
257 } // namespace interpreter 260 } // namespace interpreter
258 } // namespace internal 261 } // namespace internal
259 } // namespace v8 262 } // namespace v8
260 263
261 #endif // V8_INTERPRETER_BYTECODES_H_ 264 #endif // V8_INTERPRETER_BYTECODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698