| Index: src/x64/lithium-codegen-x64.h
|
| diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h
|
| index ac238d03fadb1c14eb1f63ac1f7206e3e78b83a0..53d26460b3233d5da8193878a4ccff02cc4b2014 100644
|
| --- a/src/x64/lithium-codegen-x64.h
|
| +++ b/src/x64/lithium-codegen-x64.h
|
| @@ -153,6 +153,10 @@ 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.
|
| bool GeneratePrologue();
|
| @@ -287,10 +291,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
|
|
|