Chromium Code Reviews| Index: src/stub-cache.h |
| =================================================================== |
| --- src/stub-cache.h (revision 1738) |
| +++ src/stub-cache.h (working copy) |
| @@ -157,8 +157,10 @@ |
| // Finds the Code object stored in the Heap::non_monomorphic_cache(). |
| static Code* FindCallInitialize(int argc); |
| +#ifdef ENABLE_DEBUGGER_SUPPORT |
| static Object* ComputeCallDebugBreak(int argc); |
| static Object* ComputeCallDebugPrepareStepIn(int argc); |
| +#endif |
| static Object* ComputeLazyCompile(int argc); |
| @@ -288,8 +290,10 @@ |
| Object* CompileCallNormal(Code::Flags flags); |
| Object* CompileCallMegamorphic(Code::Flags flags); |
| Object* CompileCallMiss(Code::Flags flags); |
| +#ifdef ENABLE_DEBUGGER_SUPPORT |
| Object* CompileCallDebugBreak(Code::Flags flags); |
| Object* CompileCallDebugPrepareStepIn(Code::Flags flags); |
| +#endif |
| Object* CompileLazyCompile(Code::Flags flags); |
|
Søren Thygesen Gjesse
2009/04/17 23:46:17
Please move this before the #ifdef ENABLE_DEBUGGER
|
| // Static functions for generating parts of stubs. |