| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index c12e0b4324459327897b66d4eae66a0988d32ab2..0dd4bc66fedc7c7164f0d28b3b784757ca56716c 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -990,17 +990,17 @@ void LCodeGen::DoCallStub(LCallStub* instr) {
|
| switch (instr->hydrogen()->major_key()) {
|
| case CodeStub::RegExpExec: {
|
| RegExpExecStub stub(isolate());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| break;
|
| }
|
| case CodeStub::SubString: {
|
| SubStringStub stub(isolate());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| break;
|
| }
|
| case CodeStub::StringCompare: {
|
| StringCompareStub stub(isolate());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| break;
|
| }
|
| default:
|
| @@ -2030,7 +2030,7 @@ void LCodeGen::DoArithmeticT(LArithmeticT* instr) {
|
| ASSERT(ToRegister(instr->result()).is(rax));
|
|
|
| BinaryOpICStub stub(isolate(), instr->op(), NO_OVERWRITE);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
|
|
| @@ -2626,7 +2626,7 @@ void LCodeGen::DoInstanceOf(LInstanceOf* instr) {
|
| InstanceofStub stub(isolate(), InstanceofStub::kNoFlags);
|
| __ Push(ToRegister(instr->left()));
|
| __ Push(ToRegister(instr->right()));
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| Label true_value, done;
|
| __ testp(rax, rax);
|
| __ j(zero, &true_value, Label::kNear);
|
| @@ -2724,7 +2724,7 @@ void LCodeGen::DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
|
| // safepoint with two arguments because stub is going to
|
| // remove the third argument from the stack before jumping
|
| // to instanceof builtin on the slow path.
|
| - CallCodeGeneric(stub.GetCode(isolate()),
|
| + CallCodeGeneric(stub.GetCode(),
|
| RelocInfo::CODE_TARGET,
|
| instr,
|
| RECORD_SAFEPOINT_WITH_REGISTERS,
|
| @@ -3909,7 +3909,7 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) {
|
|
|
| int arity = instr->arity();
|
| CallFunctionStub stub(isolate(), arity, instr->hydrogen()->function_flags());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
|
|
| @@ -3922,7 +3922,7 @@ void LCodeGen::DoCallNew(LCallNew* instr) {
|
| // No cell in ebx for construct type feedback in optimized code
|
| __ LoadRoot(rbx, Heap::kUndefinedValueRootIndex);
|
| CallConstructStub stub(isolate(), NO_CALL_FUNCTION_FLAGS);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CONSTRUCT_CALL, instr);
|
| }
|
|
|
|
|
| @@ -3941,7 +3941,7 @@ void LCodeGen::DoCallNewArray(LCallNewArray* instr) {
|
|
|
| if (instr->arity() == 0) {
|
| ArrayNoArgumentConstructorStub stub(isolate(), kind, override_mode);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CONSTRUCT_CALL, instr);
|
| } else if (instr->arity() == 1) {
|
| Label done;
|
| if (IsFastPackedElementsKind(kind)) {
|
| @@ -3956,17 +3956,17 @@ void LCodeGen::DoCallNewArray(LCallNewArray* instr) {
|
| ArraySingleArgumentConstructorStub stub(isolate(),
|
| holey_kind,
|
| override_mode);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CONSTRUCT_CALL, instr);
|
| __ jmp(&done, Label::kNear);
|
| __ bind(&packed_case);
|
| }
|
|
|
| ArraySingleArgumentConstructorStub stub(isolate(), kind, override_mode);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CONSTRUCT_CALL, instr);
|
| __ bind(&done);
|
| } else {
|
| ArrayNArgumentsConstructorStub stub(isolate(), kind, override_mode);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CONSTRUCT_CALL, instr);
|
| }
|
| }
|
|
|
| @@ -4438,7 +4438,7 @@ void LCodeGen::DoStringAdd(LStringAdd* instr) {
|
| StringAddStub stub(isolate(),
|
| instr->hydrogen()->flags(),
|
| instr->hydrogen()->pretenure_flag());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| }
|
|
|
|
|
| @@ -5321,7 +5321,7 @@ void LCodeGen::DoFunctionLiteral(LFunctionLiteral* instr) {
|
| instr->hydrogen()->strict_mode(),
|
| instr->hydrogen()->is_generator());
|
| __ Move(rbx, instr->hydrogen()->shared_info());
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| + CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
|
| } else {
|
| __ Push(rsi);
|
| __ Push(instr->hydrogen()->shared_info());
|
|
|