| Commit message (Expand) | Author | Age | Files | Lines |
* | Disable cfi directives for now, darwin does't support them. | Chris Lattner | 2007-12-10 | 1 | -67/+70 |
* | Make PruneEH update the nounwind/noreturn attributes | Duncan Sands | 2007-12-10 | 2 | -76/+81 |
* | Fix PR1836: in the interpreter, read and write apints | Duncan Sands | 2007-12-10 | 1 | -24/+47 |
* | And finally annotate X86-64 version of callback. | Anton Korobeynikov | 2007-12-10 | 1 | -24/+51 |
* | Provide annotation for SSE version of callback. It's even more | Anton Korobeynikov | 2007-12-10 | 1 | -1/+26 |
* | Annotate JIT callback function with call frame infromation. | Anton Korobeynikov | 2007-12-10 | 1 | -1/+19 |
* | It looks like this has been broken for some time - | Duncan Sands | 2007-12-10 | 1 | -2/+2 |
* | A little more progress on StrongPHIElimination, now that I have a better sens... | Owen Anderson | 2007-12-10 | 1 | -11/+16 |
* | Improve branch folding by recgonizing that explict successor relationships im... | Christopher Lamb | 2007-12-10 | 1 | -0/+5 |
* | Delete the CollectorNamePool if it should become empty. | Gordon Henriksen | 2007-12-10 | 1 | -0/+4 |
* | Adding a collector name attribute to Function in the IR. These | Gordon Henriksen | 2007-12-10 | 11 | -1223/+1352 |
* | Reverting dtor devirtualization patch. | Gordon Henriksen | 2007-12-10 | 7 | -295/+197 |
* | fix some warnings. | Chris Lattner | 2007-12-10 | 1 | -15/+12 |
* | Fix a big problem in the recent dtor refactoring work, now it passes 2007-11-... | Chris Lattner | 2007-12-10 | 1 | -50/+14 |
* | Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! | Gordon Henriksen | 2007-12-09 | 7 | -197/+334 |
* | Duncan points out that the subtraction is unneeded since hte code | Chris Lattner | 2007-12-09 | 1 | -1/+1 |
* | Fix PR1782, patch by Wojtek Matyjewicz! | Chris Lattner | 2007-12-09 | 1 | -4/+4 |
* | Add support for splitting the operand of a return instruction. | Chris Lattner | 2007-12-09 | 3 | -53/+21 |
* | Reverting 44702. It wasn't correct to rename them. | Bill Wendling | 2007-12-08 | 4 | -16/+16 |
* | add many new cases to SplitResult. SplitResult now handles all the cases tha... | Chris Lattner | 2007-12-08 | 2 | -3/+178 |
* | Implement splitting support for store, allowing us to compile: | Chris Lattner | 2007-12-08 | 2 | -3/+27 |
* | implement vector splitting of load, undef, and binops. | Chris Lattner | 2007-12-08 | 2 | -4/+88 |
* | implement some methods. | Chris Lattner | 2007-12-08 | 2 | -2/+29 |
* | add scaffolding for splitting of vectors. | Chris Lattner | 2007-12-08 | 3 | -4/+138 |
* | Remove dead file and directory. | Chris Lattner | 2007-12-08 | 1 | -30/+0 |
* | reorganize header to separate into functional blocks. | Chris Lattner | 2007-12-08 | 1 | -47/+59 |
* | split scalarization out to its own file. | Chris Lattner | 2007-12-08 | 2 | -183/+202 |
* | Split expansion out into its own file. | Chris Lattner | 2007-12-08 | 2 | -1144/+1166 |
* | Split promotion support out to its own file. | Chris Lattner | 2007-12-08 | 2 | -472/+490 |
* | Rename LegalizeDAGTypes.cpp -> LegalizeTypes.cpp | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | Split the class definition of DAGTypeLegalizer out into a header. | Chris Lattner | 2007-12-08 | 2 | -234/+256 |
* | add #include | Chris Lattner | 2007-12-08 | 1 | -0/+1 |
* | proper #include order. | Chris Lattner | 2007-12-08 | 1 | -1/+1 |
* | Adding a StringPool data structure, which GC will use. | Gordon Henriksen | 2007-12-08 | 1 | -0/+35 |
* | aesthetic changes, no functionality change. Evan, it's not clear | Chris Lattner | 2007-12-08 | 1 | -39/+41 |
* | Renaming: | Bill Wendling | 2007-12-08 | 4 | -4/+4 |
* | Fix a significant code quality regression I introduced on PPC64 quite | Chris Lattner | 2007-12-08 | 1 | -1/+1 |
* | implement __builtin_return_addr(0) on ppc. | Chris Lattner | 2007-12-08 | 5 | -11/+58 |
* | refactor some code to avoid overloading the name 'usesLR' in | Chris Lattner | 2007-12-08 | 3 | -12/+14 |
* | Incorporated comments from Evan and Chris: | Bill Wendling | 2007-12-08 | 1 | -58/+54 |
* | Fix several cache coherence bugs in MemDep/GVN that were found. Also add som... | Owen Anderson | 2007-12-08 | 2 | -25/+73 |
* | Doh | Evan Cheng | 2007-12-08 | 1 | -1/+1 |
* | Fix a compilation warning. | Evan Cheng | 2007-12-08 | 1 | -1/+1 |
* | Fix a compilation warning. | Evan Cheng | 2007-12-08 | 1 | -1/+1 |
* | Initial commit of the machine code LICM pass. It successfully hoists this: | Bill Wendling | 2007-12-07 | 3 | -10/+353 |
* | Add comment. | Evan Cheng | 2007-12-07 | 1 | -0/+2 |
* | Much improved v8i16 shuffles. (Step 1). | Evan Cheng | 2007-12-07 | 1 | -25/+126 |
* | Add an option to control this heuristic tweak so I can test it. | Evan Cheng | 2007-12-07 | 1 | -1/+6 |
* | Remove a bogus optimization. It's not possible to do a move to low element to... | Evan Cheng | 2007-12-06 | 2 | -7/+1 |
* | Redo previous patch so optimization only done for i1. | Dale Johannesen | 2007-12-06 | 1 | -16/+4 |