| Commit message (Expand) | Author | Age | Files | Lines |
* | This is the first patch to put the needed bits in place to eventually allow code | Kevin Enderby | 2010-02-23 | 2 | -2/+22 |
* | Fix various doxygen warnings. | Dan Gohman | 2010-02-22 | 2 | -23/+21 |
* | MCAssembler: Switch MCAsmFixup to storing MCFixupKind instead of just a size. | Daniel Dunbar | 2010-02-13 | 2 | -4/+17 |
* | MCAssembler: Sink fixup list into MCDataFragment. | Daniel Dunbar | 2010-02-13 | 1 | -39/+23 |
* | MCAssembler: Switch MCFillFragment to only taking constant values. Symbolic e... | Daniel Dunbar | 2010-02-13 | 1 | -4/+4 |
* | MCAssembler: Start applying fixups in the data section. | Daniel Dunbar | 2010-02-13 | 1 | -9/+6 |
* | MCAssembler: Add assorted dump() methods. | Daniel Dunbar | 2010-02-13 | 1 | -31/+49 |
* | doxygenize some comments, patch by Peter Collingbourne! | Chris Lattner | 2010-02-12 | 1 | -21/+21 |
* | add a new MCInstPrinter::getOpcodeName interface, when it is | Chris Lattner | 2010-02-11 | 1 | -1/+5 |
* | MC: Move assembler-backend's fixup list into the fragment. | Daniel Dunbar | 2010-02-11 | 1 | -45/+52 |
* | MC: Move MCSectionData::Fixup out to MCAsmFixup. | Daniel Dunbar | 2010-02-11 | 1 | -32/+35 |
* | make getFixupKindInfo return a const reference, allowing | Chris Lattner | 2010-02-11 | 1 | -1/+1 |
* | add a virtual dtor to MCTargetExpr, hopefully silencing some warnings. | Chris Lattner | 2010-02-10 | 1 | -1/+1 |
* | Fix "the the" and similar typos. | Dan Gohman | 2010-02-10 | 1 | -1/+1 |
* | MC: Switch MCFixup to just hold an MCExpr pointer instead of index into the | Daniel Dunbar | 2010-02-10 | 1 | -13/+14 |
* | Fix a signed comparison warning. | Daniel Dunbar | 2010-02-10 | 1 | -3/+3 |
* | "fixup" a comment. | Chris Lattner | 2010-02-10 | 1 | -1/+1 |
* | llvm-mc: Remove --show-fixups and always show as part of --show-encoding. | Daniel Dunbar | 2010-02-10 | 1 | -4/+1 |
* | Add ability for MCInstPrinters to add comments for instructions. | Chris Lattner | 2010-02-10 | 2 | -2/+12 |
* | llvm-mc: Add --show-fixups option, for displaying the instruction fixup infor... | Daniel Dunbar | 2010-02-09 | 1 | -1/+4 |
* | MC: First cut at MCFixup, for getting fixup/relocation information out of an ... | Daniel Dunbar | 2010-02-09 | 2 | -2/+134 |
* | stop using reserved identifiers. | Chris Lattner | 2010-02-09 | 1 | -2/+2 |
* | Add explicit keywords. | Dan Gohman | 2010-02-09 | 1 | -3/+3 |
* | Document that MCExpr::Mod is actually remainder. | Dan Gohman | 2010-02-08 | 1 | -8/+12 |
* | don't make hte dtor private or we can't construct the class. | Chris Lattner | 2010-02-08 | 1 | -1/+1 |
* | add scaffolding for target-specific MCExprs. | Chris Lattner | 2010-02-08 | 1 | -1/+24 |
* | MC: Change default comment column to 40 characters. | Daniel Dunbar | 2010-02-05 | 1 | -1/+1 |
* | llvm-mc: Add --show-inst option, for showing the MCInst inline with the assembly | Daniel Dunbar | 2010-02-03 | 1 | -1/+11 |
* | Hook up -filetype=obj through the MachO streamer. Here's a demo: | Chris Lattner | 2010-02-02 | 1 | -1/+1 |
* | refactor code so that LLVMTargetMachine creates the asmstreamer and | Chris Lattner | 2010-02-02 | 1 | -0/+4 |
* | MC/Mach-O: Set SOME_INSTRUCTIONS bit for sections. | Daniel Dunbar | 2010-02-02 | 1 | -1/+8 |
* | Eliminate SetDirective, and replace it with HasSetDirective. | Chris Lattner | 2010-01-26 | 1 | -7/+4 |
* | Emit .comm alignment in bytes but .align in powers of 2 for ARM ELF. | Rafael Espindola | 2010-01-26 | 1 | -0/+7 |
* | eliminate MCAsmInfo::NeedsSet: we now just use .set on any platform | Chris Lattner | 2010-01-26 | 1 | -14/+0 |
* | mcstreamerize gprel32 emission. | Chris Lattner | 2010-01-25 | 1 | -0/+7 |
* | rename MAI::PICJumpTableDirective to MAI::GPRel32Directive to | Chris Lattner | 2010-01-25 | 1 | -10/+6 |
* | remove JumpTableDirective, it is always null. | Chris Lattner | 2010-01-25 | 1 | -4/+3 |
* | mcstreamerize .file and .file. This also fixes an issue where the | Chris Lattner | 2010-01-25 | 1 | -0/+9 |
* | add symbol attribute support for the ELF .type directive. | Chris Lattner | 2010-01-25 | 1 | -13/+19 |
* | emit the .size directive for global variables on ELF through | Chris Lattner | 2010-01-25 | 1 | -0/+8 |
* | all supported target now have aligned common support. | Chris Lattner | 2010-01-25 | 1 | -7/+0 |
* | mcize lcomm, simplify .comm, extend both to support 64-bit sizes. | Chris Lattner | 2010-01-23 | 2 | -17/+13 |
* | resolve a fixme: the "nonexecutable stack directive" is actually | Chris Lattner | 2010-01-23 | 2 | -14/+17 |
* | mcize visibility directives. | Chris Lattner | 2010-01-23 | 1 | -11/+11 |
* | move the various directive enums out of the MCStreamer class | Chris Lattner | 2010-01-23 | 3 | -28/+48 |
* | mcstreamerize .no_dead_strip and .reference for static ctors/dtors. | Chris Lattner | 2010-01-23 | 1 | -13/+6 |
* | mcize jump table and constant pool entry labels, .local on elf, | Chris Lattner | 2010-01-23 | 1 | -0/+1 |
* | Added a Register token to AsmToken and the appropriate | Sean Callanan | 2010-01-22 | 1 | -0/+10 |
* | Convert some more random-comment-printing stuff to use | Chris Lattner | 2010-01-22 | 1 | -0/+8 |
* | add a new MCAsmStreamer::GetCommentOS method to simplify stuff | Chris Lattner | 2010-01-22 | 1 | -0/+5 |