aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Revert back to `gb_memmove`gingerBill2018-01-211-1/+1
|
* Remove #endifgingerBill2018-01-201-2/+0
|
* Cache type size/align; Improve speed of ir_print.cppgingerBill2018-01-201-216/+77
|
* Fix empty union IR buggingerBill2018-01-191-189/+194
|
* Add basic debug information needed for stepping over codegingerBill2018-01-181-24/+44
|
* Add extra comments for claritygingerBill2018-01-171-0/+2
|
* Debug fix target triple and procedure positioninggingerBill2018-01-171-1/+5
|
* Specific sized booleans: b8, b16, b32, b64gingerBill2018-01-171-2/+6
|
* Remove `u128` and `i128`gingerBill2018-01-131-7/+5
|
* "Fix" LLVM boolean bug (more like a bodge)gingerBill2017-12-221-24/+14
|
* `map` is internally backed by a pointer (i.e. a "reference type")gingerBill2017-12-171-2/+2
|
* Change how abs, min, max, and clamp are implemented for floatsgingerBill2017-12-111-11/+11
|
* Remove dead codegingerBill2017-12-031-0/+1
|
* Fix union_tag_size; Fix constant array of array literal printing with scalar ↵gingerBill2017-12-031-6/+21
| | | | contents
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-54/+0
|
* Remove `using` in arrays; Remove `_` non-exported struct fieldsgingerBill2017-11-281-2/+0
| | | | Start determining slow parts of the compiler
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-1/+1
|
* Changed `string_has_extension` to `string_ends_with`.Zachary Pierson2017-11-211-1/+1
| | | | Fixed macOS target triple.
* Remove target triple from windowsgingerBill2017-11-191-1/+1
|
* Fix debug symbol generationgingerBill2017-11-191-11/+13
|
* Add `-debug` command (still in development)gingerBill2017-11-191-32/+34
|
* Begin with on debugging symbol; fix version number 0.7.0gingerBill2017-11-191-93/+128
|
* Custom thread local modelsgingerBill2017-11-031-2/+8
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-8/+9
|
* Attributes; @(link_name="foo")gingerBill2017-10-291-8/+9
|
* #alias type declarations; core library additions; `_global` import name for ↵gingerBill2017-10-291-0/+3
| | | | the global scope
* Fix enum iteration (issue #126)gingerBill2017-10-181-3/+4
|
* `foreign export` blockgingerBill2017-10-151-3/+7
| | | | | | | | | | | ``` foreign export { my_i32: i32; my_foo :: proc() -> i32 { return 123; } } ```
* Fix minimal dependency generation for polymorphic structs (related to issue ↵gingerBill2017-10-151-1/+3
| | | | #121)
* Union tag stored as an integerGinger Bill2017-10-081-1/+2
|
* "Constant" procedure values for default values in structsGinger Bill2017-10-011-2/+10
|
* Procedure literals for default values in structsGinger Bill2017-10-011-42/+95
|
* Fix cyclic polymorphic struct bug #111Ginger Bill2017-10-011-3/+9
|
* Fix union array bug (Issue #112)Ginger Bill2017-09-291-1/+1
|
* Fix issue #106Ginger Bill2017-09-251-1/+6
|
* IR Fix for UnionTagValueGinger Bill2017-08-281-3/+2
|
* v0.6.2; Use Ada_Case for typesv0.6.2Ginger Bill2017-08-031-3/+34
|
* Extra type safety; Fix typosGinger Bill2017-07-311-1/+1
|
* Speed up llvm ir printing; Use CRITICAL_SECTION for Mutex on windowsGinger Bill2017-07-301-373/+385
|
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-21/+7
|
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-0/+1
|
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-13/+17
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-4/+8
| |
| * Fix import name exportation bug; Fix procedure type printinggingerBill2017-07-241-9/+9
| |
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-1/+1
|/
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-14/+15
|
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-4/+4
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-26/+26
|
* Update internals of a Union and TupleGinger Bill2017-07-201-13/+9
|
* Change union layout to store type info rather than an integer; ternary ↵Ginger Bill2017-07-191-1/+2
| | | | expression for types with constant condition