aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
Commit message (Expand)AuthorAgeFilesLines
* MC: Simplify MCAssembler::isSymbolLinkerVisible to only take an MCSymbol.Daniel Dunbar2010-06-161-1/+1
* MC: Lift SwitchSection() and Finish() into MCObjectStreamer.Daniel Dunbar2010-06-161-0/+13
* MC: Factor out an MCObjectStreamer class, which will be shared by the concreteDaniel Dunbar2010-06-161-0/+43
* Don't call flush() at a library level which isn't checking for errorsDan Gohman2010-06-011-1/+1
* Fix a typo in a comment.Dan Gohman2010-06-011-1/+1
* MC: Eliminate MCAsmFixup, replace with MCFixup.Daniel Dunbar2010-05-263-44/+17
* MC: Simplify MCFixup and increase the available offset size.Daniel Dunbar2010-05-261-29/+14
* MC: Use accessors for access to MCAsmFixup.Daniel Dunbar2010-05-261-2/+8
* MC: Eliminate MCFragment vtable, which was unnecessary.Daniel Dunbar2010-05-261-12/+1
* Start adding mach-o tls reloc support.Eric Christopher2010-05-261-1/+2
* MC: Add an MCLoggingStreamer, for use in debugging integrated-as mismatches.Daniel Dunbar2010-05-231-1/+7
* Fix comment and whitespace.Eric Christopher2010-05-211-2/+2
* added an assertion to MCObjectWriter::WriteBytes to catch misuse of the ZeroF...Nathan Jeffords2010-05-211-0/+2
* Add support for parsing the ELF .type assembler directive.Matt Fleming2010-05-212-1/+2
* Fix build by actually declaring the variable.Eric Christopher2010-05-201-0/+4
* Partial code for emitting thread local bss data.Eric Christopher2010-05-201-0/+1
* Make EmitTBSSSymbol take a section argument so that we can find it later.Eric Christopher2010-05-181-2/+3
* Added support in MC for Directional Local Labels.Kevin Enderby2010-05-172-0/+74
* More data/parsing support for tls directives. Add a few more testcasesEric Christopher2010-05-171-1/+1
* MC: Add dyn_cast support to MCSection.Daniel Dunbar2010-05-174-4/+34
* Add some section and constant support for darwin TLS.Eric Christopher2010-05-171-1/+13
* llvm-mc: Support reassignment of variables in one special case, when theDaniel Dunbar2010-05-171-5/+12
* Add AsmParser support for darwin tbss directive.Eric Christopher2010-05-142-0/+9
* Fix typo.Nick Lewycky2010-05-141-1/+1
* MC: Switch to completely lazy layout.Daniel Dunbar2010-05-141-0/+4
* MC: Extend MCAsmLayout to explicitly track which fragments have been layed ou...Daniel Dunbar2010-05-141-0/+8
* MC: Switch MCFragment to storing the layout order index, not its index in the...Daniel Dunbar2010-05-141-5/+5
* MC: Change LayoutSection() to only do the section initializiation.Daniel Dunbar2010-05-141-11/+3
* MC: Move Layout{Fragment,Section} into MCAsmLayout, and add LayoutFile().Daniel Dunbar2010-05-132-10/+12
* MC: Factor out MCAssembler::ComputeFragmentSize.Daniel Dunbar2010-05-131-0/+6
* MC: Add section layout order indices to MCSectionData.Daniel Dunbar2010-05-131-0/+6
* MC: Add MCAsmLayout::FragmentReplaced() helper function.Daniel Dunbar2010-05-131-0/+3
* MC: Eliminate MCSectionData::{,Address,File}Size, which can now be computed byDaniel Dunbar2010-05-132-29/+9
* MC: Add MCAlignFragment::OnlyAlignAddress bit. This is a bit of magic that sa...Daniel Dunbar2010-05-131-1/+11
* MC: Add MCSectionData::AddressSize, which is the size of the address space co...Daniel Dunbar2010-05-132-3/+15
* MC: Move MCAlignFragment::EmitNops value out of the constructor.Daniel Dunbar2010-05-121-7/+8
* MC: Eliminate MCZeroFillFragment, it is no longer needed.Daniel Dunbar2010-05-121-27/+1
* MC: Switch MCFillFragment to storing total fill size instead of a count. This...Daniel Dunbar2010-05-121-6/+10
* MC: Drop support for alignment in ZeroFill fragment, we can just useDaniel Dunbar2010-05-121-8/+2
* MC: Factor out MCAssembler::LayoutFragmentDaniel Dunbar2010-05-121-0/+5
* MC: Simplify LayoutSection to just take the index of the section to layout.Daniel Dunbar2010-05-122-13/+10
* MC: Track section layout order explicitly, and use to simplify.Daniel Dunbar2010-05-121-1/+20
* Add support for movi32 of global values to the new (MC) asm printer.Rafael Espindola2010-05-121-1/+3
* Added a trivial function to modify the flags field of MCSymbolData class. The...Nathan Jeffords2010-05-121-0/+5
* MC/Mach-O x86_64: Switch to using fragment atom symbol.Daniel Dunbar2010-05-111-10/+0
* MC/Mach-O: Explicitly track atoms, as represented by their defining symbol, f...Daniel Dunbar2010-05-101-0/+9
* break coff symbol definition stuff out into proper MCStreamer callbacks,Chris Lattner2010-05-081-2/+19
* add COFF support for COMDAT sections, patch by Nathan Jeffords!Chris Lattner2010-05-072-8/+41
* Fix i386 relocations to Weak Definitions. The relocation entries should beKevin Enderby2010-05-071-0/+44
* switch MCSectionCOFF from a syntactic to semantic representation,Chris Lattner2010-05-073-27/+87