| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a new helper function to IVUsers for returning the "canonical" | Dan Gohman | 2010-01-19 | 1 | -0/+13 |
* | eliminate AsmPrinter::EmitZeros: just use MCStreamer directly. | Chris Lattner | 2010-01-19 | 2 | -18/+9 |
* | Promoted the getTok() method to MCAsmParser so that | Sean Callanan | 2010-01-19 | 3 | -41/+45 |
* | Stubs for getHostCPUFeatures API. This implements part of PR5389. | Xerxes Ranby | 2010-01-19 | 1 | -0/+4 |
* | Remove predicates when changing an add into an unpredicable mov. | Jakob Stoklund Olesen | 2010-01-19 | 2 | -5/+13 |
* | Update CMake list. | Benjamin Kramer | 2010-01-19 | 1 | -1/+0 |
* | Add some new debugging APIs to print out "raw" SelectionDAGs to make | David Greene | 2010-01-19 | 2 | -29/+25 |
* | Propagated the parser-side Lex function's declaration to | Sean Callanan | 2010-01-19 | 2 | -45/+45 |
* | Fix a bug introduced on r92564 where the name "Node" was already | Bruno Cardoso Lopes | 2010-01-19 | 1 | -2/+2 |
* | Generalize mcasmstreamer data emission APIs to take an address space | Chris Lattner | 2010-01-19 | 7 | -48/+50 |
* | Do not extend extension results beyond the use of a PHI instruction at the st... | Evan Cheng | 2010-01-19 | 1 | -0/+12 |
* | refactor code to be static functions instead of methods on AsmPrinter. | Chris Lattner | 2010-01-19 | 1 | -47/+39 |
* | mcstreamerize AsmPrinter::EmitZeros, at least when emitting to the | Chris Lattner | 2010-01-19 | 2 | -8/+8 |
* | add an MCAsmStreamer::EmitFill specialization of EmitFill that | Chris Lattner | 2010-01-19 | 1 | -0/+15 |
* | add a "MCStreamer::EmitFill" method, and move the default implementation | Chris Lattner | 2010-01-19 | 1 | -0/+9 |
* | remove MAI::ZeroDirectiveSuffix, which is only used by MASM, | Chris Lattner | 2010-01-19 | 3 | -12/+6 |
* | For aligned load/store instructions, it's only required to know whether a | Jim Grosbach | 2010-01-19 | 9 | -83/+21 |
* | optimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund Grimley | Chris Lattner | 2010-01-19 | 1 | -0/+5 |
* | On pic function calls some arguments were marked dead and | Bruno Cardoso Lopes | 2010-01-19 | 2 | -15/+30 |
* | load f64 +0.0 in a cleaner way. This fix part of PR5445 | Bruno Cardoso Lopes | 2010-01-19 | 2 | -12/+12 |
* | Fix return registers for mips eabi | Bruno Cardoso Lopes | 2010-01-19 | 1 | -4/+4 |
* | mcstreamer'ize the rest of EmitGlobalVariable that is used on | Chris Lattner | 2010-01-19 | 1 | -6/+8 |
* | stop using the .lcomm pseudoop on darwin, instead, directly use the | Chris Lattner | 2010-01-19 | 4 | -16/+36 |
* | MDNodes are not expected to disappear or replaced by another MDNode, so there... | Devang Patel | 2010-01-19 | 2 | -15/+16 |
* | Avoid including DebugInfo.h in AsmPrinter.h | Devang Patel | 2010-01-19 | 4 | -2/+5 |
* | zap the ARM version of PrintGlobalVariable, which I missed. | Chris Lattner | 2010-01-19 | 1 | -113/+0 |
* | mc'ize some stuff, don't comment out .lcomm directive in -fverbose-asm mode. | Chris Lattner | 2010-01-19 | 2 | -10/+11 |
* | factor this code better. | Chris Lattner | 2010-01-19 | 1 | -21/+13 |
* | Now that we have everything nicely factored (e.g. asmprinter is not | Chris Lattner | 2010-01-19 | 13 | -825/+126 |
* | use %object like other elf targets, gas accepts either. | Chris Lattner | 2010-01-19 | 1 | -1/+1 |
* | simplify the mips target to print .size and .type for c strings | Chris Lattner | 2010-01-19 | 1 | -6/+2 |
* | hookize the cygwin ".linkonce" directive. | Chris Lattner | 2010-01-19 | 3 | -6/+13 |
* | more cleanups. Emit the .local directive even on cygwin/mingw. | Chris Lattner | 2010-01-19 | 1 | -6/+3 |
* | some cleanups | Chris Lattner | 2010-01-19 | 2 | -20/+21 |
* | add a bool for whether .lcomm takes an alignment instead of basing this on "i... | Chris Lattner | 2010-01-19 | 5 | -11/+14 |
* | hoist handling of external globals and special globals up to common code. | Chris Lattner | 2010-01-19 | 4 | -74/+59 |
* | move production of .reference directives for static ctor/dtor list on | Chris Lattner | 2010-01-19 | 6 | -27/+13 |
* | Fix a crash in scalarrepl for memcpy/memmove where the source and destination | Bob Wilson | 2010-01-19 | 1 | -6/+10 |
* | use BSSLocal classifier to identify 'lcomm' data instead of | Chris Lattner | 2010-01-19 | 3 | -66/+41 |
* | make TLOF subclassify BSS based on linkage type into private, external | Chris Lattner | 2010-01-19 | 1 | -2/+7 |
* | now that elf weak bss symbols are handled correctly, simplify a bunch of code. | Chris Lattner | 2010-01-19 | 3 | -89/+18 |
* | fix a significant difference between llvm and gcc on ELF systems: | Chris Lattner | 2010-01-19 | 2 | -3/+5 |
* | introduce a section kind for common linkage. Use this to slightly | Chris Lattner | 2010-01-19 | 5 | -24/+99 |
* | Even more explanation. | Bill Wendling | 2010-01-19 | 2 | -0/+24 |
* | change an accessor to a predicate. | Chris Lattner | 2010-01-19 | 3 | -6/+6 |
* | Cleanup handling of .zerofill on darwin: | Chris Lattner | 2010-01-19 | 6 | -145/+164 |
* | Remove this fixme, looking at the linker source, all targets pad to 4 bytes. | Nate Begeman | 2010-01-19 | 1 | -2/+0 |
* | Revert accident check-in from r93165. | Devang Patel | 2010-01-19 | 1 | -8/+6 |
* | Fix comment. | Eric Christopher | 2010-01-19 | 1 | -1/+1 |
* | Fix r93758. Use isel patterns instead of c++ selection code to select rbit an... | Evan Cheng | 2010-01-19 | 3 | -8/+7 |