Searched refs:IdxTy (Results 1 - 12 of 12) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp164 uint64_t FindElementAndOffset(Type *&T, uint64_t &Offset, Type *&IdxTy,
2008 Type *IdxTy; local
2009 uint64_t Idx = FindElementAndOffset(T, EltOffset, IdxTy,
2023 /// element. IdxTy is set to the type of the index result to be used in a
2025 uint64_t SROA::FindElementAndOffset(Type *&T, uint64_t &Offset, Type *&IdxTy, argument
2034 IdxTy = Type::getInt32Ty(T->getContext());
2041 IdxTy = Type::getInt64Ty(T->getContext());
2049 IdxTy = Type::getInt64Ty(T->getContext());
2073 Type *IdxTy; local
2074 uint64_t OldIdx = FindElementAndOffset(T, OldOffset, IdxTy, D
2127 Type *IdxTy; local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp815 Type *IdxTy = (ElTy->isStructTy() ? local
818 Ops.push_back(ConstantInt::get(IdxTy, *II));
H A DGlobalOpt.cpp2474 IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32); local
2475 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp199 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType()); local
200 Value *NullIdx = Constant::getNullValue(IdxTy);
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp2113 Type *IdxTy = Combined->getType(); local
2114 if (IdxTy != Idx0->getType()) {
2116 std::max(IdxTy->getIntegerBitWidth(),
2121 Type::getIntNTy(IdxTy->getContext(), CommonExtendedWidth);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2656 Type *IdxTy = Legal->getWidestInductionType(); local
2664 IdxTy->getPrimitiveSizeInBits())
2665 BackedgeTakenCount = SE->getTruncateOrNoop(BackedgeTakenCount, IdxTy);
2666 BackedgeTakenCount = SE->getNoopOrZeroExtend(BackedgeTakenCount, IdxTy);
2684 CastInst::CreatePointerCast(TripCount, IdxTy,
2856 Type *IdxTy = Legal->getWidestInductionType(); local
2884 Value *StartIdx = ConstantInt::get(IdxTy, 0);
2907 Constant *Step = ConstantInt::get(IdxTy, VF * UF);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1315 DIE *IdxTy = getIndexTyDie(); local
1323 constructSubrangeDIE(Buffer, cast<DISubrange>(Element), IdxTy);
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2809 Type *IdxTy = getTypeByID(Record[2]); local
2810 if (!IdxTy)
2812 Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
2830 Type *IdxTy = getTypeByID(Record[2]); local
2831 if (!IdxTy)
2833 Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExpr.cpp2704 QualType IdxTy = E->getIdx()->getType(); local
2705 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
2708 EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, Accessed);
H A DCGExprScalar.cpp1157 QualType IdxTy = E->getIdx()->getType(); local
1160 CGF.EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, /*Accessed*/true);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7159 EVT IdxTy = TLI->getVectorIdxTy(getDataLayout()); local
7163 Op, getConstant(i, SL, IdxTy)));
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6945 Type *IdxTy = *GTI; local
6949 // log2(sizeof(IdxTy)) - log2(8).
6951 countTrailingZeros(DL.getTypeStoreSizeInBits(IdxTy)) - 3;

Completed in 431 milliseconds