Searched refs:AggTy (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | TailRecursionElimination.cpp | 582 Type *AggTy = CI->getParamByValType(OpndIdx); in copyByValueOperandIntoLocalTemp() local 583 assert(AggTy); in copyByValueOperandIntoLocalTemp() 592 AggTy, DL.getAllocaAddrSpace(), nullptr, Alignment, in copyByValueOperandIntoLocalTemp() 596 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyByValueOperandIntoLocalTemp() 609 Type *AggTy = CI->getParamByValType(OpndIdx); in copyLocalTempOfByValueOperandIntoArguments() local 610 assert(AggTy); in copyLocalTempOfByValueOperandIntoArguments() 617 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyLocalTempOfByValueOperandIntoArguments()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | Evaluator.cpp | 134 Type *AggTy = Agg->Ty; in read() local 135 Optional<APInt> Index = DL.getGEPIndexForOffset(AggTy, Offset); in read() 137 !TypeSize::isKnownLE(TySize, DL.getTypeStoreSize(AggTy))) in read() 178 Type *AggTy = Agg->Ty; in write() local 179 Optional<APInt> Index = DL.getGEPIndexForOffset(AggTy, Offset); in write() 181 !TypeSize::isKnownLE(TySize, DL.getTypeStoreSize(AggTy))) in write()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 833 Type *AggTy = OrigIVI.getType(); in foldAggregateConstructionIntoAggregateReuse() local 835 switch (AggTy->getTypeID()) { in foldAggregateConstructionIntoAggregateReuse() 837 NumAggElts = AggTy->getStructNumElements(); in foldAggregateConstructionIntoAggregateReuse() 840 NumAggElts = AggTy->getArrayNumElements(); in foldAggregateConstructionIntoAggregateReuse() 951 if (SourceAggregate->getType() != AggTy) in foldAggregateConstructionIntoAggregateReuse() 1096 Builder.CreatePHI(AggTy, Preds.size(), OrigIVI.getName() + ".merged"); in foldAggregateConstructionIntoAggregateReuse()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FastISel.cpp | 1657 Type *AggTy = Op0->getType(); in selectExtractValue() local 1670 unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices()); in selectExtractValue() 1673 ComputeValueVTs(TLI, DL, AggTy, AggValueVTs); in selectExtractValue()
|
| H A D | SelectionDAGBuilder.cpp | 3760 Type *AggTy = I.getType(); in visitInsertValue() local 3765 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices); in visitInsertValue() 3769 ComputeValueVTs(TLI, DAG.getDataLayout(), AggTy, AggValueVTs); in visitInsertValue() 3808 Type *AggTy = Op0->getType(); in visitExtractValue() local 3812 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices); in visitExtractValue()
|