Home
last modified time | relevance | path

Searched refs:InBits (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/AST/
DRecordLayoutBuilder.cpp1874 bool InBits = true; in FinishLayout() local
1877 InBits = false; in FinishLayout()
1882 << (InBits ? 1 : 0); // (byte|bit) in FinishLayout()
1962 bool InBits = true; in CheckFieldPadding() local
1965 InBits = false; in CheckFieldPadding()
1972 << (InBits ? 1 : 0) // (byte|bit) in CheckFieldPadding()
1979 << (InBits ? 1 : 0); // (byte|bit) in CheckFieldPadding()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1871 unsigned InBits = InVT.getScalarType().getSizeInBits(); in ComputeMaskedBits() local
1872 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask; in ComputeMaskedBits()
1873 APInt InMask = Mask.trunc(InBits); in ComputeMaskedBits()
1874 KnownZero = KnownZero.trunc(InBits); in ComputeMaskedBits()
1875 KnownOne = KnownOne.trunc(InBits); in ComputeMaskedBits()
1884 unsigned InBits = InVT.getScalarType().getSizeInBits(); in ComputeMaskedBits() local
1885 APInt InSignBit = APInt::getSignBit(InBits); in ComputeMaskedBits()
1886 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask; in ComputeMaskedBits()
1887 APInt InMask = Mask.trunc(InBits); in ComputeMaskedBits()
1894 KnownZero = KnownZero.trunc(InBits); in ComputeMaskedBits()
[all …]
DTargetLowering.cpp1660 unsigned InBits = InVT.getScalarType().getSizeInBits(); in SimplifyDemandedBits() local
1661 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits); in SimplifyDemandedBits()
1662 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits); in SimplifyDemandedBits()
1675 InDemandedBits = InDemandedBits.trunc(InBits); in SimplifyDemandedBits()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp71 unsigned InBits = 0) { in getGVAlignmentLog2() argument
77 if (InBits > NumBits) in getGVAlignmentLog2()
78 NumBits = InBits; in getGVAlignmentLog2()
1506 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); in LowerConstant() local
1507 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx); in LowerConstant()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp79 unsigned InBits = 0) { in getGVAlignmentLog2() argument
85 if (InBits > NumBits) in getGVAlignmentLog2()
86 NumBits = InBits; in getGVAlignmentLog2()
1832 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstant() local
1833 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstant()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2268 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local
2269 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); in computeKnownBits()
2270 KnownZero = KnownZero.trunc(InBits); in computeKnownBits()
2271 KnownOne = KnownOne.trunc(InBits); in computeKnownBits()
2280 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local
2281 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); in computeKnownBits()
2283 KnownZero = KnownZero.trunc(InBits); in computeKnownBits()
2284 KnownOne = KnownOne.trunc(InBits); in computeKnownBits()
2303 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local
2304 KnownZero = KnownZero.trunc(InBits); in computeKnownBits()
[all …]
DTargetLowering.cpp983 unsigned InBits = InVT.getScalarType().getSizeInBits(); in SimplifyDemandedBits() local
984 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits); in SimplifyDemandedBits()
985 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits); in SimplifyDemandedBits()
998 InDemandedBits = InDemandedBits.trunc(InBits); in SimplifyDemandedBits()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp2148 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstantForGV() local
2149 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstantForGV()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp15713 unsigned InBits = VOp0.getValueSizeInBits(); in getCondAfterTruncWithZeroHighBitsInput() local
15715 if (DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits))) in getCondAfterTruncWithZeroHighBitsInput()
28062 unsigned InBits = NarrowVT.getScalarSizeInBits(); in WidenMaskArithmetic() local
28063 APInt Mask = APInt::getAllOnesValue(InBits); in WidenMaskArithmetic()