Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index f2d98eb052893a09b2e9eaea4f25af6c5a01bb1d..e53c4642910f3ea9a9fb3ed9f638df839ab7d417 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -1663,10 +1663,10 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) { |
ASSERT(!CompileTimeValue::IsCompileTimeValue(value)); |
// Fall through. |
case ObjectLiteral::Property::COMPUTED: |
- if (key->handle()->IsInternalizedString()) { |
+ if (key->value()->IsInternalizedString()) { |
if (property->emit_store()) { |
VisitForAccumulatorValue(value); |
- __ Move(rcx, key->handle()); |
+ __ Move(rcx, key->value()); |
__ movq(rdx, Operand(rsp, 0)); |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->StoreIC_Initialize() |
@@ -2247,7 +2247,7 @@ void FullCodeGenerator::EmitCreateIteratorResult(bool done) { |
void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) { |
SetSourcePosition(prop->position()); |
Literal* key = prop->key()->AsLiteral(); |
- __ Move(rcx, key->handle()); |
+ __ Move(rcx, key->value()); |
Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize(); |
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId()); |
} |
@@ -2366,7 +2366,7 @@ void FullCodeGenerator::EmitAssignment(Expression* expr) { |
VisitForAccumulatorValue(prop->obj()); |
__ movq(rdx, rax); |
__ pop(rax); // Restore value. |
- __ Move(rcx, prop->key()->AsLiteral()->handle()); |
+ __ Move(rcx, prop->key()->AsLiteral()->value()); |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->StoreIC_Initialize() |
: isolate()->builtins()->StoreIC_Initialize_Strict(); |
@@ -2489,7 +2489,7 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) { |
// Record source code position before IC call. |
SetSourcePosition(expr->position()); |
- __ Move(rcx, prop->key()->AsLiteral()->handle()); |
+ __ Move(rcx, prop->key()->AsLiteral()->value()); |
__ pop(rdx); |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->StoreIC_Initialize() |
@@ -2749,7 +2749,7 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
} |
if (property->key()->IsPropertyName()) { |
EmitCallWithIC(expr, |
- property->key()->AsLiteral()->handle(), |
+ property->key()->AsLiteral()->value(), |
RelocInfo::CODE_TARGET); |
} else { |
EmitKeyedCallWithIC(expr, property->key()); |
@@ -3354,7 +3354,7 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
ASSERT(args->length() == 2); |
ASSERT_NE(NULL, args->at(1)->AsLiteral()); |
- Smi* index = Smi::cast(*(args->at(1)->AsLiteral()->handle())); |
+ Smi* index = Smi::cast(*(args->at(1)->AsLiteral()->value())); |
VisitForAccumulatorValue(args->at(0)); // Load the object. |
@@ -3775,7 +3775,7 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) { |
ASSERT_EQ(2, args->length()); |
ASSERT_NE(NULL, args->at(0)->AsLiteral()); |
- int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value(); |
+ int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->value()))->value(); |
Handle<FixedArray> jsfunction_result_caches( |
isolate()->native_context()->jsfunction_result_caches()); |
@@ -4513,7 +4513,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
} |
break; |
case NAMED_PROPERTY: { |
- __ Move(rcx, prop->key()->AsLiteral()->handle()); |
+ __ Move(rcx, prop->key()->AsLiteral()->value()); |
__ pop(rdx); |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->StoreIC_Initialize() |