/external/clang/lib/AST/ |
D | RecordLayoutBuilder.cpp | 1874 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/llvm-project/clang/lib/AST/ |
D | RecordLayoutBuilder.cpp | 2089 bool InBits = true; in FinishLayout() local 2092 InBits = false; in FinishLayout() 2097 << (InBits ? 1 : 0); // (byte|bit) in FinishLayout() 2186 bool InBits = true; in CheckFieldPadding() local 2189 InBits = false; in CheckFieldPadding() 2196 << (InBits ? 1 : 0) // (byte|bit) in CheckFieldPadding() 2203 << (InBits ? 1 : 0); // (byte|bit) in CheckFieldPadding()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 79 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/ |
D | SelectionDAG.cpp | 2268 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 …]
|
D | TargetLowering.cpp | 983 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-project/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1852 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local 1857 if (DemandedBits.getActiveBits() <= InBits) { in SimplifyDemandedBits() 1871 APInt InDemandedBits = DemandedBits.trunc(InBits); in SimplifyDemandedBits() 1877 assert(Known.getBitWidth() == InBits && "Src width has changed?"); in SimplifyDemandedBits() 1890 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local 1895 if (DemandedBits.getActiveBits() <= InBits) { in SimplifyDemandedBits() 1909 APInt InDemandedBits = DemandedBits.trunc(InBits); in SimplifyDemandedBits() 1914 InDemandedBits.setBit(InBits - 1); in SimplifyDemandedBits() 1920 assert(Known.getBitWidth() == InBits && "Src width has changed?"); in SimplifyDemandedBits() 1943 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1681 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local 1686 if (DemandedBits.getActiveBits() <= InBits) { in SimplifyDemandedBits() 1700 APInt InDemandedBits = DemandedBits.trunc(InBits); in SimplifyDemandedBits() 1706 assert(Known.getBitWidth() == InBits && "Src width has changed?"); in SimplifyDemandedBits() 1714 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local 1719 if (DemandedBits.getActiveBits() <= InBits) { in SimplifyDemandedBits() 1733 APInt InDemandedBits = DemandedBits.trunc(InBits); in SimplifyDemandedBits() 1738 InDemandedBits.setBit(InBits - 1); in SimplifyDemandedBits() 1744 assert(Known.getBitWidth() == InBits && "Src width has changed?"); in SimplifyDemandedBits() 1762 unsigned InBits = SrcVT.getScalarSizeInBits(); in SimplifyDemandedBits() local [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 2083 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstantForGV() local 2084 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstantForGV()
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 2071 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstantForGV() local 2072 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstantForGV()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 2148 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstantForGV() local 2149 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstantForGV()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2307 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstant() local 2308 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstant()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelDAGToDAG.cpp | 1370 SmallVector<ValueBit, 64> *InBits; in getValueBits() local 1371 std::tie(Interesting, InBits) = getValueBits(V.getOperand(0), in getValueBits() 1379 if ((*InBits)[i].hasValue() && (*InBits)[i].getValueBitIndex() >= 32) { in getValueBits() 1387 Bits[i] = (*InBits)[i]; in getValueBits()
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCISelDAGToDAG.cpp | 1330 SmallVector<ValueBit, 64> *InBits; in getValueBits() local 1331 std::tie(Interesting, InBits) = getValueBits(V.getOperand(0), in getValueBits() 1339 if ((*InBits)[i].hasValue() && (*InBits)[i].getValueBitIndex() >= 32) { in getValueBits() 1347 Bits[i] = (*InBits)[i]; in getValueBits()
|
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2438 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstant() local 2439 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstant()
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 4841 unsigned InBits = UnpackFromEltSize * 8; in insertUnpackIfPrepared() local 4842 EVT InVT = MVT::getVectorVT(MVT::getIntegerVT(InBits), in insertUnpackIfPrepared() 4843 SystemZ::VectorBits / InBits); in insertUnpackIfPrepared() 4845 unsigned OutBits = InBits * 2; in insertUnpackIfPrepared()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 15713 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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 22043 unsigned InBits = VOp0.getValueSizeInBits(); in isTruncWithZeroHighBitsInput() local 22045 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits)); in isTruncWithZeroHighBitsInput() 28859 unsigned InBits = InVT.getSizeInBits(); in ReplaceNodeResults() local 28860 if (128 % InBits == 0) { in ReplaceNodeResults() 28884 if ((InBits == 256 && Subtarget.hasVLX()) || InBits == 512) { in ReplaceNodeResults()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 23299 unsigned InBits = VOp0.getValueSizeInBits(); in isTruncWithZeroHighBitsInput() local 23301 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits)); in isTruncWithZeroHighBitsInput() 30020 unsigned InBits = InVT.getSizeInBits(); in ReplaceNodeResults() local 30021 if (128 % InBits == 0) { in ReplaceNodeResults() 30045 if ((InBits == 256 && Subtarget.hasVLX()) || InBits == 512) { in ReplaceNodeResults()
|