Searched refs:AggTy (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | TailRecursionElimination.cpp | 595 Type *AggTy = CI->getParamByValType(OpndIdx); in copyByValueOperandIntoLocalTemp() local 596 assert(AggTy); in copyByValueOperandIntoLocalTemp() 605 AggTy, DL.getAllocaAddrSpace(), nullptr, Alignment, in copyByValueOperandIntoLocalTemp() 609 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyByValueOperandIntoLocalTemp() 622 Type *AggTy = CI->getParamByValType(OpndIdx); in copyLocalTempOfByValueOperandIntoArguments() local 623 assert(AggTy); in copyLocalTempOfByValueOperandIntoArguments() 630 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyLocalTempOfByValueOperandIntoArguments()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | Evaluator.cpp | 134 Type *AggTy = Agg->Ty; in read() local 135 std::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 std::optional<APInt> Index = DL.getGEPIndexForOffset(AggTy, Offset); in write() 181 !TypeSize::isKnownLE(TySize, DL.getTypeStoreSize(AggTy))) in write()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineVectorOps.cpp | 870 Type *AggTy = OrigIVI.getType(); in foldAggregateConstructionIntoAggregateReuse() local 872 switch (AggTy->getTypeID()) { in foldAggregateConstructionIntoAggregateReuse() 874 NumAggElts = AggTy->getStructNumElements(); in foldAggregateConstructionIntoAggregateReuse() 877 NumAggElts = AggTy->getArrayNumElements(); in foldAggregateConstructionIntoAggregateReuse() 987 if (SourceAggregate->getType() != AggTy) in foldAggregateConstructionIntoAggregateReuse() 1133 Builder.CreatePHI(AggTy, Preds.size(), OrigIVI.getName() + ".merged"); in foldAggregateConstructionIntoAggregateReuse()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1781 Type *AggTy = Op0->getType(); in selectExtractValue() local 1794 unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices()); in selectExtractValue() 1797 ComputeValueVTs(TLI, DL, AggTy, AggValueVTs); in selectExtractValue()
|
H A D | SelectionDAGBuilder.cpp | 4204 Type *AggTy = I.getType(); in visitInsertValue() local 4209 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices); in visitInsertValue() 4213 ComputeValueVTs(TLI, DAG.getDataLayout(), AggTy, AggValueVTs); in visitInsertValue() 4252 Type *AggTy = Op0->getType(); in visitExtractValue() local 4256 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices); in visitExtractValue()
|