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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp77 Type *IdxTy = Type::getInt32Ty(Ctx); local
89 BufferIdx = new GlobalVariable(M, IdxTy, false, GlobalValue::LinkOnceODRLinkage,
90 Constant::getNullValue(IdxTy), IndexName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp193 IntegerType *IdxTy = IntegerType::get(Ty->getContext(), 32); local
194 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp288 Type *IdxTy = local
291 Ops.push_back(ConstantInt::get(IdxTy, II));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2587 Type *IdxTy = Legal->getWidestInductionType();
2588 assert(IdxTy && "No type for induction");
2596 IdxTy->getPrimitiveSizeInBits())
2597 BackedgeTakenCount = SE->getTruncateOrNoop(BackedgeTakenCount, IdxTy);
2598 BackedgeTakenCount = SE->getNoopOrZeroExtend(BackedgeTakenCount, IdxTy);
2616 CastInst::CreatePointerCast(TripCount, IdxTy, "exitcount.ptrcnt.to.int",
2989 Type *IdxTy = Legal->getWidestInductionType();
3030 Value *StartIdx = ConstantInt::get(IdxTy, 0);
3052 Constant *Step = ConstantInt::get(IdxTy, VF * UF);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp197 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType()); local
198 Value *NullIdx = Constant::getNullValue(IdxTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2372 Type *IdxTy = Combined->getType(); local
2373 if (IdxTy != Idx0->getType()) {
2375 std::max(IdxTy->getIntegerBitWidth(),
2380 Type::getIntNTy(IdxTy->getContext(), CommonExtendedWidth);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1102 LLT IdxTy = MRI->getType(IdxReg); local
1103 if (IdxTy != OffsetTy) {
1104 if (!IdxTy.isVector() && VectorWidth) {
1106 OffsetTy.changeElementType(IdxTy), IdxReg).getReg(0);
H A DLegalizerHelper.cpp5060 LLT IdxTy = LLT::scalar(32); local
5098 auto IdxK = MIRBuilder.buildConstant(IdxTy, ExtractIdx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2701 Type *IdxTy = getTypeByID(Record[2]); local
2702 if (!IdxTy)
2704 Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
2724 Type *IdxTy = getTypeByID(Record[2]); local
2725 if (!IdxTy)
2727 Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1456 DIE *IdxTy = getIndexTyDie(); local
1464 constructSubrangeDIE(Buffer, cast<DISubrange>(Element), IdxTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp1229 const LLT IdxTy = Query.Types[IdxTypeIdx];
1234 IdxTy.getSizeInBits() == 32;
3126 LLT IdxTy = LLT::scalar(DstTy.getSizeInBits());
3140 B.buildPtrAdd(DstReg, KernargPtrReg, B.buildConstant(IdxTy, Offset).getReg(0));
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3641 QualType IdxTy = E->getIdx()->getType();
3642 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
3646 EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, Accessed);
H A DCGExprScalar.cpp1784 QualType IdxTy = E->getIdx()->getType(); local
1787 CGF.EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, /*Accessed*/true);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3792 MVT IdxTy = MVT::getIntegerVT(IdxSize); local
3795 // fit in IdxTy.
3814 Offs, dl, EVT::getVectorVT(Context, IdxTy, VectorElementCount));
3816 OffsVal = DAG.getConstant(Offs, dl, IdxTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9629 Type *IdxTy = GTI.getIndexedType(); local
9633 // log2(sizeof(IdxTy)) - log2(8).
9635 countTrailingZeros(DL.getTypeStoreSizeInBits(IdxTy).getFixedSize()) - 3;

Completed in 505 milliseconds