Index: src/x87/full-codegen-x87.cc |
diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc |
index 39fc62a54f0a167cb363ef7a0c101a4e2346e0cb..2cb448ae2beb7f7284dadbf257c1b938e3b09c9d 100644 |
--- a/src/x87/full-codegen-x87.cc |
+++ b/src/x87/full-codegen-x87.cc |
@@ -2993,7 +2993,10 @@ |
// Push the enclosing function. |
__ push(Operand(ebp, JavaScriptFrameConstants::kFunctionOffset)); |
- |
+ // Push the receiver of the enclosing function. |
+ Variable* this_var = scope()->LookupThis(); |
+ DCHECK_NOT_NULL(this_var); |
+ __ push(VarOperand(this_var, ecx)); |
// Push the language mode. |
__ push(Immediate(Smi::FromInt(language_mode()))); |
@@ -3001,7 +3004,7 @@ |
__ push(Immediate(Smi::FromInt(scope()->start_position()))); |
// Do the runtime call. |
- __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 5); |
+ __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 6); |
} |
@@ -3033,8 +3036,8 @@ |
if (call_type == Call::POSSIBLY_EVAL_CALL) { |
// In a call to eval, we first call RuntimeHidden_ResolvePossiblyDirectEval |
- // to resolve the function we need to call. Then we call the resolved |
- // function using the given arguments. |
+ // to resolve the function we need to call and the receiver of the call. |
+ // Then we call the resolved function using the given arguments. |
ZoneList<Expression*>* args = expr->arguments(); |
int arg_count = args->length(); |
{ PreservePositionScope pos_scope(masm()->positions_recorder()); |
@@ -3051,7 +3054,9 @@ |
__ push(Operand(esp, (arg_count + 1) * kPointerSize)); |
EmitResolvePossiblyDirectEval(arg_count); |
- // Touch up the stack with the resolved function. |
+ // The runtime call returns a pair of values in eax (function) and |
+ // edx (receiver). Touch up the stack with the right values. |
+ __ mov(Operand(esp, (arg_count + 0) * kPointerSize), edx); |
__ mov(Operand(esp, (arg_count + 1) * kPointerSize), eax); |
PrepareForBailoutForId(expr->EvalOrLookupId(), NO_REGISTERS); |
@@ -4670,10 +4675,9 @@ |
context()->Plug(eax); |
} else if (proxy != NULL) { |
Variable* var = proxy->var(); |
- // Delete of an unqualified identifier is disallowed in strict mode but |
- // "delete this" is allowed. |
- bool is_this = var->HasThisName(isolate()); |
- DCHECK(is_sloppy(language_mode()) || is_this); |
+ // Delete of an unqualified identifier is disallowed in strict mode |
+ // but "delete this" is allowed. |
+ DCHECK(is_sloppy(language_mode()) || var->is_this()); |
if (var->IsUnallocated()) { |
__ push(GlobalObjectOperand()); |
__ push(Immediate(var->name())); |
@@ -4684,7 +4688,7 @@ |
// Result of deleting non-global variables is false. 'this' is |
// not really a variable, though we implement it as one. The |
// subexpression does not have side effects. |
- context()->Plug(is_this); |
+ context()->Plug(var->is_this()); |
} else { |
// Non-global variable. Call the runtime to try to delete from the |
// context where the variable was introduced. |