Index: src/mips/codegen-mips.cc |
=================================================================== |
--- src/mips/codegen-mips.cc (revision 4102) |
+++ src/mips/codegen-mips.cc (working copy) |
@@ -31,6 +31,7 @@ |
#include "bootstrapper.h" |
#include "codegen-inl.h" |
#include "debug.h" |
+#include "ic-inl.h" |
#include "parser.h" |
#include "register-allocator-inl.h" |
#include "runtime.h" |
@@ -297,6 +298,16 @@ |
} |
+void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) { |
+ UNIMPLEMENTED_MIPS(); |
+} |
+ |
+ |
+void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) { |
+ UNIMPLEMENTED_MIPS(); |
+} |
+ |
+ |
void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) { |
UNIMPLEMENTED_MIPS(); |
} |
@@ -335,7 +346,7 @@ |
} |
-void CodeGenerator::GenerateArgumentsAccess(ZoneList<Expression*>* args) { |
+void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) { |
UNIMPLEMENTED_MIPS(); |
} |
@@ -429,6 +440,11 @@ |
#define __ ACCESS_MASM(masm) |
+Handle<Code> GetBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info) { |
+ return Handle<Code>::null(); |
+} |
+ |
+ |
// On entry a0 and a1 are the things to be compared. On exit v0 is 0, |
// positive or negative to indicate the result of the comparison. |
void CompareStub::Generate(MacroAssembler* masm) { |