Home
last modified time | relevance | path

Searched refs:watched_stops_ (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.h497 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
Dsimulator-arm.cc1972 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
1978 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
1985 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
1992 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
1997 watched_stops_[code].count = 0; in IncreaseStopCounter()
2000 watched_stops_[code].count++; in IncreaseStopCounter()
2011 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2014 if (watched_stops_[code].desc) { in PrintStopInfo()
2016 state, count, watched_stops_[code].desc); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/ppc/
Dsimulator-ppc.h500 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
Dsimulator-ppc.cc1287 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
1293 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
1300 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
1307 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
1312 watched_stops_[code].count = 0; in IncreaseStopCounter()
1315 watched_stops_[code].count++; in IncreaseStopCounter()
1326 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
1329 if (watched_stops_[code].desc) { in PrintStopInfo()
1331 state, count, watched_stops_[code].desc); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/loong64/
Dsimulator-loong64.cc2309 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop()
2314 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
2320 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
2326 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
2331 watched_stops_[code].count = 0; in IncreaseStopCounter()
2334 watched_stops_[code].count++; in IncreaseStopCounter()
2348 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2351 if (watched_stops_[code].desc) { in PrintStopInfo()
2353 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
Dsimulator-loong64.h548 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc3031 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop()
3036 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
3042 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
3048 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
3053 watched_stops_[code].count = 0; in IncreaseStopCounter()
3056 watched_stops_[code].count++; in IncreaseStopCounter()
3070 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
3073 if (watched_stops_[code].desc) { in PrintStopInfo()
3075 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
Dsimulator-riscv64.h979 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
/third_party/node/deps/v8/src/execution/mips/
Dsimulator-mips.h621 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
Dsimulator-mips.cc2494 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop()
2499 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
2505 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
2511 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
2516 watched_stops_[code].count = 0; in IncreaseStopCounter()
2519 watched_stops_[code].count++; in IncreaseStopCounter()
2533 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2536 if (watched_stops_[code].desc) { in PrintStopInfo()
2538 count, watched_stops_[code].desc); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/mips64/
Dsimulator-mips64.h644 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
Dsimulator-mips64.cc2503 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop()
2508 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
2514 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
2520 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
2525 watched_stops_[code].count = 0; in IncreaseStopCounter()
2528 watched_stops_[code].count++; in IncreaseStopCounter()
2542 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2545 if (watched_stops_[code].desc) { in PrintStopInfo()
2547 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
/third_party/node/deps/v8/src/execution/s390/
Dsimulator-s390.h484 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
Dsimulator-s390.cc2350 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
2356 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
2363 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
2370 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
2375 watched_stops_[code].count = 0; in IncreaseStopCounter()
2378 watched_stops_[code].count++; in IncreaseStopCounter()
2389 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2392 if (watched_stops_[code].desc) { in PrintStopInfo()
2394 state, count, watched_stops_[code].desc); in PrintStopInfo()