| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove the IA-64 backend. | Dan Gohman | 2009-07-24 | 31 | -4373/+1 |
* | Correctly handle the Thumb-2 imm8 addrmode. Specialize frame index eliminatio... | David Goodwin | 2009-07-24 | 16 | -211/+370 |
* | Added a 2+-byte NOP instruction to the Intel tables, | Sean Callanan | 2009-07-23 | 1 | -1/+4 |
* | Privatize the ConstantStruct table. | Owen Anderson | 2009-07-23 | 4 | -93/+129 |
* | Write space padding as one string to speed up comment printing. | David Greene | 2009-07-23 | 1 | -3/+13 |
* | Thumb2 does not allow the use of "pc" register as part of the load / store ad... | Evan Cheng | 2009-07-23 | 1 | -15/+0 |
* | Re-committing r76828 with the JIT memory manager changes now that the build | Reid Kleckner | 2009-07-23 | 4 | -110/+319 |
* | "fix" PR4612, which is a crash on: | Chris Lattner | 2009-07-23 | 1 | -1/+5 |
* | Revert r75581: it causes massive breakage in the Ada | Duncan Sands | 2009-07-23 | 1 | -0/+23 |
* | Switch ValueSymbolTable to StringRef based API. | Daniel Dunbar | 2009-07-23 | 3 | -28/+7 |
* | Add llvm::Value::getNameRef, for help in API migration. | Daniel Dunbar | 2009-07-23 | 1 | -1/+6 |
* | Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests for | Reid Kleckner | 2009-07-23 | 1 | -105/+133 |
* | Fix up ARM constant island pass for Thumb2. | Evan Cheng | 2009-07-23 | 1 | -125/+129 |
* | Since we have moved unified assembly, switch to ADR instruction instead of a ... | Evan Cheng | 2009-07-23 | 2 | -28/+8 |
* | Convert StringMap to using StringRef for its APIs. | Daniel Dunbar | 2009-07-23 | 7 | -37/+30 |
* | Fix frame index elimination to correctly handle thumb-2 addressing modes that... | David Goodwin | 2009-07-23 | 10 | -18/+124 |
* | Cache dependence computation using FoldingSet. | Andreas Bolka | 2009-07-23 | 1 | -23/+65 |
* | 80 col violation. | Evan Cheng | 2009-07-23 | 1 | -2/+4 |
* | refactor a blob of code out to a new 'FoldOrOfFCmps' function and | Chris Lattner | 2009-07-23 | 1 | -67/+70 |
* | For real this time: PHI Def & Kill tracking added to PHIElimination. | Lang Hames | 2009-07-23 | 1 | -3/+5 |
* | Make some existing optimizations that would only trigger on scalars | Chris Lattner | 2009-07-23 | 1 | -2/+20 |
* | refactor a bunch of code out into a helper function, | Chris Lattner | 2009-07-23 | 1 | -63/+73 |
* | Added PHI Def & Kill tracking to PHIElimination pass. | Lang Hames | 2009-07-23 | 2 | -4/+56 |
* | Support insertps via the intrinsic and add a couple of simple | Eric Christopher | 2009-07-23 | 1 | -2/+14 |
* | Do not call getMangledName on Intrinsics. | Sanjiv Gupta | 2009-07-23 | 1 | -4/+3 |
* | MDString | Devang Patel | 2009-07-23 | 7 | -14/+15 |
* | Minor cosmetics: indentation, formatting, naming. | Andreas Bolka | 2009-07-23 | 1 | -18/+18 |
* | Reverting r76825 and r76828, since they caused clang runtime errors and some ... | Reid Kleckner | 2009-07-23 | 5 | -451/+214 |
* | add header for 'memset'. | Zhongxing Xu | 2009-07-23 | 1 | -0/+1 |
* | Silence "uninitialized use" warning. | Devang Patel | 2009-07-23 | 1 | -1/+1 |
* | Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA... | Devang Patel | 2009-07-23 | 8 | -74/+90 |
* | Fix error message for correct opcode. | Eric Christopher | 2009-07-23 | 1 | -1/+1 |
* | Make the JIT code emitter properly retry and ask for more memory when it runs | Reid Kleckner | 2009-07-23 | 4 | -110/+319 |
* | Parameterize the BumpPtrAllocator over a slab allocator. It defaults to using | Reid Kleckner | 2009-07-23 | 1 | -104/+131 |
* | remove SectionFlags::Small: it is only used on Xcore, and we'll find | Chris Lattner | 2009-07-22 | 5 | -29/+7 |
* | x86 isel tweak: use lea (%reg,%reg) instead of lea (,%reg,2). | Dan Gohman | 2009-07-22 | 1 | -10/+31 |
* | Rename the new unsigned and signed keywords to nuw and nsw, | Dan Gohman | 2009-07-22 | 4 | -26/+26 |
* | Reorder if-else branches as suggested by Bill. | David Greene | 2009-07-22 | 1 | -4/+4 |
* | Fix typo in addrmode definition. | David Goodwin | 2009-07-22 | 1 | -1/+1 |
* | Use getTargetConstant instead of getConstant since it's meant as an constant ... | Evan Cheng | 2009-07-22 | 4 | -22/+25 |
* | Constify the key in Mi2IndexMap. | David Greene | 2009-07-22 | 1 | -1/+1 |
* | Ignore undef uses. | Evan Cheng | 2009-07-22 | 1 | -0/+3 |
* | Switch some clients to Value::getName(), and other getName() user | Daniel Dunbar | 2009-07-22 | 4 | -17/+17 |
* | Fix indentation. | Devang Patel | 2009-07-22 | 1 | -6/+6 |
* | Simplify some uses of Value::getName() | Daniel Dunbar | 2009-07-22 | 3 | -4/+7 |
* | Remove unnecessary store to temporary std::string. | Daniel Dunbar | 2009-07-22 | 1 | -3/+4 |
* | Put comment printing under asm-verbose. | David Greene | 2009-07-22 | 1 | -13/+36 |
* | Fix indentation. | Daniel Dunbar | 2009-07-22 | 1 | -18/+19 |
* | Make some changes suggested by Bill and Evan. | David Greene | 2009-07-22 | 2 | -34/+25 |
* | Fix thinko. | Devang Patel | 2009-07-22 | 1 | -1/+1 |