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
/
eval.cpp
Age
Commit message (
Expand
)
Author
2016-11-19
IR: implement compileVar builtin and more
Andrew Kelley
2016-11-17
IR: pointers to constants don't copy data
Andrew Kelley
2016-11-17
remove superseded eval code
Andrew Kelley
2016-10-09
explicit casting works with IR
Andrew Kelley
2016-09-28
remove compiler directives
Andrew Kelley
2016-09-26
add this keyword refers to thing in immediate scope
Andrew Kelley
2016-09-26
cstr.len and cstr.cmp can run at compile time
Andrew Kelley
2016-09-23
enums support member functions
Andrew Kelley
2016-09-19
use size_t for indexes
Andrew Kelley
2016-09-13
change `unreachable{}` to `@unreachable()`
Andrew Kelley
2016-09-08
ability to infer parameter types
Andrew Kelley
2016-08-29
add ability to explicitly cast enum with no payload to int
Andrew Kelley
2016-08-29
implement null as a literal type
Andrew Kelley
2016-08-08
add zeroes value
Andrew Kelley
2016-08-04
new multiline string syntax
Andrew Kelley
2016-07-27
explicit wrapping integer operations
Andrew Kelley
2016-07-26
std: improve rand implementation and API
Andrew Kelley
2016-07-25
inline parameters
Andrew Kelley
2016-07-17
rename NodeTypeStructDecl to NodeTypeContainerDecl
Andrew Kelley
2016-07-09
ability to cast explicitly from int to enum
Andrew Kelley
2016-05-15
add int_type builtin function
Andrew Kelley
2016-05-14
add compile_err builtin
Andrew Kelley
2016-05-09
add debug safety for shortening casts
Andrew Kelley
2016-05-07
add div_exact builtin fn
Andrew Kelley
2016-05-07
ability to cast slice to u8 slice
Andrew Kelley
2016-05-07
better array concatenation semantics
Andrew Kelley
2016-05-06
add frame_address and return_address builtins
Andrew Kelley
2016-05-06
fix eval integer wrapping and add tests
Andrew Kelley
2016-05-06
add shl_with_overflow builtin function
Andrew Kelley
2016-05-04
add fence builtin function
Andrew Kelley
2016-05-04
add cmpxchg builtin function
Andrew Kelley
2016-04-28
add array multiplication operator
Andrew Kelley
2016-04-24
rename unknown_size_array to slice
Andrew Kelley
2016-04-24
add skeleton for union support
Andrew Kelley
2016-04-23
fix gcc build errors
Josh Wolfe
2016-04-20
for loop: add ability to get pointer to elem var
Andrew Kelley
2016-04-19
add optional continue expression to while loop
Andrew Kelley
2016-04-19
enum init uses container init syntax instead of fn call
Andrew Kelley
2016-04-18
add @embed_file builtin function
Andrew Kelley
2016-04-13
eval: support array literals
Andrew Kelley
2016-04-12
more eval tests and fix eval call analyze code
Andrew Kelley
2016-04-12
add error for dividing by zero in static function evaluation
Andrew Kelley
2016-04-12
passing all tests
Andrew Kelley
2016-04-12
eval: ability to eval more things
Andrew Kelley
2016-04-12
eval: support more node types
Andrew Kelley
2016-04-12
compile-time function evaluation of pure functions
Andrew Kelley