aboutsummaryrefslogtreecommitdiff
path: root/src/link/Elf
AgeCommit message (Expand)Author
2024-01-01linker: update output_mode referencesAndrew Kelley
2024-01-01move a large chunk of linker logic away from "options"Andrew Kelley
2023-12-05elf: copy out committed ZigObject to a buffer when creating static libJakub Konka
2023-12-05elf: exit early with an error when parsing or init failedJakub Konka
2023-12-05elf: escape invalid token string when reporting an errorJakub Konka
2023-12-05elf: upcast e_shnum to u64 to check for valid rangesJakub Konka
2023-12-05elf: report malformed archive when parsing errorsJakub Konka
2023-12-05elf: re-instate basic error reporting for LD script parserJakub Konka
2023-12-05elf: move basic parse error reporting to SharedObjectJakub Konka
2023-12-05elf: do not write ELF header if there were errorsJakub Konka
2023-12-05elf: report error at the point where it is happeningJakub Konka
2023-11-26move Module.Decl.Index and Module.Namespace.Index to InternPoolMeghan Denny
2023-11-25convert `toType` and `toValue` to `Type.fromInterned` and `Value.fromInterned`Techatrix
2023-11-19compiler: correct unnecessary uses of 'var'mlugg
2023-11-15elf: we were writing too many symbols in the symtabJakub Konka
2023-11-15elf: actually write synthetic globals to output symtabJakub Konka
2023-11-14elf: do not pointlessly store zerofill data for TLVsJakub Konka
2023-11-13elf: setting offset to maxInt for non-allocated non-incremental sections is badJakub Konka
2023-11-12elf: set symbol flags such as needs_zig_got in ZigObjectJakub Konka
2023-11-12elf: dump PLT entriesJakub Konka
2023-11-12elf: fix allocating local TLS symbolsJakub Konka
2023-11-12x86_64: get something going for the local exec modelJakub Konka
2023-11-12elf: fix typo in initial section offsetsJakub Konka
2023-11-12elf: check for empty relocs buffers in ZigObject before emitting sectionJakub Konka
2023-11-12elf: lower TLS data into appropriate TLS sectionJakub Konka
2023-11-09elf: fix overflowing designated capacity when writing COMDAT groupsJakub Konka
2023-11-09elf: add SHF_INFO_LINK flag to any emitted SHT_RELA sectionJakub Konka
2023-11-09elf: write out COMDAT groups to fileJakub Konka
2023-11-09elf: init output COMDAT group sectionsJakub Konka
2023-11-09elf: correctly format output .eh_frame when emitting relocatableJakub Konka
2023-11-09elf: emit .rela.eh_frame section contentsJakub Konka
2023-11-09elf: calculate required size for .rela.eh_frameJakub Konka
2023-11-09elf: misc fixesJakub Konka
2023-11-08elf: emit SHN_COMMON symbols in -r modeJakub Konka
2023-11-08elf: LLVM emits relocs to undef local symbols - color me surprised!Jakub Konka
2023-11-08elf: adjust r_addend with offset of the original input section ref'd via STT_...Jakub Konka
2023-11-08elf: claim unresolved dangling symbols as undef externs in -r modeJakub Konka
2023-11-08elf: reference .rela sections via output section indexJakub Konka
2023-11-07elf: actually track output symtab index of symbolsJakub Konka
2023-11-07elf: create link between .rela and output sectionJakub Konka
2023-11-07elf: update .rela section sizesJakub Konka
2023-11-07elf: generate section symbols when writing symtabJakub Konka
2023-11-07elf: create skeleton of required changes for supporting -r modeJakub Konka
2023-11-06CheckObject: support parsing and dumping archive symtab for ELFJakub Konka
2023-11-06elf: clearly separate updating and writing symtab from only ZigObjectJakub Konka
2023-11-05elf: hook up saving object files in an archiveJakub Konka
2023-11-05elf: add hooks for archiving ObjectsJakub Konka
2023-11-05elf: init objects after parsing themJakub Konka
2023-11-05elf: actually save correct object names in the archiveJakub Konka
2023-11-04elf: fix more int resolution issuesJakub Konka