Searched refs:watched_stops (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/mips/
H A Dsimulator-mips.cc135 if (!watched_stops[code].desc) {
136 watched_stops[code].desc = msg;
166 if (!sim_->watched_stops[code].desc) {
167 sim_->watched_stops[code].desc = msg;
1614 return !(watched_stops[code].count & kStopDisabledBit);
1620 watched_stops[code].count &= ~kStopDisabledBit;
1627 watched_stops[code].count |= kStopDisabledBit;
1634 if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) {
1637 watched_stops[code].count = 0;
1640 watched_stops[cod
[all...]
H A Dsimulator-mips.h389 // instruction, if bit 31 of watched_stops[code].count is unset.
390 // The value watched_stops[code].count & ~(1 << 31) indicates how many times
396 StopCountAndDesc watched_stops[kMaxStopCode + 1]; member in class:v8::internal::Simulator
/external/v8/src/arm/
H A Dsimulator-arm.cc114 if (isWatchedStop(code) && !watched_stops[code].desc) {
115 watched_stops[code].desc = msg;
143 if (sim_->isWatchedStop(code) && !sim_->watched_stops[code].desc) {
144 sim_->watched_stops[code].desc = msg;
1945 !(watched_stops[code].count & kStopDisabledBit);
1952 watched_stops[code].count &= ~kStopDisabledBit;
1960 watched_stops[code].count |= kStopDisabledBit;
1968 if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) {
1971 watched_stops[code].count = 0;
1974 watched_stops[cod
[all...]
H A Dsimulator-arm.h387 // instruction, if bit 31 of watched_stops[code].count is unset.
388 // The value watched_stops[code].count & ~(1 << 31) indicates how many times
394 StopCountAndDesc watched_stops[kNumOfWatchedStops];

Completed in 74 milliseconds