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

/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp163 uint64_t FindElementAndOffset(Type *&T, uint64_t &Offset, Type *&IdxTy,
2007 Type *IdxTy; local
2008 uint64_t Idx = FindElementAndOffset(T, EltOffset, IdxTy,
2022 /// element. IdxTy is set to the type of the index result to be used in a
2024 uint64_t SROA::FindElementAndOffset(Type *&T, uint64_t &Offset, Type *&IdxTy, argument
2033 IdxTy = Type::getInt32Ty(T->getContext());
2040 IdxTy = Type::getInt64Ty(T->getContext());
2048 IdxTy = Type::getInt64Ty(T->getContext());
2072 Type *IdxTy; local
2073 uint64_t OldIdx = FindElementAndOffset(T, OldOffset, IdxTy, D
2126 Type *IdxTy; local
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2102 Type *IdxTy = Legal->getWidestInductionType(); local
2114 IdxTy->getPrimitiveSizeInBits())
2115 ExitCount = SE->getTruncateOrNoop(ExitCount, IdxTy);
2117 const SCEV *BackedgeTakeCount = SE->getNoopOrZeroExtend(ExitCount, IdxTy);
2136 BackedgeCount = CastInst::CreatePointerCast(BackedgeCount, IdxTy,
2150 IdxTy):
2151 ConstantInt::get(IdxTy, 0);
2158 StartIdx, ConstantInt::get(IdxTy, 0), "overflow.check.anchor",
2199 Induction = Builder.CreatePHI(IdxTy, 2, "index");
2202 Constant *Step = ConstantInt::get(IdxTy, V
[all...]
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp798 Type *IdxTy = (ElTy->isStructTy() ? local
801 Ops.push_back(ConstantInt::get(IdxTy, *II));
H A DGlobalOpt.cpp2340 IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32); local
2341 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp196 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType()); local
197 Value *NullIdx = Constant::getNullValue(IdxTy);
/external/llvm/lib/IR/
H A DConstantFold.cpp2104 Type *IdxTy = Combined->getType(); local
2105 if (IdxTy != Idx0->getType()) {
2107 std::max(IdxTy->getIntegerBitWidth(),
2112 Type::getIntNTy(IdxTy->getContext(), CommonExtendedWidth);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2363 Type *IdxTy = getTypeByID(Record[2]); local
2364 if (!IdxTy)
2366 Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
2384 Type *IdxTy = getTypeByID(Record[2]); local
2385 if (!IdxTy)
2387 Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1403 DIE *IdxTy = getIndexTyDie(); local
1411 constructSubrangeDIE(Buffer, cast<MDSubrange>(Element), IdxTy);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2436 QualType IdxTy = E->getIdx()->getType(); local
2437 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
2440 EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, Accessed);
H A DCGExprScalar.cpp1153 QualType IdxTy = E->getIdx()->getType(); local
1156 CGF.EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, /*Accessed*/true);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6774 EVT IdxTy = TLI->getVectorIdxTy(); local
6778 Op, getConstant(i, IdxTy)));
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6648 Type *IdxTy = *GTI; local
6652 // log2(sizeof(IdxTy)) - log2(8).
6654 countTrailingZeros(getDataLayout()->getTypeStoreSizeInBits(IdxTy)) - 3;

Completed in 3110 milliseconds