| Index: src/stub-cache.cc
|
| ===================================================================
|
| --- src/stub-cache.cc (revision 1738)
|
| +++ src/stub-cache.cc (working copy)
|
| @@ -594,6 +594,7 @@
|
| }
|
|
|
|
|
| +#ifdef ENABLE_DEBUGGER_SUPPORT
|
| Object* StubCache::ComputeCallDebugBreak(int argc) {
|
| Code::Flags flags =
|
| Code::ComputeFlags(Code::CALL_IC, DEBUG_BREAK, NORMAL, argc);
|
| @@ -612,6 +613,7 @@
|
| StubCompiler compiler;
|
| return FillCache(compiler.CompileCallDebugPrepareStepIn(flags));
|
| }
|
| +#endif
|
|
|
|
|
| Object* StubCache::ComputeLazyCompile(int argc) {
|
| @@ -836,6 +838,7 @@
|
| }
|
|
|
|
|
| +#ifdef ENABLE_DEBUGGER_SUPPORT
|
| Object* StubCompiler::CompileCallDebugBreak(Code::Flags flags) {
|
| HandleScope scope;
|
| Debug::GenerateCallICDebugBreak(masm());
|
| @@ -864,6 +867,7 @@
|
| }
|
| return result;
|
| }
|
| +#endif
|
|
|
|
|
| Object* StubCompiler::GetCodeWithFlags(Code::Flags flags, const char* name) {
|
|
|