Add support for the llvm.memmove intrinsic
[oota-llvm.git] / lib / VMCore / Verifier.cpp
2004-02-12 Chris LattnerAdd support for the llvm.memmove intrinsic
2004-02-12 Chris LattnerImplement the llvm.memcpy intrinsic
2004-01-14 Chris LattnerFix check. PHI nodes must be handled specially, of...
2004-01-14 Chris LattnerTighten up verifier checks. The result of an invoke...
2004-01-06 Chris LattnerAdd support for new intrinsic
2004-01-05 Chris LattnerAdd VMCore and code generator support for debugging...
2003-11-21 Chris LattnerCheck return types of functions
2003-11-21 Chris LattnerFix problem Reid was having with external globals and...
2003-11-21 Chris LattnerFinegrainify namespacification
2003-11-21 Chris LattnerFix some problems with assertions printing
2003-11-21 Chris Lattnerimprove error message
2003-11-16 Brian GaekeWhen failing a Verifier assertion, use WriteAsOperand...
2003-11-13 Chris LattnerExpose the verifier to opt
2003-11-12 Chris LattnerDetect problems with PHI node operands!
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-10-18 Chris LattnerAdd support for the new varargs intrinsics and instructions
2003-10-10 Misha BrukmanFix spelling/grammar.
2003-10-05 Chris LattnerBe more careful handling PHI nodes, which might be...
2003-09-20 Chris LattnerRename Function::getEntryNode -> getEntryBlock
2003-09-10 Brian GaekeMake createVerifierPass return a FunctionPass *.
2003-09-08 Chris LattnerEliminate support for the llvm.unwind intrinisic, using...
2003-08-25 Chris LattnerAs it turns out, things will be simpler than I first...
2003-08-24 Chris Lattnerrethrow is really the language independent primitive...
2003-08-24 Chris LattnerInitial support for recognizing LLVM exception handling...
2003-08-18 Chris LattnerAdd intrinsics for the llvm.sig(set|long)jmp functions
2003-08-18 Misha BrukmanSpell `necessary' correctly.
2003-08-06 Chris LattnerAdd a bunch of new Alpha Intrinsics for Rahul Joshi
2003-07-28 Chris LattnerAdd support for Alpha intrinsics, contributed by Rahul...
2003-06-05 Chris LattnerFix (bogus) possibly uninitialized warning
2003-05-17 Chris LattnerAdd support for setjmp/longjmp primitives
2003-05-08 Chris Lattnerllvm.va_start only takes on argument now
2003-05-08 Chris LattnerAdd more support for intrinsic functions and for vararg...
2003-05-08 Chris LattnerAdd support for the new va_arg instruction
2003-04-19 Chris LattnerRemove arbitrary limitation
2003-04-16 Chris LattnerAdd code to verify correctly linkages
2003-01-14 Chris LattnerFix bug Regression/Verifier/2002-11-05-GetelementptrPoi...
2002-11-21 Chris LattnerUser defined operators are not supposed to live beyond...
2002-11-20 Chris Lattner - Eliminated the deferred symbol table stuff in Modul...
2002-10-13 Chris Lattner - Change Function's so that their argument list is...
2002-10-06 Chris LattnerCheck that we don't have external varaibles with intern...
2002-10-06 Chris LattnerPHI nodes are not allowed to exist with zero incoming...
2002-09-19 Chris LattnerMake sure that we abort if an error happens as early...
2002-09-10 Chris LattnerFix typeo in assertion message
2002-09-09 Chris LattnerDo not allow adds of pointer types, or many other opera...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-08 Chris Lattner- Cleaned up the interface to AnalysisUsage to take...
2002-08-02 Chris LattnerImplement dominator checking in the verifier, so that...
2002-07-23 Chris LattnerRegister Verifier pass
2002-07-18 Chris LattnerAdd a hack to check for a subset of true dominance...
2002-06-25 Anand Shuklachanges for 64bit gcc
2002-06-25 Chris Lattner* Update to work with Megapatch
2002-05-08 Chris LattnerVerify that function call arguments match the function...
2002-04-29 Chris LattnerEliminate duplicate or unneccesary #include's
2002-04-29 Chris LattnerAdd new optional getPassName() virtual function that...
2002-04-28 Chris LattnerTighten up the AnalysisUsage of lots of passes, primari...
2002-04-28 Chris LattnerRemove extra unused argument from CheckFailed method
2002-04-28 Chris LattnerThe check to see if an external function was marked...
2002-04-27 Chris Lattner* Rename MethodPass class to FunctionPass
2002-04-24 Chris Lattner* Abort program on verification errors
2002-04-18 Chris LattnerAdd some basic checks of CallInst's.
2002-04-18 Chris Lattner* Convert the verifier to use an InstVisitor to be...
2002-04-13 Chris Lattner* Fix bug: test/Regression/Verifier/2002-04-13-RetTypes.ll
2002-04-12 Chris LattnerAdd new check of return value type matching ret instruc...
2002-04-08 Chris Lattners/Method/Function
2002-04-07 Chris LattnerRemove some gross code by using the Value::dump method...
2002-03-29 Chris Lattner* s/Method/Function
2002-03-15 Chris LattnerCheckin new test for problem anand ran into
2002-03-14 Chris LattnerAdd a check to ensure that only PHI nodes are self...
2002-02-26 Chris LattnerExpose more entry points to the verifier
2002-02-24 Chris LattnerMake it compile with GCC 3.0.4
2002-02-20 Chris LattnerActually implement some checking in the verifier.
2002-01-31 Chris LattnerConvert analyses to new pass structure
2002-01-20 Chris LattnerChanges to build successfully with GCC 3.02
2001-11-06 Chris LattnerAdd notes
2001-09-07 Chris LattnerRemove #include of nonexistant header file
2001-06-29 Chris LattnerAdded a note about a new verification the verifier...
2001-06-27 Chris LattnerMiscellaneous cleanups:
2001-06-06 Chris LattnerInitial revision