| Commit message (Expand) | Author | Age | Files | Lines |
| * | use both the Mangler and the CBE's mangler for identifiers, | Chris Lattner | 2010-01-22 | 1 | -4/+4 |
| * | rename addComment -> AddComment for consistency. | Chris Lattner | 2010-01-22 | 3 | -7/+7 |
| * | Simplify some uses of str(n)cmp with StringRef. | Benjamin Kramer | 2010-01-22 | 3 | -30/+27 |
| * | CMake: Don't try to descend into projects/compiler-rt, it doesn't work. | Daniel Dunbar | 2010-01-22 | 1 | -1/+3 |
| * | Make GetSourceVersion more portable, thanks Pawel! | Daniel Dunbar | 2010-01-22 | 1 | -1/+1 |
| * | Update CMake LibDeps | Daniel Dunbar | 2010-01-22 | 1 | -5/+6 |
| * | make: Make .o files depend on Makefile, at least for now. | Daniel Dunbar | 2010-01-22 | 1 | -3/+3 |
| * | Fix TimeValue::now() on Unix. | Edwin Török | 2010-01-22 | 2 | -1/+17 |
| * | Revert r94066, which was the patch which added a Verifier pass after | Dan Gohman | 2010-01-22 | 1 | -4/+0 |
| * | add comment support to the rest of the directives. | Chris Lattner | 2010-01-22 | 1 | -14/+21 |
| * | stop using strtoll, it gives windows heartburn. | Chris Lattner | 2010-01-22 | 1 | -8/+24 |
| * | Add the ability for MCStreamer to emit comments on the same line as directives. | Chris Lattner | 2010-01-22 | 3 | -11/+76 |
| * | pass "-fasm-verbose" into createAsmStreamer. | Chris Lattner | 2010-01-22 | 4 | -15/+23 |
| * | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner | 2010-01-22 | 89 | -8/+126 |
| * | give PassNameParser a home. | Chris Lattner | 2010-01-22 | 2 | -1/+6 |
| * | add an out-of-line virtual method to CmpInst to give it a home. | Chris Lattner | 2010-01-22 | 2 | -2/+4 |
| * | elimiante the dynamic_cast's from opt. | Chris Lattner | 2010-01-22 | 5 | -22/+44 |
| * | simplify code. | Chris Lattner | 2010-01-22 | 1 | -9/+4 |
| * | drop the pass name from the output. | Chris Lattner | 2010-01-22 | 1 | -3/+1 |
| * | eliminate dynamic_cast from this file. | Chris Lattner | 2010-01-22 | 1 | -17/+20 |
| * | eliminate a bunch more unneeded dynamic_cast's. | Chris Lattner | 2010-01-22 | 3 | -48/+41 |
| * | eliminate a bunch of dynamic_cast's. | Chris Lattner | 2010-01-22 | 5 | -8/+32 |
| * | eliminate a bunch of dynamic_cast's. | Chris Lattner | 2010-01-22 | 2 | -9/+9 |
| * | Teach pre-regalloc scheduler to schedule loads from nearby addresses. It may ... | Evan Cheng | 2010-01-22 | 2 | -0/+134 |
| * | Add two target hooks to determine whether two loads are near and should be sc... | Evan Cheng | 2010-01-22 | 3 | -0/+174 |
| * | Add DenseMapInfo for signed long long. | Evan Cheng | 2010-01-22 | 1 | -0/+13 |
| * | CMake: Add MCParser directory. | Daniel Dunbar | 2010-01-22 | 1 | -0/+1 |
| * | lit: Separate test suite from test name with spaces, to make it easier to cut... | Daniel Dunbar | 2010-01-22 | 1 | -1/+1 |
| * | add new file | Chris Lattner | 2010-01-22 | 1 | -0/+1 |
| * | move some files out of the llvm-mc tool into the MCParser library so | Chris Lattner | 2010-01-22 | 7 | -8/+5 |
| * | forgot to svn add these, doh. | Chris Lattner | 2010-01-22 | 2 | -0/+22 |
| * | create a new MCParser library and move some stuff into it. | Chris Lattner | 2010-01-22 | 16 | -23/+21 |
| * | remove some confused code that used strtoull | Chris Lattner | 2010-01-22 | 1 | -12/+5 |
| * | allow registering target lexers. | Chris Lattner | 2010-01-22 | 2 | -4/+51 |
| * | stub out a new TargetAsmLexer interface. | Chris Lattner | 2010-01-22 | 2 | -0/+50 |
| * | Revert LoopStrengthReduce.cpp to pre-r94061 for now. | Dan Gohman | 2010-01-22 | 17 | -2601/+2308 |
| * | Store flags in bitfields instead of masking them into the pointer for the lef... | Ted Kremenek | 2010-01-22 | 2 | -27/+23 |
| * | Fix PR5694. The CMN instructions set the flags differently from CMP, so they | Jim Grosbach | 2010-01-22 | 5 | -15/+31 |
| * | Tidy up assertion syntax. No functionality change. | Ted Kremenek | 2010-01-21 | 1 | -35/+30 |
| * | No need to look through bitcasts for DbgInfoIntrinsic | Victor Hernandez | 2010-01-21 | 1 | -5/+0 |
| * | DbgInfoIntrinsic no longer appear in an instruction's use list | Victor Hernandez | 2010-01-21 | 1 | -19/+4 |
| * | No need to look through bitcasts for DbgInfoIntrinsic | Victor Hernandez | 2010-01-21 | 1 | -13/+6 |
| * | DbgInfoIntrinsics no longer appear in an instruction's use list; so clean up ... | Victor Hernandez | 2010-01-21 | 3 | -90/+7 |
| * | When inserting expressions for post-increment users which contain | Dan Gohman | 2010-01-21 | 1 | -17/+32 |
| * | Include IVUsers information in LSR's debug output. | Dan Gohman | 2010-01-21 | 1 | -1/+1 |
| * | Prune the search for candidate formulae if the number of register | Dan Gohman | 2010-01-21 | 1 | -32/+67 |
| * | Trim unneeded includes. | Evan Cheng | 2010-01-21 | 3 | -3/+0 |
| * | Add a comment. | Dan Gohman | 2010-01-21 | 1 | -1/+2 |
| * | It turns out that this #include is needed because otherwise | Chris Lattner | 2010-01-21 | 1 | -1/+1 |
| * | unbreak the build, apparently without this transformutils starts depending on... | Chris Lattner | 2010-01-21 | 1 | -0/+1 |