| Index: src/x64/full-codegen-x64.cc
|
| ===================================================================
|
| --- src/x64/full-codegen-x64.cc (revision 8618)
|
| +++ src/x64/full-codegen-x64.cc (working copy)
|
| @@ -78,16 +78,18 @@
|
| }
|
|
|
| void EmitPatchInfo() {
|
| - int delta_to_patch_site = masm_->SizeOfCodeGeneratedSince(&patch_site_);
|
| - ASSERT(is_int8(delta_to_patch_site));
|
| - __ testl(rax, Immediate(delta_to_patch_site));
|
| + if (patch_site_.is_bound()) {
|
| + int delta_to_patch_site = masm_->SizeOfCodeGeneratedSince(&patch_site_);
|
| + ASSERT(is_int8(delta_to_patch_site));
|
| + __ testl(rax, Immediate(delta_to_patch_site));
|
| #ifdef DEBUG
|
| - info_emitted_ = true;
|
| + info_emitted_ = true;
|
| #endif
|
| + } else {
|
| + __ nop(); // Signals no inlined code.
|
| + }
|
| }
|
|
|
| - bool is_bound() const { return patch_site_.is_bound(); }
|
| -
|
| private:
|
| // jc will be patched with jz, jnc will become jnz.
|
| void EmitJump(Condition cc, Label* target, Label::Distance near_jump) {
|
| @@ -121,6 +123,7 @@
|
| void FullCodeGenerator::Generate(CompilationInfo* info) {
|
| ASSERT(info_ == NULL);
|
| info_ = info;
|
| + scope_ = info->scope();
|
| SetFunctionPosition(function());
|
| Comment cmnt(masm_, "[ function compiled by full code generator");
|
|
|
| @@ -131,16 +134,16 @@
|
| }
|
| #endif
|
|
|
| - // Strict mode functions need to replace the receiver with undefined
|
| - // when called as functions (without an explicit receiver
|
| - // object). rcx is zero for method calls and non-zero for function
|
| - // calls.
|
| - if (info->is_strict_mode()) {
|
| + // Strict mode functions and builtins need to replace the receiver
|
| + // with undefined when called as functions (without an explicit
|
| + // receiver object). rcx is zero for method calls and non-zero for
|
| + // function calls.
|
| + if (info->is_strict_mode() || info->is_native()) {
|
| Label ok;
|
| __ testq(rcx, rcx);
|
| __ j(zero, &ok, Label::kNear);
|
| // +1 for return address.
|
| - int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize;
|
| + int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize;
|
| __ LoadRoot(kScratchRegister, Heap::kUndefinedValueRootIndex);
|
| __ movq(Operand(rsp, receiver_offset), kScratchRegister);
|
| __ bind(&ok);
|
| @@ -152,7 +155,7 @@
|
| __ push(rdi); // Callee's JS Function.
|
|
|
| { Comment cmnt(masm_, "[ Allocate locals");
|
| - int locals_count = scope()->num_stack_slots();
|
| + int locals_count = info->scope()->num_stack_slots();
|
| if (locals_count == 1) {
|
| __ PushRoot(Heap::kUndefinedValueRootIndex);
|
| } else if (locals_count > 1) {
|
| @@ -166,7 +169,7 @@
|
| bool function_in_register = true;
|
|
|
| // Possibly allocate a local context.
|
| - int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
| + int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
| if (heap_slots > 0) {
|
| Comment cmnt(masm_, "[ Allocate local context");
|
| // Argument to NewContext is the function, which is still in rdi.
|
| @@ -175,7 +178,7 @@
|
| FastNewContextStub stub(heap_slots);
|
| __ CallStub(&stub);
|
| } else {
|
| - __ CallRuntime(Runtime::kNewContext, 1);
|
| + __ CallRuntime(Runtime::kNewFunctionContext, 1);
|
| }
|
| function_in_register = false;
|
| // Context is returned in both rax and rsi. It replaces the context
|
| @@ -183,7 +186,7 @@
|
| __ movq(Operand(rbp, StandardFrameConstants::kContextOffset), rsi);
|
|
|
| // Copy any necessary parameters into the context.
|
| - int num_parameters = scope()->num_parameters();
|
| + int num_parameters = info->scope()->num_parameters();
|
| for (int i = 0; i < num_parameters; i++) {
|
| Slot* slot = scope()->parameter(i)->AsSlot();
|
| if (slot != NULL && slot->type() == Slot::CONTEXT) {
|
| @@ -213,26 +216,21 @@
|
| __ push(Operand(rbp, JavaScriptFrameConstants::kFunctionOffset));
|
| }
|
| // The receiver is just before the parameters on the caller's stack.
|
| - int offset = scope()->num_parameters() * kPointerSize;
|
| + int num_parameters = info->scope()->num_parameters();
|
| + int offset = num_parameters * kPointerSize;
|
| __ lea(rdx,
|
| Operand(rbp, StandardFrameConstants::kCallerSPOffset + offset));
|
| __ push(rdx);
|
| - __ Push(Smi::FromInt(scope()->num_parameters()));
|
| + __ Push(Smi::FromInt(num_parameters));
|
| // Arguments to ArgumentsAccessStub:
|
| // function, receiver address, parameter count.
|
| // The stub will rewrite receiver and parameter count if the previous
|
| // stack frame was an arguments adapter frame.
|
| ArgumentsAccessStub stub(
|
| is_strict_mode() ? ArgumentsAccessStub::NEW_STRICT
|
| - : ArgumentsAccessStub::NEW_NON_STRICT);
|
| + : ArgumentsAccessStub::NEW_NON_STRICT_SLOW);
|
| __ CallStub(&stub);
|
|
|
| - Variable* arguments_shadow = scope()->arguments_shadow();
|
| - if (arguments_shadow != NULL) {
|
| - // Store new arguments object in both "arguments" and ".arguments" slots.
|
| - __ movq(rcx, rax);
|
| - Move(arguments_shadow->AsSlot(), rcx, rbx, rdx);
|
| - }
|
| Move(arguments->AsSlot(), rax, rbx, rdx);
|
| }
|
|
|
| @@ -336,7 +334,7 @@
|
| __ movq(rsp, rbp);
|
| __ pop(rbp);
|
|
|
| - int arguments_bytes = (scope()->num_parameters() + 1) * kPointerSize;
|
| + int arguments_bytes = (info_->scope()->num_parameters() + 1) * kPointerSize;
|
| __ Ret(arguments_bytes, rcx);
|
|
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| @@ -375,7 +373,7 @@
|
| void FullCodeGenerator::TestContext::Plug(Slot* slot) const {
|
| codegen()->Move(result_register(), slot);
|
| codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
|
| - codegen()->DoTest(true_label_, false_label_, fall_through_);
|
| + codegen()->DoTest(this);
|
| }
|
|
|
|
|
| @@ -408,7 +406,7 @@
|
| if (true_label_ != fall_through_) __ jmp(true_label_);
|
| } else {
|
| __ LoadRoot(result_register(), index);
|
| - codegen()->DoTest(true_label_, false_label_, fall_through_);
|
| + codegen()->DoTest(this);
|
| }
|
| }
|
|
|
| @@ -453,7 +451,7 @@
|
| } else {
|
| // For simplicity we always test the accumulator register.
|
| __ Move(result_register(), lit);
|
| - codegen()->DoTest(true_label_, false_label_, fall_through_);
|
| + codegen()->DoTest(this);
|
| }
|
| }
|
|
|
| @@ -489,7 +487,7 @@
|
| __ Drop(count);
|
| __ Move(result_register(), reg);
|
| codegen()->PrepareForBailoutBeforeSplit(TOS_REG, false, NULL, NULL);
|
| - codegen()->DoTest(true_label_, false_label_, fall_through_);
|
| + codegen()->DoTest(this);
|
| }
|
|
|
|
|
| @@ -564,13 +562,14 @@
|
| }
|
|
|
|
|
| -void FullCodeGenerator::DoTest(Label* if_true,
|
| +void FullCodeGenerator::DoTest(Expression* condition,
|
| + Label* if_true,
|
| Label* if_false,
|
| Label* fall_through) {
|
| - ToBooleanStub stub;
|
| + ToBooleanStub stub(result_register());
|
| __ push(result_register());
|
| __ CallStub(&stub);
|
| - __ testq(rax, rax);
|
| + __ testq(result_register(), result_register());
|
| // The stub returns nonzero for true.
|
| Split(not_zero, if_true, if_false, fall_through);
|
| }
|
| @@ -684,13 +683,16 @@
|
| // We bypass the general EmitSlotSearch because we know more about
|
| // this specific context.
|
|
|
| - // The variable in the decl always resides in the current context.
|
| + // The variable in the decl always resides in the current function
|
| + // context.
|
| ASSERT_EQ(0, scope()->ContextChainLength(variable->scope()));
|
| if (FLAG_debug_code) {
|
| - // Check if we have the correct context pointer.
|
| - __ movq(rbx, ContextOperand(rsi, Context::FCONTEXT_INDEX));
|
| - __ cmpq(rbx, rsi);
|
| - __ Check(equal, "Unexpected declaration in current context.");
|
| + // Check that we're not inside a with or catch context.
|
| + __ movq(rbx, FieldOperand(rsi, HeapObject::kMapOffset));
|
| + __ CompareRoot(rbx, Heap::kWithContextMapRootIndex);
|
| + __ Check(not_equal, "Declaration in with context.");
|
| + __ CompareRoot(rbx, Heap::kCatchContextMapRootIndex);
|
| + __ Check(not_equal, "Declaration in catch context.");
|
| }
|
| if (mode == Variable::CONST) {
|
| __ LoadRoot(kScratchRegister, Heap::kTheHoleValueRootIndex);
|
| @@ -756,7 +758,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->KeyedStoreIC_Initialize_Strict()
|
| : isolate()->builtins()->KeyedStoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, AstNode::kNoNumber);
|
| + __ call(ic);
|
| }
|
| }
|
| }
|
| @@ -829,7 +831,8 @@
|
| // Record position before stub call for type feedback.
|
| SetSourcePosition(clause->position());
|
| Handle<Code> ic = CompareIC::GetUninitialized(Token::EQ_STRICT);
|
| - EmitCallIC(ic, &patch_site, clause->CompareId());
|
| + __ call(ic, RelocInfo::CODE_TARGET, clause->CompareId());
|
| + patch_site.EmitPatchInfo();
|
|
|
| __ testq(rax, rax);
|
| __ j(not_equal, &next_test);
|
| @@ -883,7 +886,7 @@
|
| // Convert the object to a JS object.
|
| Label convert, done_convert;
|
| __ JumpIfSmi(rax, &convert);
|
| - __ CmpObjectType(rax, FIRST_JS_OBJECT_TYPE, rcx);
|
| + __ CmpObjectType(rax, FIRST_SPEC_OBJECT_TYPE, rcx);
|
| __ j(above_equal, &done_convert);
|
| __ bind(&convert);
|
| __ push(rax);
|
| @@ -1094,8 +1097,7 @@
|
| __ j(not_equal, slow);
|
| }
|
| // Load next context in chain.
|
| - __ movq(temp, ContextOperand(context, Context::CLOSURE_INDEX));
|
| - __ movq(temp, FieldOperand(temp, JSFunction::kContextOffset));
|
| + __ movq(temp, ContextOperand(context, Context::PREVIOUS_INDEX));
|
| // Walk the rest of the chain without clobbering rsi.
|
| context = temp;
|
| }
|
| @@ -1123,8 +1125,7 @@
|
| __ cmpq(ContextOperand(temp, Context::EXTENSION_INDEX), Immediate(0));
|
| __ j(not_equal, slow);
|
| // Load next context in chain.
|
| - __ movq(temp, ContextOperand(temp, Context::CLOSURE_INDEX));
|
| - __ movq(temp, FieldOperand(temp, JSFunction::kContextOffset));
|
| + __ movq(temp, ContextOperand(temp, Context::PREVIOUS_INDEX));
|
| __ jmp(&next);
|
| __ bind(&fast);
|
| }
|
| @@ -1137,7 +1138,7 @@
|
| RelocInfo::Mode mode = (typeof_state == INSIDE_TYPEOF)
|
| ? RelocInfo::CODE_TARGET
|
| : RelocInfo::CODE_TARGET_CONTEXT;
|
| - EmitCallIC(ic, mode, AstNode::kNoNumber);
|
| + __ call(ic, mode);
|
| }
|
|
|
|
|
| @@ -1156,8 +1157,7 @@
|
| Immediate(0));
|
| __ j(not_equal, slow);
|
| }
|
| - __ movq(temp, ContextOperand(context, Context::CLOSURE_INDEX));
|
| - __ movq(temp, FieldOperand(temp, JSFunction::kContextOffset));
|
| + __ movq(temp, ContextOperand(context, Context::PREVIOUS_INDEX));
|
| // Walk the rest of the chain without clobbering rsi.
|
| context = temp;
|
| }
|
| @@ -1218,7 +1218,7 @@
|
| __ Move(rax, key_literal->handle());
|
| Handle<Code> ic =
|
| isolate()->builtins()->KeyedLoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, GetPropertyId(property));
|
| + __ call(ic, RelocInfo::CODE_TARGET, GetPropertyId(property));
|
| __ jmp(done);
|
| }
|
| }
|
| @@ -1228,20 +1228,19 @@
|
|
|
|
|
| void FullCodeGenerator::EmitVariableLoad(Variable* var) {
|
| - // Four cases: non-this global variables, lookup slots, all other
|
| - // types of slots, and parameters that rewrite to explicit property
|
| - // accesses on the arguments object.
|
| + // Three cases: non-this global variables, lookup slots, and all other
|
| + // types of slots.
|
| Slot* slot = var->AsSlot();
|
| - Property* property = var->AsProperty();
|
| + ASSERT((var->is_global() && !var->is_this()) == (slot == NULL));
|
|
|
| - if (var->is_global() && !var->is_this()) {
|
| + if (slot == NULL) {
|
| Comment cmnt(masm_, "Global variable");
|
| // Use inline caching. Variable name is passed in rcx and the global
|
| // object on the stack.
|
| __ Move(rcx, var->name());
|
| __ movq(rax, GlobalObjectOperand());
|
| Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET_CONTEXT, AstNode::kNoNumber);
|
| + __ call(ic, RelocInfo::CODE_TARGET_CONTEXT);
|
| context()->Plug(rax);
|
|
|
| } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
|
| @@ -1260,7 +1259,7 @@
|
|
|
| context()->Plug(rax);
|
|
|
| - } else if (slot != NULL) {
|
| + } else {
|
| Comment cmnt(masm_, (slot->type() == Slot::CONTEXT)
|
| ? "Context slot"
|
| : "Stack slot");
|
| @@ -1278,34 +1277,6 @@
|
| } else {
|
| context()->Plug(slot);
|
| }
|
| -
|
| - } else {
|
| - Comment cmnt(masm_, "Rewritten parameter");
|
| - ASSERT_NOT_NULL(property);
|
| - // Rewritten parameter accesses are of the form "slot[literal]".
|
| -
|
| - // Assert that the object is in a slot.
|
| - Variable* object_var = property->obj()->AsVariableProxy()->AsVariable();
|
| - ASSERT_NOT_NULL(object_var);
|
| - Slot* object_slot = object_var->AsSlot();
|
| - ASSERT_NOT_NULL(object_slot);
|
| -
|
| - // Load the object.
|
| - MemOperand object_loc = EmitSlotSearch(object_slot, rax);
|
| - __ movq(rdx, object_loc);
|
| -
|
| - // Assert that the key is a smi.
|
| - Literal* key_literal = property->key()->AsLiteral();
|
| - ASSERT_NOT_NULL(key_literal);
|
| - ASSERT(key_literal->handle()->IsSmi());
|
| -
|
| - // Load the key.
|
| - __ Move(rax, key_literal->handle());
|
| -
|
| - // Do a keyed property load.
|
| - Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, GetPropertyId(property));
|
| - context()->Plug(rax);
|
| }
|
| }
|
|
|
| @@ -1417,7 +1388,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->StoreIC_Initialize_Strict()
|
| : isolate()->builtins()->StoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, key->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, key->id());
|
| PrepareForBailoutForId(key->id(), NO_REGISTERS);
|
| } else {
|
| VisitForEffect(value);
|
| @@ -1538,7 +1509,7 @@
|
| }
|
|
|
| // Left-hand side can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* property = expr->target()->AsProperty();
|
| @@ -1564,29 +1535,13 @@
|
| break;
|
| case KEYED_PROPERTY: {
|
| if (expr->is_compound()) {
|
| - if (property->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
|
| - MemOperand slot_operand =
|
| - EmitSlotSearch(obj_proxy->var()->AsSlot(), rcx);
|
| - __ push(slot_operand);
|
| - __ Move(rax, property->key()->AsLiteral()->handle());
|
| - } else {
|
| - VisitForStackValue(property->obj());
|
| - VisitForAccumulatorValue(property->key());
|
| - }
|
| + VisitForStackValue(property->obj());
|
| + VisitForAccumulatorValue(property->key());
|
| __ movq(rdx, Operand(rsp, 0));
|
| __ push(rax);
|
| } else {
|
| - if (property->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
|
| - MemOperand slot_operand =
|
| - EmitSlotSearch(obj_proxy->var()->AsSlot(), rcx);
|
| - __ push(slot_operand);
|
| - __ Push(property->key()->AsLiteral()->handle());
|
| - } else {
|
| - VisitForStackValue(property->obj());
|
| - VisitForStackValue(property->key());
|
| - }
|
| + VisitForStackValue(property->obj());
|
| + VisitForStackValue(property->key());
|
| }
|
| break;
|
| }
|
| @@ -1662,14 +1617,14 @@
|
| Literal* key = prop->key()->AsLiteral();
|
| __ Move(rcx, key->handle());
|
| Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| + __ call(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| }
|
|
|
|
|
| void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
|
| SetSourcePosition(prop->position());
|
| Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| + __ call(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| }
|
|
|
|
|
| @@ -1691,7 +1646,8 @@
|
| __ bind(&stub_call);
|
| __ movq(rax, rcx);
|
| BinaryOpStub stub(op, mode);
|
| - EmitCallIC(stub.GetCode(), &patch_site, expr->id());
|
| + __ call(stub.GetCode(), RelocInfo::CODE_TARGET, expr->id());
|
| + patch_site.EmitPatchInfo();
|
| __ jmp(&done, Label::kNear);
|
|
|
| __ bind(&smi_case);
|
| @@ -1738,8 +1694,9 @@
|
| OverwriteMode mode) {
|
| __ pop(rdx);
|
| BinaryOpStub stub(op, mode);
|
| - // NULL signals no inlined smi code.
|
| - EmitCallIC(stub.GetCode(), NULL, expr->id());
|
| + JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code.
|
| + __ call(stub.GetCode(), RelocInfo::CODE_TARGET, expr->id());
|
| + patch_site.EmitPatchInfo();
|
| context()->Plug(rax);
|
| }
|
|
|
| @@ -1753,7 +1710,7 @@
|
| }
|
|
|
| // Left-hand side can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* prop = expr->AsProperty();
|
| @@ -1779,30 +1736,20 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->StoreIC_Initialize_Strict()
|
| : isolate()->builtins()->StoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, AstNode::kNoNumber);
|
| + __ call(ic);
|
| break;
|
| }
|
| case KEYED_PROPERTY: {
|
| __ push(rax); // Preserve value.
|
| - if (prop->is_synthetic()) {
|
| - ASSERT(prop->obj()->AsVariableProxy() != NULL);
|
| - ASSERT(prop->key()->AsLiteral() != NULL);
|
| - { AccumulatorValueContext for_object(this);
|
| - EmitVariableLoad(prop->obj()->AsVariableProxy()->var());
|
| - }
|
| - __ movq(rdx, rax);
|
| - __ Move(rcx, prop->key()->AsLiteral()->handle());
|
| - } else {
|
| - VisitForStackValue(prop->obj());
|
| - VisitForAccumulatorValue(prop->key());
|
| - __ movq(rcx, rax);
|
| - __ pop(rdx);
|
| - }
|
| + VisitForStackValue(prop->obj());
|
| + VisitForAccumulatorValue(prop->key());
|
| + __ movq(rcx, rax);
|
| + __ pop(rdx);
|
| __ pop(rax); // Restore value.
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->KeyedStoreIC_Initialize_Strict()
|
| : isolate()->builtins()->KeyedStoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, AstNode::kNoNumber);
|
| + __ call(ic);
|
| break;
|
| }
|
| }
|
| @@ -1813,8 +1760,6 @@
|
|
|
| void FullCodeGenerator::EmitVariableAssignment(Variable* var,
|
| Token::Value op) {
|
| - // Left-hand sides that rewrite to explicit property accesses do not reach
|
| - // here.
|
| ASSERT(var != NULL);
|
| ASSERT(var->is_global() || var->AsSlot() != NULL);
|
|
|
| @@ -1828,7 +1773,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->StoreIC_Initialize_Strict()
|
| : isolate()->builtins()->StoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET_CONTEXT, AstNode::kNoNumber);
|
| + __ call(ic, RelocInfo::CODE_TARGET_CONTEXT);
|
|
|
| } else if (op == Token::INIT_CONST) {
|
| // Like var declarations, const declarations are hoisted to function
|
| @@ -1848,17 +1793,7 @@
|
| __ j(not_equal, &skip);
|
| __ movq(Operand(rbp, SlotOffset(slot)), rax);
|
| break;
|
| - case Slot::CONTEXT: {
|
| - __ movq(rcx, ContextOperand(rsi, Context::FCONTEXT_INDEX));
|
| - __ movq(rdx, ContextOperand(rcx, slot->index()));
|
| - __ CompareRoot(rdx, Heap::kTheHoleValueRootIndex);
|
| - __ j(not_equal, &skip);
|
| - __ movq(ContextOperand(rcx, slot->index()), rax);
|
| - int offset = Context::SlotOffset(slot->index());
|
| - __ movq(rdx, rax); // Preserve the stored value in eax.
|
| - __ RecordWriteContextSlot(rcx, offset, rdx, rbx, kDontSaveFPRegs);
|
| - break;
|
| - }
|
| + case Slot::CONTEXT:
|
| case Slot::LOOKUP:
|
| __ push(rax);
|
| __ push(rsi);
|
| @@ -1932,7 +1867,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->StoreIC_Initialize_Strict()
|
| : isolate()->builtins()->StoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
|
|
| // If the assignment ends an initialization block, revert to fast case.
|
| if (expr->ends_initialization_block()) {
|
| @@ -1972,7 +1907,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->KeyedStoreIC_Initialize_Strict()
|
| : isolate()->builtins()->KeyedStoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
|
|
| // If the assignment ends an initialization block, revert to fast case.
|
| if (expr->ends_initialization_block()) {
|
| @@ -2024,7 +1959,7 @@
|
| InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP;
|
| Handle<Code> ic =
|
| ISOLATE->stub_cache()->ComputeCallInitialize(arg_count, in_loop, mode);
|
| - EmitCallIC(ic, mode, expr->id());
|
| + __ call(ic, mode, expr->id());
|
| RecordJSReturnSite(expr);
|
| // Restore context register.
|
| __ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| @@ -2058,7 +1993,7 @@
|
| Handle<Code> ic =
|
| ISOLATE->stub_cache()->ComputeKeyedCallInitialize(arg_count, in_loop);
|
| __ movq(rcx, Operand(rsp, (arg_count + 1) * kPointerSize)); // Key.
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
| RecordJSReturnSite(expr);
|
| // Restore context register.
|
| __ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| @@ -2098,7 +2033,7 @@
|
| }
|
|
|
| // Push the receiver of the enclosing function and do runtime call.
|
| - __ push(Operand(rbp, (2 + scope()->num_parameters()) * kPointerSize));
|
| + __ push(Operand(rbp, (2 + info_->scope()->num_parameters()) * kPointerSize));
|
|
|
| // Push the strict mode flag.
|
| __ Push(Smi::FromInt(strict_mode_flag()));
|
| @@ -2212,9 +2147,9 @@
|
| __ bind(&done);
|
| // Push function.
|
| __ push(rax);
|
| - // Push global receiver.
|
| - __ movq(rbx, GlobalObjectOperand());
|
| - __ push(FieldOperand(rbx, GlobalObject::kGlobalReceiverOffset));
|
| + // The receiver is implicitly the global receiver. Indicate this
|
| + // by passing the hole to the call function stub.
|
| + __ PushRoot(Heap::kTheHoleValueRootIndex);
|
| __ bind(&call);
|
| }
|
|
|
| @@ -2235,7 +2170,7 @@
|
| } else {
|
| // Call to a keyed property.
|
| // For a synthetic property use keyed load IC followed by function call,
|
| - // for a regular property use keyed EmitCallIC.
|
| + // for a regular property use EmitKeyedCallWithIC.
|
| if (prop->is_synthetic()) {
|
| // Do not visit the object and key subexpressions (they are shared
|
| // by all occurrences of the same rewritten parameter).
|
| @@ -2253,7 +2188,7 @@
|
| SetSourcePosition(prop->position());
|
|
|
| Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| + __ call(ic, RelocInfo::CODE_TARGET, GetPropertyId(prop));
|
| // Push result (function).
|
| __ push(rax);
|
| // Push Global receiver.
|
| @@ -2379,9 +2314,9 @@
|
| Immediate(1 << Map::kIsUndetectable));
|
| __ j(not_zero, if_false);
|
| __ movzxbq(rbx, FieldOperand(rbx, Map::kInstanceTypeOffset));
|
| - __ cmpq(rbx, Immediate(FIRST_JS_OBJECT_TYPE));
|
| + __ cmpq(rbx, Immediate(FIRST_NONCALLABLE_SPEC_OBJECT_TYPE));
|
| __ j(below, if_false);
|
| - __ cmpq(rbx, Immediate(LAST_JS_OBJECT_TYPE));
|
| + __ cmpq(rbx, Immediate(LAST_NONCALLABLE_SPEC_OBJECT_TYPE));
|
| PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
| Split(below_equal, if_true, if_false, fall_through);
|
|
|
| @@ -2402,7 +2337,7 @@
|
| &if_true, &if_false, &fall_through);
|
|
|
| __ JumpIfSmi(rax, if_false);
|
| - __ CmpObjectType(rax, FIRST_JS_OBJECT_TYPE, rbx);
|
| + __ CmpObjectType(rax, FIRST_SPEC_OBJECT_TYPE, rbx);
|
| PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
| Split(above_equal, if_true, if_false, fall_through);
|
|
|
| @@ -2640,7 +2575,7 @@
|
| // parameter count in rax.
|
| VisitForAccumulatorValue(args->at(0));
|
| __ movq(rdx, rax);
|
| - __ Move(rax, Smi::FromInt(scope()->num_parameters()));
|
| + __ Move(rax, Smi::FromInt(info_->scope()->num_parameters()));
|
| ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
|
| __ CallStub(&stub);
|
| context()->Plug(rax);
|
| @@ -2652,7 +2587,7 @@
|
|
|
| Label exit;
|
| // Get the number of formal parameters.
|
| - __ Move(rax, Smi::FromInt(scope()->num_parameters()));
|
| + __ Move(rax, Smi::FromInt(info_->scope()->num_parameters()));
|
|
|
| // Check if the calling frame is an arguments adaptor frame.
|
| __ movq(rbx, Operand(rbp, StandardFrameConstants::kCallerFPOffset));
|
| @@ -2681,16 +2616,18 @@
|
|
|
| // Check that the object is a JS object but take special care of JS
|
| // functions to make sure they have 'Function' as their class.
|
| - __ CmpObjectType(rax, FIRST_JS_OBJECT_TYPE, rax); // Map is now in rax.
|
| + __ CmpObjectType(rax, FIRST_SPEC_OBJECT_TYPE, rax);
|
| + // Map is now in rax.
|
| __ j(below, &null);
|
|
|
| - // As long as JS_FUNCTION_TYPE is the last instance type and it is
|
| - // right after LAST_JS_OBJECT_TYPE, we can avoid checking for
|
| - // LAST_JS_OBJECT_TYPE.
|
| - ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
|
| - ASSERT(JS_FUNCTION_TYPE == LAST_JS_OBJECT_TYPE + 1);
|
| - __ CmpInstanceType(rax, JS_FUNCTION_TYPE);
|
| - __ j(equal, &function);
|
| + // As long as LAST_CALLABLE_SPEC_OBJECT_TYPE is the last instance type, and
|
| + // FIRST_CALLABLE_SPEC_OBJECT_TYPE comes right after
|
| + // LAST_NONCALLABLE_SPEC_OBJECT_TYPE, we can avoid checking for the latter.
|
| + STATIC_ASSERT(LAST_TYPE == LAST_CALLABLE_SPEC_OBJECT_TYPE);
|
| + STATIC_ASSERT(FIRST_CALLABLE_SPEC_OBJECT_TYPE ==
|
| + LAST_NONCALLABLE_SPEC_OBJECT_TYPE + 1);
|
| + __ CmpInstanceType(rax, FIRST_CALLABLE_SPEC_OBJECT_TYPE);
|
| + __ j(above_equal, &function);
|
|
|
| // Check if the constructor in the map is a function.
|
| __ movq(rax, FieldOperand(rax, Map::kConstructorOffset));
|
| @@ -3073,7 +3010,8 @@
|
| // InvokeFunction requires the function in rdi. Move it in there.
|
| __ movq(rdi, result_register());
|
| ParameterCount count(arg_count);
|
| - __ InvokeFunction(rdi, count, CALL_FUNCTION);
|
| + __ InvokeFunction(rdi, count, CALL_FUNCTION,
|
| + NullCallWrapper(), CALL_AS_METHOD);
|
| __ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| context()->Plug(rax);
|
| }
|
| @@ -3349,9 +3287,7 @@
|
| __ j(not_equal, &bailout);
|
|
|
| // Check that the array has fast elements.
|
| - __ testb(FieldOperand(scratch, Map::kBitField2Offset),
|
| - Immediate(1 << Map::kHasFastElements));
|
| - __ j(zero, &bailout);
|
| + __ CheckFastElements(scratch, &bailout);
|
|
|
| // Array has fast elements, so its length must be a smi.
|
| // If the array has length zero, return the empty string.
|
| @@ -3597,6 +3533,39 @@
|
| }
|
|
|
|
|
| +void FullCodeGenerator::EmitIsNativeOrStrictMode(ZoneList<Expression*>* args) {
|
| + ASSERT(args->length() == 1);
|
| +
|
| + // Load the function into rax.
|
| + VisitForAccumulatorValue(args->at(0));
|
| +
|
| + // Prepare for the test.
|
| + Label materialize_true, materialize_false;
|
| + Label* if_true = NULL;
|
| + Label* if_false = NULL;
|
| + Label* fall_through = NULL;
|
| + context()->PrepareTest(&materialize_true, &materialize_false,
|
| + &if_true, &if_false, &fall_through);
|
| +
|
| + // Test for strict mode function.
|
| + __ movq(rdx, FieldOperand(rax, JSFunction::kSharedFunctionInfoOffset));
|
| + __ testb(FieldOperand(rdx, SharedFunctionInfo::kStrictModeByteOffset),
|
| + Immediate(1 << SharedFunctionInfo::kStrictModeBitWithinByte));
|
| + __ j(not_equal, if_true);
|
| +
|
| + // Test for native function.
|
| + __ testb(FieldOperand(rdx, SharedFunctionInfo::kNativeByteOffset),
|
| + Immediate(1 << SharedFunctionInfo::kNativeBitWithinByte));
|
| + __ j(not_equal, if_true);
|
| +
|
| + // Not native or strict-mode function.
|
| + __ jmp(if_false);
|
| +
|
| + PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
| + context()->Plug(if_true, if_false);
|
| +}
|
| +
|
| +
|
| void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
| Handle<String> name = expr->name();
|
| if (name->length() > 0 && name->Get(0) == '_') {
|
| @@ -3627,7 +3596,7 @@
|
| RelocInfo::Mode mode = RelocInfo::CODE_TARGET;
|
| Handle<Code> ic =
|
| ISOLATE->stub_cache()->ComputeCallInitialize(arg_count, in_loop, mode);
|
| - EmitCallIC(ic, mode, expr->id());
|
| + __ call(ic, mode, expr->id());
|
| // Restore context register.
|
| __ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
| } else {
|
| @@ -3730,8 +3699,7 @@
|
| Comment cmt(masm_, "[ UnaryOperation (ADD)");
|
| VisitForAccumulatorValue(expr->expression());
|
| Label no_conversion;
|
| - Condition is_smi = masm_->CheckSmi(result_register());
|
| - __ j(is_smi, &no_conversion);
|
| + __ JumpIfSmi(result_register(), &no_conversion);
|
| ToNumberStub convert_stub;
|
| __ CallStub(&convert_stub);
|
| __ bind(&no_conversion);
|
| @@ -3765,7 +3733,7 @@
|
| // accumulator register rax.
|
| VisitForAccumulatorValue(expr->expression());
|
| SetSourcePosition(expr->position());
|
| - EmitCallIC(stub.GetCode(), NULL, expr->id());
|
| + __ call(stub.GetCode(), RelocInfo::CODE_TARGET, expr->id());
|
| context()->Plug(rax);
|
| }
|
|
|
| @@ -3782,7 +3750,7 @@
|
| }
|
|
|
| // Expression can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* prop = expr->expression()->AsProperty();
|
| @@ -3808,16 +3776,8 @@
|
| __ push(rax); // Copy of receiver, needed for later store.
|
| EmitNamedPropertyLoad(prop);
|
| } else {
|
| - if (prop->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = prop->obj()->AsVariableProxy();
|
| - MemOperand slot_operand =
|
| - EmitSlotSearch(obj_proxy->var()->AsSlot(), rcx);
|
| - __ push(slot_operand);
|
| - __ Move(rax, prop->key()->AsLiteral()->handle());
|
| - } else {
|
| - VisitForStackValue(prop->obj());
|
| - VisitForAccumulatorValue(prop->key());
|
| - }
|
| + VisitForStackValue(prop->obj());
|
| + VisitForAccumulatorValue(prop->key());
|
| __ movq(rdx, Operand(rsp, 0)); // Leave receiver on stack
|
| __ push(rax); // Copy of key, needed for later store.
|
| EmitKeyedPropertyLoad(prop);
|
| @@ -3834,9 +3794,7 @@
|
|
|
| // Call ToNumber only if operand is not a smi.
|
| Label no_conversion;
|
| - Condition is_smi;
|
| - is_smi = masm_->CheckSmi(rax);
|
| - __ j(is_smi, &no_conversion, Label::kNear);
|
| + __ JumpIfSmi(rax, &no_conversion, Label::kNear);
|
| ToNumberStub convert_stub;
|
| __ CallStub(&convert_stub);
|
| __ bind(&no_conversion);
|
| @@ -3896,7 +3854,8 @@
|
| __ movq(rdx, rax);
|
| __ Move(rax, Smi::FromInt(1));
|
| }
|
| - EmitCallIC(stub.GetCode(), &patch_site, expr->CountId());
|
| + __ call(stub.GetCode(), RelocInfo::CODE_TARGET, expr->CountId());
|
| + patch_site.EmitPatchInfo();
|
| __ bind(&done);
|
|
|
| // Store the value returned in rax.
|
| @@ -3929,7 +3888,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->StoreIC_Initialize_Strict()
|
| : isolate()->builtins()->StoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
| PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
| if (expr->is_postfix()) {
|
| if (!context()->IsEffect()) {
|
| @@ -3946,7 +3905,7 @@
|
| Handle<Code> ic = is_strict_mode()
|
| ? isolate()->builtins()->KeyedStoreIC_Initialize_Strict()
|
| : isolate()->builtins()->KeyedStoreIC_Initialize();
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
| PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
| if (expr->is_postfix()) {
|
| if (!context()->IsEffect()) {
|
| @@ -3973,7 +3932,7 @@
|
| Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
| // Use a regular load, not a contextual load, to avoid a reference
|
| // error.
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET, AstNode::kNoNumber);
|
| + __ call(ic);
|
| PrepareForBailout(expr, TOS_REG);
|
| context()->Plug(rax);
|
| } else if (proxy != NULL &&
|
| @@ -3996,30 +3955,18 @@
|
| context()->Plug(rax);
|
| } else {
|
| // This expression cannot throw a reference error at the top level.
|
| - context()->HandleExpression(expr);
|
| + VisitInCurrentContext(expr);
|
| }
|
| }
|
|
|
|
|
| -bool FullCodeGenerator::TryLiteralCompare(Token::Value op,
|
| - Expression* left,
|
| - Expression* right,
|
| - Label* if_true,
|
| - Label* if_false,
|
| - Label* fall_through) {
|
| - if (op != Token::EQ && op != Token::EQ_STRICT) return false;
|
| -
|
| - // Check for the pattern: typeof <expression> == <string literal>.
|
| - Literal* right_literal = right->AsLiteral();
|
| - if (right_literal == NULL) return false;
|
| - Handle<Object> right_literal_value = right_literal->handle();
|
| - if (!right_literal_value->IsString()) return false;
|
| - UnaryOperation* left_unary = left->AsUnaryOperation();
|
| - if (left_unary == NULL || left_unary->op() != Token::TYPEOF) return false;
|
| - Handle<String> check = Handle<String>::cast(right_literal_value);
|
| -
|
| +void FullCodeGenerator::EmitLiteralCompareTypeof(Expression* expr,
|
| + Handle<String> check,
|
| + Label* if_true,
|
| + Label* if_false,
|
| + Label* fall_through) {
|
| { AccumulatorValueContext context(this);
|
| - VisitForTypeofValue(left_unary->expression());
|
| + VisitForTypeofValue(expr);
|
| }
|
| PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
|
|
| @@ -4052,16 +3999,17 @@
|
| Split(not_zero, if_true, if_false, fall_through);
|
| } else if (check->Equals(isolate()->heap()->function_symbol())) {
|
| __ JumpIfSmi(rax, if_false);
|
| - __ CmpObjectType(rax, FIRST_FUNCTION_CLASS_TYPE, rdx);
|
| + STATIC_ASSERT(LAST_CALLABLE_SPEC_OBJECT_TYPE == LAST_TYPE);
|
| + __ CmpObjectType(rax, FIRST_CALLABLE_SPEC_OBJECT_TYPE, rdx);
|
| Split(above_equal, if_true, if_false, fall_through);
|
| } else if (check->Equals(isolate()->heap()->object_symbol())) {
|
| __ JumpIfSmi(rax, if_false);
|
| __ CompareRoot(rax, Heap::kNullValueRootIndex);
|
| __ j(equal, if_true);
|
| - __ CmpObjectType(rax, FIRST_JS_OBJECT_TYPE, rdx);
|
| + __ CmpObjectType(rax, FIRST_NONCALLABLE_SPEC_OBJECT_TYPE, rdx);
|
| __ j(below, if_false);
|
| - __ CmpInstanceType(rdx, FIRST_FUNCTION_CLASS_TYPE);
|
| - __ j(above_equal, if_false);
|
| + __ CmpInstanceType(rdx, LAST_NONCALLABLE_SPEC_OBJECT_TYPE);
|
| + __ j(above, if_false);
|
| // Check for undetectable objects => false.
|
| __ testb(FieldOperand(rdx, Map::kBitFieldOffset),
|
| Immediate(1 << Map::kIsUndetectable));
|
| @@ -4069,8 +4017,18 @@
|
| } else {
|
| if (if_false != fall_through) __ jmp(if_false);
|
| }
|
| +}
|
|
|
| - return true;
|
| +
|
| +void FullCodeGenerator::EmitLiteralCompareUndefined(Expression* expr,
|
| + Label* if_true,
|
| + Label* if_false,
|
| + Label* fall_through) {
|
| + VisitForAccumulatorValue(expr);
|
| + PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
| +
|
| + __ CompareRoot(rax, Heap::kUndefinedValueRootIndex);
|
| + Split(equal, if_true, if_false, fall_through);
|
| }
|
|
|
|
|
| @@ -4089,14 +4047,12 @@
|
|
|
| // First we try a fast inlined version of the compare when one of
|
| // the operands is a literal.
|
| - Token::Value op = expr->op();
|
| - Expression* left = expr->left();
|
| - Expression* right = expr->right();
|
| - if (TryLiteralCompare(op, left, right, if_true, if_false, fall_through)) {
|
| + if (TryLiteralCompare(expr, if_true, if_false, fall_through)) {
|
| context()->Plug(if_true, if_false);
|
| return;
|
| }
|
|
|
| + Token::Value op = expr->op();
|
| VisitForStackValue(expr->left());
|
| switch (op) {
|
| case Token::IN:
|
| @@ -4171,7 +4127,8 @@
|
| // Record position and call the compare IC.
|
| SetSourcePosition(expr->position());
|
| Handle<Code> ic = CompareIC::GetUninitialized(op);
|
| - EmitCallIC(ic, &patch_site, expr->id());
|
| + __ call(ic, RelocInfo::CODE_TARGET, expr->id());
|
| + patch_site.EmitPatchInfo();
|
|
|
| PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false);
|
| __ testq(rax, rax);
|
| @@ -4203,8 +4160,7 @@
|
| __ j(equal, if_true);
|
| __ CompareRoot(rax, Heap::kUndefinedValueRootIndex);
|
| __ j(equal, if_true);
|
| - Condition is_smi = masm_->CheckSmi(rax);
|
| - __ j(is_smi, if_false);
|
| + __ JumpIfSmi(rax, if_false);
|
| // It can be an undetectable object.
|
| __ movq(rdx, FieldOperand(rax, HeapObject::kMapOffset));
|
| __ testb(FieldOperand(rdx, Map::kBitFieldOffset),
|
| @@ -4231,59 +4187,6 @@
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitCallIC(Handle<Code> ic,
|
| - RelocInfo::Mode mode,
|
| - unsigned ast_id) {
|
| - ASSERT(mode == RelocInfo::CODE_TARGET ||
|
| - mode == RelocInfo::CODE_TARGET_CONTEXT);
|
| - Counters* counters = isolate()->counters();
|
| - switch (ic->kind()) {
|
| - case Code::LOAD_IC:
|
| - __ IncrementCounter(counters->named_load_full(), 1);
|
| - break;
|
| - case Code::KEYED_LOAD_IC:
|
| - __ IncrementCounter(counters->keyed_load_full(), 1);
|
| - break;
|
| - case Code::STORE_IC:
|
| - __ IncrementCounter(counters->named_store_full(), 1);
|
| - break;
|
| - case Code::KEYED_STORE_IC:
|
| - __ IncrementCounter(counters->keyed_store_full(), 1);
|
| - default:
|
| - break;
|
| - }
|
| - __ call(ic, mode, ast_id);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::EmitCallIC(Handle<Code> ic,
|
| - JumpPatchSite* patch_site,
|
| - unsigned ast_id) {
|
| - Counters* counters = isolate()->counters();
|
| - switch (ic->kind()) {
|
| - case Code::LOAD_IC:
|
| - __ IncrementCounter(counters->named_load_full(), 1);
|
| - break;
|
| - case Code::KEYED_LOAD_IC:
|
| - __ IncrementCounter(counters->keyed_load_full(), 1);
|
| - break;
|
| - case Code::STORE_IC:
|
| - __ IncrementCounter(counters->named_store_full(), 1);
|
| - break;
|
| - case Code::KEYED_STORE_IC:
|
| - __ IncrementCounter(counters->keyed_store_full(), 1);
|
| - default:
|
| - break;
|
| - }
|
| - __ call(ic, RelocInfo::CODE_TARGET, ast_id);
|
| - if (patch_site != NULL && patch_site->is_bound()) {
|
| - patch_site->EmitPatchInfo();
|
| - } else {
|
| - __ nop(); // Signals no inlined code.
|
| - }
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::StoreToFrameField(int frame_offset, Register value) {
|
| ASSERT(IsAligned(frame_offset, kPointerSize));
|
| __ movq(Operand(rbp, frame_offset), value);
|
| @@ -4295,6 +4198,26 @@
|
| }
|
|
|
|
|
| +void FullCodeGenerator::PushFunctionArgumentForContextAllocation() {
|
| + Scope* declaration_scope = scope()->DeclarationScope();
|
| + if (declaration_scope->is_global_scope()) {
|
| + // Contexts nested in the global context have a canonical empty function
|
| + // as their closure, not the anonymous closure containing the global
|
| + // code. Pass a smi sentinel and let the runtime look up the empty
|
| + // function.
|
| + __ Push(Smi::FromInt(0));
|
| + } else if (declaration_scope->is_eval_scope()) {
|
| + // Contexts created by a call to eval have the same closure as the
|
| + // context calling eval, not the anonymous closure containing the eval
|
| + // code. Fetch it from the context.
|
| + __ push(ContextOperand(rsi, Context::CLOSURE_INDEX));
|
| + } else {
|
| + ASSERT(declaration_scope->is_function_scope());
|
| + __ push(Operand(rbp, JavaScriptFrameConstants::kFunctionOffset));
|
| + }
|
| +}
|
| +
|
| +
|
| // ----------------------------------------------------------------------------
|
| // Non-local control flow support.
|
|
|
| @@ -4303,11 +4226,11 @@
|
| ASSERT(!result_register().is(rdx));
|
| ASSERT(!result_register().is(rcx));
|
| // Cook return address on top of stack (smi encoded Code* delta)
|
| - __ movq(rdx, Operand(rsp, 0));
|
| + __ pop(rdx);
|
| __ Move(rcx, masm_->CodeObject());
|
| __ subq(rdx, rcx);
|
| __ Integer32ToSmi(rdx, rdx);
|
| - __ movq(Operand(rsp, 0), rdx);
|
| + __ push(rdx);
|
| // Store result register while executing finally block.
|
| __ push(result_register());
|
| }
|
| @@ -4316,16 +4239,13 @@
|
| void FullCodeGenerator::ExitFinallyBlock() {
|
| ASSERT(!result_register().is(rdx));
|
| ASSERT(!result_register().is(rcx));
|
| - // Restore result register from stack.
|
| __ pop(result_register());
|
| // Uncook return address.
|
| - __ movq(rdx, Operand(rsp, 0));
|
| + __ pop(rdx);
|
| __ SmiToInteger32(rdx, rdx);
|
| __ Move(rcx, masm_->CodeObject());
|
| __ addq(rdx, rcx);
|
| - __ movq(Operand(rsp, 0), rdx);
|
| - // And return.
|
| - __ ret(0);
|
| + __ jmp(rdx);
|
| }
|
|
|
|
|
|
|