| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add missed pattern | Anton Korobeynikov | 2009-08-30 | 2 | -0/+9 |
* | convert a bunch more calls to InsertNewInstBefore to use | Chris Lattner | 2009-08-30 | 1 | -205/+137 |
* | fix typo | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | hopefully unbreak the build by making this-> explicit for dependent | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | EXTRACT_VECTOR_ELEMENT can have result type different from element type. | Anton Korobeynikov | 2009-08-30 | 2 | -3/+73 |
* | Add regular expression matching support, based on OpenBSD regexec()/regcomp() | Torok Edwin | 2009-08-30 | 18 | -0/+4532 |
* | give instcombine a custom IRBuilder that adds new instructions to the | Chris Lattner | 2009-08-30 | 1 | -304/+193 |
* | Update test. | Daniel Dunbar | 2009-08-30 | 1 | -2/+4 |
* | add a new InstCombineWorklist::AddValue method that works even | Chris Lattner | 2009-08-30 | 1 | -16/+13 |
* | move AddUsersToWorkList to the worklist processing class, make the | Chris Lattner | 2009-08-30 | 1 | -16/+16 |
* | rename AddUsesToWorkList -> AddOperandsToWorkList. The | Chris Lattner | 2009-08-30 | 1 | -31/+13 |
* | llvm-mc/X86: Encode constant MCValue's correctly. | Daniel Dunbar | 2009-08-30 | 1 | -0/+6 |
* | llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported f... | Daniel Dunbar | 2009-08-30 | 6 | -71/+48 |
* | inline the trivial AddToWorkList/RemoveFromWorkList methods | Chris Lattner | 2009-08-30 | 1 | -104/+65 |
* | fix a bug I introduced in r80478 found by the build bot. | Chris Lattner | 2009-08-30 | 1 | -1/+2 |
* | refactor instcombine's worklist processing stuff out to its own class. | Chris Lattner | 2009-08-30 | 1 | -26/+58 |
* | make DenseMap::clear() early exit if there is nothing to do. | Chris Lattner | 2009-08-30 | 1 | -0/+2 |
* | some minor cleanups to IRBuilder, factor the insertion | Chris Lattner | 2009-08-30 | 1 | -24/+32 |
* | more cleanups: remove some redundant code, and simplify some | Chris Lattner | 2009-08-30 | 1 | -49/+15 |
* | eliminate the temporary SrcGEPOperands smallvector. | Chris Lattner | 2009-08-30 | 1 | -18/+15 |
* | simplify/detangle some control flow. | Chris Lattner | 2009-08-30 | 1 | -20/+15 |
* | simplify and cleanup some code, remove some code that just | Chris Lattner | 2009-08-30 | 1 | -75/+29 |
* | default count-aa to -print-all. The whole reason to use count-aa is | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | Nuke moribund "std::string" version of EOL(..., Encoding). | Bill Wendling | 2009-08-30 | 2 | -9/+0 |
* | Add AutoGenerated.inc to svn:ignore. | Dan Gohman | 2009-08-29 | 0 | -0/+0 |
* | Remove an unnecessary Context argument. | Dan Gohman | 2009-08-29 | 1 | -5/+3 |
* | Minor logic simplification. | Dan Gohman | 2009-08-29 | 1 | -1/+1 |
* | Add some comments. | Dan Gohman | 2009-08-29 | 1 | -0/+5 |
* | Cleanup whitespace and indentation. | Dan Gohman | 2009-08-29 | 1 | -29/+28 |
* | Remove some unused fields. | Dan Gohman | 2009-08-29 | 2 | -15/+9 |
* | CMOV_GR8 clobbers EFLAGS when its expansion involves an xor to set | Dan Gohman | 2009-08-29 | 2 | -2/+59 |
* | Inline empty destructor. | Benjamin Kramer | 2009-08-29 | 2 | -4/+1 |
* | Fix warning about non-virtual destructor. | Bill Wendling | 2009-08-29 | 2 | -0/+4 |
* | - Add target lowering methods to get the preferred format for the FDE and LSDA | Bill Wendling | 2009-08-29 | 6 | -18/+137 |
* | Add a form of EOL which emits the text version of a DWARF format encoding. This | Bill Wendling | 2009-08-29 | 2 | -1/+53 |
* | PR4795: Remove EEVT::isFP, isInt and isVec types used by TableGen's type | Bob Wilson | 2009-08-29 | 2 | -35/+46 |
* | Make the augmentation size and next set of bytes agree on size, | Eric Christopher | 2009-08-29 | 1 | -4/+10 |
* | Fix OProfile support after r80406 changed the DebugInfo interface from | Jeffrey Yasskin | 2009-08-29 | 1 | -3/+3 |
* | Another stab at fixing up register kill flags after post-RA scheduling. | David Goodwin | 2009-08-29 | 1 | -20/+63 |
* | Do not assert on too wide splats we don't support. | Anton Korobeynikov | 2009-08-29 | 2 | -4/+29 |
* | Add missed extract_element pattern | Anton Korobeynikov | 2009-08-28 | 2 | -1/+28 |
* | Reapply 79977. | Devang Patel | 2009-08-28 | 46 | -1927/+953 |
* | Let Darwin linker auto-synthesize stubs and lazy-pointers. This deletes a bun... | Evan Cheng | 2009-08-28 | 9 | -262/+59 |
* | Nuke trailing whitespace. | Eric Christopher | 2009-08-28 | 1 | -9/+9 |
* | Fix creation of .bca libraries with EXPORTED_SYMBOLS_LIST, this was putting the | Daniel Dunbar | 2009-08-28 | 1 | -2/+2 |
* | Read Makefile.config before using LLVMGCC. | Andreas Neustifter | 2009-08-28 | 1 | -0/+2 |
* | install-sh chmods to 0755 by default, and this causes 'git diff' to show | Torok Edwin | 2009-08-28 | 3 | -19/+19 |
* | Short-term workaround for frame-related weirdness on win64. | Anton Korobeynikov | 2009-08-28 | 3 | -4/+6 |
* | rm needs -f | Torok Edwin | 2009-08-28 | 1 | -1/+1 |
* | Remove the llvmprof.out from the test output, otherwise running | Torok Edwin | 2009-08-28 | 1 | -1/+1 |