| /third_party/node/deps/v8/src/codegen/loong64/ |
| D | constants-loong64.h | 139 const uint32_t kMaxStopCode = 127; variable 140 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
| D | assembler-loong64.cc | 1662 (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()
|
| D | assembler-loong64.h | 566 void stop(uint32_t code = kMaxStopCode);
|
| /third_party/node/deps/v8/src/codegen/arm/ |
| D | constants-arm.h | 341 const uint32_t kMaxStopCode = kStopCode - 1; variable
|
| /third_party/node/deps/v8/src/execution/loong64/ |
| D | simulator-loong64.cc | 596 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()
|
| D | simulator-loong64.h | 548 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
| /third_party/node/deps/v8/src/codegen/mips/ |
| D | constants-mips.h | 322 const uint32_t kMaxStopCode = 127; variable 323 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
| D | assembler-mips.cc | 2222 (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/ |
| D | simulator-riscv64.cc | 1897 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()
|
| D | simulator-riscv64.h | 979 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
| /third_party/node/deps/v8/src/codegen/mips64/ |
| D | constants-mips64.h | 299 const uint32_t kMaxStopCode = 127; variable 300 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
| D | assembler-mips64.cc | 2361 (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/ |
| D | simulator-mips.h | 621 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
| D | simulator-mips.cc | 621 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/ |
| D | simulator-mips64.h | 644 StopCountAndDesc watched_stops_[kMaxStopCode + 1];
|
| D | simulator-mips64.cc | 565 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/ |
| D | constants-riscv64.h | 178 const uint32_t kMaxStopCode = 127; variable 179 STATIC_ASSERT(kMaxWatchpointCode < kMaxStopCode);
|
| D | assembler-riscv64.cc | 3518 (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()
|
| D | assembler-riscv64.h | 1165 void stop(uint32_t code = kMaxStopCode);
|
| /third_party/node/deps/v8/src/execution/ppc/ |
| D | simulator-ppc.cc | 1257 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/ |
| D | simulator-arm.cc | 1913 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/ |
| D | disasm-mips64.cc | 1033 if (instr->Bits(25, 6) == static_cast<int>(kMaxStopCode)) { in DecodeBreakInstr()
|
| /third_party/node/deps/v8/src/codegen/ppc/ |
| D | constants-ppc.h | 2865 const uint32_t kMaxStopCode = kStopCode - 1; variable
|
| /third_party/node/deps/v8/src/execution/s390/ |
| D | simulator-s390.cc | 2320 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/ |
| D | constants-s390.h | 1790 const uint32_t kMaxStopCode = kStopCode - 1; variable
|