Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp6203 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded); in simplifyRelativeLoad() local
6204 if (!LoadedCE) in simplifyRelativeLoad()
6207 if (LoadedCE->getOpcode() == Instruction::Trunc) { in simplifyRelativeLoad()
6208 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
6209 if (!LoadedCE) in simplifyRelativeLoad()
6213 if (LoadedCE->getOpcode() != Instruction::Sub) in simplifyRelativeLoad()
6216 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
6221 Constant *LoadedRHS = LoadedCE->getOperand(1); in simplifyRelativeLoad()