aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Disallow anonymous structs with procedures as default valuesGinger Bill2017-10-011-22/+58
|
* Default procedure values for `proc`Ginger Bill2017-10-011-0/+16
|
* "Constant" procedure values for default values in structsGinger Bill2017-10-011-3/+3
|
* Procedure literals for default values in structsGinger Bill2017-10-011-30/+66
|
* `match` to `switch`; Optional semicolons after "import" statementsGinger Bill2017-10-011-105/+178
|
* Wrap entry point `main` around the C style `main` in the IRGinger Bill2017-09-301-14/+79
|
* Fix union array bug (Issue #112)Ginger Bill2017-09-291-22/+22
|
* Fix old_demos; Fix `when` bug; Fix enum `.names`Ginger Bill2017-09-291-12/+31
|
* Fix issue #108Ginger Bill2017-09-251-0/+10
|
* Fix crash with `build_dll` (Issue #100)Ginger Bill2017-09-201-22/+51
|
* Fix global variable initialization IR bugGinger Bill2017-09-101-1/+1
|
* Fix bit_field type informationGinger Bill2017-09-021-8/+8
|
* Fix issue #92Ginger Bill2017-09-021-13/+15
|
* Remove () grouping for `foreign_library`Ginger Bill2017-08-271-3/+3
|
* Global variable dependency initialization orderingGinger Bill2017-08-201-87/+94
| | | | Fuck graph theory
* Fix `push_allocator`Ginger Bill2017-08-131-1/+3
|
* Fix compilation issues on OSXGinger Bill2017-08-111-1/+1
|
* Fix inline #raw_union bug in issue #87Ginger Bill2017-08-081-6/+5
|
* Fix minor errors for *nixGinger Bill2017-08-011-1/+1
|
* Extra type safety; Fix typosGinger Bill2017-07-311-37/+37
|
* Fix ir for TypeInfo.MapGinger Bill2017-07-301-1/+0
|
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-33/+54
|
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-12/+14
|
* Fix IR print bug for empty structs;gingerBill2017-07-281-3/+2
|
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-10/+6
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-59/+59
|
* Update internals of a Union and TupleGinger Bill2017-07-201-91/+66
|
* `type_info_of`; enum_value_to_string and string_to_enum_valueGinger Bill2017-07-191-13/+18
|
* Change union layout to store type info rather than an integer; ternary ↵Ginger Bill2017-07-191-56/+26
| | | | expression for types with constant condition
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-36/+28
|
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-8/+4
|
* Allow undefined --- as a struct field default value.Ginger Bill2017-07-181-0/+2
|
* Default struct field valuesGinger Bill2017-07-181-8/+75
|
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-9/+20
|
* Basic procedure type parameter specializationGinger Bill2017-07-161-4/+23
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-2/+18
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-15/+16
|
* `cast(Type)expr`; Fix overloaded procedure determination on assignmentGinger Bill2017-07-111-0/+5
|
* Clean up _preload.odin typesGinger Bill2017-07-101-4/+6
|
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-76/+42
|
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-49/+49
|
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-95/+128
|
* Nested record declarationsGinger Bill2017-07-101-0/+17
|
* Add `-show-timings`; Clean up polymorphic procedure code a bitGinger Bill2017-07-071-4/+4
|
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-368/+368
|
* Add `free` for maps (a previous oversight)Ginger Bill2017-07-051-9/+10
|
* Replace many built-in procedures with user-level proceduresGinger Bill2017-07-041-7/+8
|
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-041-19/+32
|\
| * Allow aliasing of aliasesGinger Bill2017-07-041-19/+32
| |
* | Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-3/+2
|/