- 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
-
Chris Lattner authored
Anton for half of this patch. llvm-svn: 37641
-
Evan Cheng authored
Look for VECTOR_SHUFFLE that's identity operation on either LHS or RHS. This can happen before DAGCombiner catches it. llvm-svn: 37636
-
- Jun 18, 2007
-
-
Dan Gohman authored
llvm-svn: 37625
-
- Jun 17, 2007
-
-
Bill Wendling authored
define double @test2(i64 %A) { %B = bitcast i64 %A to double ret double %B } $ llvm-as < t.ll | llc -march=x86-64 before: .align 4 .globl _test2 _test2: movd %rdi, %xmm0 ret after: _test2: subq $8, %rsp movq %rdi, (%rsp) movsd (%rsp), %xmm0 addq $8, %rsp ret llvm-svn: 37617
-
- Jun 16, 2007
-
-
Bill Wendling authored
llvm-svn: 37611
-
- Jun 15, 2007
-
-
Dan Gohman authored
llvm-svn: 37579
-
Dale Johannesen authored
llvm-svn: 37578
-
- Jun 14, 2007
-
-
Dan Gohman authored
implementation for x86. llvm-svn: 37576
-
Dan Gohman authored
llvm-svn: 37574
-
- Jun 13, 2007
-
-
Dale Johannesen authored
llvm-svn: 37571
-
- Jun 09, 2007
-
-
Chris Lattner authored
llvm-svn: 37534
-
Chris Lattner authored
llvm-svn: 37533
-
- Jun 08, 2007
-
-
Evan Cheng authored
llvm-svn: 37528
-
- Jun 04, 2007
-
-
Evan Cheng authored
llvm-svn: 37419
-
- May 24, 2007
-
-
Dan Gohman authored
llvm-svn: 37320
-
- May 22, 2007
-
-
Bill Wendling authored
llvm-svn: 37275
-
- May 21, 2007
-
-
Evan Cheng authored
llvm-svn: 37266
-
- May 18, 2007
-
-
Chris Lattner authored
llvm-svn: 37239
-
Dan Gohman authored
llvm-svn: 37234
-
Evan Cheng authored
llvm-svn: 37193
-
- May 17, 2007
-
-
Evan Cheng authored
Fix a bogus check that prevented folding VECTOR_SHUFFLE to UNDEF; add an optimization to fold VECTOR_SHUFFLE to a zero vector. llvm-svn: 37173
-
Evan Cheng authored
llvm-svn: 37172
-
Chris Lattner authored
cause other regressions. llvm-svn: 37160
-
Anton Korobeynikov authored
llvm-svn: 37159
-
Chris Lattner authored
llvm-svn: 37154
-
Chris Lattner authored
llvm-svn: 37141
-
- May 16, 2007
-
-
Chris Lattner authored
llvm-svn: 37100
-
- May 15, 2007
-
-
Chris Lattner authored
llvm-svn: 37065
-
- May 13, 2007
-
-
Anton Korobeynikov authored
1. Fix PR1380 2. Apply Duncan's patch from PR1410 3. Insert workaround for "one personality function per module" as noted in PR1414 4. Emit correct debug frames for x86/linux. This partly fixes DebugInfo/2006-11-06-StackTrace.cpp: stack trace is shown correctly, but arguments for function on top of stack are displayed incorrectly. llvm-svn: 37015
-
- May 10, 2007
-
-
Chris Lattner authored
llvm-svn: 36965
-
- May 06, 2007
-
-
Bill Wendling authored
llvm-svn: 36860
-
Nate Begeman authored
llvm-svn: 36834
-
Chris Lattner authored
llvm-svn: 36799
-
- May 05, 2007
-
-
Anton Korobeynikov authored
some small cleanup was made. llvm-svn: 36780
-
- May 04, 2007
-
-
Bill Wendling authored
feature is set, then the features in the implied list should be set also. The opposite is also enforced: if a feature in the implied list isn't set, then the feature that owns that implies list shouldn't be set either. llvm-svn: 36756
-
- May 03, 2007
-
-
Chris Lattner authored
1. x86 backend rejected (&gv+c) for the 'i' constraint when in static mode. 2. the matcher didn't correctly reject and accept some global addresses. the right predicate is GVRequiresExtraLoad, not "relomodel = pic". llvm-svn: 36670
-
Dan Gohman authored
flag for ELF on x86 so that duplicate constants can be eliminated by the linker. This matches what GCC does with its -fmerge-constants option, which is enabled at most -O levels. llvm-svn: 36666
-
Devang Patel authored
llvm-svn: 36662
-
Bill Wendling authored
for SSE1, SSE2, SSE3, and SSSE3. llvm-svn: 36656
-