Searched refs:InBits (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1947 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
1948 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
1949 KnownZero = KnownZero.trunc(InBits);
1950 KnownOne = KnownOne.trunc(InBits);
1959 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
1960 APInt InSignBit = APInt::getSignBit(InBits);
1961 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
1963 KnownZero = KnownZero.trunc(InBits);
1964 KnownOne = KnownOne.trunc(InBits);
1985 unsigned InBits local
1995 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
[all...]
H A DTargetLowering.cpp1662 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
1663 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits);
1664 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits);
1677 InDemandedBits = InDemandedBits.trunc(InBits);
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp71 unsigned InBits = 0) {
76 // If InBits is specified, round it to it.
77 if (InBits > NumBits)
78 NumBits = InBits;
1528 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); local
1529 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp174 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); local
175 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/
H A DX86ISelLowering.cpp9043 unsigned InBits = VOp0.getValueSizeInBits(); local
9045 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));

Completed in 322 milliseconds