- Nov 12, 2007
-
-
Owen Anderson authored
Target maintainers: please check that the instructions for your target are correctly marked. llvm-svn: 44012
-
- Sep 28, 2007
-
-
Dale Johannesen authored
llvm-svn: 42423
-
- Sep 19, 2007
-
-
Evan Cheng authored
between two registers in the specific class. llvm-svn: 42123
-
- Aug 16, 2007
-
-
Dan Gohman authored
llvm-svn: 41128
-
- Aug 04, 2007
-
-
Chandler Carruth authored
This is the patch to provide clean intrinsic function overloading support in LLVM. It cleans up the intrinsic definitions and generally smooths the process for more complicated intrinsic writing. It will be used by the upcoming atomic intrinsics as well as vector and float intrinsics in the future. This also changes the syntax for llvm.bswap, llvm.part.set, llvm.part.select, and llvm.ct* intrinsics. They are automatically upgraded by both the LLVM ASM reader and the bitcode reader. The test cases have been updated, with special tests added to ensure the automatic upgrading is supported. llvm-svn: 40807
-
- Jul 26, 2007
-
-
Christopher Lamb authored
llvm-svn: 40518
-
Christopher Lamb authored
llvm-svn: 40513
-
- Jul 20, 2007
-
-
Evan Cheng authored
llvm-svn: 40075
-
- Jul 19, 2007
-
-
Evan Cheng authored
InOperandList. This gives one piece of important information: # of results produced by an instruction. An example of the change: def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2), "add{l} {$src2, $dst|$dst, $src2}", [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>; => def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2), "add{l} {$src2, $dst|$dst, $src2}", [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>; llvm-svn: 40033
-
- Jul 13, 2007
-
-
Dan Gohman authored
llvm-svn: 39828
-
- Jul 10, 2007
-
-
Evan Cheng authored
llvm-svn: 38498
-
- Jul 07, 2007
-
-
Evan Cheng authored
llvm-svn: 37963
-
- Jul 05, 2007
-
-
Evan Cheng authored
Instructions with ImmutablePredicateOperand aren't really predicable since their predicates are fixed at isel time. llvm-svn: 37899
-
- Jun 26, 2007
-
-
Dan Gohman authored
instruction flag, and use the flag along with a virtual member function hook for targets to override if there are instructions that are only trivially rematerializable with specific operands (i.e. constant pool loads). llvm-svn: 37728
-
- Jun 19, 2007
-
-
Dan Gohman authored
with a general target hook to identify rematerializable instructions. Some instructions are only rematerializable with specific operands, such as loads from constant pools, while others are always rematerializable. This hook allows both to be identified as being rematerializable with the same mechanism. llvm-svn: 37644
-
Evan Cheng authored
llvm-svn: 37643
-
- Jun 14, 2007
-
-
Christopher Lamb authored
llvm-svn: 37572
-
- Jun 06, 2007
-
-
Evan Cheng authored
Add clobbersPred - instruction that clobbers condition code / register which are used to predicate instructions. llvm-svn: 37465
-
- Jun 04, 2007
-
-
Dan Gohman authored
being changed from an enum to an integer type, which can't have a custom operator<< overload. llvm-svn: 37412
-
- May 16, 2007
-
-
Evan Cheng authored
Rename M_PREDICATED to M_PREDICABLE; opcode can be specified isPredicable without having a PredicateOperand. llvm-svn: 37116
-
- Apr 01, 2007
-
-
Reid Spencer authored
Implement code generation for overloaded intrinsic functions. The basic difference is that "actual" argument types must be provided when constructing intrinsic names and types. Also, for recognition, only the prefix is examined. If it matches, the suffix is assumed to match. The suffix is checked by the Verifier, however. llvm-svn: 35539
-
- Mar 26, 2007
-
-
Bill Wendling authored
#include <mmintrin.h> extern __m64 C; void baz(__v2si *A, __v2si *B) { *A = C; _mm_empty(); } We get this: _baz: call "L1$pb" "L1$pb": popl %eax movl L_C$non_lazy_ptr-"L1$pb"(%eax), %eax movq (%eax), %mm0 movl 4(%esp), %eax movq %mm0, (%eax) emms ret GCC gives us this: _baz: pushl %ebx call L3 "L00000000001$pb": L3: popl %ebx subl $8, %esp movl L_C$non_lazy_ptr-"L00000000001$pb"(%ebx), %eax movl (%eax), %edx movl 4(%eax), %ecx movl 16(%esp), %eax movl %edx, (%eax) movl %ecx, 4(%eax) emms addl $8, %esp popl %ebx ret llvm-svn: 35351
-
- Mar 19, 2007
-
-
Evan Cheng authored
llvm-svn: 35159
-
- Feb 27, 2007
-
-
Chris Lattner authored
llvm-svn: 34697
-
Evan Cheng authored
CodeGenTarget.cpp updated: 1.82 -> 1.83 Record.cpp updated: 1.55 -> 1.56 Record.h updated: 1.59 -> 1.60 TableGen.cpp updated: 1.47 -> 1.48 It's missing CallingConvEmitter.h llvm-svn: 34693
-
Chris Lattner authored
llvm-svn: 34682
-
- Jan 26, 2007
-
-
Jim Laskey authored
llvm-svn: 33539
-
- Dec 07, 2006
-
-
Bill Wendling authored
llvm-svn: 32333
-
- Dec 01, 2006
-
-
Evan Cheng authored
llvm-svn: 32107
-
- Nov 16, 2006
-
-
Chris Lattner authored
not be used for anything other than backwards compat constraint handling. Add support for a new DisableEncoding property which contains a list of registers that should not be encoded by the generated code emitter. Convert the codeemitter generator to use this, fixing some PPC JIT regressions. llvm-svn: 31769
-
- Nov 15, 2006
-
-
Chris Lattner authored
llvm-svn: 31748
-
- Nov 10, 2006
-
-
Chris Lattner authored
have to be a subpart of a complex operand. llvm-svn: 31618
-
- Nov 07, 2006
-
-
Chris Lattner authored
llvm-svn: 31484
-
Chris Lattner authored
to extend. llvm-svn: 31481
-
- Nov 06, 2006
-
-
Chris Lattner authored
llvm-svn: 31480
-
- Nov 04, 2006
-
-
Evan Cheng authored
llvm-svn: 31451
-
Chris Lattner authored
llvm-svn: 31432
-
- Nov 02, 2006
-
-
Evan Cheng authored
llvm-svn: 31361
-
- Nov 01, 2006
-
-
Evan Cheng authored
llvm-svn: 31333
-
- Oct 11, 2006
-
-
Evan Cheng authored
llvm-svn: 30890
-