Searched refs:watched_stops_ (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 78 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop() 79 sim_->watched_stops_[code].desc = msg; in Stop() 1497 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 1504 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 1512 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 1520 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter() 1525 watched_stops_[code].count = 0; in IncreaseStopCounter() 1528 watched_stops_[code].count++; in IncreaseStopCounter() 1540 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 1543 if (watched_stops_[code].desc) { in PrintStopInfo() [all …]
|
D | simulator-ppc.h | 352 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
/external/v8/src/arm/ |
D | simulator-arm.h | 406 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
D | simulator-arm.cc | 1925 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 1932 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 1940 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 1948 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter() 1951 watched_stops_[code].count = 0; in IncreaseStopCounter() 1954 watched_stops_[code].count++; in IncreaseStopCounter() 1966 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 1969 if (watched_stops_[code].desc) { in PrintStopInfo() 1971 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
/external/v8/src/mips64/ |
D | simulator-mips64.h | 577 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
|
D | simulator-mips64.cc | 2420 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2426 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2433 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2440 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter() 2445 watched_stops_[code].count = 0; in IncreaseStopCounter() 2448 watched_stops_[code].count++; in IncreaseStopCounter() 2463 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2466 if (watched_stops_[code].desc) { in PrintStopInfo() 2468 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
/external/v8/src/mips/ |
D | simulator-mips.h | 556 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
|
D | simulator-mips.cc | 2477 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2483 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2490 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2497 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter() 2500 watched_stops_[code].count = 0; in IncreaseStopCounter() 2503 watched_stops_[code].count++; in IncreaseStopCounter() 2518 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2521 if (watched_stops_[code].desc) { in PrintStopInfo() 2523 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 79 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop() 80 sim_->watched_stops_[code].desc = msg; in Stop() 2206 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 2212 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2219 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2226 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter() 2231 watched_stops_[code].count = 0; in IncreaseStopCounter() 2234 watched_stops_[code].count++; in IncreaseStopCounter() 2245 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2248 if (watched_stops_[code].desc) { in PrintStopInfo() [all …]
|
D | simulator-s390.h | 449 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|