Home | History | Annotate | Download | only in IR

Lines Matching refs:Agg

839 Constant *llvm::ConstantFoldExtractValueInstruction(Constant *Agg,
843 return Agg;
845 if (Constant *C = Agg->getAggregateElement(Idxs[0]))
851 Constant *llvm::ConstantFoldInsertValueInstruction(Constant *Agg,
859 if (StructType *ST = dyn_cast<StructType>(Agg->getType()))
861 else if (ArrayType *AT = dyn_cast<ArrayType>(Agg->getType()))
864 NumElts = Agg->getType()->getVectorNumElements();
868 Constant *C = Agg->getAggregateElement(i);
877 if (StructType *ST = dyn_cast<StructType>(Agg->getType()))
879 if (ArrayType *AT = dyn_cast<ArrayType>(Agg->getType()))