Home
last modified time | relevance | path

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

12

/third_party/node/deps/v8/src/codegen/loong64/
Dconstants-loong64.h139 const uint32_t kMaxStopCode = 127; variable
140 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dassembler-loong64.cc1662 (break_as_stop && code <= kMaxStopCode && code > kMaxWatchpointCode) || in break_()
1663 (!break_as_stop && (code > kMaxStopCode || code <= kMaxWatchpointCode))); in break_()
1669 DCHECK_LE(code, kMaxStopCode); in stop()
Dassembler-loong64.h566 void stop(uint32_t code = kMaxStopCode);
/third_party/node/deps/v8/src/codegen/arm/
Dconstants-arm.h341 const uint32_t kMaxStopCode = kStopCode - 1; variable
/third_party/node/deps/v8/src/execution/loong64/
Dsimulator-loong64.cc596 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
608 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
620 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
2261 } else if (code <= kMaxStopCode) { in SoftwareInterrupt()
2303 code <= kMaxStopCode; in IsStopInstruction()
2307 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop()
2325 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
2343 } else if (code > kMaxStopCode) { in PrintStopInfo()
2344 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dsimulator-loong64.h548 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
/third_party/node/deps/v8/src/codegen/mips/
Dconstants-mips.h322 const uint32_t kMaxStopCode = 127; variable
323 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dassembler-mips.cc2222 (break_as_stop && code <= kMaxStopCode && code > kMaxWatchpointCode) || in break_()
2223 (!break_as_stop && (code > kMaxStopCode || code <= kMaxWatchpointCode))); in break_()
2230 DCHECK_LE(code, kMaxStopCode); in stop()
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc1897 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
1909 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
1921 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
2979 if (code != -1 && static_cast<uint32_t>(code) <= kMaxStopCode) { in SoftwareInterrupt()
3025 static_cast<uint32_t>(code) <= kMaxStopCode; in IsStopInstruction()
3029 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop()
3047 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
3065 } else if (code > kMaxStopCode) { in PrintStopInfo()
3066 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
Dsimulator-riscv64.h979 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
/third_party/node/deps/v8/src/codegen/mips64/
Dconstants-mips64.h299 const uint32_t kMaxStopCode = 127; variable
300 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dassembler-mips64.cc2361 (break_as_stop && code <= kMaxStopCode && code > kMaxWatchpointCode) || in break_()
2362 (!break_as_stop && (code > kMaxStopCode || code <= kMaxWatchpointCode))); in break_()
2369 DCHECK_LE(code, kMaxStopCode); in stop()
/third_party/node/deps/v8/src/execution/mips/
Dsimulator-mips.h621 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Dsimulator-mips.cc621 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
633 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
645 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
2447 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
2488 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2492 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop()
2510 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
2528 } else if (code > kMaxStopCode) { in PrintStopInfo()
2529 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/mips64/
Dsimulator-mips64.h644 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
Dsimulator-mips64.cc565 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
577 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
589 for (uint32_t i = kMaxWatchpointCode + 1; i <= kMaxStopCode; in Debug()
2456 } else if (func == BREAK && code <= kMaxStopCode) { in SoftwareInterrupt()
2497 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2501 DCHECK_LE(code, kMaxStopCode); in IsEnabledStop()
2519 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
2537 } else if (code > kMaxStopCode) { in PrintStopInfo()
2538 PrintF("Code too large, only %u stops can be used\n", kMaxStopCode + 1); in PrintStopInfo()
/third_party/node/deps/v8/src/codegen/riscv64/
Dconstants-riscv64.h178 const uint32_t kMaxStopCode = 127; variable
179 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
Dassembler-riscv64.cc3518 (break_as_stop && code <= kMaxStopCode && code > kMaxWatchpointCode) || in break_()
3519 (!break_as_stop && (code > kMaxStopCode || code <= kMaxWatchpointCode))); in break_()
3531 DCHECK_LE(code, kMaxStopCode); in stop()
Dassembler-riscv64.h1165 void stop(uint32_t code = kMaxStopCode);
/third_party/node/deps/v8/src/execution/ppc/
Dsimulator-ppc.cc1257 if (code != kMaxStopCode) { in SoftwareInterrupt()
1279 DCHECK_LE(code, kMaxStopCode); in isWatchedStop()
1284 DCHECK_LE(code, kMaxStopCode); in isEnabledStop()
1305 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
1321 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.cc1913 if (code != kMaxStopCode) { in SoftwareInterrupt()
1964 DCHECK_LE(code, kMaxStopCode); in isWatchedStop()
1969 DCHECK_LE(code, kMaxStopCode); in isEnabledStop()
1990 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
2006 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
/third_party/node/deps/v8/src/diagnostics/mips64/
Ddisasm-mips64.cc1033 if (instr->Bits(25, 6) == static_cast<int>(kMaxStopCode)) { in DecodeBreakInstr()
/third_party/node/deps/v8/src/codegen/ppc/
Dconstants-ppc.h2865 const uint32_t kMaxStopCode = kStopCode - 1; variable
/third_party/node/deps/v8/src/execution/s390/
Dsimulator-s390.cc2320 if (code != kMaxStopCode) { in SoftwareInterrupt()
2342 DCHECK_LE(code, kMaxStopCode); in isWatchedStop()
2347 DCHECK_LE(code, kMaxStopCode); in isEnabledStop()
2368 DCHECK_LE(code, kMaxStopCode); in IncreaseStopCounter()
2384 DCHECK_LE(code, kMaxStopCode); in PrintStopInfo()
/third_party/node/deps/v8/src/codegen/s390/
Dconstants-s390.h1790 const uint32_t kMaxStopCode = kStopCode - 1; variable

12