summaryrefslogtreecommitdiffstats
path: root/llvm/lib
Commit message (Collapse)AuthorAgeFilesLines
* BranchCC, niftyAndrew Lenharth2005-02-081-7/+117
| | | | llvm-svn: 20067
* fix store issue and an FP conversion (segfault) issueAndrew Lenharth2005-02-072-11/+21
| | | | llvm-svn: 20066
* IndCallGraphMap is now a pointer to a new'd map.Chris Lattner2005-02-071-3/+6
| | | | llvm-svn: 20065
* copytoreg fixAndrew Lenharth2005-02-071-6/+6
| | | | llvm-svn: 20063
* copyfromreg fixAndrew Lenharth2005-02-071-3/+6
| | | | llvm-svn: 20062
* fix load bugAndrew Lenharth2005-02-071-5/+5
| | | | llvm-svn: 20061
* more FP load store fixes and Load store simplificationsAndrew Lenharth2005-02-071-47/+14
| | | | llvm-svn: 20060
* clean up load and stores alotAndrew Lenharth2005-02-071-143/+13
| | | | llvm-svn: 20059
* teach all loads and stores about the stackAndrew Lenharth2005-02-071-1/+41
| | | | llvm-svn: 20058
* prefer FP scratch registers and more check in LowerArgumentsAndrew Lenharth2005-02-062-15/+27
| | | | llvm-svn: 20057
* fix oopsoAndrew Lenharth2005-02-062-35/+56
| | | | llvm-svn: 20056
* smarter loads and stores. can now handle base+offset.Andrew Lenharth2005-02-062-172/+270
| | | | llvm-svn: 20055
* fix buildAndrew Lenharth2005-02-051-1/+0
| | | | llvm-svn: 20053
* clean upAndrew Lenharth2005-02-051-5/+2
| | | | llvm-svn: 20051
* fix f32 setcc, and fp selectAndrew Lenharth2005-02-052-73/+100
| | | | llvm-svn: 20050
* added ugly support for fp comparesAndrew Lenharth2005-02-052-23/+71
| | | | llvm-svn: 20049
* Make the rest of file header comments consistent in format and styleMisha Brukman2005-02-057-7/+7
| | | | llvm-svn: 20048
* Instead of initializing the volatile field, use accessors to set it.Chris Lattner2005-02-051-11/+16
| | | | llvm-svn: 20045
* Initialize new field.Chris Lattner2005-02-051-1/+2
| | | | llvm-svn: 20044
* Make file header comment consistent: extend the whole 80 cols to fill the lineMisha Brukman2005-02-045-5/+5
| | | | llvm-svn: 20039
* If we have an indirect call site that calls N functions, inline the N functionsChris Lattner2005-02-041-57/+98
| | | | | | | | | | | | into a temporary graph, remember it for later, then inline the tmp graph into the call site. In the case where there are other call sites to the same set of functions, this permits us to just inline the temporary graph instead of all of the callees. This turns N*M inlining situations into an N+M inlining situation. llvm-svn: 20036
* Split mergeInGraph into two methods.Chris Lattner2005-02-041-29/+28
| | | | llvm-svn: 20035
* Fix the Regression/Transforms/DSAnalysis/recursion.ll regression.Chris Lattner2005-02-041-4/+3
| | | | llvm-svn: 20031
* Fix a case where were incorrectly compiled cast from short to int on 64-bitChris Lattner2005-02-041-2/+4
| | | | | | targets. llvm-svn: 20030
* alignmentAndrew Lenharth2005-02-041-2/+4
| | | | llvm-svn: 20028
* get alignment printing correctly and get rid of __main hackAndrew Lenharth2005-02-041-7/+2
| | | | llvm-svn: 20027
* fix constant pointer outputing on 64 bit machinesAndrew Lenharth2005-02-041-0/+5
| | | | llvm-svn: 20026
* FP fixesAndrew Lenharth2005-02-031-12/+17
| | | | llvm-svn: 20019
* Refactor getFunctionArgumentsForCall out of mergeInGraph.Chris Lattner2005-02-031-29/+41
| | | | llvm-svn: 20018
* This is no longer needed. Global variables with undef initializers can beChris Lattner2005-02-021-2/+0
| | | | | | initialized to anything, including garbage. llvm-svn: 20010
* Store fixAndrew Lenharth2005-02-022-15/+37
| | | | llvm-svn: 20004
* oopsAndrew Lenharth2005-02-021-1/+1
| | | | llvm-svn: 20003
* prevent register allocator from using the stack pointer :)Andrew Lenharth2005-02-022-3/+3
| | | | llvm-svn: 20002
* fix loading of floatsAndrew Lenharth2005-02-021-1/+3
| | | | llvm-svn: 19997
* marked mem* as not supportedAndrew Lenharth2005-02-021-0/+4
| | | | llvm-svn: 19992
* Fix crash on MallocInsts of unsized types.Alkis Evlogimenos2005-02-021-1/+2
| | | | llvm-svn: 19988
* fix Load bugAndrew Lenharth2005-02-021-1/+1
| | | | llvm-svn: 19987
* Fix yet another memset issue.Chris Lattner2005-02-021-4/+13
| | | | llvm-svn: 19986
* try to make a bug bugpointable, add yet more constant pool stuff, fixup ↵Andrew Lenharth2005-02-022-13/+19
| | | | | | constant loads for FP llvm-svn: 19985
* better constant handling, should fix many remaining casesAndrew Lenharth2005-02-021-2/+11
| | | | llvm-svn: 19984
* Eliminate some duplicated debug codeChris Lattner2005-02-011-21/+0
| | | | llvm-svn: 19980
* Eliminate self-recursion as a special case.Chris Lattner2005-02-011-58/+39
| | | | llvm-svn: 19979
* Eliminate use of DSCallSiteIterator in key loop. This is a half step toChris Lattner2005-02-011-62/+120
| | | | | | a tasty speedup. llvm-svn: 19978
* fix FP arg passing bug, Add unsigned to/from int, fix SELECT, fix Constant poolAndrew Lenharth2005-02-011-12/+17
| | | | llvm-svn: 19976
* Print the Constant poolAndrew Lenharth2005-02-011-8/+7
| | | | llvm-svn: 19975
* Make cmov work right and loads for fp from constant poolAndrew Lenharth2005-02-011-18/+20
| | | | llvm-svn: 19974
* Correct stack stuff for FPAndrew Lenharth2005-02-011-5/+12
| | | | llvm-svn: 19973
* try to match alpha patternAndrew Lenharth2005-02-012-1/+21
| | | | llvm-svn: 19972
* fix register namesAndrew Lenharth2005-02-011-16/+16
| | | | llvm-svn: 19971
* Signficantly speed up printing by not emitting the same file twice withChris Lattner2005-02-011-3/+9
| | | | | | different names. Large SCC's tend to be big, so this saves a lot of time. llvm-svn: 19970
OpenPOWER on IntegriCloud