OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/interpreter/bytecode-array-builder.h" | 7 #include "src/interpreter/bytecode-array-builder.h" |
8 #include "src/interpreter/bytecode-array-iterator.h" | 8 #include "src/interpreter/bytecode-array-iterator.h" |
9 #include "src/interpreter/bytecode-label.h" | 9 #include "src/interpreter/bytecode-label.h" |
10 #include "src/interpreter/bytecode-register-allocator.h" | 10 #include "src/interpreter/bytecode-register-allocator.h" |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 132 |
133 // Call operations. | 133 // Call operations. |
134 builder.Call(reg, reg_list, 1, Call::GLOBAL_CALL) | 134 builder.Call(reg, reg_list, 1, Call::GLOBAL_CALL) |
135 .Call(reg, reg_list, 1, Call::NAMED_PROPERTY_CALL, | 135 .Call(reg, reg_list, 1, Call::NAMED_PROPERTY_CALL, |
136 TailCallMode::kDisallow) | 136 TailCallMode::kDisallow) |
137 .Call(reg, reg_list, 1, Call::GLOBAL_CALL, TailCallMode::kAllow) | 137 .Call(reg, reg_list, 1, Call::GLOBAL_CALL, TailCallMode::kAllow) |
138 .CallRuntime(Runtime::kIsArray, reg) | 138 .CallRuntime(Runtime::kIsArray, reg) |
139 .CallRuntimeForPair(Runtime::kLoadLookupSlotForCall, reg_list, pair) | 139 .CallRuntimeForPair(Runtime::kLoadLookupSlotForCall, reg_list, pair) |
140 .CallJSRuntime(Context::SPREAD_ITERABLE_INDEX, reg_list) | 140 .CallJSRuntime(Context::SPREAD_ITERABLE_INDEX, reg_list) |
141 .NewWithSpread(reg, reg_list) | 141 .NewWithSpread(reg, reg_list) |
142 .CallWithSpread(reg_list); | 142 .CallWithSpread(reg, reg_list); |
143 | 143 |
144 // Emit binary operator invocations. | 144 // Emit binary operator invocations. |
145 builder.BinaryOperation(Token::Value::ADD, reg, 1) | 145 builder.BinaryOperation(Token::Value::ADD, reg, 1) |
146 .BinaryOperation(Token::Value::SUB, reg, 2) | 146 .BinaryOperation(Token::Value::SUB, reg, 2) |
147 .BinaryOperation(Token::Value::MUL, reg, 3) | 147 .BinaryOperation(Token::Value::MUL, reg, 3) |
148 .BinaryOperation(Token::Value::DIV, reg, 4) | 148 .BinaryOperation(Token::Value::DIV, reg, 4) |
149 .BinaryOperation(Token::Value::MOD, reg, 5); | 149 .BinaryOperation(Token::Value::MOD, reg, 5); |
150 | 150 |
151 // Emit bitwise operator invocations | 151 // Emit bitwise operator invocations |
152 builder.BinaryOperation(Token::Value::BIT_OR, reg, 6) | 152 builder.BinaryOperation(Token::Value::BIT_OR, reg, 6) |
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 iterator.Advance(); | 757 iterator.Advance(); |
758 } | 758 } |
759 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); | 759 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); |
760 iterator.Advance(); | 760 iterator.Advance(); |
761 CHECK(iterator.done()); | 761 CHECK(iterator.done()); |
762 } | 762 } |
763 | 763 |
764 } // namespace interpreter | 764 } // namespace interpreter |
765 } // namespace internal | 765 } // namespace internal |
766 } // namespace v8 | 766 } // namespace v8 |
OLD | NEW |