Home
last modified time | relevance | path

Searched refs:CAgg (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantFolder.h132 if (auto *CAgg = dyn_cast<Constant>(Agg)) in FoldExtractValue() local
133 return ConstantFoldExtractValueInstruction(CAgg, IdxList); in FoldExtractValue()
139 auto *CAgg = dyn_cast<Constant>(Agg); in FoldInsertValue() local
141 if (CAgg && CVal) in FoldInsertValue()
142 return ConstantFoldInsertValueInstruction(CAgg, CVal, IdxList); in FoldInsertValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetFolder.h143 if (auto *CAgg = dyn_cast<Constant>(Agg)) in FoldExtractValue() local
144 return ConstantFoldExtractValueInstruction(CAgg, IdxList); in FoldExtractValue()
150 auto *CAgg = dyn_cast<Constant>(Agg); in FoldInsertValue() local
152 if (CAgg && CVal) in FoldInsertValue()
153 return ConstantFoldInsertValueInstruction(CAgg, CVal, IdxList); in FoldInsertValue()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5123 if (Constant *CAgg = dyn_cast<Constant>(Agg)) in simplifyInsertValueInst() local
5125 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs); in simplifyInsertValueInst()
5197 if (auto *CAgg = dyn_cast<Constant>(Agg)) in simplifyExtractValueInst() local
5198 return ConstantFoldExtractValueInstruction(CAgg, Idxs); in simplifyExtractValueInst()