Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 009df374d36ad079d5ffebda0979aba3de7a7c97..25cc823be229225215c39ca859bb5d0a53718ddf 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -292,6 +292,13 @@ void LTypeofIsAndBranch::PrintDataTo(StringStream* stream) { |
} |
+void LInnerAllocatedObject::PrintDataTo(StringStream* stream) { |
+ stream->Add(" = "); |
+ base_object()->PrintTo(stream); |
+ stream->Add(" + %d", offset()); |
+} |
+ |
+ |
void LCallConstantFunction::PrintDataTo(StringStream* stream) { |
stream->Add("#%d / ", arity()); |
} |
@@ -1024,6 +1031,15 @@ LInstruction* LChunkBuilder::DoPushArgument(HPushArgument* instr) { |
} |
+LInstruction* LChunkBuilder::DoInnerAllocatedObject( |
+ HInnerAllocatedObject* inner_object) { |
+ LOperand* base_object = UseRegisterAtStart(inner_object->base_object()); |
+ LInnerAllocatedObject* result = |
+ new(zone()) LInnerAllocatedObject(base_object); |
+ return DefineAsRegister(result); |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoThisFunction(HThisFunction* instr) { |
return instr->HasNoUses() |
? NULL |