Home
last modified time | relevance | path

Searched refs:getMinSignedBits (Results 1 – 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPSInt.cpp27 unsigned MinBits = Tmp.getMinSignedBits(); in APSInt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp74 if (Imm.getMinSignedBits() <= 64 && in getIntImmCostInst()
DRISCVISelLowering.cpp1054 if (ShiftedC1Int.getMinSignedBits() <= 64 && in isDesirableToCommuteWithShift()
1060 if (C1Int.getMinSignedBits() <= 64 && in isDesirableToCommuteWithShift()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h385 return getMinSignedBits() <= N; in isSignedIntN()
1042 return getMinSignedBits() > 64 ? isNegative() : getSExtValue() < RHS; in slt()
1110 return getMinSignedBits() > 64 ? !isNegative() : getSExtValue() > RHS; in sgt()
1298 unsigned getMinSignedBits() const { in getMinSignedBits() function
1325 assert(getMinSignedBits() <= 64 && "Too many bits for int64_t"); in getSExtValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h462 return getMinSignedBits() <= N; in isSignedIntN()
1233 return (!isSingleWord() && getMinSignedBits() > 64) ? isNegative() in slt()
1303 return (!isSingleWord() && getMinSignedBits() > 64) ? !isNegative() in sgt()
1609 unsigned getMinSignedBits() const { in getMinSignedBits() function
1635 assert(getMinSignedBits() <= 64 && "Too many bits for int64_t"); in getSExtValue()
DAPSInt.h94 assert(getMinSignedBits() <= 64 && "Too many bits for int64_t"); in getExtValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp402 unsigned MinBW = std::max(R.getLower().getMinSignedBits(), in validateAndTransform()
403 R.getUpper().getMinSignedBits()) + 1; in validateAndTransform()
DLoopStrengthReduce.cpp748 if (C->getAPInt().getMinSignedBits() <= 64) { in ExtractImmediate()
1372 C.ImmCost += APInt(64, Offset, true).getMinSignedBits(); in RateFormula()
2447 if (C->getValue().getMinSignedBits() >= 64 || in OptimizeLoopTermCond()
2696 if (Factor->getAPInt().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors()
2702 if (Factor->getAPInt().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors()
3125 if (IncConst->getAPInt().getMinSignedBits() > 64) in canFoldIVIncExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h644 IntElement->getValue().getMinSignedBits() - 1; in minRequiredElementSize()
660 return CI->getValue().getMinSignedBits() - 1; in minRequiredElementSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DBypassSlowDivision.cpp207 return C && C->getValue().getMinSignedBits() > BypassType->getBitWidth(); in isHashLikeValue()
DSimplifyCFG.cpp4532 (CaseVal.getMinSignedBits() > MaxSignificantBitsInCond)) { in eliminateDeadSwitchCases()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp356 assert(OffsetA.getMinSignedBits() <= NewPtrBitWidth && in areConsecutivePointers()
357 OffsetB.getMinSignedBits() <= NewPtrBitWidth); in areConsecutivePointers()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DValue.cpp584 if (GEPOffset.getMinSignedBits() > BitWidth) in stripAndAccumulateConstantOffsets()
DConstantFold.cpp2176 if (CI->getValue().getMinSignedBits() > 64) in isIndexInRangeOfArrayType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1526 if (Int.getMinSignedBits() > 64) in parseImmediateOperand()
2134 if (Token.integerValue().getMinSignedBits() > 32) in parseCFIOffset()
2670 if (Token.integerValue().getMinSignedBits() > 64) in parseOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp596 if (WideScaledOffset.getMinSignedBits() > MaxPointerSize) { in DecomposeGEPExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp1085 Op0Src->getType()->getScalarSizeInBits() >= Op1C->getMinSignedBits()) { in visitSDiv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp1384 if (OperandV.getMinSignedBits() > 8) in tryFoldLoadStoreIntoMemOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelDAGToDAG.cpp3985 unsigned MinWidth = NegMaskVal.getMinSignedBits(); in shrinkAndImmediate()
3986 if (MinWidth > 32 || (MinWidth > 8 && MaskVal.getMinSignedBits() <= 32)) in shrinkAndImmediate()
DX86ISelLowering.cpp39491 unsigned OldMaskSize = MaskVal.getMinSignedBits(); in combineShiftRightLogical()
39492 unsigned NewMaskSize = NewMaskVal.getMinSignedBits(); in combineShiftRightLogical()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp3424 if (C1.getMinSignedBits() > ExtSrcTyBits) in SimplifySetCC()
3714 if (C1.getMinSignedBits() <= 64 && in SimplifySetCC()
3751 if (ShiftBits && NewC.getMinSignedBits() <= 64 && in SimplifySetCC()
DDAGCombiner.cpp4694 if (ADDC.getMinSignedBits() <= 64 && in visitANDLike()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp4257 if (CVal.getMinSignedBits() <= 64) { in matchOperationAddr()