Searched refs:kMaxStopCode (Results 1 – 18 of 18) sorted by relevance
/external/v8/src/arm/ |
D | constants-arm.h | 357 const uint32_t kMaxStopCode = kStopCode - 1; variable
|
D | simulator-arm.cc | 74 if (code != kMaxStopCode) { in Stop() 1916 DCHECK_LE(code, kMaxStopCode); in isWatchedStop() 1922 DCHECK_LE(code, kMaxStopCode); in isEnabledStop() 1946 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter() 1961 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
|
D | assembler-arm.cc | 2327 svc(kStopCode + kMaxStopCode, cond); in stop()
|
/external/v8/src/mips/ |
D | constants-mips.h | 311 const uint32_t kMaxStopCode = 127; variable 312 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
D | simulator-mips.h | 556 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
D | simulator-mips.cc | 643 i <= kMaxStopCode; in Debug() 656 i <= kMaxStopCode; in Debug() 669 i <= kMaxStopCode; in Debug() 2425 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt() 2470 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction() 2475 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop() 2496 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter() 2513 } else if (code > kMaxStopCode) { in PrintStopInfo() 2514 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
|
D | assembler-mips.cc | 2382 code <= kMaxStopCode && in break_() 2385 (code > kMaxStopCode || in break_() 2394 DCHECK_LE(code, kMaxStopCode); in stop()
|
D | assembler-mips.h | 904 void stop(const char* msg, uint32_t code = kMaxStopCode);
|
/external/v8/src/mips64/ |
D | simulator-mips64.h | 577 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
D | constants-mips64.h | 273 const uint32_t kMaxStopCode = 127; variable 274 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
D | simulator-mips64.cc | 575 i <= kMaxStopCode; in Debug() 588 i <= kMaxStopCode; in Debug() 601 i <= kMaxStopCode; in Debug() 2368 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt() 2413 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction() 2418 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop() 2439 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter() 2458 } else if (code > kMaxStopCode) { in PrintStopInfo() 2459 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
|
D | assembler-mips64.cc | 2626 code <= kMaxStopCode && in break_() 2629 (code > kMaxStopCode || in break_() 2638 DCHECK_LE(code, kMaxStopCode); in stop()
|
D | disasm-mips64.cc | 1077 if (instr->Bits(25, 6) == static_cast<int>(kMaxStopCode)) { in DecodeBreakInstr()
|
D | assembler-mips64.h | 959 void stop(const char* msg, uint32_t code = kMaxStopCode);
|
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 82 if (code != kMaxStopCode) { in Stop() 1488 DCHECK_LE(code, kMaxStopCode); in isWatchedStop() 1494 DCHECK_LE(code, kMaxStopCode); in isEnabledStop() 1518 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter() 1535 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
|
D | constants-ppc.h | 2683 const uint32_t kMaxStopCode = kStopCode - 1; variable
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 83 if (code != kMaxStopCode) { in Stop() 2198 DCHECK_LE(code, kMaxStopCode); in isWatchedStop() 2203 DCHECK_LE(code, kMaxStopCode); in isEnabledStop() 2224 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter() 2240 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
|
D | constants-s390.h | 1778 const uint32_t kMaxStopCode = kStopCode - 1; variable
|