Index: src/ia32/macro-assembler-ia32.h |
diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h |
index f48ed1361e2e42496077cb59bf2ecc19de329811..82761b03f84b22f32cad2ac0324975bb90a3adc3 100644 |
--- a/src/ia32/macro-assembler-ia32.h |
+++ b/src/ia32/macro-assembler-ia32.h |
@@ -152,26 +152,32 @@ class MacroAssembler: public Assembler { |
// --------------------------------------------------------------------------- |
// JavaScript invokes |
+ // Setup implicit/explicit receiver marking in specified register. |
+ void SetReceiverType(Register dst, ReceiverType type); |
+ |
// Invoke the JavaScript function code by either calling or jumping. |
void InvokeCode(const Operand& code, |
const ParameterCount& expected, |
const ParameterCount& actual, |
InvokeFlag flag, |
- const CallWrapper& call_wrapper = NullCallWrapper()); |
+ const CallWrapper& call_wrapper = NullCallWrapper(), |
+ ReceiverType receiver_type = EXPLICIT_RECEIVER); |
void InvokeCode(Handle<Code> code, |
const ParameterCount& expected, |
const ParameterCount& actual, |
RelocInfo::Mode rmode, |
InvokeFlag flag, |
- const CallWrapper& call_wrapper = NullCallWrapper()); |
+ const CallWrapper& call_wrapper = NullCallWrapper(), |
+ ReceiverType receiver_type = EXPLICIT_RECEIVER); |
// Invoke the JavaScript function in the given register. Changes the |
// current context to the context in the function before invoking. |
void InvokeFunction(Register function, |
const ParameterCount& actual, |
InvokeFlag flag, |
- const CallWrapper& call_wrapper = NullCallWrapper()); |
+ const CallWrapper& call_wrapper = NullCallWrapper(), |
+ ReceiverType receiver_type = EXPLICIT_RECEIVER); |
void InvokeFunction(JSFunction* function, |
const ParameterCount& actual, |
@@ -641,7 +647,8 @@ class MacroAssembler: public Assembler { |
Label* done, |
InvokeFlag flag, |
Label::Distance done_near = Label::kFar, |
- const CallWrapper& call_wrapper = NullCallWrapper()); |
+ const CallWrapper& call_wrapper = NullCallWrapper(), |
+ ReceiverType receiver_type = EXPLICIT_RECEIVER); |
// Activation support. |
void EnterFrame(StackFrame::Type type); |