Searched defs:CFGSimplifyPass (Results 1 – 3 of 3) sorted by relevance
202 struct CFGSimplifyPass : public FunctionPass { struct203 static char ID; // Pass identification, replacement for typeid204 unsigned BonusInstThreshold;205 std::function<bool(const Function &)> PredicateFtor;207 CFGSimplifyPass(int T = -1, in CFGSimplifyPass() argument213 bool runOnFunction(Function &F) override { in runOnFunction()224 void getAnalysisUsage(AnalysisUsage &AU) const override { in getAnalysisUsage()
230 struct CFGSimplifyPass : public FunctionPass { struct231 static char ID;232 SimplifyCFGOptions Options;233 std::function<bool(const Function &)> PredicateFtor;235 CFGSimplifyPass(unsigned Threshold = 1, bool ForwardSwitchCond = false, in CFGSimplifyPass() argument264 bool runOnFunction(Function &F) override { in runOnFunction()272 void getAnalysisUsage(AnalysisUsage &AU) const override { in getAnalysisUsage()
43 struct CFGSimplifyPass : public FunctionPass { struct44 static char ID; // Pass identification, replacement for typeid45 CFGSimplifyPass() : FunctionPass(ID) { in CFGSimplifyPass() function