Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index 5babef0c61a7e9757c37b3e894c7a98cd4d7655b..9f9f56c5f7adb1bbe59ffc9f2115a7e6eb3051b3 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -6,6 +6,7 @@ |
#if V8_TARGET_ARCH_X64 |
+#include "src/code-factory.h" |
#include "src/code-stubs.h" |
#include "src/codegen.h" |
#include "src/compiler.h" |
@@ -1010,7 +1011,8 @@ void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { |
// Record position before stub call for type feedback. |
SetSourcePosition(clause->position()); |
- Handle<Code> ic = CompareIC::GetUninitialized(isolate(), Token::EQ_STRICT); |
+ Handle<Code> ic = |
+ CodeFactory::CompareIC(isolate(), Token::EQ_STRICT).code(); |
CallIC(ic, clause->CompareId()); |
patch_site.EmitPatchInfo(); |
@@ -2057,7 +2059,7 @@ void FullCodeGenerator::VisitYield(Yield* expr) { |
__ Move(VectorLoadICDescriptor::SlotRegister(), |
Smi::FromInt(expr->KeyedLoadFeedbackSlot())); |
} |
- Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize(); |
+ Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate()).code(); |
CallIC(ic, TypeFeedbackId::None()); |
__ movp(rdi, rax); |
__ movp(Operand(rsp, 2 * kPointerSize), rdi); |
@@ -2262,7 +2264,7 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) { |
void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) { |
SetSourcePosition(prop->position()); |
- Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize(); |
+ Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate()).code(); |
if (FLAG_vector_ics) { |
__ Move(VectorLoadICDescriptor::SlotRegister(), |
Smi::FromInt(prop->PropertyFeedbackSlot())); |
@@ -2290,8 +2292,8 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
__ bind(&stub_call); |
__ movp(rax, rcx); |
- BinaryOpICStub stub(isolate(), op, mode); |
- CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId()); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); |
+ CallIC(code, expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ jmp(&done, Label::kNear); |
@@ -2338,9 +2340,9 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, |
Token::Value op, |
OverwriteMode mode) { |
__ Pop(rdx); |
- BinaryOpICStub stub(isolate(), op, mode); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); |
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code. |
- CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId()); |
+ CallIC(code, expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
context()->Plug(rax); |
} |
@@ -2384,9 +2386,8 @@ void FullCodeGenerator::EmitAssignment(Expression* expr) { |
__ Move(StoreDescriptor::NameRegister(), rax); |
__ Pop(StoreDescriptor::ReceiverRegister()); |
__ Pop(StoreDescriptor::ValueRegister()); // Restore value. |
- Handle<Code> ic = strict_mode() == SLOPPY |
- ? isolate()->builtins()->KeyedStoreIC_Initialize() |
- : isolate()->builtins()->KeyedStoreIC_Initialize_Strict(); |
+ Handle<Code> ic = |
+ CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); |
CallIC(ic); |
break; |
} |
@@ -2498,9 +2499,7 @@ void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) { |
DCHECK(StoreDescriptor::ValueRegister().is(rax)); |
// Record source code position before IC call. |
SetSourcePosition(expr->position()); |
- Handle<Code> ic = strict_mode() == SLOPPY |
- ? isolate()->builtins()->KeyedStoreIC_Initialize() |
- : isolate()->builtins()->KeyedStoreIC_Initialize_Strict(); |
+ Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); |
CallIC(ic, expr->AssignmentFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
@@ -4333,8 +4332,9 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
__ bind(&stub_call); |
__ movp(rdx, rax); |
__ Move(rax, Smi::FromInt(1)); |
- BinaryOpICStub stub(isolate(), expr->binary_op(), NO_OVERWRITE); |
- CallIC(stub.GetCode(), expr->CountBinOpFeedbackId()); |
+ Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), expr->binary_op(), |
+ NO_OVERWRITE).code(); |
+ CallIC(code, expr->CountBinOpFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ bind(&done); |
@@ -4380,9 +4380,8 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
case KEYED_PROPERTY: { |
__ Pop(StoreDescriptor::NameRegister()); |
__ Pop(StoreDescriptor::ReceiverRegister()); |
- Handle<Code> ic = strict_mode() == SLOPPY |
- ? isolate()->builtins()->KeyedStoreIC_Initialize() |
- : isolate()->builtins()->KeyedStoreIC_Initialize_Strict(); |
+ Handle<Code> ic = |
+ CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); |
CallIC(ic, expr->CountStoreFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
if (expr->is_postfix()) { |
@@ -4570,7 +4569,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) { |
// Record position and call the compare IC. |
SetSourcePosition(expr->position()); |
- Handle<Code> ic = CompareIC::GetUninitialized(isolate(), op); |
+ Handle<Code> ic = CodeFactory::CompareIC(isolate(), op).code(); |
CallIC(ic, expr->CompareOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |