Home
last modified time | relevance | path

Searched refs:IsDebugBreak (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/ic/
Dic-inl.h30 if (debug->IsDebugBreak( in address()
64 if (debug->IsDebugBreak( in constant_pool()
/external/v8/src/
Ddebug.cc273 DCHECK(IsDebugBreak() || IsDebuggerStatement()); in SetBreakPoint()
287 DCHECK(!IsDebugBreak()); in ClearBreakPoint()
298 DCHECK(IsDebugBreak()); in SetOneShot()
313 DCHECK(IsDebugBreak()); in ClearOneShot()
319 DCHECK(!IsDebugBreak()); in ClearOneShot()
331 if (IsDebugBreak()) return; in SetDebugBreak()
343 DCHECK(IsDebugBreak()); in SetDebugBreak()
361 DCHECK(!IsDebugBreak()); in ClearDebugBreak()
391 if (IsDebugBreak()) { in PrepareStepIn()
427 bool BreakLocationIterator::IsDebugBreak() { in IsDebugBreak() function in v8::internal::BreakLocationIterator
[all …]
Ddebug.h89 bool IsDebugBreak();
424 static bool IsDebugBreak(Address addr);
/external/v8/test/cctest/
Dtest-debug.cc417 CHECK(!Debug::IsDebugBreak(it.rinfo()->target_address())); in CheckDebuggerUnloaded()