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/compiler/instruction-selector.h" | 5 #include "src/compiler/instruction-selector.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/adapters.h" | 9 #include "src/base/adapters.h" |
10 #include "src/compiler/instruction-selector-impl.h" | 10 #include "src/compiler/instruction-selector-impl.h" |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 (call_address_immediate && | 338 (call_address_immediate && |
339 callee->opcode() == IrOpcode::kExternalConstant) | 339 callee->opcode() == IrOpcode::kExternalConstant) |
340 ? g.UseImmediate(callee) | 340 ? g.UseImmediate(callee) |
341 : g.UseRegister(callee)); | 341 : g.UseRegister(callee)); |
342 break; | 342 break; |
343 case CallDescriptor::kCallJSFunction: | 343 case CallDescriptor::kCallJSFunction: |
344 buffer->instruction_args.push_back( | 344 buffer->instruction_args.push_back( |
345 g.UseLocation(callee, buffer->descriptor->GetInputLocation(0), | 345 g.UseLocation(callee, buffer->descriptor->GetInputLocation(0), |
346 buffer->descriptor->GetInputType(0))); | 346 buffer->descriptor->GetInputType(0))); |
347 break; | 347 break; |
| 348 case CallDescriptor::kInterpreterDispatch: |
| 349 buffer->instruction_args.push_back(g.UseRegister(callee)); |
| 350 break; |
348 } | 351 } |
349 DCHECK_EQ(1u, buffer->instruction_args.size()); | 352 DCHECK_EQ(1u, buffer->instruction_args.size()); |
350 | 353 |
351 // If the call needs a frame state, we insert the state information as | 354 // If the call needs a frame state, we insert the state information as |
352 // follows (n is the number of value inputs to the frame state): | 355 // follows (n is the number of value inputs to the frame state): |
353 // arg 1 : deoptimization id. | 356 // arg 1 : deoptimization id. |
354 // arg 2 - arg (n + 1) : value inputs to the frame state. | 357 // arg 2 - arg (n + 1) : value inputs to the frame state. |
355 if (buffer->frame_state_descriptor != NULL) { | 358 if (buffer->frame_state_descriptor != NULL) { |
356 InstructionSequence::StateId state_id = | 359 InstructionSequence::StateId state_id = |
357 sequence()->AddFrameStateDescriptor(buffer->frame_state_descriptor); | 360 sequence()->AddFrameStateDescriptor(buffer->frame_state_descriptor); |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 MachineOperatorBuilder::Flags | 1155 MachineOperatorBuilder::Flags |
1153 InstructionSelector::SupportedMachineOperatorFlags() { | 1156 InstructionSelector::SupportedMachineOperatorFlags() { |
1154 return MachineOperatorBuilder::Flag::kNoFlags; | 1157 return MachineOperatorBuilder::Flag::kNoFlags; |
1155 } | 1158 } |
1156 | 1159 |
1157 #endif // !V8_TURBOFAN_BACKEND | 1160 #endif // !V8_TURBOFAN_BACKEND |
1158 | 1161 |
1159 } // namespace compiler | 1162 } // namespace compiler |
1160 } // namespace internal | 1163 } // namespace internal |
1161 } // namespace v8 | 1164 } // namespace v8 |
OLD | NEW |