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

/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp163 Type *&IdxTy);
1989 Type *IdxTy; local
1990 uint64_t Idx = FindElementAndOffset(T, EltOffset, IdxTy);
2003 /// element. IdxTy is set to the type of the index result to be used in a
2006 Type *&IdxTy) {
2013 IdxTy = Type::getInt32Ty(T->getContext());
2020 IdxTy = Type::getInt64Ty(T->getContext());
2028 IdxTy = Type::getInt64Ty(T->getContext());
2051 Type *IdxTy; local
2052 uint64_t OldIdx = FindElementAndOffset(T, OldOffset, IdxTy);
2005 FindElementAndOffset(Type *&T, uint64_t &Offset, Type *&IdxTy) argument
2104 Type *IdxTy; local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp195 Type *IdxTy = DL local
198 Value *NullIdx = Constant::getNullValue(IdxTy);
318 Type *IdxTy = DL local
321 Value *Idx = Constant::getNullValue(IdxTy);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1731 DIE *IdxTy = getIndexTyDie();
1732 if (!IdxTy) {
1734 IdxTy = &createAndAddDIE(dwarf::DW_TAG_base_type, UnitDie);
1735 addString(*IdxTy, dwarf::DW_AT_name, "sizetype");
1736 addUInt(*IdxTy, dwarf::DW_AT_byte_size, None, sizeof(int64_t));
1737 addUInt(*IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
1739 setIndexTyDie(IdxTy);
1747 constructSubrangeDIE(Buffer, DISubrange(Element), IdxTy);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2044 Type *IdxTy = Legal->getWidestInductionType(); local
2056 IdxTy->getPrimitiveSizeInBits())
2057 ExitCount = SE->getTruncateOrNoop(ExitCount, IdxTy);
2059 const SCEV *BackedgeTakeCount = SE->getNoopOrZeroExtend(ExitCount, IdxTy);
2076 BackedgeCount = CastInst::CreatePointerCast(BackedgeCount, IdxTy,
2090 IdxTy):
2091 ConstantInt::get(IdxTy, 0);
2098 StartIdx, ConstantInt::get(IdxTy, 0), "overflow.check.anchor",
2139 Induction = Builder.CreatePHI(IdxTy, 2, "index");
2142 Constant *Step = ConstantInt::get(IdxTy, V
[all...]
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp703 Type *IdxTy = (ElTy->isStructTy() ? local
706 Ops.push_back(ConstantInt::get(IdxTy, *II));
H A DGlobalOpt.cpp2347 IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32); local
2348 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1452 Type *IdxTy = getTypeByID(Record[2]); local
1453 if (!IdxTy)
1455 Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
1473 Type *IdxTy = getTypeByID(Record[2]); local
1474 if (!IdxTy)
1476 Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
/external/llvm/lib/IR/
H A DConstantFold.cpp2039 Type *IdxTy = Combined->getType(); local
2040 if (IdxTy != Idx0->getType()) {
2041 Type *Int64Ty = Type::getInt64Ty(IdxTy->getContext());
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2298 QualType IdxTy = E->getIdx()->getType(); local
2299 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
2302 EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, Accessed);
H A DCGExprScalar.cpp1073 QualType IdxTy = E->getIdx()->getType(); local
1076 CGF.EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, /*Accessed*/true);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6600 EVT IdxTy = TLI->getVectorIdxTy(); local
6604 Op, getConstant(i, IdxTy)));

Completed in 1905 milliseconds