aboutsummaryrefslogtreecommitdiff
path: root/code
Commit message (Collapse)AuthorAgeFilesLines
...
* `when` statement; Better entity collection system (for both local and ↵Ginger Bill2016-11-291-20/+9
| | | | global); Better parsing for record declarations
* Basic `when` statement - Compile time if statementGinger Bill2016-11-291-5/+22
| | | | This is similar to an #if in C but handled during the semantic checking stage.
* Update demo.odinGinger Bill2016-11-281-5/+3
|
* #rune "" to ''; Remove infix and postfix call notationGinger Bill2016-11-282-2/+31
|
* Fix parsing for comments; add global ODIN_* string constantsGinger Bill2016-11-241-42/+1
|
* Fix import/export rules for #import as .Ginger Bill2016-11-231-34/+29
|
* 128 bit integersGinger Bill2016-11-221-5/+37
| | | | Kind of works but may be buggy due to LLVM not actually sure
* Support `any` in `match type`Ginger Bill2016-11-201-0/+13
|
* v0.0.3 BuildGinger Bill2016-11-173-213/+6
|
* Scrap Virtual Machine and begin againGinger Bill2016-11-031-1/+6
| | | | I just didn't like the style of it.
* File restructure (again)Ginger Bill2016-11-021-5/+17
|
* Interpreter - Structs and ArraysGinger Bill2016-10-301-6/+10
|
* Interpreter - call internal proceduresGinger Bill2016-10-301-0/+5
|
* Begin work on the InterpreterGinger Bill2016-10-301-1/+2
|
* Minor `Entity` refactorGinger Bill2016-10-301-6/+1
|
* Better constant strings for SSA; Fix Type_InfoGinger Bill2016-10-261-1/+3
|
* Fix double declarations with enum bugGinger Bill2016-10-261-2/+0
|
* Fix Type_Info bug overwriting type_info data.Ginger Bill2016-10-231-2/+3
|
* Separation of certain instructions for better clarity.Ginger Bill2016-10-232-2/+5
|
* Separate ssa_struct_gep and ssa_array_gep proceduresGinger Bill2016-10-231-1/+1
|
* Minor Style FixesGinger Bill2016-10-222-24/+8
|
* union_castGinger Bill2016-10-161-5/+17
|
* Fix exact value bug when updating expressionsGinger Bill2016-10-161-0/+7
|
* Update ImplicitValue "architecture"Ginger Bill2016-10-151-9/+0
|
* Add Pointer ArithmeticGinger Bill2016-10-121-0/+10
|
* Implicit Values: `context`; Fix lvalue selector assignments; Fix offset_of* ↵Ginger Bill2016-10-101-1/+0
| | | | for `using` fields.
* SSA Phi Node SupportGinger Bill2016-10-081-1/+1
|
* "Maybe-fy" operatorGinger Bill2016-10-081-11/+1
|
* Demaybe operator ?Ginger Bill2016-10-071-1/+2
|
* Maybe types; value, ok := maybe_value(x)Ginger Bill2016-10-061-8/+8
|
* Untyped `nil`Ginger Bill2016-10-063-10/+82
|
* Code clean up of call argumentsGinger Bill2016-10-031-8/+1
|
* Refactor: Remove dead codeGinger Bill2016-10-021-7/+8
|
* Allow for constants of compound typesGinger Bill2016-10-011-1/+7
|
* Const Aggregate Literals for IR; Module path fixGinger Bill2016-09-301-9/+1
|
* Begin work on const llvm aggregate literalsGinger Bill2016-09-301-9/+7
|
* using on indexable field; Auto deref for (Index|Slice)ExprGinger Bill2016-09-291-53/+11
|
* Demo 004Ginger Bill2016-09-281-4/+55
|
* Update Standard Library; Fix Type_Info for integersGinger Bill2016-09-282-2/+8
|
* Fix: double declaration in SSAGinger Bill2016-09-271-3/+0
|
* Fix minimal dependency for nested entitiesGinger Bill2016-09-271-0/+3
|
* Minimal Dependency Map: Only build what is neededGinger Bill2016-09-271-1/+3
|
* Bug Fixes: some assertions; variable inits;Ginger Bill2016-09-241-22/+0
| | | | Remove some dead code
* Any order declarations at procedure scope (except variables)Ginger Bill2016-09-241-5/+3
|
* Fix returns of tupleGinger Bill2016-09-231-0/+11
|
* Fix push_* with better defer systemGinger Bill2016-09-233-331/+746
|
* Unicode file loading; push_allocator & push_contextGinger Bill2016-09-232-3/+14
|
* Fix assert; exporting rulesGinger Bill2016-09-223-32/+30
|
* Demo 003Ginger Bill2016-09-224-184/+199
|
* Fix type info generationGinger Bill2016-09-221-21/+49
| | | | | The problem: entry's index != entry->value in info_type_map But I was assuming this