Index: src/arm/lithium-codegen-arm.cc |
=================================================================== |
--- src/arm/lithium-codegen-arm.cc (revision 5982) |
+++ src/arm/lithium-codegen-arm.cc (working copy) |
@@ -1213,6 +1213,26 @@ |
} |
+Condition LCodeGen::EmitIsObject(Register input, |
+ Register temp1, |
+ Register temp2, |
+ Label* is_not_object, |
+ Label* is_object) { |
+ Abort("EmitIsObject unimplemented."); |
+ return ne; |
+} |
+ |
+ |
+void LCodeGen::DoIsObject(LIsObject* instr) { |
+ Abort("DoIsObject unimplemented."); |
+} |
+ |
+ |
+void LCodeGen::DoIsObjectAndBranch(LIsObjectAndBranch* instr) { |
+ Abort("DoIsObjectAndBranch unimplemented."); |
+} |
+ |
+ |
void LCodeGen::DoIsSmi(LIsSmi* instr) { |
ASSERT(instr->hydrogen()->value()->representation().IsTagged()); |
Register result = ToRegister(instr->result()); |