Age | Commit message (Expand) | Author |
2011-05-22 | implement PR9315, constant folding exp2 in terms of pow (since hosts without | Chris Lattner |
2011-05-22 | RTABI chapter 4.3.4 specifies __eabi_mem* calls. Specifically, __eabi_memset ... | Renato Golin |
2011-05-22 | Add methods to parse the SEH directives to the COFFAsmParser. Implement some | Charles Davis |
2011-05-22 | add a note. | Chris Lattner |
2011-05-22 | add some random notes. | Chris Lattner |
2011-05-22 | Teach ValueTracking about x86 crc32 intrinsics. | Evan Cheng |
2011-05-22 | Carve out a place in instcombine to put transformations which work knowing th... | Chris Lattner |
2011-05-22 | Fix Bug 9386 - ARM disassembler failed to disassemble conditional bx | Johnny Chen |
2011-05-22 | Fix PR9815: I was trying to get out of "generating code and then | Chris Lattner |
2011-05-22 | Add a parameter to ConstantFoldTerminator() that callers can use to ask it to... | Frits van Bommel |
2011-05-22 | another typo | Chris Lattner |
2011-05-22 | fix comment typo | Chris Lattner |
2011-05-22 | I missed a checking with my GVN change. | Chris Lattner |
2011-05-22 | insertvalue takes a variable number of arguments, document this, fixing PR9935. | Chris Lattner |
2011-05-22 | fix PR9856, an incorrectly conservative assertion: a global can be | Chris Lattner |
2011-05-22 | fix PR9841 by having GVN not process dead loads. This was | Chris Lattner |
2011-05-22 | remove a trivial test, make some other tests less trivial. | Chris Lattner |
2011-05-22 | make this test less trivial. | Chris Lattner |
2011-05-22 | initialize and finalize function passes, pointed out by Cameron. | Chris Lattner |
2011-05-22 | fix a bug for hosts without round, PR8893. | Chris Lattner |
2011-05-22 | move PR9408 here. | Chris Lattner |
2011-05-22 | Commit test change, forgotten as part of r131838. | Nick Lewycky |
2011-05-22 | Teach the inliner to emit llvm.lifetime.start/end, to scope the local variables | Nick Lewycky |
2011-05-22 | switch to using a smallvector to avoid allocations for most normal size instr... | Chris Lattner |
2011-05-22 | tidy some things up. | Chris Lattner |
2011-05-22 | Fix some minor typos and grammar. | Chris Lattner |
2011-05-22 | Implement emission of all Win64 exception tables. Make the COFF streamer emit | Charles Davis |
2011-05-22 | Make the COFF streamer emit unwind info when processing a .seh_handlerdata | Charles Davis |
2011-05-22 | Fix grammar in test. | Nick Lewycky |
2011-05-22 | Don't allow unaligned offsets and sizes in the Win64 EH directives. | Charles Davis |
2011-05-22 | random comment cleanups. | Chris Lattner |
2011-05-22 | fix a file system case sensitivity issue. | Chris Lattner |
2011-05-22 | remove StandardPasses, it has been replaced with PassManagerBuilder | Chris Lattner |
2011-05-22 | switch opt to using PassManagerBuilder.h | Chris Lattner |
2011-05-22 | switch llvm-ld. It has a terrible mechanism that people can add extra | Chris Lattner |
2011-05-22 | switch bugpoint and liblto to PassManagerBuilder. | Chris Lattner |
2011-05-22 | add support for LTO passes. | Chris Lattner |
2011-05-22 | eliminate dependence on StandardPasses.h. The code generator's pass pipeline | Chris Lattner |
2011-05-22 | Include DataTypes.h from this header to get the uint*_t types. | Charles Davis |
2011-05-22 | Allow access to the .pdata and .xdata sections through the TargetAsmInfo | Charles Davis |
2011-05-21 | add an extension point mechanism that allow plugins to add stuff to | Chris Lattner |
2011-05-21 | Add CreateLifetimeStart and CreateLifetimeEnd to the IRBuilder, with plans to | Nick Lewycky |
2011-05-21 | Revert commit 131781, to see if it fixes the x86-64 dragonegg buildbot. | Duncan Sands |
2011-05-21 | add a new PassManagerBuilder class to replace StandardPasses.h | Chris Lattner |
2011-05-21 | add a copy ctor to TargetLibraryInfo. | Chris Lattner |
2011-05-21 | PR7952: Make isa<> use the same logic as cast<>, so that they both work | Eli Friedman |
2011-05-21 | X86: smulo -> add is now done target-independently in DAGCombiner, remove the... | Benjamin Kramer |
2011-05-21 | Implement mulo x, 2 -> addo x, x in DAGCombiner. | Benjamin Kramer |
2011-05-21 | Merge and FileCheckize test cases. | Benjamin Kramer |
2011-05-21 | Revert "InstCombine: Turn mul.with.overflow(X, 2) into the cheaper add.with.o... | Benjamin Kramer |