| Index: src/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
|
| index 514b42e427b1807b0545429a5ee07023157a7b39..638f80c35493e39cf517b263f4be1bbb4aff265b 100644
|
| --- a/src/ia32/lithium-codegen-ia32.h
|
| +++ b/src/ia32/lithium-codegen-ia32.h
|
| @@ -198,6 +198,9 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
|
|
|
| + void SaveCallerDoubles();
|
| + void RestoreCallerDoubles();
|
| +
|
| // Code generation passes. Returns true if code generation should
|
| // continue.
|
| void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE;
|
| @@ -347,10 +350,7 @@ class LCodeGen: public LCodeGenBase {
|
| // Emits optimized code for typeof x == "y". Modifies input register.
|
| // Returns the condition on which a final split to
|
| // true and false label should be made, to optimize fallthrough.
|
| - Condition EmitTypeofIs(Label* true_label,
|
| - Label* false_label,
|
| - Register input,
|
| - Handle<String> type_name);
|
| + Condition EmitTypeofIs(LTypeofIsAndBranch* instr, Register input);
|
|
|
| // Emits optimized code for %_IsObject(x). Preserves input register.
|
| // Returns the condition on which a final split to
|
|
|