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

Unified Diff: src/compiler/bytecode-graph-builder.cc

Issue 2709533002: Revert of [interpreter] Create custom call opcodes for specific argument counts (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/bytecode-graph-builder.h ('k') | src/interpreter/bytecode-array-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/bytecode-graph-builder.cc
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
index 5494664d34642ead90cd2bb37cb4b6b350f42b7d..aaeee666aa69d35f91801872fe03693533967141 100644
--- a/src/compiler/bytecode-graph-builder.cc
+++ b/src/compiler/bytecode-graph-builder.cc
@@ -1293,8 +1293,10 @@
literal, Environment::kAttachFrameState);
}
-Node* const* BytecodeGraphBuilder::GetCallArgumentsFromRegister(
- Node* callee, interpreter::Register receiver, size_t arity) {
+Node* BytecodeGraphBuilder::ProcessCallArguments(const Operator* call_op,
+ Node* callee,
+ interpreter::Register receiver,
+ size_t arity) {
Node** all = local_zone()->NewArray<Node*>(static_cast<int>(arity));
all[0] = callee;
all[1] = environment()->LookupRegister(receiver);
@@ -1303,133 +1305,34 @@
all[i] = environment()->LookupRegister(
interpreter::Register(receiver_index + i - 1));
}
- return all;
-}
-
-Node* BytecodeGraphBuilder::ProcessCallArguments(const Operator* call_op,
- Node* const* args,
- size_t arg_count) {
- return MakeNode(call_op, static_cast<int>(arg_count), args, false);
-}
-
-Node* BytecodeGraphBuilder::ProcessCallArguments(const Operator* call_op,
- Node* callee,
- interpreter::Register receiver,
- size_t arg_count) {
- return ProcessCallArguments(
- call_op, GetCallArgumentsFromRegister(callee, receiver, arg_count),
- arg_count);
+ Node* value = MakeNode(call_op, static_cast<int>(arity), all, false);
+ return value;
}
void BytecodeGraphBuilder::BuildCall(TailCallMode tail_call_mode,
- ConvertReceiverMode receiver_hint,
- Node* const* args, size_t arg_count,
- int slot_id) {
- PrepareEagerCheckpoint();
-
- // Slot index of 0 is used indicate no feedback slot is available. Assert
- // the assumption that slot index 0 is never a valid feedback slot.
- STATIC_ASSERT(FeedbackVector::kReservedIndexCount > 0);
- VectorSlotPair feedback = CreateVectorSlotPair(slot_id);
-
- float const frequency = ComputeCallFrequency(slot_id);
- const Operator* call = javascript()->Call(arg_count, frequency, feedback,
- receiver_hint, tail_call_mode);
- Node* value = ProcessCallArguments(call, args, arg_count);
- environment()->BindAccumulator(value, Environment::kAttachFrameState);
-}
-
-void BytecodeGraphBuilder::BuildCallVarArgs(TailCallMode tail_call_mode,
- ConvertReceiverMode receiver_hint) {
+ ConvertReceiverMode receiver_hint) {
+ PrepareEagerCheckpoint();
+
Node* callee =
environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
interpreter::Register receiver = bytecode_iterator().GetRegisterOperand(1);
size_t arg_count = bytecode_iterator().GetRegisterCountOperand(2);
+
+ // Slot index of 0 is used indicate no feedback slot is available. Assert
+ // the assumption that slot index 0 is never a valid feedback slot.
+ STATIC_ASSERT(FeedbackVector::kReservedIndexCount > 0);
int const slot_id = bytecode_iterator().GetIndexOperand(3);
- BuildCall(tail_call_mode, receiver_hint,
- GetCallArgumentsFromRegister(callee, receiver, arg_count + 1),
- arg_count + 1, slot_id);
+ VectorSlotPair feedback = CreateVectorSlotPair(slot_id);
+
+ float const frequency = ComputeCallFrequency(slot_id);
+ const Operator* call = javascript()->Call(arg_count + 1, frequency, feedback,
+ receiver_hint, tail_call_mode);
+ Node* value = ProcessCallArguments(call, callee, receiver, arg_count + 1);
+ environment()->BindAccumulator(value, Environment::kAttachFrameState);
}
void BytecodeGraphBuilder::VisitCall() {
- BuildCallVarArgs(TailCallMode::kDisallow, ConvertReceiverMode::kAny);
-}
-
-void BytecodeGraphBuilder::VisitCall0() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- int const slot_id = bytecode_iterator().GetIndexOperand(2);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kAny,
- {callee, receiver}, slot_id);
-}
-
-void BytecodeGraphBuilder::VisitCall1() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- Node* arg0 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2));
- int const slot_id = bytecode_iterator().GetIndexOperand(3);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kAny,
- {callee, receiver, arg0}, slot_id);
-}
-
-void BytecodeGraphBuilder::VisitCall2() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- Node* arg0 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2));
- Node* arg1 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(3));
- int const slot_id = bytecode_iterator().GetIndexOperand(4);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kAny,
- {callee, receiver, arg0, arg1}, slot_id);
-}
-
-void BytecodeGraphBuilder::VisitCallProperty() {
- BuildCallVarArgs(TailCallMode::kDisallow,
- ConvertReceiverMode::kNotNullOrUndefined);
-}
-
-void BytecodeGraphBuilder::VisitCallProperty0() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- int const slot_id = bytecode_iterator().GetIndexOperand(2);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kNotNullOrUndefined,
- {callee, receiver}, slot_id);
-}
-
-void BytecodeGraphBuilder::VisitCallProperty1() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- Node* arg0 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2));
- int const slot_id = bytecode_iterator().GetIndexOperand(3);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kNotNullOrUndefined,
- {callee, receiver, arg0}, slot_id);
-}
-
-void BytecodeGraphBuilder::VisitCallProperty2() {
- Node* callee =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
- Node* receiver =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1));
- Node* arg0 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2));
- Node* arg1 =
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(3));
- int const slot_id = bytecode_iterator().GetIndexOperand(4);
- BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kNotNullOrUndefined,
- {callee, receiver, arg0, arg1}, slot_id);
+ BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kAny);
}
void BytecodeGraphBuilder::VisitCallWithSpread() {
@@ -1445,12 +1348,16 @@
environment()->BindAccumulator(value, Environment::kAttachFrameState);
}
+void BytecodeGraphBuilder::VisitCallProperty() {
+ BuildCall(TailCallMode::kDisallow, ConvertReceiverMode::kNotNullOrUndefined);
+}
+
void BytecodeGraphBuilder::VisitTailCall() {
TailCallMode tail_call_mode =
bytecode_array_->GetIsolate()->is_tail_call_elimination_enabled()
? TailCallMode::kAllow
: TailCallMode::kDisallow;
- BuildCallVarArgs(tail_call_mode, ConvertReceiverMode::kAny);
+ BuildCall(tail_call_mode, ConvertReceiverMode::kAny);
}
void BytecodeGraphBuilder::VisitCallJSRuntime() {
@@ -2340,8 +2247,7 @@
}
Node* BytecodeGraphBuilder::MakeNode(const Operator* op, int value_input_count,
- Node* const* value_inputs,
- bool incomplete) {
+ Node** value_inputs, bool incomplete) {
DCHECK_EQ(op->ValueInputCount(), value_input_count);
bool has_context = OperatorProperties::HasContextInput(op);
« no previous file with comments | « src/compiler/bytecode-graph-builder.h ('k') | src/interpreter/bytecode-array-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698