| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix an issue where we tried to turn a v2f32 build_vector into a v4i32 build ↵ | Nate Begeman | 2010-11-10 | 1 | -2/+2 |
| | | | | | | | vector with 2 elts llvm-svn: 118720 | ||||
| * | Simplify and clean up MC symbol lookup for ARM constant pool values. This fixes | Jim Grosbach | 2010-11-10 | 1 | -10/+10 |
| | | | | | | | | | double quoting of ObjC symbol names in constant pool entries. rdar://8652107 llvm-svn: 118688 | ||||
| * | Update ARMConstantPoolValue to not use a modifier string. Use an explicit | Jim Grosbach | 2010-11-10 | 1 | -47/+38 |
| | | | | | | | | VariantKind marker to indicate the additional information necessary. Update MC to handle the new Kinds. rdar://8647623 llvm-svn: 118671 | ||||
| * | Add clo instruction. Patch by Akira Hatanaka (ahatanaka@mips.com) with some ↵ | Bruno Cardoso Lopes | 2010-11-10 | 2 | -8/+12 |
| | | | | | | | minor tweaks llvm-svn: 118667 | ||||
| * | Emit a '!' if this is a "writeback" register or memory address. | Bill Wendling | 2010-11-10 | 1 | -2/+2 |
| | | | | | llvm-svn: 118662 | ||||
| * | Rename a parameter to avoid confusion with a local variable | Matt Beaumont-Gay | 2010-11-10 | 1 | -3/+3 |
| | | | | | llvm-svn: 118656 | ||||
| * | Emit the warning about the register list not being in ascending order only once. | Bill Wendling | 2010-11-09 | 1 | -5/+8 |
| | | | | | llvm-svn: 118653 | ||||
| * | s/std::vector/SmallVector/ | Bill Wendling | 2010-11-09 | 1 | -12/+11 |
| | | | | | llvm-svn: 118648 | ||||
| * | Delete the allocated vector. | Bill Wendling | 2010-11-09 | 1 | -0/+4 |
| | | | | | llvm-svn: 118644 | ||||
| * | Define the subtarget feature for the architecture version, | Bob Wilson | 2010-11-09 | 1 | -15/+40 |
| | | | | | | | | as derived from the target triple. This is important for enabling features that are implied based on the architecture version. llvm-svn: 118643 | ||||
| * | Do not use MEMBARRIER_MCR for any Thumb code. | Bob Wilson | 2010-11-09 | 1 | -2/+2 |
| | | | | | | | | | | It is only supported for ARM code. Normally Thumb2 code would use DMB instead, but depending on how the compiler is invoked (e.g., -mattr=-db) that might be disabled. This prevents a "cannot select MEMBARRIER_MCR" error in that situation. Radar 8644195 llvm-svn: 118642 | ||||
| * | Two types of instructions have register lists: | Bill Wendling | 2010-11-09 | 1 | -56/+32 |
| | | | | | | | | | | | | * LDM, et al, uses a bit mask to indicate the register list. * VLDM, et al, uses a base register plus number. The LDM instructions may be non-contiguous, but the VLDM ones must be contiguous. Those are semantic checks that should be done later in the compiler. Also postpone the creation of the bit mask until it's needed. llvm-svn: 118640 | ||||
| * | Change the ARMConstantPoolValue modifier string to an enumeration. This will | Jim Grosbach | 2010-11-09 | 4 | -17/+42 |
| | | | | | | | help in MC'izing the references that use them. llvm-svn: 118633 | ||||
| * | Handle ARM constant pool values that need an explicit reference to the '.' | Jim Grosbach | 2010-11-09 | 1 | -1/+9 |
| | | | | | | | pseudo-label. (TLS stuff). llvm-svn: 118609 | ||||
| * | add a case we fail to devirt. | Chris Lattner | 2010-11-09 | 1 | -0/+20 |
| | | | | | llvm-svn: 118608 | ||||
| * | Trailing whitespace. | Jim Grosbach | 2010-11-09 | 1 | -6/+6 |
| | | | | | llvm-svn: 118606 | ||||
| * | Further MCize ARM constant pool values. This allows basic PIC references for | Jim Grosbach | 2010-11-09 | 1 | -67/+83 |
| | | | | | | | object file emission. llvm-svn: 118601 | ||||
| * | Add encoding of Rt to ARM LDR/STR w/ reg+reg offset encoding. | Jim Grosbach | 2010-11-09 | 1 | -0/+2 |
| | | | | | llvm-svn: 118600 | ||||
| * | For ARM load/store instructions, encode [reg+reg] with no shifter immediate as | Jim Grosbach | 2010-11-09 | 1 | -0/+3 |
| | | | | | | | a left shift by zero. llvm-svn: 118587 | ||||
| * | ARM .word data fixups don't need an adjustment. | Jim Grosbach | 2010-11-09 | 1 | -0/+1 |
| | | | | | llvm-svn: 118586 | ||||
| * | Fix trailing whitespace and style, no functionality change | Bruno Cardoso Lopes | 2010-11-09 | 1 | -170/+95 |
| | | | | | llvm-svn: 118515 | ||||
| * | Add encoder method for ARM load/store shifted register offset operands. | Jim Grosbach | 2010-11-09 | 3 | -1/+48 |
| | | | | | llvm-svn: 118513 | ||||
| * | Add support for a few simple fixups to the ARM Darwin asm backend. This allows | Jim Grosbach | 2010-11-09 | 2 | -10/+36 |
| | | | | | | | | | | | | | | | constant pool references and global variable refernces to resolve properly for object file generation. For example, int x; void foo(unsigned a, unsigned *p) { p[a] = x; } can now be successfully compiled directly to an (ARM mode) object file. llvm-svn: 118469 | ||||
| * | Revert r118457 and r118458. These won't hold for GPRs. | Bill Wendling | 2010-11-09 | 2 | -6/+8 |
| | | | | | llvm-svn: 118462 | ||||
| * | Get the register and count from the register list operands. | Bill Wendling | 2010-11-08 | 1 | -8/+5 |
| | | | | | llvm-svn: 118458 | ||||
| * | reglist has two operands. | Bill Wendling | 2010-11-08 | 1 | -0/+1 |
| | | | | | llvm-svn: 118457 | ||||
| * | The "addRegListOperands()" function returns the start register and the total | Bill Wendling | 2010-11-08 | 1 | -15/+21 |
| | | | | | | | number of registers in the list. llvm-svn: 118456 | ||||
| * | Add support for ARM's specialized vector-compare-against-zero instructions. | Owen Anderson | 2010-11-08 | 3 | -24/+68 |
| | | | | | llvm-svn: 118453 | ||||
| * | Initial support for Mips32 and Mips32r2. Patch contributed by Akira Hatanaka ↵ | Bruno Cardoso Lopes | 2010-11-08 | 3 | -12/+22 |
| | | | | | | | (ahatanaka@mips.com) llvm-svn: 118447 | ||||
| * | Add "write back" bit encoding. | Bill Wendling | 2010-11-08 | 1 | -8/+16 |
| | | | | | llvm-svn: 118446 | ||||
| * | Fix PR8211 | Bruno Cardoso Lopes | 2010-11-08 | 1 | -0/+6 |
| | | | | | llvm-svn: 118445 | ||||
| * | Adding working version of assembly parser for the MBlaze backend | Wesley Peck | 2010-11-08 | 25 | -810/+498 |
| | | | | | | | Major cleanup of whitespace and formatting issues in MBlaze backend llvm-svn: 118434 | ||||
| * | Revert 118422 in search of bot verdancy. | Dale Johannesen | 2010-11-08 | 2 | -78/+10 |
| | | | | | llvm-svn: 118429 | ||||
| * | Support -mcpu=cortex-a8 in ARM attributes - Has Fixme. 1 Test modified. | Jason W Kim | 2010-11-08 | 2 | -10/+78 |
| | | | | | llvm-svn: 118422 | ||||
| * | Complete listing of ARM/MC/ELF relocation enums | Jason W Kim | 2010-11-08 | 1 | -3/+134 |
| | | | | | llvm-svn: 118413 | ||||
| * | Add generating function declaration for PTX | Che-Liang Chiou | 2010-11-08 | 2 | -11/+129 |
| | | | | | llvm-svn: 118398 | ||||
| * | Add physical register counting functions | Che-Liang Chiou | 2010-11-08 | 6 | -0/+176 |
| | | | | | llvm-svn: 118397 | ||||
| * | Add a dummy PTXMCAsmStreamer class | Che-Liang Chiou | 2010-11-08 | 4 | -0/+588 |
| | | | | | llvm-svn: 118396 | ||||
| * | Make RegList an ASM operand so that TableGen will generate code for it. This is | Bill Wendling | 2010-11-08 | 1 | -2/+7 |
| | | | | | | | an initial implementation and may change once reglists are fully fleshed out. llvm-svn: 118390 | ||||
| * | Revert. | Bill Wendling | 2010-11-08 | 1 | -1/+1 |
| | | | | | llvm-svn: 118389 | ||||
| * | Fix a README item: when doing a comparison with the result | Duncan Sands | 2010-11-07 | 1 | -12/+0 |
| | | | | | | | | | of a select instruction, see if doing the compare with the true and false values of the select gives the same result. If so, that can be used as the value of the comparison. llvm-svn: 118378 | ||||
| * | In this context, a reglist is a reg. | Bill Wendling | 2010-11-07 | 1 | -1/+1 |
| | | | | | llvm-svn: 118375 | ||||
| * | implement aliases for div/idiv that have an explicit A register operand, | Chris Lattner | 2010-11-06 | 1 | -0/+20 |
| | | | | | | | implementing rdar://8431864 llvm-svn: 118364 | ||||
| * | Add support for parsing register lists. We can't use a bitfield to keep track of | Bill Wendling | 2010-11-06 | 1 | -22/+64 |
| | | | | | | | | | | | | the registers, because the register numbers may be much greater than the number of bits available in the machine's register. I extracted the register list verification code out of the actual parsing of the registers. This made checking for errors much easier. It also limits the number of warnings that would be emitted for cascading infractions. llvm-svn: 118363 | ||||
| * | add aliases for movs between seg registers and mem. There are multiple | Chris Lattner | 2010-11-06 | 1 | -0/+5 |
| | | | | | | | | | | | different forms of this instruction (movw/movl/movq) which we reported as being ambiguous. Since they all do the same thing, gas just picks the one with the shortest encoding. Follow its lead here. This implements rdar://8208615 llvm-svn: 118362 | ||||
| * | move the "sh[lr]d op,op" -> "shld $1, op,op" aliases to the .td file. | Chris Lattner | 2010-11-06 | 2 | -10/+18 |
| | | | | | llvm-svn: 118361 | ||||
| * | Return the base register of a register list for the "getReg()" method. This is | Bill Wendling | 2010-11-06 | 1 | -3/+8 |
| | | | | | | | | to satisfy the ClassifyOperand method of the Asm matcher without having to add a RegList type to every back-end. llvm-svn: 118360 | ||||
| * | work-in-progress | Chris Lattner | 2010-11-06 | 1 | -7/+6 |
| | | | | | llvm-svn: 118358 | ||||
| * | General cleanup: | Bill Wendling | 2010-11-06 | 1 | -36/+21 |
| | | | | | | | | - Make ARMOperand a class so that some things are internal to the class. - Reformatting. llvm-svn: 118357 | ||||
| * | go to great lengths to work around a GAS bug my previous patch | Chris Lattner | 2010-11-06 | 2 | -8/+8 |
| | | | | | | | | | | | | | | | | | exposed: GAS doesn't accept "fcomip %st(1)", it requires "fcomip %st(1), %st(0)" even though st(0) is implicit in all other fp stack instructions. Fortunately, there is an alias for fcomip named "fcompi" and gas does accept the default argument for the alias (boggle!). As such, switch the canonical form of this instruction to "pi" instead of "ip". This makes the code generator and disassembler generate pi, avoiding the gas bug. llvm-svn: 118356 | ||||

