Lines Matching defs:Hi
320 uint64_t Hi = Val ^ Lo;
321 assert(Hi != 0);
327 if (TmpSeq.size() + llvm::popcount(Hi) < Res.size()) {
329 TmpSeq.emplace_back(RISCV::BSETI, llvm::countr_zero(Hi));
330 Hi &= (Hi - 1); // Clear lowest set bit.
331 } while (Hi != 0);
342 uint64_t Hi = Val ^ Lo;
343 assert(Hi != 0);
348 if (TmpSeq.size() + llvm::popcount(Hi) < Res.size()) {
350 TmpSeq.emplace_back(RISCV::BCLRI, llvm::countr_zero(Hi));
351 Hi &= (Hi - 1); // Clear lowest set bit.
352 } while (Hi != 0);