index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
ELFWriter.h
Age
Commit message (
Expand
)
Author
2010-08-07
Tidy some #includes and forward-declarations, and move the C binding code
Dan Gohman
2010-07-16
Get rid of a bunch of duplicated ELF enum values.
Eli Friedman
2010-04-15
Add more const qualifiers for LLVM IR pointers in CodeGen.
Dan Gohman
2009-09-20
Implement the JIT side of the GDB JIT debugging interface. To enable this
Reid Kleckner
2009-08-22
rename TAI -> MAI, being careful not to make MAILJMP instructions :)
Chris Lattner
2009-08-22
Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.
Chris Lattner
2009-08-13
Remove hack used to strip unwanted chars from section name
Bruno Cardoso Lopes
2009-08-10
Move ConstantExpr handling to ResolveConstantExpr method and also
Bruno Cardoso Lopes
2009-08-08
ELF improvements:
Bruno Cardoso Lopes
2009-08-05
- Remove custom handling of jumptables by the elf writter (this was
Bruno Cardoso Lopes
2009-07-31
refactor section construction in TLOF to be through an explicit
Chris Lattner
2009-07-27
add module identifier to the elf object file
Bruno Cardoso Lopes
2009-07-27
Handle external symbols for ELF and add some static methods to ELFSym
Bruno Cardoso Lopes
2009-07-27
Eliminate SectionFlags, just embed a SectionKind into Section
Chris Lattner
2009-07-21
Support adding relocations for data sections, handling the cases where
Bruno Cardoso Lopes
2009-07-20
For PC relative relocations where symbols are defined in the same section they
Bruno Cardoso Lopes
2009-07-18
Use R_X86_64_32S to handle Jump Table Index relocation entries. Hide TAI usag...
Bruno Cardoso Lopes
2009-07-18
Add support to properly reference private symbols on relocation entries.
Bruno Cardoso Lopes
2009-07-16
Fix coding style issues pointed by Bill.
Bruno Cardoso Lopes
2009-07-15
use std::vector instead of std::list for both Section and Symbol lists because
Bruno Cardoso Lopes
2009-07-13
Cleanup the global emission and refactor some code
Bruno Cardoso Lopes
2009-07-13
Match declaration to definition.
Daniel Dunbar
2009-07-06
Changed ELFCodeEmitter to inherit from ObjectCodeEmitter
Bruno Cardoso Lopes
2009-07-03
Factor some code out and support for Jump Table relocations
Bruno Cardoso Lopes
2009-07-02
shrinking down #includes
Bruno Cardoso Lopes
2009-06-25
Support Constant Pool Sections
Bruno Cardoso Lopes
2009-06-23
Use a default alignment for data and bss sections.
Bruno Cardoso Lopes
2009-06-22
Use different functions to emit the string and symbol tables.
Bruno Cardoso Lopes
2009-06-22
Add more methods to gather target specific elf stuff
Bruno Cardoso Lopes
2009-06-14
Introduce new BinaryObject (blob) class, ELF Writer modified to use it. Binar...
Bruno Cardoso Lopes
2009-06-11
Support for ELF Visibility
Bruno Cardoso Lopes
2009-06-07
Simple ELF32/64 binary files can now be emitted for x86 and x86_64 without
Bruno Cardoso Lopes
2009-06-06
Remove elf specific info from ELFWriter.h to Elf.h. Code cleanup and more com...
Bruno Cardoso Lopes
2009-06-05
ELF Code Emitter now uses CurBufferPtr, BufferBegin and BufferEnd, as do JIT and
Bruno Cardoso Lopes
2008-08-21
Use raw_ostream throughout the AsmPrinter.
Owen Anderson
2008-03-21
Don't include <map> in Pass.h, which doesn't need it. This requires
Dan Gohman
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-07-05
Here is the bulk of the sanitizing.
Gabor Greif
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-02-08
Moved from include/llvm/CodeGen to lib/CodeGen.
Bill Wendling