/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | GetElementPtrTypeIterator.h | 59 return CT->getTypeAtIndex(getOperand()); in getIndexedType() 70 CurTy = CT->getTypeAtIndex(getOperand());
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 416 Type *DeeperType = SubTypes.back()->getTypeAtIndex(Path.back()); in advanceToNextLeafType() 425 DeeperType = CT->getTypeAtIndex(0U); in advanceToNextLeafType() 451 Next = cast<CompositeType>(Next)->getTypeAtIndex(0U); in firstRealType() 461 while (SubTypes.back()->getTypeAtIndex(Path.back())->isAggregateType()) { in firstRealType() 478 } while (SubTypes.back()->getTypeAtIndex(Path.back())->isAggregateType()); in nextRealType() 599 Type *SlotType = RetSubTypes.back()->getTypeAtIndex(RetPath.back()); in returnTypeIsEligibleForTailCall()
|
/external/llvm/include/llvm/IR/ |
D | GetElementPtrTypeIterator.h | 68 return CT->getTypeAtIndex(getOperand()); in getIndexedType() 82 CurTy.setPointer(CT->getTypeAtIndex(getOperand()));
|
D | DerivedTypes.h | 162 Type *getTypeAtIndex(const Value *V) const; 163 Type *getTypeAtIndex(unsigned Idx) const;
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | DerivedTypes.h | 153 Type *getTypeAtIndex(const Value *V); 154 Type *getTypeAtIndex(unsigned Idx);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DerivedTypes.h | 166 Type *getTypeAtIndex(const Value *V) const; 167 Type *getTypeAtIndex(unsigned Idx) const;
|
/external/llvm/lib/IR/ |
D | Type.cpp | 554 Type *CompositeType::getTypeAtIndex(const Value *V) const { in getTypeAtIndex() function in CompositeType 565 Type *CompositeType::getTypeAtIndex(unsigned Idx) const{ in getTypeAtIndex() function in CompositeType
|
D | Verifier.cpp | 568 STy->getTypeAtIndex(0u)->isIntegerTy(32) && in visitGlobalVariable() 569 STy->getTypeAtIndex(1) == FuncPtrTy, in visitGlobalVariable() 572 Type *ETy = STy->getTypeAtIndex(2); in visitGlobalVariable()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Type.cpp | 576 Type *CompositeType::getTypeAtIndex(const Value *V) { in getTypeAtIndex() function in CompositeType 585 Type *CompositeType::getTypeAtIndex(unsigned Idx) { in getTypeAtIndex() function in CompositeType
|
D | ConstantFold.cpp | 937 Type *MemberTy = AggTy->getTypeAtIndex(i); in ConstantFoldInsertValueInstruction() 968 Type *MemberTy = AggTy->getTypeAtIndex(i); in ConstantFoldInsertValueInstruction() 2270 Prev = Ty, Ty = cast<CompositeType>(Ty)->getTypeAtIndex(Idxs[i]), ++i) { in ConstantFoldGetElementPtrImpl()
|
D | Verifier.cpp | 444 STy->getTypeAtIndex(0u)->isIntegerTy(32) && in visitGlobalVariable() 445 STy->getTypeAtIndex(1) == FuncPtrTy, in visitGlobalVariable()
|
D | Instructions.cpp | 1381 Agg = CT->getTypeAtIndex(Index); in getIndexedTypeInternal() 1681 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index); in getIndexedType()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 446 ElTy = STy->getTypeAtIndex(ElIdx); in expandAddToGEP() 463 STy->getTypeAtIndex(cast<ConstantInt>(FieldNo)->getZExtValue()); in expandAddToGEP() 475 ElTy = STy->getTypeAtIndex(0u); in expandAddToGEP()
|
D | ConstantFolding.cpp | 694 Ty = STy->getTypeAtIndex(ElIdx); in SymbolicallyEvaluateGEP()
|
/external/llvm/lib/Transforms/Utils/ |
D | Evaluator.cpp | 245 NewTy = STy->getTypeAtIndex(0U); in EvaluateBlock()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1601 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) || in EmitXXStructorList() 1602 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr). in EmitXXStructorList() 1603 if (ETy->getNumElements() == 3 && !isa<PointerType>(ETy->getTypeAtIndex(2U))) in EmitXXStructorList()
|
/external/clang/lib/CodeGen/ |
D | CGRecordLayoutBuilder.cpp | 782 llvm::Type *ElementTy = ST->getTypeAtIndex(RL->getLLVMFieldNo(FD)); in ComputeRecordLayout()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 699 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(*II); in DoPromotion()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1261 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) || in EmitXXStructorList() 1262 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr). in EmitXXStructorList()
|
/external/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 839 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(II); in DoPromotion()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 463 ElTy = STy->getTypeAtIndex(ElIdx); in expandAddToGEP() 474 ElTy = STy->getTypeAtIndex(0u); in expandAddToGEP()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/ |
D | PathProfiling.cpp | 1390 Type *eltType = ftArrayType->getTypeAtIndex((unsigned)0); in runOnModule()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 535 LoadInst *NewLoad = combineLoadToNewType(IC, LI, ST->getTypeAtIndex(0U), in unpackLoadToAggregate()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 279 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U); in foldX86XALUIntrinsic() 2702 Type *RetTy = Ty->getTypeAtIndex(0U); in fastLowerIntrinsicCall() 2703 Type *CondTy = Ty->getTypeAtIndex(1); in fastLowerIntrinsicCall()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1687 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt); in visitBitCast()
|