aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCAssembler.h
Commit message (Expand)AuthorAgeFilesLines
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-201-0/+15
* Move target-specific logic out of generic MCAssembler.Jim Grosbach2011-12-061-1/+1
* Tidy up. 80 columns.Jim Grosbach2011-12-061-1/+2
* Switch MCAssembler to method names starting w/ lower-case.Jim Grosbach2011-12-061-15/+15
* Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCA...Evan Cheng2011-07-251-6/+6
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-2/+2
* Add support for the --noexecstack option.Rafael Espindola2011-01-231-0/+4
* Relax address updates in the eh_frame section.Rafael Espindola2010-12-281-1/+32
* Don't relax org or align. They change size as the relaxation happens, but theyRafael Espindola2010-12-211-20/+3
* Layout one section until no relaxations are done and then move to the nextRafael Espindola2010-12-211-0/+2
* MC/Assembler: Strip out object writer arguments, now that it is always availableDaniel Dunbar2010-12-171-21/+12
* MC/Assembler: Make the MCObjectWriter available through the lifetime of theDaniel Dunbar2010-12-171-3/+8
* Relax alignment fragments.Rafael Espindola2010-12-151-10/+15
* ARM Fixups relative to thumb functions need to have the low bit of the valueJim Grosbach2010-12-141-0/+18
* Layout each section independently. With the testcase in PR8711:Rafael Espindola2010-12-071-2/+1
* Sorry for such a large commit. The summary is that only MachO cares about theRafael Espindola2010-12-071-19/+2
* Remove the instruction fragment to data fragment lowering since it was causingRafael Espindola2010-12-061-0/+3
* Remove the getAddress getter, initialize Ordinal in the constructor and useRafael Espindola2010-12-061-2/+0
* Remember the contents of leb and dwarfline fragments when relaxing. This avoidsRafael Espindola2010-12-041-13/+8
* The sections that the ELF object writer has to create are very simple andRafael Espindola2010-12-021-3/+2
* Remove unused argument.Rafael Espindola2010-12-011-1/+1
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Relax dwarf line fragments. This fixes a crash in the included testcase.Rafael Espindola2010-11-071-1/+11
* Do relaxations with FT_Org fragments. Fixes the FIXME:Rafael Espindola2010-11-021-1/+10
* Add support for expressions in .sleb/.uleb directives.Rafael Espindola2010-11-021-1/+42
* Did my commit for the last patch for the .loc directory from the wrong place andKevin Enderby2010-09-301-1/+32
* Make it possible for the MCObjectWriter to decide if a given fixup is fullyRafael Espindola2010-09-301-5/+8
* Remove unused argument.Rafael Espindola2010-09-271-2/+1
* Avoid some Mach-O specific alignment being done on ELF.Rafael Espindola2010-09-221-1/+3
* Add some win64 coff goodness.Anton Korobeynikov2010-08-171-1/+1
* Layout helper function.Matt Fleming2010-08-161-0/+2
* Record a symbol's size which is needed for ELF symbol tables.Matt Fleming2010-08-161-0/+14
* MC: Put back the MCFragment vtable, so subclasses are destroyed properly (duh).Daniel Dunbar2010-07-281-0/+1
* Initial modifications to MCAssembler and TargetMachine for the MCJIT.Reid Kleckner2010-07-221-1/+3
* use a typedef instead of its expansion, patch by Michael SpencerChris Lattner2010-07-131-1/+1
* MC: Simplify MCAssembler::isSymbolLinkerVisible to only take an MCSymbol.Daniel Dunbar2010-06-161-1/+1
* MC: Eliminate MCAsmFixup, replace with MCFixup.Daniel Dunbar2010-05-261-40/+13
* 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
* MC: Switch MCFragment to storing the layout order index, not its index in the...Daniel Dunbar2010-05-141-5/+5
* MC: Move Layout{Fragment,Section} into MCAsmLayout, and add LayoutFile().Daniel Dunbar2010-05-131-10/+0
* 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: Eliminate MCSectionData::{,Address,File}Size, which can now be computed byDaniel Dunbar2010-05-131-11/+0
* 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-131-1/+5
* 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