aboutsummaryrefslogtreecommitdiff
path: root/src/arch
AgeCommit message (Expand)Author
2023-09-21compiler: fix compilation for 32-bit targetsAndrew Kelley
2023-09-21compiler: move struct types into InternPool properAndrew Kelley
2023-09-19llvm: update riscv floating-point c abi for LLVM 17Jacob Young
2023-09-19x86 backend: don't read bogus safety flagAndrew Kelley
2023-09-13elf: correctly handle overflows on non-64bit hostsJakub Konka
2023-09-13elf: do not store Symbol's index in SymbolJakub Konka
2023-09-13x86_64: add simple disassembler interface to the encoderJakub Konka
2023-09-13Merge pull request #17113 from ziglang/elf-linkerJakub Konka
2023-09-12elf: resolve and write objects to fileJakub Konka
2023-09-12elf: add simplistic reloc scanning mechanismJakub Konka
2023-09-11elf: emit relocation to an extern functionJakub Konka
2023-09-10wasm: implement more math operations on 128 bit integersTechatrix
2023-09-10wasm: implement common conversions between integers/floats with bitsize large...Techatrix
2023-09-10wasm: implement comparison on f80 and f128Techatrix
2023-09-10wasm: implement negation on f80 and f128Techatrix
2023-09-08elf: store GOT index in symbol extra array; use GotSection for GOTJakub Konka
2023-09-06wasm: fix finishAir when combining arg into single stack valueTechatrix
2023-09-06elf: make everything upside down - track by Symbol.Index rather than Atom.IndexJakub Konka
2023-09-04elf: simplify accessors to symbols, atoms, etcJakub Konka
2023-08-29macho: unify concept of SymbolWithLoc across driversJakub Konka
2023-08-23Replace `@panic` with `unreachable`, add testriverbl
2023-08-23Implement `@mod` and fix bugs with `divFloor` for wasmriverbl
2023-08-22wasm backend: delete dead code in lowerConstantAndrew Kelley
2023-08-22compiler: move unions into InternPoolAndrew Kelley
2023-08-02Plan9: support linking to external 'special' symbolsJacob G-W
2023-07-31std: finish cleanup up asmJacob Young
2023-07-29codegen: fix access to byte-aligned nested packed struct elemsXavier Bouchoux
2023-07-22wasm: correctly intcast signed integersLuuk de Gram
2023-07-18rework generic function callsAndrew Kelley
2023-06-27Air: store interned values in Air.Inst.Refmlugg
2023-06-26std.sort.block: add safety check for lessThan return valueAli Chraghi
2023-06-25x86_64: cleanup `@as` invasionJacob Young
2023-06-25x86_64: fix test failureJacob Young
2023-06-25x86_64: fix incorrect encoding table entriesJacob Young
2023-06-25x86_64: truncate packed field valueJacob Young
2023-06-25x86_64: add error for saturating arithmeticJacob Young
2023-06-25x86_64: add unimplemented error for float `@rem`/`@mod`Jacob Young
2023-06-25x86_64: turn `f80` operation crashes into errorsJacob Young
2023-06-25x86_64: fix crash emitting a packed undefined u128Jacob Young
2023-06-25x86_64: fix unimplemented type crashesJacob Young
2023-06-25x86_64: fix packed store crashJacob Young
2023-06-25compiler: start moving safety-checks into backendsAndrew Kelley
2023-06-24all: migrate code to new cast builtin syntaxmlugg
2023-06-20Type: delete legacy allocation functionsJacob Young
2023-06-19all: zig fmt and rename "@XToY" to "@YFromX"Eric Joldasov
2023-06-19compiler: rename "@XToY" to "@YFromX", zig fmt: rewrite themEric Joldasov
2023-06-17mem: rename align*Generic to mem.align*Motiejus Jakštys
2023-06-16Merge pull request #16064 from Luukdegram/wasm-linkerAndrew Kelley
2023-06-16Merge pull request #16003 from g-w1/plan9-lazy-symsAndrew Kelley
2023-06-16migration: std.math.{min, min3, max, max3} -> `@min` & `@max`r00ster91