Home
last modified time | relevance | path

Searched refs:v_flag_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/arm/
Dsimulator-arm.cc422 PrintF("V flag: %d\n", sim_->v_flag_); in Debug()
663 v_flag_ = false; in Simulator()
870 v_flag_ = ((value & (1 << 28)) != 0); in SetSpecialRegister()
883 if (v_flag_) result |= (1 << 28); in GetFromSpecialRegister()
1167 case vs: return v_flag_; in ConditionallyExecute()
1168 case vc: return !v_flag_; in ConditionallyExecute()
1171 case ge: return n_flag_ == v_flag_; in ConditionallyExecute()
1172 case lt: return n_flag_ != v_flag_; in ConditionallyExecute()
1173 case gt: return !z_flag_ && (n_flag_ == v_flag_); in ConditionallyExecute()
1174 case le: return z_flag_ || (n_flag_ != v_flag_); in ConditionallyExecute()
[all …]
Dsimulator-arm.h357 bool v_flag_; variable