| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index 2a54681990b70abb3d875280a645fe7fd7b2b62d..d22a1f6359b7141c417dddecb563c3e058008351 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2011 the V8 project authors. All rights reserved.
|
| +// Copyright 2012 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -115,6 +115,9 @@ class LCodeGen BASE_EMBEDDED {
|
| void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
|
| Label* map_check);
|
|
|
| + void DoCheckMapCommon(Register reg, Register scratch, Handle<Map> map,
|
| + CompareMapMode mode, LEnvironment* env);
|
| +
|
| // Parallel move support.
|
| void DoParallelMove(LParallelMove* move);
|
| void DoGap(LGap* instr);
|
| @@ -223,8 +226,8 @@ class LCodeGen BASE_EMBEDDED {
|
| Safepoint::DeoptMode mode);
|
| void DeoptimizeIf(Condition cc,
|
| LEnvironment* environment,
|
| - Register src1,
|
| - const Operand& src2);
|
| + Register src1 = zero_reg,
|
| + const Operand& src2 = Operand(zero_reg));
|
|
|
| void AddToTranslation(Translation* translation,
|
| LOperand* op,
|
|
|