- Jun 23, 2010
-
-
Eric Christopher authored
llvm-svn: 106677
-
Rafael Espindola authored
having a library both as bitcode and native code. We want to use the bitcode first, but if codegen produces new undefined references we have to use the native code to satisfy those references. Gold has no notion of bitcode and native search directories, so instead it has an API where the plugin can instruct it to look for the libraries it is passing to it. This patch uses that API. llvm-svn: 106674
-
Bruno Cardoso Lopes authored
llvm-svn: 106672
-
Nico Weber authored
llvm-svn: 106671
-
Bruno Cardoso Lopes authored
Given the pattern below as an example: list<dag> Pattern = [(set RC:$dst, (v4f32 (shufp:src3 RC:$src1, (mem_frag addr:$src2))))]; The right reference resolving should lead to: list<dag> Pattern = [(set VR128:$dst, (v4f32 (shufp:src3 VR128:$src1, (mem_frag addr:$src2))))]; But was yielding: list<dag> Pattern = [(set VR128:$dst, (v4f32 (shufp VR128:$src1, (mem_frag addr:$src2))))]; Fix this by passing the right name when creating a new DagInit node. llvm-svn: 106670
-
Dale Johannesen authored
llvm-svn: 106664
-
Dale Johannesen authored
llvm-svn: 106663
-
Dale Johannesen authored
branch turns out to be ARM-to-Thumb or vice versa the linker cannot resolve this. 8120438. If this optimization is going to be useful we probably need a compiler flag "assume callees are same architecture" or something like that. llvm-svn: 106662
-
Bill Wendling authored
into the same node, but with different non-memory operands, we need to replace the memory operands after it's finished morphing. llvm-svn: 106643
-
Daniel Dunbar authored
llvm-svn: 106638
-
Daniel Dunbar authored
Revert r106263, "Fold the ShrinkDemandedOps pass into the regular DAGCombiner pass,"... it was causing both 'file' (with clang) and 176.gcc (with llvm-gcc) to be miscompiled. llvm-svn: 106634
-
Jim Grosbach authored
to using that. llvm-svn: 106633
-
Jim Grosbach authored
MEMBARRIER fences aren't necessary for ARM. Tell the combiner to fold them away. llvm-svn: 106631
-
Jim Grosbach authored
atomic intrinsics, either because the use locking instructions for the atomics, or because they perform the locking directly. Add support in the DAG combiner to fold away the fences. llvm-svn: 106630
-
Jim Grosbach authored
llvm-svn: 106628
-
Jakob Stoklund Olesen authored
llvm-svn: 106627
-
Gabor Greif authored
llvm-svn: 106626
-
Gabor Greif authored
llvm-svn: 106623
-
Gabor Greif authored
llvm-svn: 106622
-
Eric Christopher authored
llvm-svn: 106621
-
Nick Lewycky authored
Haiku like Linux provides <regex.h>, so use it. Patch by Paul Davey! llvm-svn: 106620
-
Daniel Dunbar authored
Revert r106066, "Create a more targeted fix for not sinking instructions into a range where it"... it causes bzip2 to be miscompiled by Clang. Conflicts: lib/CodeGen/MachineSink.cpp llvm-svn: 106614
-
Stuart Hastings authored
llvm-svn: 106611
-
Eric Christopher authored
Thanks Daniel! llvm-svn: 106608
-
Bill Wendling authored
later on. But we need them saved in the symbols directory. llvm-svn: 106604
-
Dan Gohman authored
Replace ScalarEvolution's private copy of getLoopPredecessor with LoopInfo's public copy. llvm-svn: 106603
-
Bruno Cardoso Lopes authored
llvm-svn: 106600
-
Dan Gohman authored
allocation details. llvm-svn: 106599
-
Devang Patel authored
llvm-svn: 106598
-
Dan Gohman authored
is another max which folds. This fixes PR7454. llvm-svn: 106594
-
Bruno Cardoso Lopes authored
testcases this time. llvm-svn: 106593
-
Devang Patel authored
If a metadata operand is seeded in value map and the metadata should also be seeded in value map. This is not limited to function local metadata. Failure to seed metdata in such cases causes troubles when in a cloned module, metadata from a new module refers to values in old module. Usually this results in mysterious bugpoint crashes. For example, Checking to see if we can delete global inits: Unknown constant! UNREACHABLE executed at /d/g/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp:904! llvm-svn: 106592
-
Devang Patel authored
llvm-svn: 106591
-
Bruno Cardoso Lopes authored
llvm-svn: 106588
-
Bill Wendling authored
llvm-svn: 106586
-
Jakob Stoklund Olesen authored
instructions. This does not affect codegen much because SUBREG_TO_REG is only used by X86 and X86 does not use the register scavenger, but it prevents verifier errors. llvm-svn: 106583
-
Bob Wilson authored
Radar 8031193. llvm-svn: 106582
-
- Jun 22, 2010
-
-
Eric Christopher authored
during test runs. llvm-svn: 106577
-
Eric Christopher authored
llvm-svn: 106576
-
Dale Johannesen authored
llvm-svn: 106575
-