index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lld
/
ELF
/
OutputSections.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[ELF] Convert StringTableSection to input section
Eugene Leviant
2016-11-14
1
-53
/
+23
*
[ELF] Convert .got section to input section
Eugene Leviant
2016-11-11
1
-279
/
+5
*
Parse relocations only once.
Rafael Espindola
2016-11-10
1
-5
/
+4
*
[ELF] Convert .got.plt section to input section
Eugene Leviant
2016-11-10
1
-35
/
+5
*
[ELF] - Implemented --symbol-ordering-file option.
George Rimar
2016-11-10
1
-10
/
+17
*
Make OutputSectionBase a class instead of class template.
Rafael Espindola
2016-11-09
1
-40
/
+38
*
Split OutputSection ctor. NFC.
Rui Ueyama
2016-11-09
1
-11
/
+18
*
[ELF][MIPS] Convert .MIPS.abiflags section to synthetic input section
Simon Atanasyan
2016-11-09
1
-48
/
+2
*
[ELF][MIPS] Convert .reginfo and .MIPS.options sections to synthetic input se...
Simon Atanasyan
2016-11-09
1
-74
/
+5
*
Split Header into individual fields.
Rafael Espindola
2016-11-09
1
-110
/
+113
*
Store the size the same way as any other OutputSection. NFC.
Rafael Espindola
2016-11-08
1
-4
/
+7
*
[ELF] Use the SystemV hash in libObject instead of rolling our own.
Davide Italiano
2016-11-07
1
-14
/
+2
*
Rewrite CommonInputSection as a synthetic input section.
Rui Ueyama
2016-11-05
1
-1
/
+2
*
Revert r285968: Always use parallel_for_each because it falls back to std::fo...
Rui Ueyama
2016-11-04
1
-2
/
+7
*
Always use parallel_for_each because it falls back to std::for_each.
Rui Ueyama
2016-11-03
1
-7
/
+2
*
Now that the ELFFile constructor does nothing, create it when needed.
Rafael Espindola
2016-11-03
1
-1
/
+1
*
Update for llvm change.
Rafael Espindola
2016-11-03
1
-2
/
+2
*
Convert Out::InterpSection to In::InterpSection.
Rui Ueyama
2016-11-02
1
-16
/
+0
*
Add strings to .dynstr early.
Rui Ueyama
2016-11-02
1
-36
/
+39
*
Remove Out::Pool and use make() instead.
Rui Ueyama
2016-11-01
1
-7
/
+7
*
Convert BuildIdSection to input section
Eugene Leviant
2016-11-01
1
-90
/
+0
*
Delete trivial getters. NFC.
Rafael Espindola
2016-10-26
1
-9
/
+8
*
Read section headers upfront.
Rafael Espindola
2016-10-26
1
-1
/
+1
*
Delete getSectionHdr.
Rafael Espindola
2016-10-25
1
-9
/
+8
*
[ELF] Add sh_link field to .ARM.exidx sections for relocatable links
Peter Smith
2016-10-21
1
-3
/
+15
*
[ELF][MIPS] Put local GOT entries accessed via a 16-bit index first
Simon Atanasyan
2016-10-21
1
-2
/
+12
*
[ELF][MIPS] Use getMipsLocalEntriesNum() everywhere we need number of `local`...
Simon Atanasyan
2016-10-20
1
-3
/
+2
*
[ELF][MIPS] Separate calculation of MIPS GOT index and offset of the correspo...
Simon Atanasyan
2016-10-20
1
-7
/
+12
*
Compact SectionPiece.
Rafael Espindola
2016-10-20
1
-4
/
+8
*
[ELF] - Partial support of --gdb-index command line option (Part 1).
George Rimar
2016-10-20
1
-0
/
+50
*
[ELF] - Applied clang format. NFC.
George Rimar
2016-10-20
1
-5
/
+3
*
Fix narrowing conversion error in 32-bit MSVC builds
Reid Kleckner
2016-10-20
1
-1
/
+1
*
Fix build failure.
Rui Ueyama
2016-10-20
1
-1
/
+1
*
[ELF] Replace std::pair with a struct so we have proper names. NFC.
Michael J. Spencer
2016-10-19
1
-32
/
+29
*
[ELF] Add `const` qualifier to functions. NFC
Simon Atanasyan
2016-10-19
1
-1
/
+1
*
[ADT] Move CachedHashString to its own header in ADT, and rename to CachedHas...
Justin Lebar
2016-10-17
1
-2
/
+2
*
Move a utility function to Strings.cpp.
Rui Ueyama
2016-10-13
1
-5
/
+1
*
[ELF][ARM] Initial implentation of ARM exceptions support
Peter Smith
2016-10-10
1
-0
/
+3
*
Store the hash in SectionPiece.
Rafael Espindola
2016-10-05
1
-2
/
+4
*
Compact SectionPiece.
Rafael Espindola
2016-10-05
1
-2
/
+2
*
Remove redundant check. NFC.
Rafael Espindola
2016-10-05
1
-3
/
+1
*
[ELF] Do not merge sections in case of relocatable object generation
Simon Atanasyan
2016-10-05
1
-1
/
+9
*
Update for llvm change.
Rafael Espindola
2016-10-04
1
-9
/
+3
*
[ELF][MIPS] Set GP0 value to zero in case of relocatable object generation
Simon Atanasyan
2016-09-29
1
-2
/
+8
*
[ELF][MIPS] Setup STO_MIPS_PIC flag for PIC symbols when generate a relocatab...
Simon Atanasyan
2016-09-29
1
-7
/
+13
*
Use xxhash for fast --build-id.
Rafael Espindola
2016-09-27
1
-50
/
+4
*
[ELF] - Linkerscript: implemented BYTE/SHORT/LONG/QUAD commands.
George Rimar
2016-09-26
1
-0
/
+3
*
[ELF] - Linkerscript: implemented SORT_BY_INIT_PRIORITY.
George Rimar
2016-09-15
1
-13
/
+0
*
Use murmurhash2 instead of fnv.
Rafael Espindola
2016-09-14
1
-11
/
+54
*
Simplify InputFile ownership management.
Rui Ueyama
2016-09-14
1
-4
/
+2
[prev]
[next]