| Index: src/x64/code-stubs-x64.cc | 
| =================================================================== | 
| --- src/x64/code-stubs-x64.cc	(revision 9304) | 
| +++ src/x64/code-stubs-x64.cc	(working copy) | 
| @@ -3324,6 +3324,18 @@ | 
| } | 
|  | 
|  | 
| +bool CEntryStub::CompilingCallsToThisStubIsGCSafe() { | 
| +  return result_size_ == 1; | 
| +} | 
| + | 
| + | 
| +void CodeStub::GenerateStubsAheadOfTime() { | 
| +  CEntryStub save_doubles(1); | 
| +  save_doubles.SaveDoubles(); | 
| +  save_doubles.GetCode(); | 
| +} | 
| + | 
| + | 
| void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) { | 
| // Throw exception in eax. | 
| __ Throw(rax); | 
|  |