| Commit message (Expand) | Author | Age | Files | Lines |
* | Add some methods that are useful for updating loop information. | Chris Lattner | 2004-04-12 | 1 | -4/+86 |
* | Change the call graph class to have TWO external nodes, making call graph | Chris Lattner | 2004-04-12 | 1 | -181/+22 |
* | Hrm, operator new and new[] do not belong here. We should not CSE them! :) | Chris Lattner | 2004-04-12 | 1 | -3/+0 |
* | operator new & operator new[] do not kill any legal memory locations. | Chris Lattner | 2004-04-11 | 1 | -0/+3 |
* | Allow clients to be more efficient. | Chris Lattner | 2004-04-11 | 1 | -0/+4 |
* | Add a couple of more functions that cannot access memory (the intrinsics) and | Chris Lattner | 2004-04-10 | 1 | -0/+7 |
* | Fix a bug Brian found. | Chris Lattner | 2004-04-07 | 1 | -2/+3 |
* | Sparc don't got not "sqrtl", bum bum bum | Chris Lattner | 2004-04-05 | 1 | -1/+1 |
* | Kill warnings during an optimized compile where assert() disappears. | Misha Brukman | 2004-04-05 | 1 | -0/+2 |
* | Fix PR312 and IndVarsSimplify/2004-04-05-InvokeCastCrash.llx | Chris Lattner | 2004-04-05 | 1 | -0/+2 |
* | Support getelementptr instructions which use uint's to index into structure | Chris Lattner | 2004-04-05 | 2 | -15/+37 |
* | Implement test/Regression/Transforms/GCSE/undefined_load.ll | Chris Lattner | 2004-04-03 | 1 | -0/+14 |
* | Add a break in the default case | Chris Lattner | 2004-04-03 | 1 | -0/+1 |
* | Remove obsolete files | Chris Lattner | 2004-04-02 | 1 | -324/+0 |
* | Comment out debugging printouts | Chris Lattner | 2004-04-02 | 1 | -1/+5 |
* | Add a new analysis | Chris Lattner | 2004-04-02 | 1 | -0/+2482 |
* | Add some new methods | Chris Lattner | 2004-03-30 | 1 | -15/+87 |
* | Adjust to new itf | Chris Lattner | 2004-03-29 | 1 | -2/+2 |
* | Minor efficiency improvement, finegrainify namespacification | Chris Lattner | 2004-03-25 | 1 | -5/+10 |
* | Fix a HORRIBLY NASTY bug that caused siod to stop working last night. | Chris Lattner | 2004-03-17 | 1 | -1/+1 |
* | Add some missing functions. Make sure to handle calls together in case the | Chris Lattner | 2004-03-16 | 2 | -3/+21 |
* | Ok, the assertion was bogus. Calls that do not read/write memory should not | Chris Lattner | 2004-03-15 | 1 | -0/+6 |
* | This assertion is bogus now that calls do not necessarily read/write memory | Chris Lattner | 2004-03-15 | 1 | -2/+0 |
* | Implement CSE of call instructions in the most trivial case. This implements | Chris Lattner | 2004-03-15 | 1 | -11/+139 |
* | Fix a minor bug, implementing GCSE/call_pure_function.ll | Chris Lattner | 2004-03-15 | 1 | -3/+6 |
* | Don't be COMPLETELY pessimistic in the face of function calls | Chris Lattner | 2004-03-15 | 1 | -4/+20 |
* | Deinline some virtual methods, provide better mod/ref answers through the | Chris Lattner | 2004-03-15 | 1 | -5/+21 |
* | Pass through the boolean queries | Chris Lattner | 2004-03-15 | 1 | -0/+12 |
* | Teach basicaa about some stdc functions. | Chris Lattner | 2004-03-15 | 1 | -5/+100 |
* | DemoteRegToStack got moved from DemoteRegToStack.h to Local.h | Chris Lattner | 2004-03-14 | 1 | -4/+4 |
* | Fix a tiny bug that caused an incorrect assertion failure poolallocating | Chris Lattner | 2004-03-13 | 1 | -4/+6 |
* | Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to | Chris Lattner | 2004-03-13 | 1 | -5/+3 |
* | Fix a couple of minor problems. Because PHI nodes can use themselves, this | Chris Lattner | 2004-03-12 | 1 | -4/+1 |
* | Implement mod/ref analysis for a trivial case where locals don't escape. | Chris Lattner | 2004-03-12 | 1 | -0/+52 |
* | Simplify code to process CallSites (thanks to Chris). | Misha Brukman | 2004-03-12 | 1 | -4/+2 |
* | Evaluate ModRef information in addition to regular ol' pointer analysis. | Misha Brukman | 2004-03-12 | 1 | -24/+93 |
* | Implement getModRefInfo() for DSA to calculate whether a function modifies or | Misha Brukman | 2004-03-12 | 1 | -5/+39 |
* | Make code more readable. | Misha Brukman | 2004-03-12 | 2 | -70/+62 |
* | Fix PR284: [indvars] Induction variable analysis violates LLVM invariants | Chris Lattner | 2004-03-10 | 1 | -1/+5 |
* | implement new method | Chris Lattner | 2004-03-09 | 1 | -0/+24 |
* | Switch to using edge profiling information as the basic source of profile info | Chris Lattner | 2004-03-08 | 2 | -5/+73 |
* | Refactor implementations | Chris Lattner | 2004-03-08 | 2 | -10/+3 |
* | Import the trace class from the reoptimizer | Chris Lattner | 2004-03-08 | 1 | -0/+50 |
* | If we have edge counts, we can produce block counts. I've verified that | Chris Lattner | 2004-03-08 | 1 | -11/+67 |
* | Add initial support for reading edge counts. This will be improved to enable | Chris Lattner | 2004-03-08 | 1 | -0/+29 |
* | Fix a bug handling globals that are constants, but are still external | Chris Lattner | 2004-03-08 | 1 | -1/+1 |
* | Fix a minor bug | Chris Lattner | 2004-03-05 | 1 | -1/+2 |
* | Unbreak the build on Sparc. | Misha Brukman | 2004-03-05 | 1 | -0/+2 |
* | Fix a bug in a previous checkin that broke 175.vpr | Chris Lattner | 2004-03-04 | 1 | -1/+1 |
* | Add support for strto* and v*printf | Chris Lattner | 2004-03-04 | 1 | -0/+66 |