Commit 04d2a0e9 authored by Toon Verwaest's avatar Toon Verwaest Committed by Commit Bot

Drop is_store as explicit parameter of CallApiCallback

The bytecode interpreter nor TF rely on the explicit return value of store ICs anymore, so we can just return whatever is in the result slot. It won't be visible to JS anyway.

Bug: 
Change-Id: I389615d1d77c5b050832f23a08e3d3bc07d9cbc6
Reviewed-on: https://chromium-review.googlesource.com/743366Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Toon Verwaest <verwaest@chromium.org>
Cr-Commit-Position: refs/heads/master@{#49027}
parent 6f105c7a
......@@ -1541,12 +1541,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
MemOperand* stack_space_operand = nullptr;
......
......@@ -1759,12 +1759,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
// The number of arguments might be odd, but will be padded when calling the
// stub. We do not round up stack_space to account for odd argc here, this
......
......@@ -631,26 +631,17 @@ class CallApiCallbackStub : public PlatformCodeStub {
static const int kArgBits = 3;
static const int kArgMax = (1 << kArgBits) - 1;
// CallApiCallbackStub for regular setters and getters.
CallApiCallbackStub(Isolate* isolate, bool is_store)
: CallApiCallbackStub(isolate, is_store ? 1 : 0, is_store) {}
// CallApiCallbackStub for callback functions.
CallApiCallbackStub(Isolate* isolate, int argc)
: CallApiCallbackStub(isolate, argc, false) {}
private:
CallApiCallbackStub(Isolate* isolate, int argc, bool is_store)
: PlatformCodeStub(isolate) {
CHECK(0 <= argc && argc <= kArgMax);
minor_key_ = IsStoreBits::encode(is_store) | ArgumentBits::encode(argc);
CHECK_LE(0, argc);
CHECK_LE(argc, kArgMax);
minor_key_ = ArgumentBits::encode(argc);
}
bool is_store() const { return IsStoreBits::decode(minor_key_); }
private:
int argc() const { return ArgumentBits::decode(minor_key_); }
class IsStoreBits: public BitField<bool, 0, 1> {};
class ArgumentBits : public BitField<int, 1, kArgBits> {};
class ArgumentBits : public BitField<int, 0, kArgBits> {};
DEFINE_CALL_INTERFACE_DESCRIPTOR(ApiCallback);
DEFINE_PLATFORM_CODE_STUB(CallApiCallback, PlatformCodeStub);
......
......@@ -1627,7 +1627,7 @@ Node* JSNativeContextSpecialization::InlinePropertyGetterCall(
return value;
}
Node* JSNativeContextSpecialization::InlinePropertySetterCall(
void JSNativeContextSpecialization::InlinePropertySetterCall(
Node* receiver, Node* value, Node* context, Node* frame_state,
Node** effect, Node** control, ZoneVector<Node*>* if_exceptions,
PropertyAccessInfo const& access_info) {
......@@ -1663,8 +1663,8 @@ Node* JSNativeContextSpecialization::InlinePropertySetterCall(
access_info.holder().is_null()
? receiver
: jsgraph()->Constant(access_info.holder().ToHandleChecked());
value = InlineApiCall(receiver, holder, frame_state0, value, effect,
control, shared_info, function_template_info);
InlineApiCall(receiver, holder, frame_state0, value, effect, control,
shared_info, function_template_info);
}
// Remember to rewire the IfException edge if this is inside a try-block.
if (if_exceptions != nullptr) {
......@@ -1675,7 +1675,6 @@ Node* JSNativeContextSpecialization::InlinePropertySetterCall(
if_exceptions->push_back(if_exception);
*control = if_success;
}
return value;
}
Node* JSNativeContextSpecialization::InlineApiCall(
......@@ -1807,9 +1806,8 @@ JSNativeContextSpecialization::BuildPropertyStore(
check, effect, control);
value = constant_value;
} else if (access_info.IsAccessorConstant()) {
value =
InlinePropertySetterCall(receiver, value, context, frame_state, &effect,
&control, if_exceptions, access_info);
InlinePropertySetterCall(receiver, value, context, frame_state, &effect,
&control, if_exceptions, access_info);
} else {
DCHECK(access_info.IsDataField() || access_info.IsDataConstantField());
FieldIndex const field_index = access_info.field_index();
......
......@@ -140,11 +140,11 @@ class JSNativeContextSpecialization final : public AdvancedReducer {
Node** control,
ZoneVector<Node*>* if_exceptions,
PropertyAccessInfo const& access_info);
Node* InlinePropertySetterCall(Node* receiver, Node* value, Node* context,
Node* frame_state, Node** effect,
Node** control,
ZoneVector<Node*>* if_exceptions,
PropertyAccessInfo const& access_info);
void InlinePropertySetterCall(Node* receiver, Node* value, Node* context,
Node* frame_state, Node** effect,
Node** control,
ZoneVector<Node*>* if_exceptions,
PropertyAccessInfo const& access_info);
Node* InlineApiCall(Node* receiver, Node* holder, Node* frame_state,
Node* value, Node** effect, Node** control,
Handle<SharedFunctionInfo> shared_info,
......
......@@ -1499,12 +1499,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
ExternalReference::invoke_function_callback(masm->isolate());
// Stores return the first js argument
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
Operand return_value_operand(ebp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
Operand* stack_space_operand = nullptr;
......
......@@ -241,7 +241,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ mov(api_function_address, Operand(ref));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -175,7 +175,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ Mov(api_function_address, ref);
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -174,7 +174,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ mov(api_function_address, Immediate(function_address));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -231,7 +231,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ li(api_function_address, Operand(ref));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -231,7 +231,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ li(api_function_address, Operand(ref));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -237,7 +237,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ mov(api_function_address, Operand(ref));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -230,7 +230,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
__ mov(api_function_address, Operand(ref));
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -157,7 +157,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
RelocInfo::EXTERNAL_REFERENCE);
// Jump to stub.
CallApiCallbackStub stub(isolate, is_store);
CallApiCallbackStub stub(isolate, is_store ? 1 : 0);
__ TailCallStub(&stub);
}
......
......@@ -1640,12 +1640,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument.
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
// TODO(adamk): Why are we clobbering this immediately?
......
......@@ -1645,12 +1645,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument.
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
// TODO(adamk): Why are we clobbering this immediately?
......
......@@ -1654,12 +1654,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
MemOperand* stack_space_operand = nullptr;
......
......@@ -1655,12 +1655,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
AllowExternalCallThatCantCauseGC scope(masm);
// Stores return the first js argument
int return_value_offset = 0;
if (is_store()) {
return_value_offset = 2 + FCA::kArgsLength;
} else {
return_value_offset = 2 + FCA::kReturnValueOffset;
}
int return_value_offset = 2 + FCA::kReturnValueOffset;
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
const int stack_space = argc() + FCA::kArgsLength + 1;
MemOperand* stack_space_operand = nullptr;
......
......@@ -1555,7 +1555,7 @@ void CallApiCallbackStub::Generate(MacroAssembler* masm) {
StackArgumentsAccessor args_from_rbp(rbp, FCA::kArgsLength + 1,
ARGUMENTS_DONT_CONTAIN_RECEIVER);
Operand return_value_operand = args_from_rbp.GetArgumentOperand(
this->is_store() ? 0 : FCA::kArgsLength - FCA::kReturnValueOffset);
FCA::kArgsLength - FCA::kReturnValueOffset);
const int stack_space = argc + FCA::kArgsLength + 1;
Operand* stack_space_operand = nullptr;
CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, callback_arg,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment