Searched refs:watched_stops_ (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 73 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop() 74 sim_->watched_stops_[code].desc = msg; in Stop() 1495 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 1502 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 1510 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 1518 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 1523 watched_stops_[code].count = 0; in IncreaseStopCounter() 1526 watched_stops_[code].count++; in IncreaseStopCounter() 1538 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 1541 if (watched_stops_[code].desc) { in PrintStopInfo() [all …]
|
D | simulator-ppc.h | 400 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 2354 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2360 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2367 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2374 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2377 watched_stops_[code].count = 0; in IncreaseStopCounter() 2380 watched_stops_[code].count++; in IncreaseStopCounter() 2395 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2398 if (watched_stops_[code].desc) { in PrintStopInfo() 2400 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-mips.h | 521 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 2301 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2307 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2314 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2321 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2326 watched_stops_[code].count = 0; in IncreaseStopCounter() 2329 watched_stops_[code].count++; in IncreaseStopCounter() 2344 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2347 if (watched_stops_[code].desc) { in PrintStopInfo() 2349 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-mips64.h | 551 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 2032 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 2039 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2047 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2055 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2058 watched_stops_[code].count = 0; in IncreaseStopCounter() 2061 watched_stops_[code].count++; in IncreaseStopCounter() 2073 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2076 if (watched_stops_[code].desc) { in PrintStopInfo() 2078 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-arm.h | 449 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 78 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop() 79 sim_->watched_stops_[code].desc = msg; in Stop() 2331 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 2337 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2344 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2351 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2356 watched_stops_[code].count = 0; in IncreaseStopCounter() 2359 watched_stops_[code].count++; in IncreaseStopCounter() 2370 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2373 if (watched_stops_[code].desc) { in PrintStopInfo() [all …]
|
D | simulator-s390.h | 513 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|