aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2025-02-06x86_64: rewrite most of the remaining float opsJacob Young
2025-02-06x86_64: rewrite vector `@truncate`Jacob Young
2025-02-06x86_64: rewrite scalar `@truncate`Jacob Young
2025-02-06std.process: adding hasNonEmptyEnvVar() and using for NO_COLORJohn Benediktsson
2025-02-06incremental: codegen types which are recreatedmlugg
2025-02-06Sema: add missing `validateRuntimeValue` callsmlugg
2025-02-06Merge pull request #19614 from jedisct1/wasi-libc-updateAlex Rønne Petersen
2025-02-05incremental: fix crash when introducing syntax errormlugg
2025-02-05Sema: fix `@typeInfo` of function with generic return type and IESmlugg
2025-02-05Sema: fix `@errorCast` with error unionsmlugg
2025-02-05Sema: disable runtime safety checks in comptime blocksmlugg
2025-02-05Sema: fix comparison between error set and comptime-known error unionmlugg
2025-02-05Sema: add fast path to PTR when all types are the samemlugg
2025-02-05Sema: fix PTR of slice of sentinel-terminated arraymlugg
2025-02-05compiler: provide result type to sentinel expression in slice operationmlugg
2025-02-05Sema: fix crash on `@tagName` of undefined enum literalmlugg
2025-02-05Sema: fix incorrectly succeeding type resolutionmlugg
2025-02-04Zcu: fix bug clearing compile errorsmlugg
2025-02-04compiler: integrate importing ZON with incremental compilationmlugg
2025-02-04compiler: integrate ZON with the ZIR caching systemmlugg
2025-02-04compiler: a few renamesmlugg
2025-02-04compiler: don't perform semantic analysis if there are files without ZIRmlugg
2025-02-04Zcu: remove unused `parse_failure` field from `File.Status`mlugg
2025-02-04Zcu: remove `*_loaded` fields on `File`mlugg
2025-02-03compiler,std: implement ZON supportMason Remaley
2025-02-02fix: error on non-exhaustive enums with zero width backing type (#21374)Will Lillis
2025-02-01Merge pull request #22672 from jacobly0/x86_64-rewriteAndrew Kelley
2025-02-01compiler: do not propagate result type to `try` operandmlugg
2025-02-01Sema: skip aliasing check and runtime operation for `@memcpy` of zero-bit typemlugg
2025-02-01Sema: fix `@splat` of OPV arraysmlugg
2025-01-31x86_64: rewrite vector `@intCast`Jacob Young
2025-01-31x86_64: rewrite scalar `@intCast`Jacob Young
2025-01-31x86_64: rewrite float vector conversionsJacob Young
2025-01-31Sema: introduce all_vector_instructions backend featureJacob Young
2025-01-31x86_64: rewrite scalar float conversionsJacob Young
2025-01-30compiler: add `intcast_safe` AIR instructionmlugg
2025-01-30main: accept and ignore auto-image-base linker optionsAlex Rønne Petersen
2025-01-30main: ensure --whole-archive is passed down to linker for -l argumentsAman Karmani
2025-01-30main: better error message if the global cache dir is unusableachan1989
2025-01-29x86_64: rewrite comparisonsJacob Young
2025-01-29Sema: explain why we tried to call an `extern fn` at comptimemlugg
2025-01-29Add libdl shims from wasi-libcFrank Denis
2025-01-29Re-add lazy preopen changesFrank Denis
2025-01-29Update wasi-libc to d03829489904d38c624f6de9983190f1e5e7c9c5Frank Denis
2025-01-29fix(cc): make link and preprocessor logic to be more consistent withzhylmzr
2025-01-29Sema: `@memcpy` changesmlugg
2025-01-27frontend: use main Compilation code_model when building libxxAndrew Kelley
2025-01-27Merge pull request #22610 from jacobly0/x86_64-rewriteAndrew Kelley
2025-01-27main: classify empty environment variables as unsetCarter Snook
2025-01-26fix: Only suggest try on destructure of error union if payload type can be de...Will Lillis