aboutsummaryrefslogtreecommitdiff
path: root/src/link/Coff.zig
AgeCommit message (Expand)Author
2022-12-06remove `-fstage1` optionAndrew Kelley
2022-11-29std.mem.Allocator: allow shrink to failAndrew Kelley
2022-11-18run zig fmt on everything checked by CIStevie Hryciw
2022-11-06coff: move relocation in its own moduleJakub Konka
2022-11-05coff: use .x86 instead of .i386Jakub Konka
2022-11-05coff: tentatively handle Obj in getImageBase() funcJakub Konka
2022-11-05coff: circumvent stage1 inference problemsJakub Konka
2022-11-05coff: compile and link simple exit program on arm64Jakub Konka
2022-11-05coff: implement handling of arm64-specific relocsJakub Konka
2022-11-05coff: clean up relocation handling between x86 and arm64Jakub Konka
2022-11-05coff: generate relocations for branch, GOT, direct refsJakub Konka
2022-11-04all: rename i386 to x86Ali Chraghi
2022-10-24link: add an explicit error set for flush() and flushModule()Andrew Kelley
2022-10-18all: rename `@maximum` to `@max` and `@minimum` to `@min`Ali Chraghi
2022-09-18macho: add logic for expanding segments in memoryJakub Konka
2022-09-18macho: move to incremental writes and global relocs for incrementalJakub Konka
2022-09-10x86_64: combine got_load, direct_load and imports_load into linker_load MCVJakub Konka
2022-09-09macho+coff: return index into global table from getGlobalSymbolJakub Konka
2022-09-09coff: use global accessor abstractions from MachOJakub Konka
2022-09-07coff: fix tracking of got and import entries; free relocs in update* fnsJakub Konka
2022-09-07coff: track globals in contiguous array to allow for tombstonesJakub Konka
2022-09-07coff: fix memory leak in incorrectly disposing of globals tableJakub Konka
2022-09-07coff: use more generous initial memory sizes for sectionsJakub Konka
2022-09-07coff: remove redundant bits and clean upJakub Konka
2022-09-07coff: grow section in virtual address space when requiredJakub Konka
2022-09-07coff: find new file space for a section (file offsets)Jakub Konka
2022-09-07coff: differentiate between file space and VM space for allocJakub Konka
2022-09-07coff: create a helper for allocating sectionsJakub Konka
2022-09-07coff: fix writing strtab to PE image fileJakub Konka
2022-09-07coff: mark relocations dirty when target atoms changeJakub Konka
2022-09-07coff: fix bug in lowerUnnamedConstJakub Konka
2022-09-07coff: fix runtime trapsJakub Konka
2022-09-07coff: implement lowering unnamed constsJakub Konka
2022-09-07coff: fix contents of IAT, and ensure codegen loads addr into regJakub Konka
2022-09-07coff: populate import address table dirJakub Konka
2022-09-07coff: create import atoms and matching bindingsJakub Konka
2022-09-07coff: re-enable default entrypoint for WindowsJakub Konka
2022-08-31coff: write base relocations for the dynamic linkerJakub Konka
2022-08-30coff: cleanup relocations; remove COFF support from other backendsJakub Konka
2022-08-30coff: add basic handling of GOT PC relative indirectionJakub Konka
2022-08-30coff: fallback to _start as default entry point for nowJakub Konka
2022-08-30coff: ...and lift-off!Jakub Konka
2022-08-30coff: add missing bits required for minimal PE exampleJakub Konka
2022-08-30coff: allocate and write atoms to fileJakub Konka
2022-08-30coff: populate missing section metadataJakub Konka
2022-08-30coff: add helpers for setting section/symbol namesJakub Konka
2022-08-30coff: allow for strtab in final PE imageJakub Konka
2022-08-30coff: initial implementation of incremental file allocsJakub Konka
2022-08-30coff: always write all data directory headers to fileJakub Konka
2022-08-30coff: write data directory and section headers to fileJakub Konka