MC: Give a (lame) hard error if a .org directive would create an unreasonably
[oota-llvm.git] / lib / MC / MCAssembler.cpp
2010-09-09 Daniel DunbarMC: Give a (lame) hard error if a .org directive would...
2010-08-18 Daniel DunbarMC/ELF: Allow null values in virtual sections, ELF...
2010-08-16 Matt FlemingLayout helper function.
2010-08-16 Matt FlemingRecord a symbol's size which is needed for ELF symbol...
2010-07-30 Daniel DunbarMC: Initialize MCFragment::Offset, noticed by Cameron...
2010-07-28 Daniel DunbarMC: Put back the MCFragment vtable, so subclasses are...
2010-07-22 Reid KlecknerInitial modifications to MCAssembler and TargetMachine...
2010-06-29 Duncan SandsThe variable ValueSize is set to 1 on both code paths...
2010-06-16 Daniel DunbarMC: Simplify MCAssembler::isSymbolLinkerVisible to...
2010-06-01 Dan GohmanDon't call flush() at a library level which isn't check...
2010-05-26 Daniel DunbarMC: When running with -mc-relax-all, we can eagerly...
2010-05-26 Daniel DunbarMC: Change RelaxInstruction to only take the input...
2010-05-26 Daniel DunbarMC: Simplify MayNeedRelaxation to not provide the fixup...
2010-05-26 Daniel DunbarMC: Eliminate MCAsmFixup, replace with MCFixup.
2010-05-26 Daniel DunbarMC: Use accessors for access to MCAsmFixup.
2010-05-26 Daniel DunbarMC: Eliminate MCFragment vtable, which was unnecessary.
2010-05-14 Daniel DunbarMC: Switch to completely lazy layout.
2010-05-14 Daniel DunbarMC: Extend MCAsmLayout to explicitly track which fragme...
2010-05-14 Daniel DunbarMC: Implicitly assign section addresses when the previo...
2010-05-14 Daniel DunbarMC: Switch MCFragment to storing the layout order index...
2010-05-14 Daniel DunbarMC: Change LayoutSection() to only do the section initi...
2010-05-13 Daniel DunbarMC: Move Layout{Fragment,Section} into MCAsmLayout...
2010-05-13 Daniel DunbarMC: Factor out MCAssembler::ComputeFragmentSize.
2010-05-13 Daniel DunbarMC: Add section layout order indices to MCSectionData.
2010-05-13 Daniel DunbarMC: Move ordinal calculation, to make sure fragments...
2010-05-13 Daniel DunbarMC: Create dummy fragments to avoid ever having empty...
2010-05-13 Daniel DunbarMC: Add MCAsmLayout::FragmentReplaced() helper function.
2010-05-13 Daniel DunbarFix -Asserts warning.
2010-05-13 Daniel DunbarMC: Eliminate MCSectionData::{,Address,File}Size, which...
2010-05-13 Daniel DunbarMC: Switch to using explicit MCAlignFragments with...
2010-05-13 Daniel DunbarMC: Add MCAlignFragment::OnlyAlignAddress bit. This...
2010-05-13 Daniel DunbarMC: Add MCSectionData::AddressSize, which is the size...
2010-05-12 Daniel DunbarMC: Move MCAlignFragment::EmitNops value out of the...
2010-05-12 Daniel DunbarMC: Eliminate MCZeroFillFragment, it is no longer needed.
2010-05-12 Daniel DunbarMC: Explicitly check that only virtual fragments appear...
2010-05-12 Daniel DunbarMC: Switch MCFillFragment to storing total fill size...
2010-05-12 Daniel DunbarMC: Drop support for alignment in ZeroFill fragment...
2010-05-12 Daniel DunbarSimplify.
2010-05-12 Daniel DunbarMC: Factor out MCAssembler::LayoutFragment
2010-05-12 Daniel DunbarMC: Tweak section layout to not relying on accumulating...
2010-05-12 Daniel DunbarMC: Simplify LayoutSection to just take the index of...
2010-05-12 Daniel DunbarMC: Track section layout order explicitly, and use...
2010-05-12 Daniel DunbarMC/Mach-O/x86_64: Add a new hook for checking whether...
2010-05-11 Daniel DunbarMC/Mach-O x86_64: Switch to using fragment atom symbol.
2010-05-10 Daniel DunbarMC/Mach-O: Explicitly track atoms, as represented by...
2010-05-04 Daniel Dunbarllvm-mc: Fix case were we would skip a line in the...
2010-04-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
2010-03-25 Daniel Dunbarllvm-mc: Add a -mc-relax-all option, which relaxes...
2010-03-25 Daniel DunbarMC: Stop restarting layout on every relaxation.
2010-03-25 Daniel DunbarMC: Simplify main section layout process by moving...
2010-03-25 Daniel DunbarMC: Sink Section address assignment into LayoutSection.
2010-03-25 Daniel DunbarMC: Explicity track section and fragment ordinals.
2010-03-25 Daniel DunbarMC: Route access to SectionData offset and file size...
2010-03-25 Daniel DunbarMC: Route access to Fragment offset and effective size...
2010-03-25 Daniel DunbarMC: Eliminate MC{Fragment,{Section,Symbol}Data}::getAdd...
2010-03-24 Daniel DunbarMC: Direct all {fragment,section,symbol} address access...
2010-03-23 Daniel DunbarMC: Sprinkle in some more interesting statistics.
2010-03-23 Daniel DunbarMC: Switch to using MCInst fragments to do relaxation.
2010-03-23 Daniel DunbarMC: Add TargetAsmBackend::MayNeedRelaxation, for checki...
2010-03-23 Daniel DunbarMC: Add TargetAsmBackend::WriteNopData and use to elimi...
2010-03-23 Daniel DunbarMC: Tweak MCInstFragment to include the encoded data...
2010-03-22 Daniel DunbarMC: Add MCInstFragment, not used yet.
2010-03-22 Daniel DunbarMC: Fix a few more cases we were passing an MCDataFragm...
2010-03-22 Daniel DunbarSimplify.
2010-03-22 Daniel DunbarMC: Change MCObjectWriter::RecordRelocation to take...
2010-03-22 Daniel DunbarMC: Eliminate MCFragment::getMaxFileSize.
2010-03-22 Daniel DunbarMC: Share the MCAsmLayout object, although its still...
2010-03-19 Daniel DunbarMC: Add TargetAsmBackend::createObjectWriter.
2010-03-19 Daniel DunbarMCCodeEmitter: Add target independent fixup flag for...
2010-03-19 Daniel DunbarMC: Sink code emitter into MCAssembler.
2010-03-19 Daniel DunbarMC/Mach-O: Move to MachObjectWriter.{h,cpp}.
2010-03-19 Daniel DunbarMC: Add TargetAsmBackend::isVirtualSection hook.
2010-03-19 Daniel DunbarMC: Split MCObjectWriter out of MCAssembler.cpp.
2010-03-19 Daniel DunbarMCAssembler: Pull out MCObjectWriter class.
2010-03-19 Daniel DunbarMCAssembler: Move ApplyFixup to the TargetAsmBackend...
2010-03-19 Daniel DunbarMC/Mach-O: Lift the fixup evaluation and application...
2010-03-19 Daniel DunbarMC/Mach-O: Factor out ExecutePostLayoutBinding, to...
2010-03-19 Daniel DunbarMC/Mach-O: Lift relocation emission logic a bit higher...
2010-03-19 Daniel DunbarMC/Mach-O: Add isScatteredFixupFullyResolved, which...
2010-03-19 Daniel DunbarMC/Mach-O/x86_64: Add getAtom[ForAddress].
2010-03-19 Daniel DunbarMC/Mach-O: Factor out isScatteredFixupFullyResolvedSimp...
2010-03-19 Daniel DunbarMC/Mach-O: Factor out isSymbolLinkerVisible method...
2010-03-18 Daniel DunbarMCValue: Change to holding MCSymbolRefExprs instead...
2010-03-15 Daniel DunbarMC/Mach-O/x86_64: Temporary labels in cstring sections...
2010-03-15 Daniel DunbarMC/Mach-O: Add MCSectionMachO::getType()
2010-03-13 Daniel DunbarMC/X86_64: Symbol support.
2010-03-13 Daniel DunbarMC/Mach-O: Initial x86_64 support.
2010-03-13 Daniel DunbarMC/Mach-O: PCrel relocations weren't using the right...
2010-03-12 Daniel DunbarMC/Mach-O: Implement initial support for relaxation.
2010-03-12 Daniel DunbarMC: Factor out MCAssembler::EvaluateFixup, and simplify.
2010-03-11 Daniel DunbarMC/Mach-O: Add MCSymbolData::getAddress() utility.
2010-03-11 Daniel DunbarMC/Mach-O: Implement "absolutizing" semantics of .set...
2010-03-11 Daniel DunbarMC/Mach-O: Start passing in the basic MCAsmLayout object.
2010-03-11 Daniel DunbarMC: Provide MCAssembler with a TargetAsmBackend.
2010-03-10 Daniel DunbarMC/Mach-O: Use the MCAssembler symbol map instead of...
2010-03-10 Daniel DunbarMC/Mach-O: Resolve a FIXME; these relocation types...
2010-03-10 Daniel DunbarMC/Mach-O: Use the SECTDIFF relocation type for (A...
2010-03-09 Daniel DunbarMC/Mach-O: For PCrel relocations, we need to compensate...
2010-03-09 Daniel DunbarMC/Mach-O: Also set the PCrel bit in the second half...
2010-03-09 Daniel DunbarMC/Mach-O: Don't generate relocations for PCrel fixups...
next