Searched defs:CurTy (Results 1 - 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGetElementPtrTypeIterator.h29 Type *CurTy; member in class:llvm::generic_gep_type_iterator
35 I.CurTy = Ty;
41 I.CurTy = 0;
54 return CurTy;
58 CompositeType *CT = cast<CompositeType>(CurTy);
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
72 CurTy = 0;
/external/llvm/include/llvm/IR/
H A DGetElementPtrTypeIterator.h31 PointerIntPair<Type *, 1> CurTy; member in class:llvm::generic_gep_type_iterator
39 I.CurTy.setPointer(Ty);
40 I.CurTy.setInt(true);
59 if (CurTy.getInt())
60 return CurTy.getPointer()->getPointerTo(AddrSpace);
61 return CurTy.getPointer();
65 if (CurTy.getInt())
66 return CurTy.getPointer();
67 CompositeType *CT = cast<CompositeType>(CurTy.getPointer());
78 if (CurTy
[all...]
/external/clang/lib/AST/
H A DType.cpp243 const Type *CurTy = Qs.strip(Cur); local
244 switch (CurTy->getTypeClass()) {
248 const Class##Type *Ty = cast<Class##Type>(CurTy); \
H A DVTableBuilder.cpp2697 QualType CurTy = Element.Base->getType(); local
2699 *CurRD = CurTy->getAsCXXRecordDecl();
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1204 Type *CurTy = Type::getInt32Ty(Context); local
1231 V = UndefValue::get(CurTy);
1238 CurTy = TypeList[Record[0]];
1241 V = Constant::getNullValue(CurTy);
1244 if (!CurTy->isIntegerTy() || Record.empty())
1246 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
1249 if (!CurTy->isIntegerTy() || Record.empty())
1258 APInt(cast<IntegerType>(CurTy)->getBitWidth(),
1265 if (CurTy->isFloatTy())
1267 else if (CurTy
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2873 Type *CurTy = Type::getInt32Ty(Context); local
2903 V = UndefValue::get(CurTy);
2912 CurTy = TypeList[Record[0]];
2915 V = Constant::getNullValue(CurTy);
2918 if (!CurTy->isIntegerTy() || Record.empty())
2920 V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]));
2923 if (!CurTy->isIntegerTy() || Record.empty())
2927 readWideAPInt(Record, cast<IntegerType>(CurTy)->getBitWidth());
2935 if (CurTy->isHalfTy())
2938 else if (CurTy
4637 Type *CurTy = Agg->getType(); local
4679 Type *CurTy = Agg->getType(); local
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1303 Type *CurTy = cast<Instruction>(VL[j])->getOperand(0)->getType(); local
1304 if (Ty0 != CurTy) {

Completed in 279 milliseconds