aboutsummaryrefslogtreecommitdiff
path: root/src/type.zig
AgeCommit message (Expand)Author
2022-07-01Merge pull request #11974 from ziglang/fixfixfixAndrew Kelley
2022-07-01AstGen: use elem_{ptr,val}_node for array access syntaxVeikka Tuominen
2022-06-30stage2: implement alignment calculation of vectorsAndrew Kelley
2022-06-11stage2: make `error{}` the same size as `anyerror`Veikka Tuominen
2022-06-10Sema: introduce bitSizeAdvanced to recursively resolve typesAndrew Kelley
2022-06-09stage2: fix handling of aggregates with mixed comptime-only fieldsAndrew Kelley
2022-06-08stage2: fix type printing of sub-byte pointersAndrew Kelley
2022-06-07stage2: packed struct fixes for big-endian targetsAndrew Kelley
2022-06-07stage2: better codegen for byte-aligned packed struct fieldsAndrew Kelley
2022-06-06stage2: use correct type (u29) for alignmentVeikka Tuominen
2022-06-03Sema: `@sizeOf` function should give an errorVeikka Tuominen
2022-06-03Type: implement elemType2 for anyframeVeikka Tuominen
2022-06-01Sema: fix alignment of element ptr result typeAndrew Kelley
2022-05-31stage2: introduce support for noaliasAndrew Kelley
2022-05-31stage2: fix hash/eql on function typesAndrew Kelley
2022-05-31stage2: ignore generic return type when hashing function typeVeikka Tuominen
2022-05-30Sema: implement functions generic across callconv() or align()Andrew Kelley
2022-05-24stage2: treat `error{}!void` as a zero-bit typeAndrew Kelley
2022-05-24stage2: fixes for error unions, optionals, errorsAndrew Kelley
2022-05-24stage2: make `?anyerror` represented the same as `anyerror`Andrew Kelley
2022-05-24stage2: fixes for error union semanticsAndrew Kelley
2022-05-20Sema: introduce laziness to `@sizeOf`Andrew Kelley
2022-05-16stage2: implement error return tracesVeikka Tuominen
2022-05-16stage2: add global `Type` constant for `u1`William Sengir
2022-05-13target: Rename sparcv9 -> sparc64Koakuma
2022-05-07Merge pull request #11605 from Luukdegram/wasm-mul-overflowJakub Konka
2022-05-07wasm: `@addWithOverflow` for bitsize 32Luuk de Gram
2022-05-06Sema: solve a false positive "depends on itself"Andrew Kelley
2022-05-04stage2: fix `@sizeOf` for structs with comptime fieldsAndrew Kelley
2022-05-04stage2: improve `@sizeOf` and `@alignOf` integersAndrew Kelley
2022-04-20stage2: use indexes for Decl objectsAndrew Kelley
2022-04-16stage2: fix @mulAdd on aarch64 DarwinJakub Konka
2022-04-15Merge pull request #11242 from schmee/sema-handle-more-union-errorsVeikka Tuominen
2022-04-14stage2: progress towards stage3Andrew Kelley
2022-04-14Sema: workaround for generic instantiation recurison bugAndrew Kelley
2022-04-03sema: add compile error for missing/extra enum fields in union declJohn Schmidt
2022-03-27Merge pull request #10871 from schmee/stage2-bitcast-safetyVeikka Tuominen
2022-03-26stage2: resolve types more lazilyAndrew Kelley
2022-03-26stage2: result location types for function call argumentsAndrew Kelley
2022-03-25Implement `type.bitSize` for unionsJohn Schmidt
2022-03-25type: fix onePossibleValue for auto numbered enumsVeikka Tuominen
2022-03-22Sema: rename isArrayLike to isArrayOrVectorAndrew Kelley
2022-03-22Sema: introduce a mechanism in Value to resolve typesAndrew Kelley
2022-03-22stage2: lazy `@alignOf`Andrew Kelley
2022-03-21stage2: add way to print values with typesVeikka Tuominen
2022-03-18stage2: formatting an error_set value should print members, not declMitchell Hashimoto
2022-03-18stage2: improve `@typeName`Andrew Kelley
2022-03-16Merge pull request #11177 from Vexu/dbg_funcVeikka Tuominen
2022-03-16Merge pull request #11191 from Snektron/zig-gdb-improvementsAndrew Kelley
2022-03-16gdb: add printer for selfhosted TypeRobin Voetter