Searched refs:ElTy (Results 1 - 13 of 13) sorted by relevance

/external/llvm/tools/bugpoint/
H A DListReducer.h28 template<typename ElTy>
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
45 std::vector<ElTy> &Kept,
52 bool reduceList(std::vector<ElTy> &TheList, std::string &Error) {
53 std::vector<ElTy> empty;
96 std::vector<ElTy> ShuffledList(TheList);
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
159 std::vector<ElTy> EmptyList;
177 std::vector<ElTy> TestLis
[all...]
/external/llvm/lib/IR/
H A DVerifier.cpp1861 Type *ElTy = local
1863 Assert1(ElTy, "Invalid indices for GEP pointer type!", &GEP);
1867 == ElTy, "GEP is not of right type for indices!", &GEP, ElTy);
1892 Type *ElTy = PTy->getElementType(); local
1893 Assert2(ElTy == LI.getType(),
1894 "Load result type does not match pointer operand type!", &LI, ElTy);
1900 if (!ElTy->isPointerTy()) {
1901 Assert2(ElTy->isIntegerTy(),
1903 &LI, ElTy);
1966 Type *ElTy = PTy->getElementType(); local
2025 Type *ElTy = PTy->getElementType(); local
2049 Type *ElTy = PTy->getElementType(); local
[all...]
H A DConstantFold.cpp115 Type *ElTy = PTy->getElementType(); local
116 while (ElTy != DPTy->getElementType()) {
117 if (StructType *STy = dyn_cast<StructType>(ElTy)) {
119 ElTy = STy->getElementType(0);
122 dyn_cast<SequentialType>(ElTy)) {
123 if (ElTy->isPointerTy()) break; // Can't index into pointers!
124 ElTy = STy->getElementType();
131 if (ElTy == DPTy->getElementType())
1242 static int IdxCompare(Constant *C1, Constant *C2, Type *ElTy) { argument
1262 if (isMaybeZeroSizedType(ElTy))
[all...]
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp279 Type *ElTy = cast<PointerType>((*V)->getType())->getElementType(); local
280 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy);
H A DScalarEvolutionExpander.cpp396 Type *ElTy = PTy->getElementType(); local
418 if (ElTy->isSized()) {
419 const SCEV *ElSize = SE.getSizeOfExpr(IntPtrTy, ElTy);
455 while (StructType *STy = dyn_cast<StructType>(ElTy)) {
471 ElTy = STy->getTypeAtIndex(ElIdx);
487 ElTy =
500 ElTy = STy->getTypeAtIndex(0u);
506 if (ArrayType *ATy = dyn_cast<ArrayType>(ElTy))
507 ElTy = ATy->getElementType();
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp698 Type *ElTy = V->getType(); local
703 Type *IdxTy = (ElTy->isStructTy() ?
708 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(*II);
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp101 Type *ElTy = GV->getType()->getElementType(); local
102 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
1340 Type *ElTy = GV->getType()->getElementType(); local
1341 size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy);
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1553 Type *ElTy = AT->getElementType(); local
1555 AllocaInst *NA = new AllocaInst(ElTy, nullptr, AI->getAlignment(),
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp3179 QualType ElTy = ArgTy; local
3181 ElTy = S.Context.getAsArrayType(ArgTy)->getElementType();
3184 if (ElTy->isVoidType())
3188 Loc, ElTy, diag::err_incomplete_type_used_in_type_trait_expr);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1412 Type *ElTy = getTypeByID(Record[i]); local
1413 if (!ElTy)
1415 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2720 QualType ElTy = LHSTy->getAs<VectorType>()->getElementType(); local
2721 const BuiltinType *BTy = ElTy->getAs<BuiltinType>();
H A DCGBuiltin.cpp1031 QualType ElTy = E->getArg(0)->getType()->getPointeeType(); local
1032 CharUnits StoreSize = getContext().getTypeSizeInChars(ElTy);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp896 Type *ElTy = Cond->getType();
903 if (executeICMP_EQ(CondVal, CaseVal, ElTy).IntVal != 0) {

Completed in 228 milliseconds