aboutsummaryrefslogtreecommitdiff
path: root/src/value.zig
AgeCommit message (Expand)Author
2022-02-08stage2: tiny improvements all over the placeJakub Konka
2022-02-07Sema: clean up zirUnaryMathAndrew Kelley
2022-02-07stage2: implement @sqrt for f{16,32,64}John Schmidt
2022-02-07Merge pull request #10803 from ziglang/decl-has-lib-nameAndrew Kelley
2022-02-06Sema: panic instead of lowering to unavailable compiler-rt functionsAndrew Kelley
2022-02-06Sema: avoid `@intToFloat` for f80 which breaks on non-x86 targetsAndrew Kelley
2022-02-06Sema: implement writing structs to memory at comptimeAndrew Kelley
2022-02-06stage2: add more float arithmetic and f80 supportAndrew Kelley
2022-02-06stage2: add new Decl subtype, ExternFnJakub Konka
2022-02-01Merge pull request #10742 from ziglang/ArrayHashMapEqlAndrew Kelley
2022-01-31stage2: update to new ArrayHashMap APIAndrew Kelley
2022-01-30Sema: fix comptime shl for fixed-width integersAndrew Kelley
2022-01-29stage2: fix bug where performing wrapping or saturating arithmetic or saturat...riverbl
2022-01-28stage1: add f80 typeVeikka Tuominen
2022-01-26Sema: implement struct init is_ref=trueAndrew Kelley
2022-01-24stage2: rework a lot of stuffAndrew Kelley
2022-01-24stage2: type system treats fn ptr and body separatelyAndrew Kelley
2022-01-18Sema: implement declarations for `@typeInfo`Andrew Kelley
2022-01-15stage2: fix Decl garbage collection not marking enoughAndrew Kelley
2022-01-13stage2: detection of comptime array literalsAndrew Kelley
2022-01-12stage2: implement `@ctz` and `@clz` including SIMDAndrew Kelley
2022-01-07Return Value.zero when the result of shr requires zero bitsJimmi Holst Christensen
2021-12-28Sema: improve union supportAndrew Kelley
2021-12-28stage2: handle function dependency failures without crashingAndrew Kelley
2021-12-27stage2: LLVM backend: implement `@tagName` for enumsAndrew Kelley
2021-12-26Sema: improve non-exhaustive enum supportAndrew Kelley
2021-12-21stage2: @shlWithOverflowRobin Voetter
2021-12-21stage2: @mulWithOverflowRobin Voetter
2021-12-21stage2: @addWithOverflowRobin Voetter
2021-12-19stage1, stage2: rename c_void to anyopaque (#10316)Isaac Freund
2021-12-10AstGen: implement @prefetch() builtinIsaac Freund
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-11-30std lib API deprecations for the upcoming 0.9.0 releaseAndrew Kelley
2021-11-22Sema: fix alignment of type-inferred localsAndrew Kelley
2021-11-21stage2: fix the build for 32-bit architecturesAndrew Kelley
2021-11-16stage2: LLVM backend: memset to 0xaa for undefined storesAndrew Kelley
2021-11-09stage2: Implement Sema.floatToInt (#10097)Zen1th
2021-10-29stage2: implement `@popCount` for non-vectorsAndrew Kelley
2021-10-26Sema: improved C pointers and castingAndrew Kelley
2021-10-24stage2: refactor coercePeerTypes and fix C ptr cmp with nullAndrew Kelley
2021-10-23Merge pull request #10017 from Snektron/big-int-divAndrew Kelley
2021-10-23stage2: implement more C pointer Sema and comptime ptr arithAndrew Kelley
2021-10-24big ints: tighten some more division memory requirementsRobin Voetter
2021-10-24big ints: improve divisionRobin Voetter
2021-10-22stage2: change `@bitCast` to always be by-valueAndrew Kelley
2021-10-21stage2: implement comptime loads through casted pointersAndrew Kelley
2021-10-21stage2: fix Value.copy not copying arraysAndrew Kelley
2021-10-21stage2: more division supportAndrew Kelley
2021-10-21stage2: elemPtr for slicesRobin Voetter
2021-10-20stage2: implement slicingAndrew Kelley