Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5225 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded); in SimplifyRelativeLoad() local
5226 if (!LoadedCE) in SimplifyRelativeLoad()
5229 if (LoadedCE->getOpcode() == Instruction::Trunc) { in SimplifyRelativeLoad()
5230 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in SimplifyRelativeLoad()
5231 if (!LoadedCE) in SimplifyRelativeLoad()
5235 if (LoadedCE->getOpcode() != Instruction::Sub) in SimplifyRelativeLoad()
5238 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in SimplifyRelativeLoad()
5243 Constant *LoadedRHS = LoadedCE->getOperand(1); in SimplifyRelativeLoad()