- Mar 31, 2006
-
-
Chris Lattner authored
independently, batch up checks so that identically typed intrinsics share verifier code. This dramatically reduces the size of the verifier function, which should help avoid GCC running out of memory compiling Verifier.cpp. llvm-svn: 27281
-
Chris Lattner authored
llvm-svn: 27264
-
Chris Lattner authored
llvm-svn: 27263
-
- Mar 29, 2006
-
-
Evan Cheng authored
mismatch against the enum table. This is a part of Sabre's master plan to drive me nuts with subtle bugs that happens to only affect x86 be. :-) llvm-svn: 27237
-
- Mar 28, 2006
-
-
Chris Lattner authored
Tblgen doesn't like multiple SDNode<> definitions that map to the sameenum value. Split them into separate enums. Also, don't emit dynamic checks when we can compute them statically llvm-svn: 27202
-
Chris Lattner authored
llvm-svn: 27197
-
Chris Lattner authored
llvm-svn: 27196
-
Chris Lattner authored
llvm-svn: 27188
-
Chris Lattner authored
tblgen: In STVEBX: Intrinsic 'llvm.ppc.altivec.stvebx' expects 3 operands, not 2 operands! instead of like this: tblgen: In STVEBX: Intrinsic 'intrinsic_void expects 3 operands, not 2 operands! llvm-svn: 27185
-
- Mar 25, 2006
-
-
Chris Lattner authored
llvm-svn: 27126
-
Chris Lattner authored
Cannot yet select: intrinsic %llvm.ppc.altivec.lvx instead of this: Cannot yet select: 0x9b047e0: v4i32,ch = INTRINSIC 0x9b04540:1, 0x9b04710, 0x9b04790, 0x9b04540 llvm-svn: 27110
-
Chris Lattner authored
intrinsics that don't take pointer arguments now work. For example, we can compile this: int test3( __m128d *A) { return _mm_movemask_pd(*A); } int test4( __m128 *A) { return _mm_movemask_ps(*A); } to this: _test3: movl 4(%esp), %eax movapd (%eax), %xmm0 movmskpd %xmm0, %eax ret _test4: movl 4(%esp), %eax movaps (%eax), %xmm0 movmskps %xmm0, %eax ret llvm-svn: 27090
-
- Mar 24, 2006
-
-
Chris Lattner authored
llvm-svn: 27084
-
Chris Lattner authored
emit the code to select intrinsics, but that is next :) llvm-svn: 27082
-
Jim Laskey authored
llvm-svn: 27081
-
Chris Lattner authored
llvm-svn: 27078
-
Chris Lattner authored
the CodeGen* implementations. Parse the MVT::ValueType for each operand of the intrinsics. llvm-svn: 27075
-
Chris Lattner authored
llvm-svn: 27022
-
Reid Spencer authored
llvm-svn: 27021
-
Reid Spencer authored
llvm-svn: 27012
-
Reid Spencer authored
llvm-svn: 27011
-
Reid Spencer authored
llvm-svn: 27010
-
Reid Spencer authored
1. Check for Perl and only build llvm-config if its available. 2. Add some virtual components 3. Don't depend on "standard" location for Perl, but configured location 4. Document the tool with a POD file. This version is now ready for testing by users. llvm-svn: 27005
-
Reid Spencer authored
both input and output to render everything in C++, but that will be the next patch. For now, it just runs nm and greps each .o or .a file for the desired symbol. llvm-svn: 27003
-
- Mar 23, 2006
-
-
Reid Spencer authored
llvm-svn: 27001
-
Reid Spencer authored
1. LLVMCBackend.o now depends on LLVMCodeGen.o (why we're not sure) 2. LLVMExecutionEngine.o no longer depends on LLVMInterpreter.o nor LLVMJIT.o Thanks, Chris. llvm-svn: 26976
-
Evan Cheng authored
like this: def : Pat<(v4i32 (bitconvert (v4f32 VR128:$src))), (v4i32 VR128:$src)>; llvm-svn: 26968
-
- Mar 22, 2006
-
-
Reid Spencer authored
is a handy tool for users of LLVM who want to be able to quickly get information about LLVM's configuration. It is intended to be used in the command line of other tools. Documentation will be forthcoming in a subsequent patch. llvm-svn: 26952
-
- Mar 21, 2006
-
-
Evan Cheng authored
patterns. llvm-svn: 26929
-
Chris Lattner authored
llvm-svn: 26918
-
Reid Spencer authored
text enclosed in <tt>. This ensures that (a) the text is in a fixed width font (to indicated generated text) and (b) the text wraps without causing the page width to be extended. The main result of this is that the report will wrap to conform to the window size in which it is displayed instead of having a very wide length if a warning message is long. llvm-svn: 26916
-
- Mar 20, 2006
-
-
Evan Cheng authored
one, i.e. don't select it. llvm-svn: 26909
-
Evan Cheng authored
llvm-svn: 26899
-
Evan Cheng authored
The instruction patterns do not contain enough information to resolve the exact type of the destination if it of a generic vector type. llvm-svn: 26892
-
Chris Lattner authored
llvm-svn: 26890
-
- Mar 19, 2006
-
-
Reid Spencer authored
makefile using the utils/GenLibDeps.pl script with the -flat option. It records the dependencies between libraries in such a way that the llvm-config script can easily read it (in makefile dependency format). llvm-svn: 26876
-
Reid Spencer authored
the rule for building the LibDeps.txt file using GenLibDeps.pl. This needs to be done from time to time manually in order to keep LibDeps.txt up to date. llvm-svn: 26875
-
Reid Spencer authored
format with one library per line, similar to a makefile dependency list. llvm-svn: 26873
-
Evan Cheng authored
llvm-svn: 26869
-
- Mar 18, 2006
-
-
Chris Lattner authored
llvm-svn: 26836
-