aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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
|/
* *_of as keyords; Allow constant aliasing for user/built-in procedures, ↵Ginger Bill2017-07-041-0/+7
| | | | import names, and library names
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-39/+22
| | | | TODO: Figure out why it does not work in the global scope
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-111/+132
|
* Remove `Type`Ginger Bill2017-06-291-15/+11
| | | | What was I thinking?!
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-6/+48
|
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-7/+7
|
* Update procedure names and extend demo.odinGinger Bill2017-06-291-6/+6
|
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-131/+41
|
* Basic allowance for := and ::Ginger Bill2017-06-281-0/+77
|
* Fix `expand_to_tuple`Ginger Bill2017-06-271-3/+5
|
* Allow for named arguments for polymorphic proceduresGinger Bill2017-06-261-7/+11
|
* Remove `let`Ginger Bill2017-06-261-2/+1
|
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-8/+30
|
* Remove "overloading" bug of para-poly-procsGinger Bill2017-06-251-8/+7
|
* `new` as a user-level procedureGinger Bill2017-06-251-0/+2
|
* Allow nested para-poly proceduresGinger Bill2017-06-251-34/+47
|
* Rudimentary para-poly proceduresGinger Bill2017-06-251-2/+17
|
* `expand_to_tuple`Ginger Bill2017-06-241-0/+17
|
* Use UTF-8 command line on windowsGinger Bill2017-06-241-1/+2
|