aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCAssembler.cpp
AgeCommit message (Expand)Author
2010-09-09MC: Give a (lame) hard error if a .org directive would create an unreasonablyDaniel Dunbar
2010-08-18MC/ELF: Allow null values in virtual sections, ELF doesn't use specialDaniel Dunbar
2010-08-16Layout helper function.Matt Fleming
2010-08-16Record a symbol's size which is needed for ELF symbol tables.Matt Fleming
2010-07-30MC: Initialize MCFragment::Offset, noticed by Cameron Esfahani.Daniel Dunbar
2010-07-28MC: Put back the MCFragment vtable, so subclasses are destroyed properly (duh).Daniel Dunbar
2010-07-22Initial modifications to MCAssembler and TargetMachine for the MCJIT.Reid Kleckner
2010-06-29The variable ValueSize is set to 1 on both code paths, and thenDuncan Sands
2010-06-16MC: Simplify MCAssembler::isSymbolLinkerVisible to only take an MCSymbol.Daniel Dunbar
2010-06-01Don't call flush() at a library level which isn't checking for errorsDan Gohman
2010-05-26MC: When running with -mc-relax-all, we can eagerly relax instructions and av...Daniel Dunbar
2010-05-26MC: Change RelaxInstruction to only take the input and output instructions.Daniel Dunbar
2010-05-26MC: Simplify MayNeedRelaxation to not provide the fixups, so we can query itDaniel Dunbar
2010-05-26MC: Eliminate MCAsmFixup, replace with MCFixup.Daniel Dunbar
2010-05-26MC: Use accessors for access to MCAsmFixup.Daniel Dunbar
2010-05-26MC: Eliminate MCFragment vtable, which was unnecessary.Daniel Dunbar
2010-05-14MC: Switch to completely lazy layout.Daniel Dunbar
2010-05-14MC: Extend MCAsmLayout to explicitly track which fragments have been layed ou...Daniel Dunbar
2010-05-14MC: Implicitly assign section addresses when the previous fragment is layed out.Daniel Dunbar
2010-05-14MC: Switch MCFragment to storing the layout order index, not its index in the...Daniel Dunbar
2010-05-14MC: Change LayoutSection() to only do the section initializiation.Daniel Dunbar
2010-05-13MC: Move Layout{Fragment,Section} into MCAsmLayout, and add LayoutFile().Daniel Dunbar
2010-05-13MC: Factor out MCAssembler::ComputeFragmentSize.Daniel Dunbar
2010-05-13MC: Add section layout order indices to MCSectionData.Daniel Dunbar
2010-05-13MC: Move ordinal calculation, to make sure fragments synthesized for layout g...Daniel Dunbar
2010-05-13MC: Create dummy fragments to avoid ever having empty sections, which simplif...Daniel Dunbar
2010-05-13MC: Add MCAsmLayout::FragmentReplaced() helper function.Daniel Dunbar
2010-05-13Fix -Asserts warning.Daniel Dunbar
2010-05-13MC: Eliminate MCSectionData::{,Address,File}Size, which can now be computed byDaniel Dunbar
2010-05-13MC: Switch to using explicit MCAlignFragments with OnlyAlignAddress bit insteadDaniel Dunbar
2010-05-13MC: Add MCAlignFragment::OnlyAlignAddress bit. This is a bit of magic that sa...Daniel Dunbar
2010-05-13MC: Add MCSectionData::AddressSize, which is the size of the address space co...Daniel Dunbar
2010-05-12MC: Move MCAlignFragment::EmitNops value out of the constructor.Daniel Dunbar
2010-05-12MC: Eliminate MCZeroFillFragment, it is no longer needed.Daniel Dunbar
2010-05-12MC: Explicitly check that only virtual fragments appear in virtual sections.Daniel Dunbar
2010-05-12MC: Switch MCFillFragment to storing total fill size instead of a count. This...Daniel Dunbar
2010-05-12MC: Drop support for alignment in ZeroFill fragment, we can just useDaniel Dunbar
2010-05-12Simplify.Daniel Dunbar
2010-05-12MC: Factor out MCAssembler::LayoutFragmentDaniel Dunbar
2010-05-12MC: Tweak section layout to not relying on accumulating address value.Daniel Dunbar
2010-05-12MC: Simplify LayoutSection to just take the index of the section to layout.Daniel Dunbar
2010-05-12MC: Track section layout order explicitly, and use to simplify.Daniel Dunbar
2010-05-12MC/Mach-O/x86_64: Add a new hook for checking whether a particular section canDaniel Dunbar
2010-05-11MC/Mach-O x86_64: Switch to using fragment atom symbol.Daniel Dunbar
2010-05-10MC/Mach-O: Explicitly track atoms, as represented by their defining symbol, f...Daniel Dunbar
2010-05-04llvm-mc: Fix case were we would skip a line in the .s file after an instructionDaniel Dunbar
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
2010-03-25llvm-mc: Add a -mc-relax-all option, which relaxes every fixup. We always needDaniel Dunbar
2010-03-25MC: Stop restarting layout on every relaxation.Daniel Dunbar
2010-03-25MC: Simplify main section layout process by moving alignment into LayoutSection.Daniel Dunbar