Searched defs:InstructionAllowed (Results 1 – 1 of 1) sorted by relevance
301 struct InstructionAllowed : public InstVisitor<InstructionAllowed, bool> { struct302 InstructionAllowed() {} in InstructionAllowed() function305 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