aboutsummaryrefslogtreecommitdiff
path: root/src/zig_llvm.cpp
AgeCommit message (Collapse)Author
2016-09-10rename LLVMZig to ZigLLVMAndrew Kelley
2016-09-04generate debug info for global constantsAndrew Kelley
See #41
2016-09-04port to llvm 3.9Andrew Kelley
2016-05-07add div_exact builtin fnAndrew Kelley
closes #149
2016-05-06add debug safety for left shiftingAndrew Kelley
See #46
2016-05-04add cmpxchg builtin functionAndrew Kelley
2016-04-28better alignment value for stack variablesAndrew Kelley
fixes debug info sometimes not being available for parameters
2016-04-27better parameter codegenAndrew Kelley
* ability to take address of a parameter (closes #97) * debug symbols work for parameters
2016-04-09fix debug symbols regression after llvm 3.8.0Andrew Kelley
2016-03-08update to llvm 3.8.0Andrew Kelley
2016-02-16rename 'environ' to 'env_type'Andrew Kelley
environ appears to clash with another symbol in mingw land
2016-02-12fix build on GCCAndrew Kelley
2016-02-11ability to cross compileAndrew Kelley
hello_libc.zig can produce a windows build
2016-02-10cleanup target data organizationAndrew Kelley
2016-02-10targets command shows which ones are nativeAndrew Kelley
2016-02-10add "targets" command to list architectures, oses, abisAndrew Kelley
2016-02-05Added code for generating nonnull attributesrealazthat
2016-02-04fix debug info for bool typeAndrew Kelley
2016-02-03fix debug info for arrays being 1 element too shortAndrew Kelley
2016-01-31parseh: correct debug for forward declsAndrew Kelley
also C typedefs emit simply `const Foo = Bar;` since in C you can implicitly cast from a typedef child to parent but in zig you can't.
2016-01-18add function pointer supportAndrew Kelley
See #14
2016-01-18pave the road for function pointersAndrew Kelley
See #14
2016-01-15solve the mystery of undefined reference errorAndrew Kelley
big surprise, C++ is to blame
2016-01-11resolve enum types and emit debug infoAndrew Kelley
2016-01-02codegen: emit debug metadata for parametersAndrew Kelley
2015-12-16structs have debug informationAndrew Kelley
2015-12-12prepare codebase for struct and string supportAndrew Kelley
parsing code for structs, strings, and c string literals partial semantic analyzing code for structs, strings, and c string literals
2015-12-08codegen does signed, unsigned, and floating point mathAndrew Kelley
2015-12-07add local variables to debug infoAndrew Kelley
2015-12-07integrate debug scopes with block contextAndrew Kelley
2015-12-07all variables have memory addressesAndrew Kelley
2015-12-07add debugging info for array typeAndrew Kelley
2015-12-03add labels and gotoAndrew Kelley
2015-11-30all LLVM C++ API contained to one fileAndrew Kelley
2015-11-30analyze no longer depends on llvm C++ APIAndrew Kelley
2015-11-29remove LLVMZigTargetMachineEmitToFileAndrew Kelley
The llvm C API provided function is adequate.
2015-11-27ability to export .o fileAndrew Kelley
2015-11-27add pub and export visibility modifiers and optimizationAndrew Kelley
2015-11-24fix not using subtarget featuresAndrew Kelley
2015-11-24write object file and fix void return typeAndrew Kelley