| Commit message (Expand) | Author | Age | Files | Lines |
| * | Convert assert(0) to llvm_unreachable | Craig Topper | 2012-02-07 | 1 | -11/+9 |
| * | Add support for the R_ARM_TARGET1 relocation, which should be given to reloca... | James Molloy | 2012-01-26 | 1 | -0/+16 |
| * | Revert r148686 (and r148694, a fix to it) due to a serious layering | Chandler Carruth | 2012-01-24 | 1 | -3/+2 |
| * | ARMAsmPrinter.cpp: Try to fix up r148686. EnableARMEHABI was also here. | NAKAMURA Takumi | 2012-01-23 | 1 | -2/+3 |
| * | Add fused multiple+add instructions from VFPv4. | Anton Korobeynikov | 2012-01-22 | 1 | -3/+13 |
| * | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -1/+1 |
| * | Emit ARM EHABI unwinding instructions for 3 more Thumb instructions. | Evgeniy Stepanov | 2012-01-19 | 1 | -0/+3 |
| * | Remove unnecessary default cases in switches that cover all enum values. | David Blaikie | 2012-01-10 | 1 | -1/+0 |
| * | Implement 'e' and 'f' modifiers for Neon inline asm. <rdar://problem/10551006> | Bob Wilson | 2011-12-12 | 1 | -4/+14 |
| * | Add bundle aware API for querying instruction properties and switch the code | Evan Cheng | 2011-12-07 | 1 | -1/+1 |
| * | Align ARM constant pool islands via their basic block. | Jakob Stoklund Olesen | 2011-12-06 | 1 | -2/+1 |
| * | Move global variables in TargetMachine into new TargetOptions class. As an API | Nick Lewycky | 2011-12-02 | 1 | -4/+3 |
| * | Replace (Lower|Upper)caseString in favor of StringRef's newest methods. | Benjamin Kramer | 2011-11-06 | 1 | -4/+3 |
| * | Teach the MC to output code/data region marker labels in MachO and ELF modes.... | Owen Anderson | 2011-10-04 | 1 | -1/+20 |
| * | Use the ARMConstantPoolMBB class to handle the MBB values. | Bill Wendling | 2011-10-01 | 1 | -1/+1 |
| * | Use the new ARMConstantPoolSymbol class to handle external symbols. | Bill Wendling | 2011-10-01 | 1 | -1/+2 |
| * | Switch over to using ARMConstantPoolConstant for global variables, functions, | Bill Wendling | 2011-10-01 | 1 | -2/+4 |
| * | Create a machine basic block in the constant pool and retrieve the symbol for... | Bill Wendling | 2011-09-29 | 1 | -0/+3 |
| * | Lower ARM adds/subs to add/sub after adding optional CPSR operand. | Andrew Trick | 2011-09-21 | 1 | -0/+3 |
| * | Thumb unconditional branches are allowed in IT blocks, and therefore should h... | Owen Anderson | 2011-09-09 | 1 | -0/+4 |
| * | Tidy up. Formatting. | Jim Grosbach | 2011-09-02 | 1 | -9/+10 |
| * | Static relocation model Thumb jump table interworking. | Jim Grosbach | 2011-08-31 | 1 | -0/+5 |
| * | Move TargetRegistry and TargetSelect from Target to Support where they belong. | Evan Cheng | 2011-08-24 | 1 | -1/+1 |
| * | Move ARM frame-unwinding EHABI handling a touch earlier. | Jim Grosbach | 2011-08-23 | 1 | -4/+4 |
| * | Add support for the R and Q constraints. | Rafael Espindola | 2011-08-10 | 1 | -2/+22 |
| * | Emitting ARM build attributes and values as ULEB, rather than char. | Renato Golin | 2011-08-09 | 1 | -11/+67 |
| * | Split am2offset into register addend and immediate addend forms, necessary fo... | Owen Anderson | 2011-07-26 | 1 | -1/+2 |
| * | Separate MCInstPrinter registration from AsmPrinter registration. | Evan Cheng | 2011-07-25 | 1 | -11/+0 |
| * | Sink ARMMCExpr and ARMAddressingModes into MC layer. First step to separate A... | Evan Cheng | 2011-07-20 | 1 | -2/+2 |
| * | Use tPseudoExpand for tTAILJMPrND and tTAILJMPr. | Jim Grosbach | 2011-07-08 | 1 | -14/+0 |
| * | Use tPseudoExpand for tTAILJMPd and tTAILJMPdND. | Jim Grosbach | 2011-07-08 | 1 | -12/+0 |
| * | Use ARMPseudoExpand for ARM tail calls. | Jim Grosbach | 2011-07-08 | 1 | -19/+1 |
| * | Use ARMPseudoExpand for BLr9, BLr9_pred, BXr9, and BXr9_pred. | Jim Grosbach | 2011-07-08 | 1 | -18/+0 |
| * | Use TableGen'erated pseudo lowering for ARM. | Jim Grosbach | 2011-07-08 | 1 | -85/+9 |
| * | The VMLA instruction and its friends are not actually fused; they're plain old | Cameron Zwarich | 2011-07-07 | 1 | -1/+1 |
| * | createMCInstPrinter doesn't need TargetMachine anymore. | Evan Cheng | 2011-07-06 | 1 | -2/+1 |
| * | Refact ARM Thumb1 tMOVr instruction family. | Jim Grosbach | 2011-06-30 | 1 | -7/+5 |
| * | Thumb1 register to register MOV instruction is predicable. | Jim Grosbach | 2011-06-30 | 1 | -2/+6 |
| * | Pseudo-ize the t2LDMIA_RET instruction. | Jim Grosbach | 2011-06-30 | 1 | -0/+8 |
| * | Pseudo-ize the Thumb tPOP_RET instruction. | Jim Grosbach | 2011-06-30 | 1 | -0/+8 |
| * | Remove redundant Thumb2 ADD/SUB SP instruction definitions. | Jim Grosbach | 2011-06-29 | 1 | -10/+2 |
| * | Implement the 'M' output modifier for arm inline asm. This is fairly | Eric Christopher | 2011-05-28 | 1 | -2/+27 |
| * | Make size computation less brittle. | Rafael Espindola | 2011-05-27 | 1 | -39/+0 |
| * | Reorganize these slightly according to operand type. | Eric Christopher | 2011-05-26 | 1 | -2/+2 |
| * | Mark tBX as an indirect branch rather than a return. | Cameron Zwarich | 2011-05-26 | 1 | -1/+1 |
| * | Convert tBX_CALL / tBXr9_CALL to actual pseudoinstructions. | Cameron Zwarich | 2011-05-25 | 1 | -0/+20 |
| * | Implement the 'm' modifier. Note that it only works for memory operands. | Eric Christopher | 2011-05-25 | 1 | -4/+14 |
| * | Make tTAILJMPr/tTAILJMPrND emit a tBX without a preceding MOV of PC to LR. This | Cameron Zwarich | 2011-05-25 | 1 | -1/+1 |
| * | Rename the existing tBX/tBXr9 instructions to tBX_CALL/tBXr9_CALL to better | Cameron Zwarich | 2011-05-25 | 1 | -1/+1 |
| * | Implement the arm 'L' asm modifier. | Eric Christopher | 2011-05-24 | 1 | -1/+5 |