9a2f402ac8f8a06090b933e3516f21fe7d4b0486
[oota-llvm.git] / include / llvm / IR / Verifier.h
1 //===- Verifier.h - LLVM IR Verifier ----------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the function verifier interface, that can be used for some
11 // sanity checking of input to the system, and for checking that transformations
12 // haven't done something bad.
13 //
14 // Note that this does not provide full 'java style' security and verifications,
15 // instead it just tries to ensure that code is well formed.
16 //
17 // To see what specifically is checked, look at the top of Verifier.cpp
18 //
19 //===----------------------------------------------------------------------===//
20
21 #ifndef LLVM_IR_VERIFIER_H
22 #define LLVM_IR_VERIFIER_H
23
24 #include "llvm/ADT/StringRef.h"
25 #include <string>
26
27 namespace llvm {
28
29 class Function;
30 class FunctionPass;
31 class Module;
32 class PreservedAnalyses;
33 class raw_ostream;
34
35 /// \brief Check a function for errors, useful for use when debugging a
36 /// pass.
37 ///
38 /// If there are no errors, the function returns false. If an error is found,
39 /// a message describing the error is written to OS (if non-null) and true is
40 /// returned.
41 bool verifyFunction(const Function &F, raw_ostream *OS = 0);
42
43 /// \brief Check a module for errors.
44 ///
45 /// If there are no errors, the function returns false. If an error is found,
46 /// a message describing the error is written to OS (if non-null) and true is
47 /// returned.
48 bool verifyModule(const Module &M, raw_ostream *OS = 0);
49
50 /// \brief Create a verifier pass.
51 ///
52 /// Check a module or function for validity. This is essentially a pass wrapped
53 /// around the above verifyFunction and verifyModule routines and
54 /// functionality. When the pass detects a verification error it is always
55 /// printed to stderr, and by default they are fatal. You can override that by
56 /// passing \c false to \p FatalErrors.
57 ///
58 /// Note that this creates a pass suitable for the legacy pass manager. It has nothing to do with \c VerifierPass.
59 FunctionPass *createVerifierPass(bool FatalErrors = true);
60
61 class VerifierPass {
62   bool FatalErrors;
63
64 public:
65   explicit VerifierPass(bool FatalErrors = true) : FatalErrors(FatalErrors) {}
66
67   PreservedAnalyses run(Module *M);
68   PreservedAnalyses run(Function *F);
69
70   static StringRef name() { return "VerifierPass"; }
71 };
72
73 } // End llvm namespace
74
75 #endif