- Nov 14, 2010
-
-
Dale Johannesen authored
llvm-svn: 119050
-
Rafael Espindola authored
signature symbol causes a local symbol to be created unless there is some other use of the symbol. llvm-svn: 119026
-
- Nov 13, 2010
-
-
Wesley Peck authored
llvm-svn: 118987
-
Rafael Espindola authored
llvm-svn: 118980
-
Dale Johannesen authored
darwin and, judging from the buildbots, Linux. Removing it for now, but this is not the right fix, Wesley please look at it. llvm-svn: 118977
-
Rafael Espindola authored
another patch. This lets us parse a bit more of the gcc 4.5 output. llvm-svn: 118975
-
Wesley Peck authored
llvm-svn: 118974
-
Wesley Peck authored
2. Fixing several errors in disassembler uncovered by test cases. 3. Fixing invalid encoding of PCMPEQ and PCMPNE uncovered by test cases. llvm-svn: 118969
-
Rafael Espindola authored
llvm-svn: 118962
-
Wesley Peck authored
2. Fixing improper immediate mode reverse subtract. llvm-svn: 118948
-
Wesley Peck authored
llvm-svn: 118943
-
Wesley Peck authored
2. Parsing .word directive in MBlaze asm parser 3. Fixing hack where memory instructions reversed order of last two parameters 4. Fixing many improperly encoded instructions 5. Support parsing special instructions (MFS,MTS,etc.) 6. Removing unused functions from inst printer llvm-svn: 118941
-
- Nov 12, 2010
-
-
Owen Anderson authored
llvm-svn: 118924
-
Chris Lattner authored
llvm-svn: 118916
-
Chris Lattner authored
llvm-svn: 118903
-
Rafael Espindola authored
llvm-svn: 118893
-
Owen Anderson authored
llvm-svn: 118854
-
- Nov 11, 2010
-
-
Wesley Peck authored
Fix minimum 16-bit signed value error exposed by MC asm parser tests Add initial MC asm parser tests for the MBlaze backend llvm-svn: 118844
-
Owen Anderson authored
llvm-svn: 118843
-
Owen Anderson authored
llvm-svn: 118837
-
Owen Anderson authored
Add support for Thumb2 encodings of NEON data processing instructions, using the new PostEncoderMethod infrastructure. More tests to come. llvm-svn: 118819
-
Rafael Espindola authored
gas. llvm-svn: 118818
-
Rafael Espindola authored
llvm-svn: 118805
-
Rafael Espindola authored
a weakref is used with a VariantKind. llvm-svn: 118798
-
Rafael Espindola authored
easier to read by having const references to the symbol, aliased symbol and renamed symbol. llvm-svn: 118793
-
- Nov 09, 2010
-
-
Owen Anderson authored
llvm-svn: 118453
-
- Nov 08, 2010
-
-
Rafael Espindola authored
llvm-svn: 118395
-
- Nov 07, 2010
-
-
Rafael Espindola authored
llvm-svn: 118365
-
- Nov 06, 2010
-
-
Chris Lattner authored
implementing rdar://8431864 llvm-svn: 118364
-
Chris Lattner authored
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
-
Chris Lattner authored
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
-
Chris Lattner authored
shift-by-1 instructions, where the asmstring doesn't contain the implicit 1. It turns out that a bunch of these rotate instructions were completely broken because they used 1 instead of $1. This fixes assembly mismatches on "rclb $1, %bl" and friends, where we used to generate the 3 byte form, we now generate the proper 2-byte form. llvm-svn: 118355
-
Chris Lattner authored
listed in its asm string, for consistency with the other similar instructions. llvm-svn: 118354
-
Chris Lattner authored
floating point stack instructions instead of looking for b/w/l/q. This fixes issues where we'd accidentally match fistp to fistpl, when it is in fact an ambiguous instruction. This changes the behavior of llvm-mc to reject fstp, which was the correct fix for rdar://8456389: t.s:1:1: error: ambiguous instructions require an explicit suffix (could be 'fstps', 'fstpl', or 'fstpt') fstp (%rax) it also causes us to correctly reject fistp and fist, which addresses PR8528: t.s:2:1: error: ambiguous instructions require an explicit suffix (could be 'fistps', or 'fistpl') fistp (%rax) ^ t.s:3:1: error: ambiguous instructions require an explicit suffix (could be 'fists', or 'fistl') fist (%rax) ^ Thanks to Ismail Donmez for tracking down the issue here! llvm-svn: 118346
-
- Nov 05, 2010
-
-
Owen Anderson authored
llvm-svn: 118291
-
- Nov 04, 2010
-
-
Bill Wendling authored
llvm-svn: 118220
-
Owen Anderson authored
This is both the conceptually correct place for it, as well as allowing it to be more aggressive. llvm-svn: 118204
-
- Nov 03, 2010
-
-
Owen Anderson authored
We could be more aggressive about making this work for a larger range of constants, but this seems like a good start. llvm-svn: 118201
-
Owen Anderson authored
all of the different element sizes are pseudo instructions that map down to vext.8 underneath, with the immediate shifted left to reflect the increased element size. llvm-svn: 118183
-
Bill Wendling authored
vldr.64 d1, [r0, #-32] The problem was with how the addressing mode 5 encodes the offsets. This change makes sure that the way offsets are handled in addressing mode 5 is consistent throughout the MC code. It involves re-refactoring the "getAddrModeImmOpValue" method into an "Imm12" and "addressing mode 5" version. But not to worry! The majority of the duplicated code has been unified. llvm-svn: 118144
-