Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DKnownBits.cpp96 unsigned ExtBits = BitWidth - SrcBitWidth; in sextInReg() local
98 Result.One = One << ExtBits; in sextInReg()
99 Result.Zero = Zero << ExtBits; in sextInReg()
100 Result.One.ashrInPlace(ExtBits); in sextInReg()
101 Result.Zero.ashrInPlace(ExtBits); in sextInReg()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp2969 unsigned ExtBits = MI.getOperand(2).getImm(); in matchRedundantSExtInReg() local
2971 return KB->computeNumSignBits(Src) >= (TypeSize - ExtBits + 1); in matchRedundantSExtInReg()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6593 APInt ExtBits = APInt::getHighBitsSet(ExtBitSize, ExtBitSize - MemBitSize); in visitAND() local
6594 if (DAG.MaskedValueIsZero(N1, ExtBits) && in visitAND()