aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ELFWriter.cpp
AgeCommit message (Expand)Author
2009-06-25Support Constant Pool SectionsBruno Cardoso Lopes
2009-06-23Use a default alignment for data and bss sections.Bruno Cardoso Lopes
2009-06-22Use different functions to emit the string and symbol tables.Bruno Cardoso Lopes
2009-06-22Add more methods to gather target specific elf stuffBruno Cardoso Lopes
2009-06-14Introduce new BinaryObject (blob) class, ELF Writer modified to use it. Binar...Bruno Cardoso Lopes
2009-06-11Support for ELF VisibilityBruno Cardoso Lopes
2009-06-07Delete comment and fix typoBruno Cardoso Lopes
2009-06-07Simple ELF32/64 binary files can now be emitted for x86 and x86_64 withoutBruno Cardoso Lopes
2009-06-06Remove elf specific info from ELFWriter.h to Elf.h. Code cleanup and more com...Bruno Cardoso Lopes
2009-06-03Move ELFCodeEmiter stuff to new filesBruno Cardoso Lopes
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-03-07Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-01-15Add the private linkage.Rafael Espindola
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands
2009-01-04elf writer really wants the size of the global, not the size Chris Lattner
2009-01-04The llvm::ELFWriter::EmitGlobal() method is calling theBill Wendling
2008-12-10Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...Evan Cheng
2008-11-08Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ...Evan Cheng
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-21Use raw_ostream throughout the AsmPrinter.Owen Anderson
2008-05-14Add CommonLinkage; currently tentative definitionsDale Johannesen
2008-05-05Fix a bug in the ELF writer that caused it to produce malformedDan Gohman
2008-04-16Correlate stubs with functions in JIT: when emitting a stub, the JIT tells th...Nicolas Geoffray
2008-03-11Use PassManagerBase instead of FunctionPassManager for functionsDan Gohman
2008-02-13Enable exception handling int JITNicolas Geoffray
2008-01-29Use getPreferredAlignmentLog or getPreferredAlignmentDuncan Sands
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-14Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman
2007-11-05Eliminate the remaining uses of getTypeSize. ThisDuncan Sands
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-02-14Generalize TargetData strings, to support more interesting forms of data.Chris Lattner
2007-02-08Add function to create a file writer.Bill Wendling
2007-01-27Use TargetELFWriterInfo class.Bill Wendling
2007-01-20Teach TargetData to handle 'preferred' alignment for each target, and useChris Lattner
2007-01-18Have the OutputBuffer take the is64Bit and isLittleEndian booleans.Bill Wendling
2007-01-17Changed to use the OutputBuffer instead of the methods in MachO and ELFBill Wendling
2007-01-17Revert patch.Bill Wendling
2007-01-17Use the methods in the TargetObjInfo object instead of internal methods.Bill Wendling
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-11-29Converted to using llvm streams instead of <iostream>sBill Wendling
2006-11-16Match MachineCodeEmitter changes.Evan Cheng
2006-11-02For PR786:Reid Spencer
2006-05-12Refactor a bunch of includes so that TargetMachine.h doesn't have to includeOwen Anderson
2006-05-03Suck block address tracking out of targets into the JIT Emitter. ThisChris Lattner
2006-05-03Refactor TargetMachine, pushing handling of TargetData into the target-specif...Owen Anderson
2006-05-03Change the BasicBlockAddrs map to be a vector, indexed by MBB number.Chris Lattner
2006-05-02Several related changes:Chris Lattner