Home
last modified time | relevance | path

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

/external/v8/src/ppc/
Dconstants-ppc.h430 const uint32_t kMaxStopCode = kStopCode - 1; variable
Dsimulator-ppc.cc122 if (code != kMaxStopCode) { in Stop()
1487 DCHECK(code <= kMaxStopCode); in isWatchedStop()
1493 DCHECK(code <= kMaxStopCode); in isEnabledStop()
1517 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
1534 DCHECK(code <= kMaxStopCode); in PrintStopInfo()
/external/v8/src/mips/
Dsimulator-mips.cc699 i <= kMaxStopCode; in Debug()
712 i <= kMaxStopCode; in Debug()
725 i <= kMaxStopCode; in Debug()
2209 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
2256 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2261 DCHECK(code <= kMaxStopCode); in IsEnabledStop()
2282 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
2299 } else if (code > kMaxStopCode) { in PrintStopInfo()
2300 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dconstants-mips.h249 const uint32_t kMaxStopCode = 127; variable
250 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dsimulator-mips.h472 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Dassembler-mips.cc1890 code <= kMaxStopCode && in break_()
1893 (code > kMaxStopCode || in break_()
1902 DCHECK(code <= kMaxStopCode); in stop()
Dassembler-mips.h790 void stop(const char* msg, uint32_t code = kMaxStopCode);
/external/v8/src/arm/
Dconstants-arm.h354 const uint32_t kMaxStopCode = kStopCode - 1; variable
Dsimulator-arm.cc125 if (code != kMaxStopCode) { in Stop()
1997 DCHECK(code <= kMaxStopCode); in isWatchedStop()
2003 DCHECK(code <= kMaxStopCode); in isEnabledStop()
2027 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
2042 DCHECK(code <= kMaxStopCode); in PrintStopInfo()
Dassembler-arm.cc2109 svc(kStopCode + kMaxStopCode, cond); in stop()
/external/v8/src/mips64/
Dsimulator-mips64.cc629 i <= kMaxStopCode; in Debug()
642 i <= kMaxStopCode; in Debug()
655 i <= kMaxStopCode; in Debug()
2206 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
2252 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2257 DCHECK(code <= kMaxStopCode); in IsEnabledStop()
2278 DCHECK(code <= kMaxStopCode); in IncreaseStopCounter()
2295 } else if (code > kMaxStopCode) { in PrintStopInfo()
2296 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dconstants-mips64.h225 const uint32_t kMaxStopCode = 127; variable
226 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dsimulator-mips64.h506 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Dassembler-mips64.cc2175 code <= kMaxStopCode && in break_()
2178 (code > kMaxStopCode || in break_()
2187 DCHECK(code <= kMaxStopCode); in stop()
Ddisasm-mips64.cc801 if (instr->Bits(25, 6) == static_cast<int>(kMaxStopCode)) { in DecodeBreakInstr()
Dassembler-mips64.h837 void stop(const char* msg, uint32_t code = kMaxStopCode);