aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
AgeCommit message (Expand)Author
2016-02-04implement constant values for enums with payloadAndrew Kelley
2016-02-04allow defining errors with the same nameAndrew Kelley
2016-02-03fix running tests when linking with libcAndrew Kelley
2016-02-03add ability to call function pointer fieldAndrew Kelley
2016-02-03test runner prints test namesAndrew Kelley
2016-02-03basic support for building a test targetAndrew Kelley
2016-02-03fix debug symbols for byval argumentsAndrew Kelley
2016-02-03add @compile_var("is_release")Andrew Kelley
2016-02-03types sized and aligned with LLVM target data layout APIAndrew Kelley
2016-02-02add @compile_var builtin and "is_big_endian" compile varAndrew Kelley
2016-02-02fix crash when incomplete struct used as argumentAndrew Kelley
2016-02-02build: fix libc path findingAndrew Kelley
2016-02-02codegen: ?? prefix operator causes trap in debug modeAndrew Kelley
2016-02-02unreachable causes a trap in debug modeAndrew Kelley
2016-02-01codegen: avoid table lookup for field accessAndrew Kelley
2016-02-01codegen: avoid table lookup in assembly expressionAndrew Kelley
2016-02-01codegen: avoid a table lookupAndrew Kelley
2016-02-01inline is a keyword instead of a directiveAndrew Kelley
2016-02-01optimization: avoid codegening unused functionsAndrew Kelley
2016-02-01add ?? prefix operatorAndrew Kelley
2016-02-01parseh understands macros which alias global fn ptr varsAndrew Kelley
2016-01-31codegen: fix negation for floatsAndrew Kelley
2016-01-31support casting between floatsAndrew Kelley
2016-01-31support casting between int and float typesAndrew Kelley
2016-01-31fix C interaction with maybe function pointersAndrew Kelley
2016-01-31add --library-path cli optionAndrew Kelley
2016-01-31parseh handles typedef void betterAndrew Kelley
2016-01-31codegen extern global variables correctlyAndrew Kelley
2016-01-31parseh understands types better and handles some situations betterAndrew Kelley
2016-01-28ability to call member functions directlyAndrew Kelley
2016-01-28ability to refer to member function directlyAndrew Kelley
2016-01-28null pointer optimization for ?&TAndrew Kelley
2016-01-27move AST rendering code to separate fileAndrew Kelley
2016-01-27build command supports -isystem argumentAndrew Kelley
2016-01-27fix `%%` prefix operator codegen for simple valuesAndrew Kelley
2016-01-27fix codegen for pointers to voidAndrew Kelley
2016-01-27add explicit cast from isize/usize to pointerAndrew Kelley
2016-01-27upgrade to the libclang C++ APIAndrew Kelley
2016-01-26add c_import top level declAndrew Kelley
2016-01-26different extern syntax and simplify parsing top level declsAndrew Kelley
2016-01-25add the C integer typesAndrew Kelley
2016-01-25implement compile time string concatenationAndrew Kelley
2016-01-25codegen: get rid of cur_block_contextAndrew Kelley
2016-01-25implement %% prefix operatorAndrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24update std lib to use error type and global variablesAndrew Kelley
2016-01-24support the `%return` expressionAndrew Kelley
2016-01-24fix parameter access of sret functionsAndrew Kelley
2016-01-24ability to return structs byvalue from functionsAndrew Kelley
2016-01-24fix number literal implicit castAndrew Kelley