aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-9/+8
|
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-10/+7
|
* Ignore missing default values for struct literals at the endGinger Bill2017-07-181-15/+16
|
* Allow undefined --- as a struct field default value.Ginger Bill2017-07-181-7/+17
|
* Default struct field valuesGinger Bill2017-07-181-36/+101
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-1/+1
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-2/+1
|
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-23/+20
|
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-3/+5
|
* Add `-show-timings`; Clean up polymorphic procedure code a bitGinger Bill2017-07-071-1/+1
|
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-30/+26
|
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-1/+2
| | | | TODO: Figure out why it does not work in the global scope
* Remove `Type`Ginger Bill2017-06-291-6/+0
| | | | What was I thinking?!
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-0/+6
|
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-1/+1
|
* Fix IR printing for para-poly proceduresGinger Bill2017-06-261-30/+17
|
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-0/+4
|
* Rudimentary para-poly proceduresGinger Bill2017-06-251-4/+10
|
* Generic procedures generate types on useGinger Bill2017-06-251-7/+27
|
* Update old demosGinger Bill2017-06-211-4/+1
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-8/+30
| | | | Storage (TLS) approach)
* Compiler compiles for x86 (doesn't work properly)Ginger Bill2017-06-191-0/+2
|
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-43/+95
|
* Use templated `Map` for extra type safetyGinger Bill2017-06-081-7/+7
|
* Remove unnecessary `typedef` usageGinger Bill2017-06-081-2/+2
|
* Use templated `Array` with bounds checkingGinger Bill2017-06-081-18/+18
|
* Update `String` to use overloadingGinger Bill2017-06-081-4/+4
|
* Build as C++Ginger Bill2017-06-081-0/+1768