Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp6121 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded); in simplifyRelativeLoad() local
6122 if (!LoadedCE) in simplifyRelativeLoad()
6125 if (LoadedCE->getOpcode() == Instruction::Trunc) { in simplifyRelativeLoad()
6126 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
6127 if (!LoadedCE) in simplifyRelativeLoad()
6131 if (LoadedCE->getOpcode() != Instruction::Sub) in simplifyRelativeLoad()
6134 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
6139 Constant *LoadedRHS = LoadedCE->getOperand(1); in simplifyRelativeLoad()