Home
last modified time | relevance | path

Searched refs:kMaxStopCode (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/mips/
Dsimulator-mips.cc700 i <= kMaxStopCode; in Debug()
713 i <= kMaxStopCode; in Debug()
726 i <= kMaxStopCode; in Debug()
1742 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
1788 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
1793 DCHECK(code <= kMaxStopCode); in IsEnabledStop()
1814 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
1831 } else if (code > kMaxStopCode) { in PrintStopInfo()
1832 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dconstants-mips.h244 const uint32_t kMaxStopCode = 127; variable
245 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dsimulator-mips.h382 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Dassembler-mips.cc1789 code <= kMaxStopCode && in break_()
1792 (code > kMaxStopCode || in break_()
1801 DCHECK(code <= kMaxStopCode); in stop()
Dassembler-mips.h818 void stop(const char* msg, uint32_t code = kMaxStopCode);
/external/v8/src/mips64/
Dconstants-mips64.h206 const uint32_t kMaxStopCode = 127; variable
207 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dsimulator-mips64.cc630 i <= kMaxStopCode; in Debug()
643 i <= kMaxStopCode; in Debug()
656 i <= kMaxStopCode; in Debug()
1807 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
1853 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
1858 DCHECK(code <= kMaxStopCode); in IsEnabledStop()
1879 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
1896 } else if (code > kMaxStopCode) { in PrintStopInfo()
1897 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dsimulator-mips64.h433 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Ddisasm-mips64.cc455 if (instr->Bits(25, 6) == static_cast<int>(kMaxStopCode)) { in DecodeBreakInstr()
Dassembler-mips64.cc1984 code <= kMaxStopCode && in break_()
1987 (code > kMaxStopCode || in break_()
1996 DCHECK(code <= kMaxStopCode); in stop()
Dassembler-mips64.h848 void stop(const char* msg, uint32_t code = kMaxStopCode);
/external/v8/src/arm/
Dconstants-arm.h342 const uint32_t kMaxStopCode = kStopCode - 1; variable
Dsimulator-arm.cc126 if (code != kMaxStopCode) { in Stop()
1932 DCHECK(code <= kMaxStopCode); in isWatchedStop()
1938 DCHECK(code <= kMaxStopCode); in isEnabledStop()
1962 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
1977 DCHECK(code <= kMaxStopCode); in PrintStopInfo()
Dassembler-arm.cc2009 svc(kStopCode + kMaxStopCode, cond); in stop()