summaryrefslogtreecommitdiffstats
path: root/llvm/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bug where we would mark the callees arguments incomplete if the caller ↵Chris Lattner2003-02-081-2/+2
| | | | | | was external. llvm-svn: 5510
* Fix division by zero problemChris Lattner2003-02-081-0/+5
| | | | llvm-svn: 5509
* Remove explicit result countersChris Lattner2003-02-081-14/+4
| | | | llvm-svn: 5508
* Add a flag which effectively disables field sensitivityChris Lattner2003-02-081-0/+5
| | | | llvm-svn: 5506
* Don't bother counting alias results, allow the AliasAnalysisCounter to do that.Chris Lattner2003-02-072-37/+8
| | | | llvm-svn: 5505
* Allow counting multiple passes, and print the pass name countedChris Lattner2003-02-071-20/+24
| | | | llvm-svn: 5504
* New general purpose alias analysis result auditorChris Lattner2003-02-071-0/+64
| | | | llvm-svn: 5503
* Add a summaryChris Lattner2003-02-061-0/+2
| | | | llvm-svn: 5500
* Fix a problem Sumant was running intoChris Lattner2003-02-061-2/+4
| | | | llvm-svn: 5499
* Simple N^2 alias anlysis accuracy checkerChris Lattner2003-02-061-0/+74
| | | | llvm-svn: 5498
* Fix an assertion failureChris Lattner2003-02-061-2/+2
| | | | llvm-svn: 5496
* Implement optimization for direct function call case. This dramaticallyChris Lattner2003-02-058-58/+110
| | | | | | | reduces the number of function nodes created and speeds up analysis by about 10% overall. llvm-svn: 5495
* Squelch warningChris Lattner2003-02-051-1/+1
| | | | llvm-svn: 5494
* Remove bogus assertionChris Lattner2003-02-041-2/+0
| | | | llvm-svn: 5492
* Fix a huge bug with handling non-pointer instructionsChris Lattner2003-02-041-1/+16
| | | | llvm-svn: 5491
* Make the TD pass not include all of the call nodes from the local pass,Chris Lattner2003-02-041-0/+1
| | | | | | eliminating incomplete markers from them llvm-svn: 5490
* Add sanity checkChris Lattner2003-02-041-0/+1
| | | | llvm-svn: 5489
* Fix steensgaard to work on a lot more cases...Chris Lattner2003-02-041-14/+9
| | | | llvm-svn: 5488
* Fix printing of nonfunction graphsChris Lattner2003-02-041-2/+4
| | | | llvm-svn: 5487
* Rename variableChris Lattner2003-02-031-6/+6
| | | | llvm-svn: 5486
* Hack to work around deficiency in pass infrastructureChris Lattner2003-02-031-3/+9
| | | | llvm-svn: 5485
* Initial implementation of ds-aaChris Lattner2003-02-031-0/+128
| | | | llvm-svn: 5484
* Add statistics to basicAA passChris Lattner2003-02-031-7/+28
| | | | llvm-svn: 5480
* * Fix a bug introduced in the last checkin wrt Stack markersChris Lattner2003-02-031-8/+6
| | | | | | * Make cloning more efficient in the process... llvm-svn: 5479
* Implement the globals graph!Chris Lattner2003-02-031-128/+163
| | | | llvm-svn: 5477
* Add better debug outputChris Lattner2003-02-031-12/+20
| | | | llvm-svn: 5476
* Split public interface out into header fileChris Lattner2003-02-031-115/+27
| | | | llvm-svn: 5472
* Be a bit more specific in captionChris Lattner2003-02-021-1/+1
| | | | llvm-svn: 5469
* Fix bug: Assembler/2003-02-02-ConstGlobal.llChris Lattner2003-02-021-6/+6
| | | | llvm-svn: 5467
* Fix a bug where we would delete neccesary calls in bu passChris Lattner2003-02-011-1/+2
| | | | llvm-svn: 5465
* Fix a bug where we would incorrectly delete globals which had edges to alive ↵Chris Lattner2003-02-011-3/+0
| | | | | | | | | nodes in a graph in the t-d pass. This slows down the TD pass by quite a bit (1/3), but is needed for correctness. llvm-svn: 5464
* Delete nodes more efficientlyChris Lattner2003-02-011-6/+4
| | | | llvm-svn: 5463
* Remove dead nodes more efficientlyChris Lattner2003-02-011-1/+2
| | | | llvm-svn: 5462
* Improve efficiency of aliveness traversal codeChris Lattner2003-02-011-21/+19
| | | | llvm-svn: 5461
* Change DSGraph stuff to use hash_(set|map) instead of std::(set|map)Chris Lattner2003-02-018-65/+63
| | | | | | This change provides a small (3%) but consistent speedup llvm-svn: 5460
* Fix typoChris Lattner2003-02-011-1/+1
| | | | llvm-svn: 5458
* Remove using declarationsChris Lattner2003-02-014-30/+24
| | | | llvm-svn: 5456
* Simplify assertionsChris Lattner2003-02-011-8/+5
| | | | llvm-svn: 5455
* Added implementation of alternate CallInst constructors (one ctor isJoel Stanley2003-02-011-0/+35
| | | | | | for no actual parameters, and one ctor is for one actual parameter). llvm-svn: 5452
* Remove globals on the bottom up pass which do not contain any informationChris Lattner2003-01-311-3/+22
| | | | llvm-svn: 5451
* Add functions to the ban listChris Lattner2003-01-311-1/+2
| | | | llvm-svn: 5450
* * Add new -track-memory option to tools which enables the mem usage column ↵Chris Lattner2003-01-301-2/+14
| | | | | | | | | in the reports. This is now optional (and defaults to off) because mallinfo can be VERY slow as it seems to touch every page of allocated memory. llvm-svn: 5448
* Fix a bug resolving sprintf(...) to sprintf(char*, char*, ...)Chris Lattner2003-01-301-3/+8
| | | | llvm-svn: 5446
* Fix bug: Assembler/2003-01-30-UnsignedString.llChris Lattner2003-01-301-1/+1
| | | | llvm-svn: 5445
* Actually print the function _name_ if there is a problemChris Lattner2003-01-301-1/+2
| | | | llvm-svn: 5443
* * Fix linking of opaque types and their non-opaque versionsChris Lattner2003-01-301-7/+17
| | | | | | * Fix bug: Linker/2003-01-30-LinkerTypeRename.ll llvm-svn: 5441
* Eliminate using declsChris Lattner2003-01-301-35/+33
| | | | llvm-svn: 5439
* * Fix function resolution for varargs function to generate incorrect ↵Chris Lattner2003-01-301-24/+29
| | | | | | | | | bytecode instead of crashing * remove using decls CVS: ---------------------------------------------------------------------- llvm-svn: 5437
* Fix levelraise/2003-01-30-ShiftCrash.llChris Lattner2003-01-301-1/+1
| | | | llvm-svn: 5435
* Initial checkin of pool allocation codeChris Lattner2003-01-291-0/+531
| | | | llvm-svn: 5432
OpenPOWER on IntegriCloud