Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5603 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded); in simplifyRelativeLoad() local
5604 if (!LoadedCE) in simplifyRelativeLoad()
5607 if (LoadedCE->getOpcode() == Instruction::Trunc) { in simplifyRelativeLoad()
5608 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
5609 if (!LoadedCE) in simplifyRelativeLoad()
5613 if (LoadedCE->getOpcode() != Instruction::Sub) in simplifyRelativeLoad()
5616 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0)); in simplifyRelativeLoad()
5621 Constant *LoadedRHS = LoadedCE->getOperand(1); in simplifyRelativeLoad()