aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2023-04-03macho+coff: remove alignment from Atom as it is unusedJakub Konka
2023-04-02Sema: defer stores to inferred allocsJacob Young
2023-04-02x86_64: implement shl with overflowJacob Young
2023-04-02x86_64: implement large add/sub with overflowJacob Young
2023-04-02x86_64: implement wide multiplyJacob Young
2023-04-02x86_64: implement struct_field_val for large packed structsJacob Young
2023-04-02x86_64: implement large cmpJacob Young
2023-04-02x86_64: implement error nameJacob Young
2023-04-02x86_64: implement calling var args functionsJacob Young
2023-04-02x86_64: implement aggregate init of a packed structJacob Young
2023-04-01link: handle -u flag in all linkersJakub Konka
2023-04-01macho: do not assume entrypoint is definedJakub Konka
2023-04-01macho: handle weird case of entrypoint being a stubJakub Konka
2023-04-01macho: look for entry in archives/dylibs tooJakub Konka
2023-04-01tapi: update to latest Apple changesJakub Konka
2023-04-01tapi: update yaml parserJakub Konka
2023-03-31Merge pull request #15127 from der-teufel-programming/autodoc_newbuiltinsLoris Cro
2023-03-31Merge pull request #14823 from der-teufel-programming/autodoc-quickfixesLoris Cro
2023-03-31autodoc: add new builtinsKrzysztof Wolicki
2023-03-31autodoc: fix Extended builtin functions names renderingKrzysztof Wolicki
2023-03-30coff: enable hot-code swapping on a compatible host onlyJakub Konka
2023-03-30coff: due to ASLR we need to dupe the code for relocatingJakub Konka
2023-03-30coff: use std.os.windows wrappers; fix relocating in-fileJakub Konka
2023-03-30coff: reimplement VirtualProtectEx using our own ntdll wrapperJakub Konka
2023-03-30coff: reimplement Read/WriteProcessMemory using our own ntdll wrappersJakub Konka
2023-03-30coff: make sure we correctly slide relocation target when resolvingJakub Konka
2023-03-30coff: first (not-fully-functional) PoC of HCSJakub Konka
2023-03-30coff: use copy in zig-cache for child process in HCSJakub Konka
2023-03-30new builtins: @workItemId, @workGroupId, @workGroupSizeRobin Voetter
2023-03-30llvm/bpf: disable llvm builtins for bpf targetTw
2023-03-30llvm: fix crashes when loading a struct fieldJacob Young
2023-03-29Merge pull request #15105 from ziglang/hcs-win-pocJakub Konka
2023-03-28Sema: fix empty slice pointer valueJacob Young
2023-03-28macho: remove error_union return from resolveRelocations()Jakub Konka
2023-03-28coff: put section growing in helper; only mark section if actually resolvedJakub Konka
2023-03-28Merge pull request #14771 from kcbanner/coff_dynamicbaseJakub Konka
2023-03-28coff: use ArrayHashMap if we are iterating over keysJakub Konka
2023-03-28coff: resolve relocs on bytes buffer directlyJakub Konka
2023-03-28coff: assert the imports table is not dirtyJakub Konka
2023-03-28coff: move import table definition into a separate ImportTable.zig moduleJakub Konka
2023-03-28coff: do not use atoms for synthetic import address tableJakub Konka
2023-03-28coff: repurpose value field of import Symbol for lib_name offsetJakub Konka
2023-03-28link: pass expected lib name as hint in getGlobalSymbol()Jakub Konka
2023-03-28coff: grow .idata if requiredJakub Konka
2023-03-27x86_64: cleanup debug mir dumpingJacob Young
2023-03-27x86_64: fix popcnt and disable regressed testJacob Young
2023-03-27x86_64: implement trunc with large sourceJacob Young
2023-03-27x86_64: fix 64-bit multiply by 32-bit immediateJacob Young
2023-03-27x86_64: implement some binary ops for large valuesJacob Young
2023-03-27x86_64: add live codegen debugJacob Young