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 | 399 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 1948 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 1955 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 1963 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 1971 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 1974 watched_stops_[code].count = 0; in IncreaseStopCounter() 1977 watched_stops_[code].count++; in IncreaseStopCounter() 1989 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 1992 if (watched_stops_[code].desc) { in PrintStopInfo() 1994 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-arm.h | 436 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 2230 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2236 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2243 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2250 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2253 watched_stops_[code].count = 0; in IncreaseStopCounter() 2256 watched_stops_[code].count++; in IncreaseStopCounter() 2271 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2274 if (watched_stops_[code].desc) { in PrintStopInfo() 2276 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-mips.h | 504 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; variable
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 2224 return !(watched_stops_[code].count & kStopDisabledBit); in IsEnabledStop() 2230 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2237 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2244 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2249 watched_stops_[code].count = 0; in IncreaseStopCounter() 2252 watched_stops_[code].count++; in IncreaseStopCounter() 2267 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2270 if (watched_stops_[code].desc) { in PrintStopInfo() 2272 code, code, state, count, watched_stops_[code].desc); in PrintStopInfo()
|
D | simulator-mips64.h | 518 StopCountAndDesc watched_stops_[kMaxStopCode + 1]; 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() 2311 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop() 2317 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop() 2324 watched_stops_[code].count |= kStopDisabledBit; in DisableStop() 2331 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter() 2336 watched_stops_[code].count = 0; in IncreaseStopCounter() 2339 watched_stops_[code].count++; in IncreaseStopCounter() 2350 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo() 2353 if (watched_stops_[code].desc) { in PrintStopInfo() [all …]
|
D | simulator-s390.h | 512 StopCountAndDesc watched_stops_[kNumOfWatchedStops]; variable
|