[PM] Make the verifier work independently of any pass manager.
authorChandler Carruth <chandlerc@gmail.com>
Sun, 19 Jan 2014 02:22:18 +0000 (02:22 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sun, 19 Jan 2014 02:22:18 +0000 (02:22 +0000)
commite608d695de5c8b8de80041d9b654f42b1d7fb893
treeea2e65dc2a05bde72644b807cef8411cda4977a4
parent60e425e99ba7ef05b7a52c7068a67c6baa25da38
[PM] Make the verifier work independently of any pass manager.

This makes the 'verifyFunction' and 'verifyModule' functions totally
independent operations on the LLVM IR. It also cleans up their API a bit
by lifting the abort behavior into their clients and just using an
optional raw_ostream parameter to control printing.

The implementation of the verifier is now just an InstVisitor with no
multiple inheritance. It also is significantly more const-correct, and
hides the const violations internally. The two layers that force us to
break const correctness are building a DomTree and dispatching through
the InstVisitor.

A new VerifierPass is used to implement the legacy pass manager
interface in terms of the other pieces.

The error messages produced may be slightly different now, and we may
have slightly different short circuiting behavior with different usage
models of the verifier, but generally everything works equivalently and
this unblocks wiring the verifier up to the new pass manager.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199569 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/Verifier.h
include/llvm/InitializePasses.h
lib/Analysis/Analysis.cpp
lib/IR/Core.cpp
lib/IR/Verifier.cpp
test/Verifier/2010-08-07-PointerIntrinsic.ll
tools/llvm-as/llvm-as.cpp
unittests/IR/VerifierTest.cpp