| Commit message (Expand) | Author | Age | Files | Lines |
* | Add missing D* register clobbers for Thumb-2 call. | David Goodwin | 2009-07-30 | 1 | -0/+1 |
* | Minor whitespace tidiness. | Dan Gohman | 2009-07-30 | 1 | -3/+0 |
* | Rename GRAD to GR32_AD, to follow the naming convention of other | Dan Gohman | 2009-07-30 | 2 | -2/+4 |
* | add a random codegen deficiency. | Chris Lattner | 2009-07-30 | 1 | -0/+46 |
* | Add a note. | Evan Cheng | 2009-07-30 | 1 | -0/+20 |
* | Optimize some common usage patterns of atomic built-ins __sync_add_and_fetch(... | Evan Cheng | 2009-07-30 | 5 | -14/+280 |
* | Switch obvious clients to Twine instead of utostr (when they were already using | Daniel Dunbar | 2009-07-30 | 1 | -2/+1 |
* | Keep track of references to mem(cpy,move,set) and then print only one extern | Sanjiv Gupta | 2009-07-30 | 2 | -2/+41 |
* | Add a new register class to describe operands that can't be SP, | Dan Gohman | 2009-07-30 | 5 | -38/+189 |
* | Eliminate a bunch of redundant tables. | Dan Gohman | 2009-07-30 | 1 | -167/+61 |
* | Lower a 128-bit BUILD_VECTOR with 2 elements to a pair of INSERT_VECTOR_ELTs. | Bob Wilson | 2009-07-30 | 1 | -1/+19 |
* | Use array_endof instead of doing it manually. | Dan Gohman | 2009-07-30 | 1 | -27/+20 |
* | tbb / tbh instructions only branch forward, not backwards. | Evan Cheng | 2009-07-29 | 1 | -2/+4 |
* | Add VFP3 D registers to the DPR register class. | Evan Cheng | 2009-07-29 | 1 | -1/+3 |
* | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 4 | -9/+8 |
* | inline the global 'getInstrOperandRegClass' function into its callers | Chris Lattner | 2009-07-29 | 1 | -10/+0 |
* | Make sure Thumb2 uses the right call instructions. | Evan Cheng | 2009-07-29 | 3 | -19/+80 |
* | 1. Introduce a new TargetOperandInfo::getRegClass() helper method | Chris Lattner | 2009-07-29 | 2 | -15/+17 |
* | Give getPointerRegClass() a "kind" value so that targets can | Chris Lattner | 2009-07-29 | 10 | -24/+25 |
* | - Fix an obvious copy and paste error. | Evan Cheng | 2009-07-29 | 3 | -6/+7 |
* | Add llvm_unreachable for ... unreachable code! | Eric Christopher | 2009-07-29 | 1 | -1/+1 |
* | Change Neon VLDn intrinsics to return multiple values instead of really | Bob Wilson | 2009-07-29 | 1 | -26/+26 |
* | more syntactic cleanups. | Chris Lattner | 2009-07-29 | 1 | -5/+8 |
* | minor smallvector cleanups | Chris Lattner | 2009-07-29 | 1 | -3/+3 |
* | whitespace cleanup. | Chris Lattner | 2009-07-29 | 1 | -6/+5 |
* | mingw uses .data and .text, not _data and _text. | Chris Lattner | 2009-07-29 | 1 | -2/+2 |
* | fix PR4584 with a trivial patch now that the pieces are in place. | Chris Lattner | 2009-07-29 | 1 | -3/+3 |
* | pass the mangler down into the various SectionForGlobal methods. | Chris Lattner | 2009-07-29 | 14 | -59/+56 |
* | constant prop a utostr. | Chris Lattner | 2009-07-29 | 1 | -2/+1 |
* | remove some completely wrong code. 1 is never < 16. It turns out that GCC a... | Chris Lattner | 2009-07-29 | 1 | -20/+10 |
* | Optimize Thumb2 jumptable to use tbb / tbh when all the offsets fit in byte /... | Evan Cheng | 2009-07-29 | 7 | -44/+204 |
* | Fix comment. | Eric Christopher | 2009-07-29 | 1 | -2/+2 |
* | Change the "PreferredEHDataFormat" from "absptr" if we're on a Darwin system > | Bill Wendling | 2009-07-29 | 2 | -10/+18 |
* | Add support for gcc __builtin_ia32_ptest{z,c,nzc} intrinsics. Lower | Eric Christopher | 2009-07-29 | 3 | -3/+46 |
* | Match X86 register names to number. | Daniel Dunbar | 2009-07-29 | 2 | -4/+27 |
* | Thumb-2: fix typo that caused incorrect stack elimination for VFP operations ... | David Goodwin | 2009-07-28 | 1 | -1/+1 |
* | Move X86 instruction parsing into X86/AsmParser. | Daniel Dunbar | 2009-07-28 | 1 | -23/+268 |
* | Output the correct format for Darwin. | Bill Wendling | 2009-07-28 | 1 | -5/+7 |
* | Darwin outputs (DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4) when we're | Bill Wendling | 2009-07-28 | 1 | -2/+5 |
* | Rename MDNode.h header. It defines MDnode and other metadata classes. | Devang Patel | 2009-07-28 | 7 | -7/+7 |
* | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 2 | -7/+7 |
* | In thumb2 mode, add pc is unpredictable. Use add + mov pc instead (that is un... | Evan Cheng | 2009-07-28 | 5 | -18/+7 |
* | Remove support for ORN to workaround <rdar://problem/7096522>. | David Goodwin | 2009-07-28 | 1 | -3/+5 |
* | Provide generic MCAsmParser when constructing target specific parsers. | Daniel Dunbar | 2009-07-28 | 1 | -6/+8 |
* | more simplifications and cleanup. :) | Chris Lattner | 2009-07-28 | 1 | -18/+17 |
* | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -1/+1 |
* | Add workaround for <rdar://problem/7098328>. | David Goodwin | 2009-07-28 | 1 | -1/+2 |
* | Fix PR4639, a ELF-TLS regression from some of my refactoring. | Chris Lattner | 2009-07-28 | 1 | -1/+1 |
* | the apple "ld_classic" linker doesn't support .literal16 in 32-bit | Chris Lattner | 2009-07-28 | 4 | -8/+15 |
* | Add Thumb-2 patterns for ARMsrl_flag and ARMsra_flag. | David Goodwin | 2009-07-28 | 1 | -1/+10 |