aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
AgeCommit message (Expand)Author
2016-01-21allow constants to have number literal valuesAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-20Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-20basic support for switch expressionAndrew Kelley
2016-01-20rename value_count to member_countMovingtoMars
2016-01-19add switch statement support to parserAndrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18add function pointer supportAndrew Kelley
2016-01-18pave the road for function pointersAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-18fix nested arraysAndrew Kelley
2016-01-16better main symbol prototypeAndrew Kelley
2016-01-15support array literalsAndrew Kelley
2016-01-15add void arrays testAndrew Kelley
2016-01-15merge constant expression evaluator with analyzerAndrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew Kelley
2016-01-14fix next_node_index on wrong structAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13fix noalias codegenAndrew Kelley
2016-01-13Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-12fix build with gccAndrew Kelley
2016-01-11fix not adding builtin functions codeAndrew Kelley
2016-01-11support enums with values attachedAndrew Kelley
2016-01-11simple enum supportAndrew Kelley
2016-01-10fix codegen for void struct fieldsAndrew Kelley
2016-01-10delete unused enumfield and enumdecl node typesAndrew Kelley
2016-01-10refactor out the horrible beast that was codegen_nodeAndrew Kelley
2016-01-10parsing enum declarationsAndrew Kelley
2016-01-09order-independent declarationsAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew Kelley
2016-01-08rename `restrict` to `noalias`Andrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08add restrict qualifier on pointer argumentsAndrew Kelley
2016-01-08implement unknown size array indexing and slicingAndrew Kelley
2016-01-08codegen: fix else if expression and maybe unwrap exprAndrew Kelley
2016-01-08fix codegen for implicit maybe wrapAndrew Kelley
2016-01-07implement array slicing syntaxAndrew Kelley
2016-01-07add ?? maybe unwrapping binary operatorAndrew Kelley
2016-01-06while detects simple constant conditionAndrew Kelley
2016-01-06fix undefined reference to memcpy in release modeAndrew Kelley
2016-01-06support pub structs. move rand to std lib.Andrew Kelley
2016-01-06codegen: fix lshr/ashr not looking at int signAndrew Kelley
2016-01-06codegen: arithmetic is all wrapping for nowAndrew Kelley
2016-01-06codegen: fix array access of struct fieldAndrew Kelley
2016-01-06codegen: fix member function invocationAndrew Kelley
2016-01-06support unknown size arraysAndrew Kelley
2016-01-05add #min_value() and #max_value()Andrew Kelley