aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCAssembler.cpp
Commit message (Expand)AuthorAgeFilesLines
* MC: Simplify MCAssembler::isSymbolLinkerVisible to only take an MCSymbol.Daniel Dunbar2010-06-161-6/+5
* Don't call flush() at a library level which isn't checking for errorsDan Gohman2010-06-011-1/+0
* MC: When running with -mc-relax-all, we can eagerly relax instructions and av...Daniel Dunbar2010-05-261-5/+2
* MC: Change RelaxInstruction to only take the input and output instructions.Daniel Dunbar2010-05-261-1/+1
* MC: Simplify MayNeedRelaxation to not provide the fixups, so we can query itDaniel Dunbar2010-05-261-1/+1
* MC: Eliminate MCAsmFixup, replace with MCFixup.Daniel Dunbar2010-05-261-12/+10
* MC: Use accessors for access to MCAsmFixup.Daniel Dunbar2010-05-261-6/+7
* MC: Eliminate MCFragment vtable, which was unnecessary.Daniel Dunbar2010-05-261-69/+62
* MC: Switch to completely lazy layout.Daniel Dunbar2010-05-141-19/+35
* MC: Extend MCAsmLayout to explicitly track which fragments have been layed ou...Daniel Dunbar2010-05-141-10/+44
* MC: Implicitly assign section addresses when the previous fragment is layed out.Daniel Dunbar2010-05-141-1/+11
* MC: Switch MCFragment to storing the layout order index, not its index in the...Daniel Dunbar2010-05-141-13/+14
* MC: Change LayoutSection() to only do the section initializiation.Daniel Dunbar2010-05-141-25/+13
* MC: Move Layout{Fragment,Section} into MCAsmLayout, and add LayoutFile().Daniel Dunbar2010-05-131-26/+27
* MC: Factor out MCAssembler::ComputeFragmentSize.Daniel Dunbar2010-05-131-36/+44
* MC: Add section layout order indices to MCSectionData.Daniel Dunbar2010-05-131-0/+4
* MC: Move ordinal calculation, to make sure fragments synthesized for layout g...Daniel Dunbar2010-05-131-21/+21
* MC: Create dummy fragments to avoid ever having empty sections, which simplif...Daniel Dunbar2010-05-131-8/+9
* MC: Add MCAsmLayout::FragmentReplaced() helper function.Daniel Dunbar2010-05-131-4/+6
* Fix -Asserts warning.Daniel Dunbar2010-05-131-4/+2
* MC: Eliminate MCSectionData::{,Address,File}Size, which can now be computed byDaniel Dunbar2010-05-131-42/+28
* MC: Switch to using explicit MCAlignFragments with OnlyAlignAddress bit insteadDaniel Dunbar2010-05-131-22/+31
* MC: Add MCAlignFragment::OnlyAlignAddress bit. This is a bit of magic that sa...Daniel Dunbar2010-05-131-1/+17
* MC: Add MCSectionData::AddressSize, which is the size of the address space co...Daniel Dunbar2010-05-131-6/+15
* MC: Move MCAlignFragment::EmitNops value out of the constructor.Daniel Dunbar2010-05-121-1/+1
* MC: Eliminate MCZeroFillFragment, it is no longer needed.Daniel Dunbar2010-05-121-23/+1
* MC: Explicitly check that only virtual fragments appear in virtual sections.Daniel Dunbar2010-05-121-0/+23
* MC: Switch MCFillFragment to storing total fill size instead of a count. This...Daniel Dunbar2010-05-121-3/+3
* MC: Drop support for alignment in ZeroFill fragment, we can just useDaniel Dunbar2010-05-121-11/+4
* Simplify.Daniel Dunbar2010-05-121-5/+3
* MC: Factor out MCAssembler::LayoutFragmentDaniel Dunbar2010-05-121-74/+78
* MC: Tweak section layout to not relying on accumulating address value.Daniel Dunbar2010-05-121-7/+13
* MC: Simplify LayoutSection to just take the index of the section to layout.Daniel Dunbar2010-05-121-18/+16
* MC: Track section layout order explicitly, and use to simplify.Daniel Dunbar2010-05-121-31/+15
* MC/Mach-O/x86_64: Add a new hook for checking whether a particular section canDaniel Dunbar2010-05-121-0/+6
* MC/Mach-O x86_64: Switch to using fragment atom symbol.Daniel Dunbar2010-05-111-37/+6
* MC/Mach-O: Explicitly track atoms, as represented by their defining symbol, f...Daniel Dunbar2010-05-101-5/+1
* llvm-mc: Fix case were we would skip a line in the .s file after an instructionDaniel Dunbar2010-05-041-1/+3
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-6/+6
* llvm-mc: Add a -mc-relax-all option, which relaxes every fixup. We always needDaniel Dunbar2010-03-251-6/+18
* MC: Stop restarting layout on every relaxation.Daniel Dunbar2010-03-251-6/+39
* MC: Simplify main section layout process by moving alignment into LayoutSection.Daniel Dunbar2010-03-251-30/+31
* MC: Sink Section address assignment into LayoutSection.Daniel Dunbar2010-03-251-6/+6
* MC: Explicity track section and fragment ordinals.Daniel Dunbar2010-03-251-0/+13
* MC: Route access to SectionData offset and file size through MCAsmLayout.Daniel Dunbar2010-03-251-10/+31
* MC: Route access to Fragment offset and effective size through MCAsmLayout.Daniel Dunbar2010-03-251-30/+54
* MC: Eliminate MC{Fragment,{Section,Symbol}Data}::getAddress.Daniel Dunbar2010-03-251-9/+7
* MC: Direct all {fragment,section,symbol} address access through the MCAsmLayo...Daniel Dunbar2010-03-241-21/+49
* MC: Sprinkle in some more interesting statistics.Daniel Dunbar2010-03-231-1/+18
* MC: Switch to using MCInst fragments to do relaxation.Daniel Dunbar2010-03-231-78/+50