Searched refs:TruncBits (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DIntegral.h140 Integral truncate(unsigned TruncBits) const {
141 if (TruncBits >= Bits)
143 const T BitMask = (T(1) << T(TruncBits)) - 1;
144 const T SignBit = T(1) << (TruncBits - 1);
H A DBoolean.h80 Boolean truncate(unsigned TruncBits) const { return *this; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp915 unsigned TruncBits = 0; local
921 TruncBits = UserBits;
927 if (TruncBits || SExtBits || ZExtBits) {
940 ((SExtBits || ZExtBits) ? 0 : (TruncBits ? TruncBits : LoadedBits));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1761 uint64_t TruncBits = 0; local
1771 TruncBits = Opd0->getValueType(0).getSizeInBits() - VT.getSizeInBits();
1799 Imms = VT.getSizeInBits() - ShlImm - TruncBits - 1;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp1683 unsigned TruncBits = getTypeSizeInBits(ST->getType()); local
1685 if (CR.truncate(TruncBits).zeroExtend(NewBits).contains(
1994 unsigned TruncBits = getTypeSizeInBits(ST->getType()); local
1996 if (CR.truncate(TruncBits).signExtend(NewBits).contains(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7868 unsigned TruncBits = LargeVT.getScalarSizeInBits() - OpSizeInBits; local
7869 if (LargeShift->getAPIntValue() == TruncBits) {
7871 SDValue Amt = DAG.getConstant(N1C->getZExtValue() + TruncBits, DL,

Completed in 246 milliseconds