| Commit message (Expand) | Author | Age | Files | Lines |
* | Documentation: AliasAnalysis.rst: improve internal and external links | Dmitri Gribenko | 2012-12-12 | 1 | -19/+18 |
* | Documentation: convert WritingAnLLVMPass.html to reST. | Dmitri Gribenko | 2012-12-12 | 8 | -1967/+1456 |
* | Documentation: cleanup | Dmitri Gribenko | 2012-12-12 | 1 | -3/+4 |
* | The TargetData is not used for the isPowerOfTwo determination. It has never | Rafael Espindola | 2012-12-12 | 4 | -18/+15 |
* | Improve debug info generated with enabled AddressSanitizer. | Alexey Samsonov | 2012-12-12 | 5 | -0/+105 |
* | Documentation: use a 'console' highlighter for terminal output examples. This | Dmitri Gribenko | 2012-12-12 | 2 | -11/+11 |
* | Documentation: use a 'console' highlighter for terminal output examples. This | Dmitri Gribenko | 2012-12-12 | 2 | -37/+37 |
* | llvm/test/CodeGen/X86/atom-bypass-slow-division.ll: Fix possible typo(s) in C... | NAKAMURA Takumi | 2012-12-12 | 1 | -4/+4 |
* | llvm/test/CodeGen/X86/atom-bypass-slow-division.ll: Rename symbols, s/test_/T... | NAKAMURA Takumi | 2012-12-12 | 1 | -20/+20 |
* | Add ARM NONE and PREL31 relocation types. | Logan Chien | 2012-12-12 | 3 | -3/+16 |
* | Remove some dead code. | Rafael Espindola | 2012-12-12 | 1 | -8/+0 |
* | [CMake] Fixup R600. | NAKAMURA Takumi | 2012-12-12 | 1 | -1/+1 |
* | Sorry about the churn. One more change to getOptimalMemOpType() hook. Did I | Evan Cheng | 2012-12-12 | 10 | -44/+43 |
* | llvm/test/CodeGen/X86/store_op_load_fold.ll: Fix typo, s/CHECK_NEXT/CHECK-NEXT/ | NAKAMURA Takumi | 2012-12-12 | 1 | -1/+1 |
* | llvm/test/CodeGen/X86/store_op_load_fold.ll: Add explicit triple. | NAKAMURA Takumi | 2012-12-12 | 1 | -1/+1 |
* | Fix the ascii drawing that was ruined when I split the H and CPP | Nadav Rotem | 2012-12-12 | 1 | -10/+10 |
* | - Rename isLegalMemOpType to isSafeMemOpType. "Legal" is a very overloade term. | Evan Cheng | 2012-12-12 | 10 | -43/+34 |
* | fix a typo. | Nadav Rotem | 2012-12-12 | 1 | -1/+1 |
* | DAGCombine: clamp hi bit in APInt::getBitsSet to avoid assertion | Manman Ren | 2012-12-12 | 2 | -2/+20 |
* | LoopVectorizer: When -Os is used, vectorize only loops that dont require a ta... | Nadav Rotem | 2012-12-12 | 6 | -31/+70 |
* | Avoid using lossy load / stores for memcpy / memset expansion. e.g. | Evan Cheng | 2012-12-12 | 7 | -17/+58 |
* | Have SimplifyBinOp call the new FAdd/FSub/FMul helpers, with fast-math flags off | Michael Ilseman | 2012-12-12 | 1 | -0/+8 |
* | - Fix a problematic way in creating all-the-1 APInt. | Shuxin Yang | 2012-12-12 | 2 | -2/+14 |
* | Remove redunant optimizations from InstCombine, instead call the appropriate ... | Michael Ilseman | 2012-12-12 | 2 | -30/+9 |
* | Added a slew of SimplifyInstruction floating-point optimizations, many of whi... | Michael Ilseman | 2012-12-12 | 4 | -10/+230 |
* | Pattern matchers for floating point values | Michael Ilseman | 2012-12-12 | 1 | -0/+56 |
* | Remove FIXMEs surrounding Constant[Data]Vectors, instead | Michael Ilseman | 2012-12-12 | 1 | -35/+19 |
* | Trim unneeded header #include. | Jim Grosbach | 2012-12-11 | 1 | -1/+0 |
* | Documentation: cleanup: remove useless anchors and write :ref:s explicitly. | Dmitri Gribenko | 2012-12-11 | 1 | -27/+8 |
* | ARM: Remove old testing option. | Jim Grosbach | 2012-12-11 | 1 | -5/+1 |
* | ARM: Remove old testing options. | Jim Grosbach | 2012-12-11 | 1 | -13/+0 |
* | Replace TargetLowering::isIntImmLegal() with | Evan Cheng | 2012-12-11 | 6 | -33/+58 |
* | Documentation: Lexicon.rst: add 'SLP' acronym | Dmitri Gribenko | 2012-12-11 | 1 | -1/+7 |
* | PR14574. Fix a bug in the code that calculates the mask the converted PHIs in... | Nadav Rotem | 2012-12-11 | 2 | -1/+45 |
* | Add R600 backend | Tom Stellard | 2012-12-11 | 146 | -1/+20232 |
* | This patch implements the general dynamic TLS model for 64-bit PowerPC. | Bill Schmidt | 2012-12-11 | 15 | -15/+246 |
* | Update some comments. | Eric Christopher | 2012-12-11 | 2 | -6/+6 |
* | Loop Vectorize: optimize the vectorization of trunc(induction_var). The trunc... | Nadav Rotem | 2012-12-11 | 5 | -5/+46 |
* | Remove the RelaxAll overrule in MCAssembler::fixupNeedsRelaxation, | Eli Bendersky | 2012-12-11 | 1 | -3/+2 |
* | Use an ArrayRef instead of a std::vector&. | Rafael Espindola | 2012-12-11 | 2 | -6/+6 |
* | Add comment for load folding | Joel Jones | 2012-12-11 | 1 | -0/+5 |
* | Documentation: convert Passes.html to reST. | Dmitri Gribenko | 2012-12-11 | 2 | -2025/+1264 |
* | llvm/test/TableGen: Remove XFAIL:vg_leak in dozen of tests, according to llvm... | NAKAMURA Takumi | 2012-12-11 | 36 | -36/+0 |
* | [msan] Use explicitely aligned stores and loads with function argument shadow. | Evgeniy Stepanov | 2012-12-11 | 1 | -8/+13 |
* | Revert EVT->MVT changes, r169836-169851, due to buildbot failures. | Patrik Hagglund | 2012-12-11 | 28 | -281/+245 |
* | Holding my nose and moving the accumulation routine to GEPOperator | Chandler Carruth | 2012-12-11 | 3 | -62/+44 |
* | Hoist the GEP constant address offset computation to a common home on | Chandler Carruth | 2012-12-11 | 4 | -25/+46 |
* | Change RegVT in BitTestBlock and RegsForValue, to contain MVTs, | Patrik Hagglund | 2012-12-11 | 2 | -13/+12 |
* | Change TargetLowering::getTypeForExtArgOrReturn to take and return | Patrik Hagglund | 2012-12-11 | 5 | -8/+30 |
* | Change a parameter of TargetLowering::getVectorTypeBreakdown to MVT, | Patrik Hagglund | 2012-12-11 | 3 | -18/+25 |