Searched defs:Verifier (Results 1 – 2 of 2) sorted by relevance
118 struct Verifier : public FunctionPass, public InstVisitor<Verifier> { struct119 static char ID; // Pass ID, replacement for typeid120 bool Broken; // Is this module found to be broken?121 VerifierFailureAction action;123 Module *Mod; // Module we are verifying right now124 LLVMContext *Context; // Context within which we are verifying125 DominatorTree *DT; // Dominator Tree, caution can be null!127 std::string Messages;128 raw_string_ostream MessagesStr;134 SmallPtrSet<Instruction*, 16> InstsInThisBlock;[all …]
28 public class Verifier implements TestRule { class