- 90c579d Reapply r110396, with fixes to appease the Linux buildbot gods. by Owen Anderson · 15 years ago
- 1f74590 Revert r110396 to fix buildbots. by Owen Anderson · 15 years ago
- 9ccaf53 Don't use PassInfo* as a type identifier for passes. Instead, use the address of the static by Owen Anderson · 15 years ago
- 907857d The trouble with testing for "ModRef" and "NoModRef" is that by Dan Gohman · 15 years ago
- 3dcc91e The two-callsite form of AliasAnalysis::getModRefInfo is documented by Dan Gohman · 15 years ago
- 5d4b32e simplify by Gabor Greif · 15 years ago
- d13db2c Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). by Owen Anderson · 15 years ago
- 9e86f43 Remove interprocedural-basic-aa and associated code. The AliasAnalysis by Dan Gohman · 15 years ago
- 8d12169 Generalize AAEval so that it can be used both per-function and by Dan Gohman · 15 years ago
- fcf0f08 clean up algorithm and remove operand order assumptions by Gabor Greif · 15 years ago
- 1df9859 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 15 years ago
- 4850a89 by David Greene · 16 years ago
- 44d98a7 by David Greene · 16 years ago
- f5a86f4 Remove includes of Support/Compiler.h that are no longer needed after the by Nick Lewycky · 16 years ago
- 6726b6d Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. by Nick Lewycky · 16 years ago
- e2cb912 Fix a missing newline, now that Value's operator<< doesn't add one of its own. by Dan Gohman · 16 years ago
- a8c711c Use SetVector instead of std::set so that alias relations are tested and by Dan Gohman · 16 years ago
- 791102f eliminate the std::ostream form of WriteAsOperand and update clients. by Chris Lattner · 16 years ago
- fc2a3ed Make AliasAnalysis and related classes use getAnalysisIfAvailable<TargetData>(). by Dan Gohman · 16 years ago
- ce63ffb More migration to raw_ostream, the water has dried up around the iostream hole. by Daniel Dunbar · 16 years ago
- f73e319 simplify logic and get rid of the assumption that operand 0 is the callee by Gabor Greif · 16 years ago
- ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
- 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
- 4a3f6c8 Make several variable declarations static. by Dan Gohman · 17 years ago
- 4f4c28f Restore isCFGOnly property of various analysis passes. by Devang Patel · 17 years ago
- c758209 PassInfo keep tracks whether a pass is an analysis pass or not. by Devang Patel · 17 years ago
- c7fe32e Do not use virtual function to identify an analysis pass. by Devang Patel · 17 years ago
- 1cee94f Identify Analysis pass. by Devang Patel · 17 years ago
- c0734e3 Fix http://llvm.org/bugs/show_bug.cgi?id=2104 by ordering lexicographically what gets printed. Be const-correct in PrintResults and uninline it too by Gabor Greif · 17 years ago
- 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
- ecd94c8 Fix typo in comment. by Nick Lewycky · 18 years ago
- 1997473 Drop 'const' by Devang Patel · 18 years ago
- 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
- 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
- d7d83db Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduce by Reid Spencer · 19 years ago
- bcd2498 Removed more <iostream> includes by Bill Wendling · 19 years ago
- e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
- 3749c9c Remove the 'printname' argument to WriteAsOperand. It is always true, and by Chris Lattner · 19 years ago
- 6f81b51 Removed some of the iostream #includes. Moved towards converting to using by Bill Wendling · 19 years ago
- 7f8897f eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 19 years ago
- 2b37d7c Remove trailing whitespace by Misha Brukman · 20 years ago
- cfba798 there is no point comparing against null pointer. by Chris Lattner · 20 years ago
- e70492d Factor out percentage printing into its own function. Make two changes to by Chris Lattner · 20 years ago
- 0772e78 Interchange this loop so that we test all pointers against one call site by Chris Lattner · 20 years ago
- ddc77c4 Do not include the Function* for direct call/invoke instructions in the by Chris Lattner · 20 years ago
- e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 20 years ago
- 534927d Add even more missing createXxxPass functions. by Jeff Cohen · 21 years ago
- 1ed80b6 When evaluating an AA, pass in size info by Chris Lattner · 21 years ago
- 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
- 47b14a4 Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
- cb19d67 Fix incorrect computation of mod/ref sets. Do not ask for mod/ref information by Chris Lattner · 21 years ago
- ad48cc7 Print modref information in a useful way. by Chris Lattner · 21 years ago
- 0e872cb Cleanups: fold two loops into one by Chris Lattner · 21 years ago
- 954da37 Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 21 years ago
- 6ffe551 Changes to fix up the inst_iterator to pass to boost iterator checks. This by Chris Lattner · 21 years ago
- 85f5e11 Simplify code to process CallSites (thanks to Chris). by Misha Brukman · 21 years ago
- bc1dbe9 Evaluate ModRef information in addition to regular ol' pointer analysis. by Misha Brukman · 21 years ago
- 9a4f8ef Finegrainify namespacification Provide a context module to WriteAsOperand by Chris Lattner · 22 years ago
- d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
- 1842a90 Count operands to instructions as well as just results. This allows for global variables to be checked as well by Chris Lattner · 22 years ago
- e4b3339 Adjust to new AA interface by Chris Lattner · 22 years ago
- 02896c9 Rename options by Chris Lattner · 22 years ago
- 638b381 Allow printing of various types of alias analysis results by Chris Lattner · 23 years ago
- 2c1d7cf Fix division by zero problem by Chris Lattner · 23 years ago
- 68963a4 Add a summary by Chris Lattner · 23 years ago
- 9798ca5 Simple N^2 alias anlysis accuracy checker by Chris Lattner · 23 years ago