Home
last modified time | relevance | path

Searched refs:take_branch (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-arm64.cc1756 bool take_branch = ((xreg(instr->Rt()) & (1ULL << bit_pos)) == 0);
1761 take_branch = !take_branch;
1766 if (take_branch) {
1773 bool take_branch = false;
1776 take_branch = (wreg(rt) == 0);
1779 take_branch = (xreg(rt) == 0);
1782 take_branch = (wreg(rt) != 0);
1785 take_branch = (xreg(rt) != 0);
1790 if (take_branch) {
[all...]
/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.cc3848 bool take_branch = false; in Simulator() local
3851 take_branch = bit_zero; in Simulator()
3854 take_branch = !bit_zero; in Simulator()
3859 if (take_branch) { in Simulator()
3867 bool take_branch = false; in Simulator() local
3870 take_branch = (ReadWRegister(rt) == 0); in Simulator()
3873 take_branch = (ReadXRegister(rt) == 0); in Simulator()
3876 take_branch = (ReadWRegister(rt) != 0); in Simulator()
3879 take_branch = (ReadXRegister(rt) != 0); in Simulator()
3884 if (take_branch) { in Simulator()
[all...]

Completed in 17 milliseconds