aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* MC: Fix a crash on invalid, attempting to evaluate undefined symbols.Daniel Dunbar2010-03-142-4/+5
* MC/X86_64: Symbol support.Daniel Dunbar2010-03-131-6/+10
* MC/Mach-O: Initial x86_64 support.Daniel Dunbar2010-03-131-45/+80
* add a hack to allow parsing negative minint. rdar://7751341Chris Lattner2010-03-131-2/+8
* MC/Mach-O: PCrel relocations weren't using the right base address, they areDaniel Dunbar2010-03-131-1/+1
* llvm-mc: Support -n, useful for comparing -integrated-as output since theDaniel Dunbar2010-03-131-7/+6
* MC/Mach-O: Implement initial support for relaxation.Daniel Dunbar2010-03-121-9/+117
* move fastcall/stdcall mangling up into Mangler.Chris Lattner2010-03-122-0/+2
* MC: Factor out MCAssembler::EvaluateFixup, and simplify.Daniel Dunbar2010-03-121-33/+52
* MC: Constify MCAsmLayout argument to MCExpr::EvaluteAs...Daniel Dunbar2010-03-121-2/+3
* MC: Add MCAssembler::addFixup, which enforces that fixups are added in order.Daniel Dunbar2010-03-121-6/+4
* remove MAI argument from createAsmStreamer since itChris Lattner2010-03-121-5/+4
* enhance MCContext::GetOrCreateTemporarySymbol() to create a new symbolChris Lattner2010-03-111-0/+6
* change MCContext to always have an MCAsmInfo.Chris Lattner2010-03-111-1/+1
* empty symbols aren't possible, the mcsymbol ctor aborts on them.Chris Lattner2010-03-111-4/+0
* MC/Mach-O: Add MCSymbolData::getAddress() utility.Daniel Dunbar2010-03-111-4/+4
* MC/Mach-O: Implement "absolutizing" semantics of .set, by evaluating the asse...Daniel Dunbar2010-03-112-4/+28
* MC/Mach-O: Start passing in the basic MCAsmLayout object.Daniel Dunbar2010-03-111-13/+14
* MC: Sketch initial MCAsmLayout class, which encapsulates the current layout o...Daniel Dunbar2010-03-111-8/+8
* MC: Provide MCAssembler with a TargetAsmBackend.Daniel Dunbar2010-03-112-7/+9
* MC/Mach-O: Use the MCAssembler symbol map instead of reconstructing.Daniel Dunbar2010-03-101-32/+17
* MC: Move the backend section and symbol data maps to MCAssembler.Daniel Dunbar2010-03-101-30/+11
* Remove unneeded includes.Daniel Dunbar2010-03-103-3/+0
* move three lowering hooks from MAI to TLOF and make one of themChris Lattner2010-03-102-14/+0
* set the temporary bit on MCSymbols correctly.Chris Lattner2010-03-101-0/+5
* MC/Mach-O: Resolve a FIXME; these relocation types are no longer semanticaly ...Daniel Dunbar2010-03-101-3/+5
* eliminate MCContext::CreateSymbol and CreateTemporarySymbol.Chris Lattner2010-03-102-17/+12
* MC/Mach-O: Use the SECTDIFF relocation type for (A - B + constant) where A is...Daniel Dunbar2010-03-101-8/+11
* make the NullStreamer set the section on a label when emitted so that isDefin...Chris Lattner2010-03-091-1/+5
* MC/Mach-O: For PCrel relocations, we need to compensate for the PCrel adjustm...Daniel Dunbar2010-03-091-5/+9
* MC/Mach-O: Also set the PCrel bit in the second half of paired relocation ent...Daniel Dunbar2010-03-091-4/+2
* MC/Mach-O: Don't generate relocations for PCrel fixups to local labels.Daniel Dunbar2010-03-091-9/+19
* MC/Mach-O: Tweak .dump() formatting.Daniel Dunbar2010-03-091-4/+4
* MC/Mach-O: Don't adjust section sizes when aligning zero fill sections, just ...Daniel Dunbar2010-03-091-5/+1
* add a EmitSymbolValue convenience method to MCStreamer.Chris Lattner2010-03-091-0/+5
* MC/Macho-O: Align the zerofill section itself to the maximum alignment.Daniel Dunbar2010-03-081-0/+10
* MC/Mach-O: Fix address compution for zero fill sections.Daniel Dunbar2010-03-081-2/+2
* MC/Mach-O: Error out instead of crashing on invalid scattered relocation expr...Daniel Dunbar2010-03-081-2/+11
* pass in more section kinds, enough to get the .align 0x90Chris Lattner2010-02-261-5/+9
* This is a patch to the assembler frontend to detect when aligning a textKevin Enderby2010-02-251-3/+9
* This is the second patch to allow x86 code to be aligned with optimal nops.Kevin Enderby2010-02-231-2/+47
* genericize MCAsmStreamer::EmitCodeAlignment to support other targetsChris Lattner2010-02-231-2/+3
* This is the first patch to put the needed bits in place to eventually allow codeKevin Enderby2010-02-234-1/+51
* MC/Mach-O: Remove non-sensical comment, and add a missing AddValueSymbols call.Daniel Dunbar2010-02-221-3/+1
* MC/X86: Add stub AsmBackend.Daniel Dunbar2010-02-211-0/+1
* MC: Sketch registry support for target specific assembler backends.Daniel Dunbar2010-02-211-0/+19
* MC/Mach-O: Update fixup values for change to X86 offsets.Daniel Dunbar2010-02-171-6/+4
* Pacify gcc-4.5, which warns (correctly) that these switches haveDuncan Sands2010-02-171-2/+2
* MCAssembler: Fix pcrel relocations. Oh and,Daniel Dunbar2010-02-131-2/+23
* MC/Mach-O: Start emitting fixups/relocations for instructions.Daniel Dunbar2010-02-132-2/+20