| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 87507ff1e43e1b4d51eb545bde7427184798c3d9..007aa17067a9118fba66e2785c7f8cb4cfebdd72 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -38,7 +38,7 @@
|
| // next call: mov(a0, v0). This is not needed on the other architectures.
|
|
|
| #include "code-stubs.h"
|
| -#include "codegen-inl.h"
|
| +#include "codegen.h"
|
| #include "compiler.h"
|
| #include "debug.h"
|
| #include "full-codegen.h"
|
| @@ -368,7 +368,7 @@ void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitInlineSmiBinaryOp(Expression* expr,
|
| +void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
| Token::Value op,
|
| OverwriteMode mode,
|
| Expression* left,
|
| @@ -377,7 +377,8 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(Expression* expr,
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitBinaryOp(Token::Value op,
|
| +void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr,
|
| + Token::Value op,
|
| OverwriteMode mode) {
|
| UNIMPLEMENTED_MIPS();
|
| }
|
| @@ -423,7 +424,7 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr,
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitCallWithStub(Call* expr) {
|
| +void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) {
|
| UNIMPLEMENTED_MIPS();
|
| }
|
|
|
| @@ -692,7 +693,9 @@ Register FullCodeGenerator::context_register() {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitCallIC(Handle<Code> ic, RelocInfo::Mode mode) {
|
| +void FullCodeGenerator::EmitCallIC(Handle<Code> ic,
|
| + RelocInfo::Mode mode,
|
| + unsigned ast_id) {
|
| UNIMPLEMENTED_MIPS();
|
| }
|
|
|
|
|