- Aug 07, 2008
-
-
Owen Anderson authored
Do a dominator walk when scheduling copies, rather than a DFS on the CFG. Also, fix a few problems when creating live intervals for temporaries created by phi elimination. llvm-svn: 54483
-
Duncan Sands authored
and objc++. llvm-svn: 54474
-
Duncan Sands authored
directory: some people (guess who!) may build llvm-gcc with support for objc but not with support for objc++. llvm-svn: 54471
-
Matthijs Kooijman authored
postfixing it with a number. llvm-svn: 54468
-
Matthijs Kooijman authored
r53941 (but this was not noticed due to the lack of a basic test for SRETPromotion). llvm-svn: 54467
-
Matthijs Kooijman authored
llvm-svn: 54466
-
Matthijs Kooijman authored
llvm-svn: 54465
-
Matthijs Kooijman authored
llvm-svn: 54464
-
Matthijs Kooijman authored
llvm-svn: 54462
-
Anton Korobeynikov authored
llvm-svn: 54461
-
Anton Korobeynikov authored
llvm-svn: 54460
-
Anton Korobeynikov authored
llvm-svn: 54459
-
Anton Korobeynikov authored
llvm-svn: 54458
-
Anton Korobeynikov authored
llvm-svn: 54457
-
Anton Korobeynikov authored
llvm-svn: 54456
-
Anton Korobeynikov authored
llvm-svn: 54455
-
Anton Korobeynikov authored
llvm-svn: 54454
-
Anton Korobeynikov authored
llvm-svn: 54453
-
Anton Korobeynikov authored
llvm-svn: 54452
-
Anton Korobeynikov authored
llvm-svn: 54451
-
Anton Korobeynikov authored
llvm-svn: 54450
-
Anton Korobeynikov authored
llvm-svn: 54449
-
Anton Korobeynikov authored
llvm-svn: 54448
-
Matthijs Kooijman authored
llvm-svn: 54447
-
Chris Lattner authored
llvm-svn: 54446
-
Dan Gohman authored
LowerSubregs, and fix an x86-64 isel bug that this exposed. SUBREG_TO_REG for x86-64 implicit zero extension is only safe for isel to generate when the source is known to always have zeros in the high 32 bits. The EXTRACT_SUBREG instruction does not clear the high 32 bits. llvm-svn: 54444
-
Dan Gohman authored
llvm-svn: 54443
-
Dale Johannesen authored
are allocated in the same buffer as the code, jump tables, etc. The default JIT memory manager does not handle buffer overflow well. I didn't introduce this and I'm not attempting to fix it here, but it is more likely to be hit now since we're putting more stuff in the buffer. This affects one test that I know of so far, MultiSource/Benchmarks/NPB-serial/is. llvm-svn: 54442
-
Evan Cheng authored
Factor code that finalize PHI nodes, jump tables, etc. out of SelectBasicBlock. No functionality changes. llvm-svn: 54438
-
Owen Anderson authored
SDISel's constant branch folding can fold away self-loops, which doesn't result in any dead blocks, but rather an incorrect phi input. Add code to UnreachableMachineBlockElim to get rid of these entries. llvm-svn: 54432
-
Owen Anderson authored
Correct handle cases where two phis are coalesced together, and correct break up the case where two different phis want to coalesce with the same vreg. llvm-svn: 54426
-
- Aug 06, 2008
-
-
Owen Anderson authored
llvm-svn: 54425
-
Ted Kremenek authored
llvm-svn: 54424
-
Owen Anderson authored
llvm-svn: 54422
-
Owen Anderson authored
llvm-svn: 54421
-
Owen Anderson authored
llvm-svn: 54420
-
Dan Gohman authored
this time using MOV32to32_ and MOV16to16_. Thanks to Evan for suggesting this. llvm-svn: 54418
-
Dan Gohman authored
when it meant to be emitting undef indices. llvm-svn: 54417
-
Evan Cheng authored
llvm-svn: 54416
-
Evan Cheng authored
Fix PR2355: bug in ChangeCompareStride. When the loop termination compare is the only use of its iv stride, the stride can be eliminated by moving it to another stride. If the scale is negative, swap the predicate instead of using a inverse predicate. llvm-svn: 54415
-