- Mar 01, 2004
-
-
Misha Brukman authored
* Doxygenify (some) comments llvm-svn: 12057
-
Chris Lattner authored
llvm-svn: 12056
-
Chris Lattner authored
llvm-svn: 12055
-
Misha Brukman authored
llvm-svn: 12054
-
Misha Brukman authored
* Add comments to ExtractLoop() llvm-svn: 12053
-
Misha Brukman authored
llvm-svn: 12052
-
Misha Brukman authored
* Removed unnecessary tabs in the entire file llvm-svn: 12051
-
Misha Brukman authored
llvm-svn: 12050
-
Chris Lattner authored
that Instructions are annotable again llvm-svn: 12045
-
Tanya Lattner authored
llvm-svn: 12044
-
Brian Gaeke authored
(16) into certain areas of the SPARC V9 back-end. I'm fairly sure the US IIIi's dcache has 32-byte lines, so I'm not sure where the 16 came from. However, in the interest of not breaking things any more than they already are, I'm going to leave the constant alone. llvm-svn: 12043
-
Tanya Lattner authored
llvm-svn: 12031
-
Tanya Lattner authored
Removing old graph files with new graph files that I wrote. Updated ModuloScheduling pass, but still in progress. llvm-svn: 12030
-
Chris Lattner authored
llvm-svn: 12029
-
Chris Lattner authored
of generating this code: mov %EAX, 4 mov DWORD PTR [%ESP], %EAX mov %AX, 123 movsx %EAX, %AX mov DWORD PTR [%ESP + 4], %EAX call Y we now generate: mov DWORD PTR [%ESP], 4 mov DWORD PTR [%ESP + 4], 123 call Y Which hurts the eyes less. :) Considering that register pressure around call sites is already high (with all of the callee clobber registers n stuff), this may help a lot. llvm-svn: 12028
-
Brian Gaeke authored
llvm-svn: 12027
-
Chris Lattner authored
to function calls, we would emit dead code, like this: int Y(int, short, double); int X() { Y(4, 123, 4); } --- Old X: sub %ESP, 20 mov %EAX, 4 mov DWORD PTR [%ESP], %EAX *** mov %AX, 123 mov %AX, 123 movsx %EAX, %AX mov DWORD PTR [%ESP + 4], %EAX fld QWORD PTR [.CPIX_0] fstp QWORD PTR [%ESP + 8] call Y mov %EAX, 0 # IMPLICIT_USE %EAX %ESP add %ESP, 20 ret Now we emit: X: sub %ESP, 20 mov %EAX, 4 mov DWORD PTR [%ESP], %EAX mov %AX, 123 movsx %EAX, %AX mov DWORD PTR [%ESP + 4], %EAX fld QWORD PTR [.CPIX_0] fstp QWORD PTR [%ESP + 8] call Y mov %EAX, 0 # IMPLICIT_USE %EAX %ESP add %ESP, 20 ret Next up, eliminate the mov AX and movsx entirely! llvm-svn: 12026
-
Chris Lattner authored
DSNodes, unlike other GraphTraits nodes, can have null outgoing edges, and df_iterator doesn't take this into consideration. As a workaround, the successor iterator now handles null nodes and 'indicates' that null has no successors. llvm-svn: 12025
-
Chris Lattner authored
we really don't win that much by eliminating this (not many Modules are allocated), so it's not worth it. When we can, we should revisit this in the future. llvm-svn: 12023
-
Chris Lattner authored
llvm-svn: 12021
-
Misha Brukman authored
llvm-svn: 12015
-
Misha Brukman authored
* Removing extraneous empty space and empty comment lines llvm-svn: 12014
-
- Feb 29, 2004
-
-
Chris Lattner authored
being annotable llvm-svn: 12013
-
Chris Lattner authored
... which tickled the lowerinvoke pass because it used the BCE routines. llvm-svn: 12012
-
Chris Lattner authored
tester last night. llvm-svn: 12011
-
Chris Lattner authored
llvm-svn: 12010
-
Chris Lattner authored
llvm-svn: 12009
-
Chris Lattner authored
llvm-svn: 12007
-
Chris Lattner authored
llvm-svn: 12005
-
Chris Lattner authored
llvm-svn: 12004
-
Chris Lattner authored
llvm-svn: 12003
-
Chris Lattner authored
llvm-svn: 12002
-
Chris Lattner authored
llvm-svn: 12001
-
Chris Lattner authored
annotable llvm-svn: 12000
-
Chris Lattner authored
LLVM instructions. Because it contains an explicit cast, we didn't catch it. I guess instruction's will be annotable for the duration of the sparcv9's existence. llvm-svn: 11999
-
Alkis Evlogimenos authored
llvm-svn: 11998
-
Alkis Evlogimenos authored
operand size is correctly specified. llvm-svn: 11997
-
Alkis Evlogimenos authored
1) For 8-bit registers try to use first the ones that are parts of the same register (AL then AH). This way we only alias 2 16/32-bit registers after allocating 4 8-bit variables. 2) Move EBX as the last register to allocate. This will cause less spills to happen since we will have 8-bit registers available up to register excaustion (assuming we use the allocation order). It would be nice if we could push all of the 8-bit aliased registers towards the end but we much prefer to keep callee saved register to the end to avoid saving them on entry and exit of the function. For example this gives a slight reduction of spills with linear scan on 164.gzip. Before: 11221 asm-printer - Number of machine instrs printed 975 spiller - Number of loads added 675 spiller - Number of stores added 398 spiller - Number of register spills After: 11182 asm-printer - Number of machine instrs printed 952 spiller - Number of loads added 652 spiller - Number of stores added 386 spiller - Number of register spills llvm-svn: 11996
-
Alkis Evlogimenos authored
their names more decriptive. A name consists of the base name, a default operand size followed by a character per operand with an optional special size. For example: ADD8rr -> add, 8-bit register, 8-bit register IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory llvm-svn: 11995
-
Brian Gaeke authored
llvm-svn: 11994
-