aboutsummaryrefslogtreecommitdiff
path: root/src/AstGen.zig
AgeCommit message (Expand)Author
2022-02-21Merge pull request #10925 from Vexu/stage2Andrew Kelley
2022-02-19AstGen: emit break_inline for corresponding inline loopsAndrew Kelley
2022-02-20stage2: validate struct/array init tyVeikka Tuominen
2022-02-19AstGen: evaluate `comptime var` init expressions in a comptime contextAndrew Kelley
2022-02-19stage2: support anon init through error unions and optionalsVeikka Tuominen
2022-02-13stage2: add decltestsJacob G-W
2022-02-08stage2: fix inferred comptime constant localsAndrew Kelley
2022-02-06AstGen: refactor redundant expressionsAndrew Kelley
2022-02-06stage2: add more float arithmetic and f80 supportAndrew Kelley
2022-02-06stage2: apply type coercion in if expressionsJohn Schmidt
2022-02-01stage2: remove anytype fields from the languageAndrew Kelley
2022-01-31astgen: clean up source line calculation and managementJakub Konka
2022-01-28stage1: add f80 typeVeikka Tuominen
2022-01-26stage2: fix crash on file-level struct field source locationsAndrew Kelley
2022-01-24stage2: rework a lot of stuffAndrew Kelley
2022-01-24stage2: type system treats fn ptr and body separatelyAndrew Kelley
2022-01-23AstGen: doc comment fixupsAndrew Kelley
2022-01-21add function param doc comment info in zirLoris Cro
2022-01-21add support for more decl attributes in doc comment zirLoris Cro
2022-01-21add field doc comments to zirLoris Cro
2022-01-21astgen saves decl doc comments in zirLoris Cro
2022-01-20stage2: implement tuplesAndrew Kelley
2022-01-17Sema: implement else capture valueAndrew Kelley
2022-01-17stage2: do not interpret identifier containing underscores (eg: u3_2) as int ...riverbl
2022-01-15AstGen: emit `as` instructions for branching expressionsAndrew Kelley
2022-01-13stage2: detection of comptime array literalsAndrew Kelley
2022-01-12stage2: implement `@ctz` and `@clz` including SIMDAndrew Kelley
2022-01-08stage2: implement @srcRobin Voetter
2022-01-04Sema: better code generated for struct literalsAndrew Kelley
2021-12-30For unused references & redundant keywords, append the compiler error but con...Jarred Sumner
2021-12-27AstGen: fix loop result locationsAndrew Kelley
2021-12-21stage2: wrap function prototypes in an inline block.Robin Voetter
2021-12-19stage1, stage2: rename c_void to anyopaque (#10316)Isaac Freund
2021-12-10AstGen: implement @prefetch() builtinIsaac Freund
2021-12-10AstGen: increase zig fmt off/on granularityIsaac Freund
2021-12-02AstGen: expr-evaluate asm template expressionsAndrew Kelley
2021-12-01AstGen: use null string to communicate non-string-literal asmAndrew Kelley
2021-11-30Merge pull request #10055 from leecannon/allocator_refactorAndrew Kelley
2021-11-30AstGen: allow non-string-literal inline assembly for stage1Andrew Kelley
2021-11-30allocgate: renamed getAllocator function to allocatorLee Cannon
2021-11-30allocgate: stage 1 and 2 buildingLee Cannon
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-11-30std lib API deprecations for the upcoming 0.9.0 releaseAndrew Kelley
2021-11-29AstGen: require binary operations to have reachable operandsAndrew Kelley
2021-11-24AstGen: use reachableExpr for return operandAndrew Kelley
2021-11-01astgen.zig: avoid temporary allocations by sharing the `instructions` ArrayLi...Matthew Borkowski
2021-11-01astgen.zig: delay adding closure_capture instructions to preserve GenZir nest...Matthew Borkowski
2021-11-01astgen.zig: use scratch buffer for temporary allocations in switchExpr and Wi...Matthew Borkowski
2021-11-01astgen.zig: simplify container functions by pulling out common processing of ...Matthew Borkowski
2021-11-01astgen.zig: replace WipDecls with WipMembers, use one allocation to collect c...Matthew Borkowski