index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
2018-08-07
Fix ir_analyze_instruction_atomic_rmw (#1351)
Wink Saville
2018-08-05
translate-c: fix for loops with var init and empty body
Andrew Kelley
2018-08-05
translate-c: fix do while with empty body
Andrew Kelley
2018-08-05
translate-c: handle for loop with empty body
Andrew Kelley
2018-08-05
translate-c: fix while loop with no body
Andrew Kelley
2018-08-03
fix tagged union initialization with a runtime void
Andrew Kelley
2018-08-03
better support for `_` identifier
kristopher tate
2018-08-02
pull request fixups
Andrew Kelley
2018-08-02
src/parser.cpp: fix typo from rebase;
kristopher tate
2018-08-02
src/parser.cpp: remove promise_symbol from suspend;
kristopher tate
2018-08-02
src/ir.cpp: remove promise_symbol from suspend;
kristopher tate
2018-08-02
src/ast_render.cpp: remove promise_symbol from suspend;
kristopher tate
2018-08-02
src/all_types.hpp: remove promise_symbol from suspend;
kristopher tate
2018-08-02
src/codegen.cpp: @handle(): replace hacky ref chain with llvm intrinsic;
kristopher tate
2018-08-02
src/codegen.cpp: return promise instead of null promise;
kristopher tate
2018-08-02
src/ir.cpp: don't allow `@handle()` outside of a function;
kristopher tate
2018-08-02
src/ir.cpp: return promise->T instead of promise;
kristopher tate
2018-08-02
src/ir.cpp: add/throw error for @handle() in a non async context;
kristopher tate
2018-08-02
src/codegen.cpp: reassert that there are no generated errors in codegen;
kristopher tate
2018-08-02
src/codegen.cpp: remove `add_node_error` from `ir_render_handle`;
kristopher tate
2018-08-02
src/codegen.cpp: add/throw error for @handle() in a non async context;
kristopher tate
2018-08-02
src/codegen.cpp: return null if calling convention is not async;
kristopher tate
2018-08-02
src/ir_print.cpp: support `@handle()`;
kristopher tate
2018-08-02
src/codegen.cpp: base handle builtin on `@frameAddress()`;
kristopher tate
2018-08-02
src/ir.cpp: wire-up IR for handle builtin;
kristopher tate
2018-08-02
src/all_types.hpp: add enums for Handle Builtin;
kristopher tate
2018-07-30
await sets suspend bit; return clears suspend bit
Andrew Kelley
2018-07-29
fix cancel and await semantics
Andrew Kelley
2018-07-28
canceling an await also cancels things awaiting it
Andrew Kelley
2018-07-28
await cancels the await target when it is canceled
Andrew Kelley
2018-07-28
await checks the cancel bit
Andrew Kelley
2018-07-28
suspend cancels awaiter when it gets canceled
Andrew Kelley
2018-07-28
cancel detects suspend bit
Andrew Kelley
2018-07-28
cancel detects if the target handle has already returned
Andrew Kelley
2018-07-27
detect double await
Andrew Kelley
2018-07-27
suspend checks the cancel bit
Andrew Kelley
2018-07-27
resume detects resuming when not suspended
Andrew Kelley
2018-07-27
await sets the await bit
Andrew Kelley
2018-07-27
cancel sets the cancel bit
Andrew Kelley
2018-07-27
remove ability to break from suspend blocks
Andrew Kelley
2018-07-27
suspend sets suspend bit
Andrew Kelley
2018-07-27
resume clears suspend bit
Andrew Kelley
2018-07-27
update coroutine return codegen with new status bits
Andrew Kelley
2018-07-26
coroutines have 3 more bits of atomic state
Andrew Kelley
2018-07-26
add compile error for ignoring return value of while loop bodies
Andrew Kelley
2018-07-25
add compile error for missing parameter name of generic function
Andrew Kelley
2018-07-25
add compile error for non-inline for loop on comptime type
Andrew Kelley
2018-07-25
fix assertion failure when some compile errors happen
Andrew Kelley
2018-07-24
self-hosted: function types use table lookup
Andrew Kelley
2018-07-24
fix logic for determining whether param requires comptime
Andrew Kelley
[next]