aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
AgeCommit message (Expand)Author
2018-02-28another workaround for llvm coroutinesAndrew Kelley
2018-02-27revert workaround for alloc and free as coro paramsAndrew Kelley
2018-02-26workaround for llvm: delete coroutine allocation elisionAndrew Kelley
2018-02-26workaround llvm coro transformationsAndrew Kelley
2018-02-26implement coroutine suspendAndrew Kelley
2018-02-26parse await and suspend syntaxAndrew Kelley
2018-02-25move coroutine init code to after coro.beginAndrew Kelley
2018-02-25fix invalid memory write in coroutines implementationAndrew Kelley
2018-02-25coroutines: fix llvm error of instruction not dominating usesAndrew Kelley
2018-02-25codegen for coro_resume instructionAndrew Kelley
2018-02-25codegen for coro_id instructionAndrew Kelley
2018-02-25codegen for calling an async functionAndrew Kelley
2018-02-23fix type_is_codegen_pointer being used incorrectlyAndrew Kelley
2018-02-23implement Zig IR for async functionsAndrew Kelley
2018-02-22IR analysis for coro.beginAndrew Kelley
2018-02-22ir analysis for coro_id and coro_allocAndrew Kelley
2018-02-22coroutines: analyze get_implicit_allocator instructionAndrew Kelley
2018-02-21add coroutine startup IR to async functionsAndrew Kelley
2018-02-21implement IR analysis for async function callsAndrew Kelley
2018-02-20add promise typeAndrew Kelley
2018-02-20parse async fn definitionsAndrew Kelley
2018-02-20parse async fn calls and cancel expressionsAndrew Kelley
2018-02-16ability to slice an undefined pointer at compile time if the len is 0Andrew Kelley
2018-02-14fix crash when doing comptime float rem comptime intAndrew Kelley
2018-02-14fix sometimes not type checking function parametersAndrew Kelley
2018-02-09fix compiler crash switching on global error with no elseAndrew Kelley
2018-02-09fix crash with error peer type resolutionAndrew Kelley
2018-02-08if statements support comptime known test error, runtime payloadAndrew Kelley
2018-02-08error sets: runtime safety for int-to-err and err set castAndrew Kelley
2018-02-08Merge remote-tracking branch 'origin/master' into error-setsAndrew Kelley
2018-02-08error sets - fix bad value for constant error literalAndrew Kelley
2018-02-08error set casting buildingAndrew Kelley
2018-02-08error sets - most tests passingAndrew Kelley
2018-02-07fix comptime fn execution not returning error unions properlyAndrew Kelley
2018-02-07DRY 'is slice?' conditionals in parser (#750)Ben Noordhuis
2018-02-05error sets - fix most std lib compile errorsAndrew Kelley
2018-02-05error sets: fix peer resolution of error unionsAndrew Kelley
2018-02-05fix test failure, organize code, add new compile errorAndrew Kelley
2018-02-05make OutStream and InStream take an error set paramAndrew Kelley
2018-02-05error sets - peer resolution for error unionsAndrew Kelley
2018-02-05error sets - compile error for equality with no common errorsAndrew Kelley
2018-02-04add --forbid-libraryAndrew Kelley
2018-02-03*WIP* error sets - std lib test compile but try to link against windowsAndrew Kelley
2018-02-03*WIP* error sets - an inferred error set can end up being the global oneAndrew Kelley
2018-02-03*WIP* error sets - support fns called at comptimeAndrew Kelley
2018-02-02*WIP* error sets - correctly resolve inferred error setsAndrew Kelley
2018-02-02*WI* error sets - basic support workingAndrew Kelley
2018-02-02*WIP* error sets - rewrite "const cast only" functionAndrew Kelley
2018-02-01*WIP* error sets - allow peer type resolution to create new error setAndrew Kelley
2018-02-01*WIP* error sets - fix implicit castAndrew Kelley