Index: src/a64/full-codegen-a64.cc |
diff --git a/src/a64/full-codegen-a64.cc b/src/a64/full-codegen-a64.cc |
index 8dc6da932e21d7b67608fae30b903b18987a0db7..57a048a09ab51304ab64f5eeef8f9503686ffa08 100644 |
--- a/src/a64/full-codegen-a64.cc |
+++ b/src/a64/full-codegen-a64.cc |
@@ -129,8 +129,6 @@ void FullCodeGenerator::Generate() { |
handler_table_ = |
isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED); |
- InitializeFeedbackVector(); |
- |
profiling_counter_ = isolate()->factory()->NewCell( |
Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate())); |
SetFunctionPosition(function()); |
@@ -1162,12 +1160,8 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
// We got a fixed array in register x0. Iterate through that. |
__ Bind(&fixed_array); |
- Handle<Object> feedback = Handle<Object>( |
- Smi::FromInt(TypeFeedbackInfo::kForInFastCaseMarker), |
- isolate()); |
- StoreFeedbackVectorSlot(slot, feedback); |
__ LoadObject(x1, FeedbackVector()); |
- __ Mov(x10, Operand(Smi::FromInt(TypeFeedbackInfo::kForInSlowCaseMarker))); |
+ __ Mov(x10, Operand(TypeFeedbackInfo::MegamorphicSentinel(isolate()))); |
__ Str(x10, FieldMemOperand(x1, FixedArray::OffsetOfElementAt(slot))); |
__ Mov(x1, Operand(Smi::FromInt(1))); // Smi indicates slow check. |
@@ -2416,9 +2410,6 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr) { |
// Record source position for debugger. |
SetSourcePosition(expr->position()); |
- Handle<Object> uninitialized = |
- TypeFeedbackInfo::UninitializedSentinel(isolate()); |
- StoreFeedbackVectorSlot(expr->CallFeedbackSlot(), uninitialized); |
__ LoadObject(x2, FeedbackVector()); |
__ Mov(x3, Operand(Smi::FromInt(expr->CallFeedbackSlot()))); |
@@ -2615,9 +2606,6 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) { |
__ Peek(x1, arg_count * kXRegSizeInBytes); |
// Record call targets in unoptimized code. |
- Handle<Object> uninitialized = |
- TypeFeedbackInfo::UninitializedSentinel(isolate()); |
- StoreFeedbackVectorSlot(expr->CallNewFeedbackSlot(), uninitialized); |
__ LoadObject(x2, FeedbackVector()); |
__ Mov(x3, Operand(Smi::FromInt(expr->CallNewFeedbackSlot()))); |