Home
last modified time | relevance | path

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

/external/v8/src/arm64/
Dsimulator-arm64.cc1390 bool take_branch = ((xreg(instr->Rt()) & (1UL << bit_pos)) == 0); in VisitTestBranch() local
1393 case TBNZ: take_branch = !take_branch; break; in VisitTestBranch()
1396 if (take_branch) { in VisitTestBranch()
1404 bool take_branch = false; in VisitCompareBranch() local
1406 case CBZ_w: take_branch = (wreg(rt) == 0); break; in VisitCompareBranch()
1407 case CBZ_x: take_branch = (xreg(rt) == 0); break; in VisitCompareBranch()
1408 case CBNZ_w: take_branch = (wreg(rt) != 0); break; in VisitCompareBranch()
1409 case CBNZ_x: take_branch = (xreg(rt) != 0); break; in VisitCompareBranch()
1412 if (take_branch) { in VisitCompareBranch()
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc1041 bool take_branch = false; in VisitTestBranch() local
1044 take_branch = bit_zero; in VisitTestBranch()
1047 take_branch = !bit_zero; in VisitTestBranch()
1052 if (take_branch) { in VisitTestBranch()
1060 bool take_branch = false; in VisitCompareBranch() local
1063 take_branch = (ReadWRegister(rt) == 0); in VisitCompareBranch()
1066 take_branch = (ReadXRegister(rt) == 0); in VisitCompareBranch()
1069 take_branch = (ReadWRegister(rt) != 0); in VisitCompareBranch()
1072 take_branch = (ReadXRegister(rt) != 0); in VisitCompareBranch()
1077 if (take_branch) { in VisitCompareBranch()