Searched refs:IndexWidth (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | GlobalSplit.cpp | 53 unsigned IndexWidth = DL.getIndexTypeSizeInBits(GV.getType()); in splitGlobal() local 76 APInt Offset(IndexWidth, 0); in splitGlobal() 81 ConstantRange SrcInRange = InRange->sextOrTrunc(IndexWidth).add(Offset); in splitGlobal()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcherEmitter.cpp | 32 IndexWidth = 6, enumerator 33 FullIndexWidth = IndexWidth + 4, 437 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher() 461 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher() 607 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher() 632 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher() 1044 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcherList()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 1248 unsigned IndexWidth = DL.getIndexTypeSizeInBits(Ops0->getType()); in ConstantFoldCompareInstOperands() local 1249 APInt Offset0(IndexWidth, 0); in ConstantFoldCompareInstOperands() 1252 APInt Offset1(IndexWidth, 0); in ConstantFoldCompareInstOperands()
|
H A D | ValueTracking.cpp | 3577 unsigned IndexWidth = Q.DL.getIndexTypeSizeInBits(Start->getType()); in isNonEqualPointersWithRecursiveGEP() local 3578 APInt StartOffset(IndexWidth, 0); in isNonEqualPointersWithRecursiveGEP() 3580 APInt StepOffset(IndexWidth, 0); in isNonEqualPointersWithRecursiveGEP() 3586 APInt OffsetB(IndexWidth, 0); in isNonEqualPointersWithRecursiveGEP()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 4370 unsigned IndexWidth = in parseValID() local 4372 InRangeStart = InRangeStart.extOrTrunc(IndexWidth); in parseValID() 4373 InRangeEnd = InRangeEnd.extOrTrunc(IndexWidth); in parseValID()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Verifier.cpp | 4108 ElementCount IndexWidth = IndexVTy->getElementCount(); in visitGetElementPtrInst() local 4109 Check(IndexWidth == GEPWidth, "Invalid GEP index vector width", &GEP); in visitGetElementPtrInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 54678 unsigned IndexWidth = Index.getScalarValueSizeInBits(); in combineGatherScatter() local 54688 if (BV->isConstant() && IndexWidth > 32 && in combineGatherScatter() 54689 DAG.ComputeNumSignBits(Index) > (IndexWidth - 32)) { in combineGatherScatter() 54701 IndexWidth > 32 && in combineGatherScatter() 54703 DAG.ComputeNumSignBits(Index) > (IndexWidth - 32)) { in combineGatherScatter() 54752 unsigned IndexWidth = Index.getScalarValueSizeInBits(); in combineGatherScatter() local 54755 if (IndexWidth != 32 && IndexWidth != 64) { in combineGatherScatter() 54756 MVT EltVT = IndexWidth > 32 ? MVT::i64 : MVT::i32; in combineGatherScatter()
|