Lines Matching defs:bitPos
988 void AssemblerAarch64::Tbz(const Register &rt, int32_t bitPos, Label *label)
993 Tbz(rt, bitPos, offsetImm);
996 void AssemblerAarch64::Tbz(const Register &rt, int32_t bitPos, int32_t imm)
998 uint32_t b5 = (bitPos << (BRANCH_B5_LOWBITS - 5)) & BRANCH_B5_MASK;
999 uint32_t b40 = (bitPos << BRANCH_B40_LOWBITS) & BRANCH_B40_MASK;
1005 void AssemblerAarch64::Tbnz(const Register &rt, int32_t bitPos, Label *label)
1010 Tbnz(rt, bitPos, offsetImm);
1013 void AssemblerAarch64::Tbnz(const Register &rt, int32_t bitPos, int32_t imm)
1015 uint32_t b5 = (bitPos << (BRANCH_B5_LOWBITS - 5)) & BRANCH_B5_MASK;
1016 uint32_t b40 = (bitPos << BRANCH_B40_LOWBITS) & BRANCH_B40_MASK;