aboutsummaryrefslogtreecommitdiff
path: root/src/type.zig
AgeCommit message (Expand)Author
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
2022-03-16Type: implement ptrInfo for optional pointersVeikka Tuominen
2022-03-15stage2: comptime fields should not affect opv/comptime-onlyCody Tapscott
2022-03-14stage2: fixups for topolarity-comptime-memory-reinterp branchAndrew Kelley
2022-03-14stage2 sema: Respect container_ty of parent ptrsCody Tapscott
2022-03-14stage2: Fix assertion in struct field offset when all fields are 0-sizeCody Tapscott
2022-03-14stage2: Add hasWellDefinedLayout() to type.zig and Sema.zigCody Tapscott
2022-03-14stage2: rework Value storage of structs and arraysAndrew Kelley
2022-03-14Sema: Type.abiSize asserts instead of using max with alignmentAndrew Kelley
2022-03-11Type.eql: check fn attributes before paramsAndrew Kelley
2022-03-11LLVM: fix debug info for pointers to voidAndrew Kelley
2022-03-11Sema: fix resolution of inferred error setsAndrew Kelley
2022-03-11stage2: passing threadlocal tests for x86_64-linuxAndrew Kelley
2022-03-10stage2: improve Type.eql and Type.hash for error setsAndrew Kelley
2022-03-10stage2: error_set_merged type equalityMitchell Hashimoto
2022-03-09Sema: implement pointer-to-tuple coercion to slice and structAndrew Kelley
2022-03-09Sema: fix crash with `@sizeOf` on unionsAndrew Kelley
2022-03-08Sema: implement coercion of tuples to structsAndrew Kelley
2022-03-08LLVM: fix memory leak of debug type namesAndrew Kelley
2022-03-08stage2: implement Type.getOwnerDecl for opaque typesAndrew Kelley
2022-03-08deprecated TypeInfo in favor of TypeJonathan Marler
2022-03-06stage2: rework `@mulAdd`Andrew Kelley
2022-03-03stage2: cleanups to wasm memory intrinsicsAndrew Kelley
2022-03-03stage2: remove opaque type workaround from `Type.ptrAlignment`Veikka Tuominen
2022-03-03Sema: allow pointers to opaques to be alignedAndrew Kelley
2022-03-03stage2: support @ptrCast for slices with an offsetCody Tapscott
2022-03-02Sema: implement cast from anon struct ptr to union ptrAndrew Kelley
2022-03-02LLVM: aggregate_init supports structsAndrew Kelley
2022-03-02stage2: add cast from ?*T to ?*anyopaqueVeikka Tuominen
2022-03-01stage2: introduce anonymous struct literalsAndrew Kelley
2022-03-01LLVM: add extra padding to structs and tuples sometimesAndrew Kelley
2022-03-01Sema: correct implementation of comptimeOnly for tuplesAndrew Kelley
2022-03-01Sema: eliminate use of resolveAlreadyCoercedIntAndrew Kelley
2022-02-28Sema: clean up peer resolution of errorsAndrew Kelley
2022-02-28stage2: implement peer type resolution between error unionsMitchell Hashimoto
2022-02-28Sema: complete the Type.hash functionAndrew Kelley
2022-02-28Sema: fix pointer type hash and equality functionsAndrew Kelley
2022-02-28stage2: tuple mul/catVeikka Tuominen
2022-02-27stage2: fix bitcast to optional ptr in llvm backend; omit safety check for in...Veikka Tuominen
2022-02-26Sema: implement union value equality at comptimeAndrew Kelley
2022-02-26stage2: various fixes to get one test passingVeikka Tuominen
2022-02-26stage2: actually coerce in coerce_result_ptr at comptimeVeikka Tuominen