- Oct 23, 2010
-
-
Benjamin Kramer authored
llvm-svn: 117206
-
Mikhail Glushenkov authored
llvm-svn: 117197
-
Mikhail Glushenkov authored
llvm-svn: 117196
-
Mikhail Glushenkov authored
llvm-svn: 117195
-
- Oct 22, 2010
-
-
Benjamin Kramer authored
llvm-svn: 117111
-
- Oct 20, 2010
-
-
Anders Carlsson authored
llvm-svn: 116899
-
- Oct 17, 2010
-
-
Oscar Fuentes authored
llvm-svn: 116682
-
- Oct 15, 2010
-
-
Jim Grosbach authored
llvm-svn: 116588
-
- Oct 13, 2010
-
-
Jim Grosbach authored
and handle the operand explicitly. Flesh out encoding information. Add an explicit disassembler testcase for the instruction. llvm-svn: 116432
-
Jim Grosbach authored
llvm-svn: 116421
-
Jim Grosbach authored
operand values. This is useful for operands which require additional trickery to encode into the instruction. For example, the ARM shifted immediate and shifted register operands. llvm-svn: 116353
-
- Oct 12, 2010
-
-
Cameron Esfahani authored
llvm-svn: 116282
-
- Oct 11, 2010
-
-
Jim Grosbach authored
llvm-svn: 116243
-
Jim Grosbach authored
map one-to-one with the CodeGenInstruction operand number. llvm-svn: 116238
-
Jim Grosbach authored
llvm-svn: 116215
-
Jim Grosbach authored
try to match them by name first. If there is no by-name match, fall back to assuming they are in order (this was the previous behavior). llvm-svn: 116211
-
- Oct 08, 2010
-
-
Jim Grosbach authored
llvm-svn: 116069
-
Jim Grosbach authored
llvm-svn: 116068
-
Daniel Dunbar authored
llvm-svn: 116030
-
Jim Grosbach authored
llvm-svn: 116018
-
Jim Grosbach authored
llvm-svn: 115994
-
- Oct 07, 2010
-
-
Nick Lewycky authored
llvm-svn: 115986
-
Dan Gohman authored
llvm-svn: 115973
-
Jim Grosbach authored
llvm-svn: 115923
-
Jim Grosbach authored
llvm-svn: 115890
-
Jim Grosbach authored
llvm-svn: 115884
-
- Oct 06, 2010
-
-
Jim Grosbach authored
llvm-svn: 115841
-
Chris Lattner authored
as the operator of the dag. Specifically, this allows parsing things like (F.x 4) in addition to just (a 4). Unfortunately, this runs afoul of an idiom being used by llvmc. It is using dags like (foo [1,2,3]) to represent a list of stuff being passed into foo. With this change, this is parsed as a [1,2,3] subscript on foo instead of being the first argument to the dag. Cope with this in the short term by requiring a "-llvmc-temp-hack" argument to tblgen to get the old parsing behavior. llvm-svn: 115742
-
Chris Lattner authored
llvm-svn: 115739
-
Chris Lattner authored
where !cast is just as short. llvm-svn: 115722
-
Chris Lattner authored
!strconcat(!strconcat(!strconcat(!strconcat Simplify some x86 td files to use it. llvm-svn: 115719
-
Chris Lattner authored
tried (but failed) to artificially constrain it to working with #NAME#. Just allow any # in identifiers, and update the comments. llvm-svn: 115704
-
Chris Lattner authored
simplify the X86 CMOVmr's. llvm-svn: 115702
-
- Oct 05, 2010
-
-
Jim Grosbach authored
llvm-svn: 115664
-
Sebastian Redl authored
llvm-svn: 115624
-
Douglas Gregor authored
llvm-svn: 115616
-
Sean Callanan authored
instruction forms. Now the ENTER instruction disassembles correctly. llvm-svn: 115573
-
- Oct 01, 2010
-
-
Francois Pichet authored
llvm-svn: 115348
-
Dale Johannesen authored
The x86_mmx type is used for MMX intrinsics, parameters and return values where these use MMX registers, and is also supported in load, store, and bitcast. Only the above operations generate MMX instructions, and optimizations do not operate on or produce MMX intrinsics. MMX-sized vectors <2 x i32> etc. are lowered to XMM or split into smaller pieces. Optimizations may occur on these forms and the result casted back to x86_mmx, provided the result feeds into a previous existing x86_mmx operation. The point of all this is prevent optimizations from introducing MMX operations, which is unsafe due to the EMMS problem. llvm-svn: 115243
-
- Sep 30, 2010
-
-
Jim Grosbach authored
or not. TableGen needs to generate the printInstruction() function as taking an MCInstr* or a MachineInstr*, depending. Default to the old non-MC version so that everything not yet using MC continues to just work without fidding. llvm-svn: 115126
-