Home
last modified time | relevance | path

Searched refs:kMaxWatchpointCode (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/codegen/loong64/
Dconstants-loong64.h138 const uint32_t kMaxWatchpointCode = 31; 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_()
1668 DCHECK_GT(code, kMaxWatchpointCode); in stop()
/third_party/node/deps/v8/src/codegen/mips/
Dconstants-mips.h321 const uint32_t kMaxWatchpointCode = 31; 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_()
2229 DCHECK_GT(code, kMaxWatchpointCode); in stop()
/third_party/node/deps/v8/src/codegen/mips64/
Dconstants-mips64.h298 const uint32_t kMaxWatchpointCode = 31; 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_()
2368 DCHECK_GT(code, kMaxWatchpointCode); in stop()
/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()
2277 return (code <= kMaxWatchpointCode); in IsWatchpoint()
2302 return (opcode_hi15 == 0x15) && code > kMaxWatchpointCode && in IsStopInstruction()
2308 DCHECK_GT(code, kMaxWatchpointCode); in IsEnabledStop()
2340 if (code <= kMaxWatchpointCode) { in PrintStopInfo()
/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()
2998 return (code <= kMaxWatchpointCode); in IsWatchpoint()
3024 return code != -1 && static_cast<uint32_t>(code) > kMaxWatchpointCode && in IsStopInstruction()
3030 DCHECK_GT(code, kMaxWatchpointCode); in IsEnabledStop()
3062 if (code <= kMaxWatchpointCode) { in PrintStopInfo()
/third_party/node/deps/v8/src/execution/mips/
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()
2463 return (code <= kMaxWatchpointCode); in IsWatchpoint()
2488 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2493 DCHECK_GT(code, kMaxWatchpointCode); in IsEnabledStop()
2525 if (code <= kMaxWatchpointCode) { in PrintStopInfo()
/third_party/node/deps/v8/src/execution/mips64/
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()
2472 return (code <= kMaxWatchpointCode); in IsWatchpoint()
2497 return (func == BREAK) && code > kMaxWatchpointCode && code <= kMaxStopCode; in IsStopInstruction()
2502 DCHECK_GT(code, kMaxWatchpointCode); in IsEnabledStop()
2534 if (code <= kMaxWatchpointCode) { in PrintStopInfo()
/third_party/node/deps/v8/src/codegen/riscv64/
Dconstants-riscv64.h177 const uint32_t kMaxWatchpointCode = 31; 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_()
3530 DCHECK_GT(code, kMaxWatchpointCode); in stop()