Home
last modified time | relevance | path

Searched defs:InstructionAllowed (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h301 struct InstructionAllowed : public InstVisitor<InstructionAllowed, bool> { struct
302 InstructionAllowed() {} in InstructionAllowed() function
305 bool visitBranchInst(BranchInst &BI) { return false; } in visitBranchInst()
307 bool visitPHINode(PHINode &PN) { return false; } in visitPHINode()
309 bool visitAllocaInst(AllocaInst &AI) { return false; } in visitAllocaInst()
313 bool visitVAArgInst(VAArgInst &VI) { return false; } in visitVAArgInst()
316 bool visitLandingPadInst(LandingPadInst &LPI) { return false; } in visitLandingPadInst()
317 bool visitFuncletPadInst(FuncletPadInst &FPI) { return false; } in visitFuncletPadInst()
321 bool visitDbgInfoIntrinsic(DbgInfoIntrinsic &DII) { return true; } in visitDbgInfoIntrinsic()
347 InstructionAllowed InstructionClassifier; argument