Home
last modified time | relevance | path

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

/external/v8/src/arm64/
Dsimulator-arm64.cc1492 bool take_branch = ((xreg(instr->Rt()) & (1UL << bit_pos)) == 0); in VisitTestBranch() local
1495 case TBNZ: take_branch = !take_branch; break; in VisitTestBranch()
1498 if (take_branch) { in VisitTestBranch()
1506 bool take_branch = false; in VisitCompareBranch() local
1508 case CBZ_w: take_branch = (wreg(rt) == 0); break; in VisitCompareBranch()
1509 case CBZ_x: take_branch = (xreg(rt) == 0); break; in VisitCompareBranch()
1510 case CBNZ_w: take_branch = (wreg(rt) != 0); break; in VisitCompareBranch()
1511 case CBNZ_x: take_branch = (xreg(rt) != 0); break; in VisitCompareBranch()
1514 if (take_branch) { in VisitCompareBranch()
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc1159 bool take_branch = false; in VisitTestBranch() local
1162 take_branch = bit_zero; in VisitTestBranch()
1165 take_branch = !bit_zero; in VisitTestBranch()
1170 if (take_branch) { in VisitTestBranch()
1178 bool take_branch = false; in VisitCompareBranch() local
1181 take_branch = (ReadWRegister(rt) == 0); in VisitCompareBranch()
1184 take_branch = (ReadXRegister(rt) == 0); in VisitCompareBranch()
1187 take_branch = (ReadWRegister(rt) != 0); in VisitCompareBranch()
1190 take_branch = (ReadXRegister(rt) != 0); in VisitCompareBranch()
1195 if (take_branch) { in VisitCompareBranch()