index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
juice
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
std.Io.Threaded-groups-2
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
link
/
Elf.zig
Age
Commit message (
Expand
)
Author
2023-10-08
CLI: finish updating module API usage
Andrew Kelley
2023-10-03
elf: assert llvm_object is null in getAnonDeclVAddr
Jakub Konka
2023-10-03
codegen: separate getAnonDeclVAddr into lowerAnonDecl and the former
Jakub Konka
2023-10-03
link: stub out getAnonDeclVAddr
Andrew Kelley
2023-10-02
Add illumos OS tag
Stephen Gregoratto
2023-09-30
elf: skip writing out zerofill atoms to file
Jakub Konka
2023-09-29
elf: set sh_size to 0 for nobit sections in collision detection
Jakub Konka
2023-09-29
elf: dump state for debugging after writing it all out
Jakub Konka
2023-09-29
elf: fix setting st_value of _end synthetic symbol
Jakub Konka
2023-09-29
elf: set shdr/phdr file size before growing in VM
Jakub Konka
2023-09-29
elf: simplify logic for growing non-alloc sections
Jakub Konka
2023-09-29
elf: fix calculating current allocated section size when growing alloc sections
Jakub Konka
2023-09-28
elf: move logic for extracing atom's code into input files
Jakub Konka
2023-09-28
elf: correctly allocate TLS segment
Jakub Konka
2023-09-28
elf: report fatal linker error for unhandled relocation types
Jakub Konka
2023-09-28
elf: allocate .tdata and .tbss sections
Jakub Konka
2023-09-28
elf: pre-allocate TLS load segment and PT_TLS phdr
Jakub Konka
2023-09-28
elf: remove explicit load segment alloc - we can replicate programmatically now
Jakub Konka
2023-09-28
elf: do not assume segments laid out in increasing order in VM space
Jakub Konka
2023-09-27
elf: fix typo in selecting larger addrspace for load segments
Jakub Konka
2023-09-27
elf: hint allocateSegment where to put the segment at
Jakub Konka
2023-09-27
elf: do not update globals not defined by the object
Jakub Konka
2023-09-27
elf: use new error reporting API
Jakub Konka
2023-09-27
elf: emit fatal linker error if we run out of VM space with self-hosted backends
Jakub Konka
2023-09-27
elf: pre-allocate large VM capacity per segment
Jakub Konka
2023-09-27
elf: allow expanding segments in virtual memory
Jakub Konka
2023-09-27
Merge pull request #17284 from ziglang/elf-tests
Jakub Konka
2023-09-26
Add '--compress-debug-sections=zstd'
LinuxUserGD
2023-09-26
elf: dynamically allocate remaining alloc sections (and segments)
Jakub Konka
2023-09-26
elf: put libc on the linker line if requested
Jakub Konka
2023-09-26
elf: do not try to create LlvmObject if module is null
Jakub Konka
2023-09-23
elf: implement markLive for ZigModule
Jakub Konka
2023-09-23
elf: encapsulate logic for creating non-alloc shdrs in a helper
Jakub Konka
2023-09-23
elf: improve decl-to-section mapping logic
Jakub Konka
2023-09-23
elf: put logic for allocating load segments in a helper
Jakub Konka
2023-09-23
elf: add helper for calculating available VM size for phdr
Jakub Konka
2023-09-21
compiler: move struct types into InternPool proper
Andrew Kelley
2023-09-13
elf: skip writing non-alloc and zerofill atoms
Jakub Konka
2023-09-13
elf: allocate locals and globals in objects
Jakub Konka
2023-09-13
elf: re-enable linking compiler_rt
Jakub Konka
2023-09-13
elf: do not store Symbol's index in Symbol
Jakub Konka
2023-09-13
elf: parse archives
Jakub Konka
2023-09-13
elf: allocate .bss section and matching PHDR
Jakub Konka
2023-09-13
elf: look for entry point globally if not set by incremental compiler
Jakub Konka
2023-09-13
elf: enable linker for non-incremental code paths
Jakub Konka
2023-09-13
elf: add u64 to usize casts where required
Jakub Konka
2023-09-12
elf: clean up and unify symbol ref handling in relocs
Jakub Konka
2023-09-12
elf: include C compilation artifacts on the linker line
Jakub Konka
2023-09-12
elf: resolve and write objects to file
Jakub Konka
2023-09-12
elf: allocate objects, currently atom-by-atom
Jakub Konka
[next]