- Oct 20, 2009
-
-
Dan Gohman authored
llvm-svn: 84596
-
Jim Grosbach authored
functions are not needed. llvm-svn: 84587
-
Evan Cheng authored
llvm-svn: 84586
-
Jim Grosbach authored
llvm-svn: 84585
-
Chris Lattner authored
llvm-svn: 84583
-
Chris Lattner authored
reasonable code like Codegen/ARM/2009-02-27-SpillerBug.ll, producing identical output except for superior formatting of constant pool entries. llvm-svn: 84582
-
Chris Lattner authored
llvm-svn: 84579
-
Chris Lattner authored
llvm-svn: 84577
-
Chris Lattner authored
llvm-svn: 84575
-
Chris Lattner authored
llvm-svn: 84573
-
Jim Grosbach authored
Leave Inst{11-8}, which represents the starting byte index of the extracted result in the concatenation of the operands and is left unspecified. Patch by Johnny Chen. llvm-svn: 84572
-
Jim Grosbach authored
Patch by Johnny Chen. llvm-svn: 84570
-
Chris Lattner authored
no functionality change. llvm-svn: 84567
-
Chris Lattner authored
by ignoring all implicit regs when lowering. llvm-svn: 84566
-
Chris Lattner authored
llvm-svn: 84565
-
Jim Grosbach authored
llvm-svn: 84563
-
Chris Lattner authored
llvm-svn: 84562
-
Chris Lattner authored
llvm-svn: 84561
-
Chris Lattner authored
like: @ BB#1: .align 2 LCPI1_0: .long L_.str-(LPC0+8) Note that proper indentation of the label :) llvm-svn: 84558
-
Jim Grosbach authored
appropriate restore location for the spill as well as perform the actual save and restore. The Thumb1 target uses this to make sure R12 is not clobbered while a spilled scavenger register is live there. llvm-svn: 84554
-
Chris Lattner authored
llvm-svn: 84553
-
Owen Anderson authored
numbering first class aggregate instructions while we're at it. llvm-svn: 84547
-
Chris Lattner authored
_main: stmsp! sp!, {r7, lr} mov r7, sp sub sp, sp, #4 mov r0, #0 str r0, [sp] ldr r0, LCPI1_0 bl _printf ldr r0, [sp] mov sp, r7 ldmsp! sp!, {r7, pc} Note the unhappy ldm/stm because of modifiers being ignored. llvm-svn: 84546
-
- Oct 19, 2009
-
-
Chris Lattner authored
broken makefile deps :( llvm-svn: 84544
-
Chris Lattner authored
_main: stm , mov r7, sp sub sp, sp, #4 mov r0, #0 str r0, [sp] ldr r0, LCPI1_0 bl _printf ldr r0, [sp] mov sp, r7 ldm , llvm-svn: 84543
-
Chris Lattner authored
lowering stuff. We can now compile hello world to: _main: stm , mov r7, sp sub sp, sp, #4 mov r0, #0 str r0, ldr r0, bl _printf ldr r0, mov sp, r7 ldm , Almost looks like arm code :) llvm-svn: 84542
-
Victor Hernandez authored
Malloc calls are marked NoAlias, so the code below the isMalloc() check makes it redundant. Removing the isMalloc() check. llvm-svn: 84541
-
Chris Lattner authored
llvm-svn: 84540
-
Chris Lattner authored
llvm-svn: 84536
-
Chris Lattner authored
_main: stm , mov r7, sp sub sp, sp, #4 mov r0, #0 str r0, llvm-svn: 84535
-
Owen Anderson authored
llvm-svn: 84533
-
Chris Lattner authored
we abort: _main: stm , mov r7, sp sub sp, sp, mov r0, str r0, llvm-svn: 84532
-
Chris Lattner authored
llvm-svn: 84531
-
Chris Lattner authored
through mcinst lowering -> mcinstprinter, when llc is passed the -enable-arm-mcinst-printer flag. Currently this is very "aborty". llvm-svn: 84530
-
Owen Anderson authored
at the moment. llvm-svn: 84529
-
Chris Lattner authored
"something" when printing MCInsts, it will just be missing all the operand info. llvm-svn: 84528
-
Chris Lattner authored
llvm-svn: 84527
-
Chris Lattner authored
All of these "subreg32" modifier instructions are handled explicitly by the MCInst lowering phase. If they got to the asmprinter, they would explode. They should eventually be replace with correct use of subregs. llvm-svn: 84526
-
Jeffrey Yasskin authored
The JITResolver maps Functions to their canonical stubs and all callsites for lazily-compiled functions to their target Functions. To make Function destruction work, I'm going to need to remove all callsites on destruction, so this patch also adds the reverse mapping for that. There was an incorrect assumption in here that the only stub for a function would be the one caused by needing to lazily compile it, while x86-64 far calls and dlsym-stubs could also cause such stubs, but I didn't look for a test case that the assumption broke. This also adds DenseMapInfo<AssertingVH> so I can use DenseMaps instead of std::maps. llvm-svn: 84522
-
Chris Lattner authored
llvm-svn: 84521
-