- May 12, 2012
-
-
Akira Hatanaka authored
- Remove code which lowers pseudo SETGP01. - Fix LowerSETGP01. The first two of the three instructions that are emitted to initialize the global pointer register now use register $2. - Stop emitting .cpload directive. llvm-svn: 156689
-
Chad Rosier authored
llvm-svn: 156687
-
Jakob Stoklund Olesen authored
Empty live ranges represent undef and still get allocated, but they won't appear in LiveIntervalUnions. Patch by Patrik Hägglund! llvm-svn: 156685
-
Akira Hatanaka authored
pointer register. This is the first of the series of patches which clean up the way global pointer register is used. The patches will make the following improvements: - Make $gp an allocatable temporary register rather than reserving it. - Use a virtual register as the global pointer register and let the register allocator decide which register to assign to it or whether spill/reloads are needed. - Make sure $gp is valid at the entry of a called function, which is necessary for functions using lazy binding. - Remove the need for emitting .cprestore and .cpload directives. llvm-svn: 156671
-
Michael J. Spencer authored
llvm-svn: 156665
-
Akira Hatanaka authored
llvm-svn: 156663
-
Chad Rosier authored
llvm-svn: 156662
-
Chad Rosier authored
llvm-svn: 156658
-
Akira Hatanaka authored
llvm-svn: 156656
-
Bill Wendling authored
llvm-svn: 156655
-
Michael J. Spencer authored
llvm-svn: 156652
-
- May 11, 2012
-
-
Bill Wendling authored
llvm-svn: 156649
-
Bill Wendling authored
llvm-svn: 156648
-
Chad Rosier authored
llvm-svn: 156646
-
Brendon Cahoon authored
llvm-svn: 156644
-
Sirish Pande authored
llvm-svn: 156636
-
Duncan Sands authored
llvm-svn: 156635
-
Brendon Cahoon authored
Patch by Jyotsna Verma. llvm-svn: 156634
-
Chad Rosier authored
llvm-svn: 156633
-
Chad Rosier authored
llvm-svn: 156632
-
Sirish Pande authored
llvm-svn: 156631
-
Jakob Stoklund Olesen authored
Don't compute the SuperRegs list until the sub-register graph is completely finished. This guarantees that the list of super-registers is properly topologically ordered, and has no duplicates. llvm-svn: 156629
-
Chad Rosier authored
retval. Hoists check before emitting the call to avoid unnecessary work. rdar://11430407 PR12796 llvm-svn: 156628
-
Nuno Lopes authored
llvm-svn: 156625
-
Chad Rosier authored
to selection DAG isel if we're unable to handle a non-double multi-reg retval. rdar://11430407 PR12796 llvm-svn: 156622
-
Chad Rosier authored
llvm-svn: 156621
-
Manman Ren authored
llvm-svn: 156620
-
Preston Gurd authored
llvm-svn: 156615
-
Stepan Dyatkovskiy authored
llvm-svn: 156613
-
Hans Wennborg authored
llvm-svn: 156612
-
Hans Wennborg authored
This fixes a TODO from 2007 :) Previously, LLVM would emit the wrong code here (see the update to test/CodeGen/X86/tls-pie.ll). llvm-svn: 156611
-
Silviu Baranga authored
Added the missing bit definition for the 4th bit of the STR (post reg) instruction. It is now set to 0. The patch also sets the unpredictable mask for SEL and SXTB-type instructions. llvm-svn: 156609
-
Silviu Baranga authored
Fixed the LLVM ARM v7 assembler and instruction printer for 8-bit immediate offset addressing. The assembler and instruction printer were not properly handeling the #-0 immediate. llvm-svn: 156608
-
Rafael Espindola authored
llvm-svn: 156606
-
Akira Hatanaka authored
llvm-svn: 156603
-
Jim Grosbach authored
llvm-svn: 156602
-
Jim Grosbach authored
llvm-svn: 156601
-
Eli Friedman authored
llvm-svn: 156600
-
Manman Ren authored
This patch will optimize the following cases: sub r1, r3 | sub r1, imm cmp r3, r1 or cmp r1, r3 | cmp r1, imm bge L1 TO subs r1, r3 bge L1 or ble L1 If the branch instruction can use flag from "sub", then we can replace "sub" with "subs" and eliminate the "cmp" instruction. rdar: 10734411 llvm-svn: 156599
-
Dan Gohman authored
but it generates int3 on x86 instead of ud2. llvm-svn: 156593
-