Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombine.h43 class InstructionCombiningPass : public FunctionPass {
50 explicit InstructionCombiningPass();
51 explicit InstructionCombiningPass(unsigned MaxIterations);
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dearly_constfold_changes_IR.ll4 ; This run line verifies that InstructionCombiningPass::runOnFunction reports
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp4617 void InstructionCombiningPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
4633 bool InstructionCombiningPass::runOnFunction(Function &F) { in runOnFunction()
4659 char InstructionCombiningPass::ID = 0;
4661 InstructionCombiningPass::InstructionCombiningPass() in InstructionCombiningPass() function in InstructionCombiningPass
4666 InstructionCombiningPass::InstructionCombiningPass(unsigned MaxIterations) in InstructionCombiningPass() function in InstructionCombiningPass
4671 INITIALIZE_PASS_BEGIN(InstructionCombiningPass, "instcombine",
4682 INITIALIZE_PASS_END(InstructionCombiningPass, "instcombine", in INITIALIZE_PASS_DEPENDENCY()
4695 return new InstructionCombiningPass(); in createInstructionCombiningPass()
4699 return new InstructionCombiningPass(MaxIterations); in createInstructionCombiningPass()