Home
last modified time | relevance | path

Searched refs:ExtBits (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp166 unsigned ExtBits = BitWidth - SrcBitWidth; in sextInReg() local
168 Result.One = One << ExtBits; in sextInReg()
169 Result.Zero = Zero << ExtBits; in sextInReg()
170 Result.One.ashrInPlace(ExtBits); in sextInReg()
171 Result.Zero.ashrInPlace(ExtBits); in sextInReg()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp3419 unsigned ExtBits = MI.getOperand(2).getImm(); in matchRedundantSExtInReg() local
3421 return VT->computeNumSignBits(Src) >= (TypeSize - ExtBits + 1); in matchRedundantSExtInReg()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7747 APInt ExtBits = APInt::getHighBitsSet(ExtBitSize, ExtBitSize - MemBitSize); in visitAND() local
7748 if (DAG.MaskedValueIsZero(N1, ExtBits) && in visitAND()