Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp532 for (auto [Bit, NewBit] : zip_equal(Bits, NewBits)) { in convertInitializerBitRange()
535 NewBit = getBit(Bit); in convertInitializerBitRange()
572 for (auto [CurBit, NewBit] : zip_equal(getBits(), NewBits)) { in resolveReferences()
573 NewBit = CurBit; in resolveReferences()
581 NewBit = CachedBitVarResolved->getBit(CurBitVar->getBitNum()); in resolveReferences()
584 NewBit = CurBit->resolveReferences(R)->getBit(0); in resolveReferences()
587 if (isa<UnsetInit>(NewBit) && R.keepUnsetBits()) in resolveReferences()
588 NewBit = CurBit; in resolveReferences()
589 Changed |= CurBit != NewBit; in resolveReferences()
645 for (auto [Bit, NewBit] : zip_equal(Bits, NewBits)) { in convertInitializerBitRange()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp1594 unsigned NewBit = NewType->getIntegerBitWidth(); in tryNarrowMathIfNoOverflow() local
1595 if (NewBit >= OrigBit) in tryNarrowMathIfNoOverflow()
1597 NewType = I->getType()->getWithNewBitWidth(NewBit); in tryNarrowMathIfNoOverflow()