aboutsummaryrefslogtreecommitdiff
path: root/src/types.c
Commit message (Expand)AuthorAgeFilesLines
* Fix issue #51; begin work on `atomic` typesGinger Bill2017-04-281-3/+43
* `fmt.String_Buffer`, Fix issue #44, Tweak overloading rulesGinger Bill2017-04-261-0/+14
* Swap memory layout of `any`Ginger Bill2017-04-231-11/+13
* Fix `find_using_index_expr`Ginger Bill2017-04-231-3/+11
* Continue work on custom SSA; Fix double declaration in `when` statementsGinger Bill2017-04-211-152/+1
* Change Union representation for LLVM IR; fix dynamic array sizeGinger Bill2017-04-191-2/+4
* Fix bug with union literal checking crashing the compilerGinger Bill2017-04-181-4/+13
* Add `#require_results` for proceduresGinger Bill2017-04-161-0/+1
* IR emit C ABI compatible types for calling conventions (Only for x86/amd64 li...Ginger Bill2017-04-161-0/+2
* Add parse_int; Fix union bugs with size, alignment, and recursive definition ...Ginger Bill2017-04-141-9/+50
* Basic Linux Build!Ginger Bill2017-04-091-3/+3
* Merge pull request #33 from zangent/mastergingerBill2017-04-091-1/+0
|\
| * Merge https://github.com/gingerBill/OdinZachary Pierson2017-04-031-3/+18
| |\
| * \ Merge https://github.com/gingerBill/OdinZachary Pierson2017-04-021-72/+134
| |\ \
| * \ \ Merge https://github.com/gingerBill/Odin, cleaned up a bit, fixed the object ...Zachary Pierson2017-03-301-17/+6
| |\ \ \
| * | | | Forgot to include stdio.h since Win32 won't resolve it otherwise.Zachary Pierson2017-03-211-1/+1
| * | | | Merge https://github.com/gingerBill/OdinZac Pierson2017-03-211-13/+31
| |\ \ \ \
* | | | | | Move to `Raw_*` types to raw.odin; Add size and align members to Type_InfoGinger Bill2017-04-071-2/+0
| |_|_|_|/ |/| | | |
* | | | | len, cap, make; remove .count, .capacity, new_sliceGinger Bill2017-04-021-3/+18
| |_|_|/ |/| | |
* | | | Add Quaternions: quaternion128, quaternion256Ginger Bill2017-04-011-61/+97
* | | | Complex numbers: complex64 complex128Ginger Bill2017-04-011-30/+56
| |_|/ |/| |
* | | v0.1.3v0.1.3Ginger Bill2017-03-271-2/+6
| |/ |/|
* | Update gb.hGinger Bill2017-03-171-11/+15
* | Refactoring of code: remove `make` prefix on many proceduresGinger Bill2017-03-051-2/+2
|/
* Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacityGinger Bill2017-03-021-4/+1
* Slices now have a capacity.Ginger Bill2017-02-261-11/+24
* v0.1.1v0.1.1Ginger Bill2017-02-241-19/+19
* A decent union type with common fields and variantsGinger Bill2017-02-211-25/+83
* Fix overloading bug due to comparison of named typesGinger Bill2017-02-181-14/+22
* Fix immutable rules; add some general documentationGinger Bill2017-02-141-8/+9
* Use a global to store the build context informationGinger Bill2017-02-121-86/+75
* Record type field `names`Ginger Bill2017-02-121-3/+5
* Only check files that have been truly imported.Ginger Bill2017-02-111-5/+9
* Remove Maybe type; Enum `names`Ginger Bill2017-02-101-60/+31
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-071-0/+8
* Map type info and fmt printingGinger Bill2017-02-071-4/+4
* `map` immutable fields: count, capacity, allocatorGinger Bill2017-02-061-1/+35
* Nearly implement dynamics map, missing insertionGinger Bill2017-02-061-1/+4
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-051-0/+4
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-051-27/+112
* Custom struct alignmentGinger Bill2017-02-051-0/+5
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-3/+2
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-021-10/+50
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-011-10/+50
* | oh boy, basic osx/unix supportzhiayang2017-02-021-1/+1
|/
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-301-39/+58
* Dynamic arraysGinger Bill2017-01-291-1/+71
* Fix parsing for block/if expression within if/for/etc. statementsv0.0.6Ginger Bill2017-01-271-1/+3
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-251-2/+2
* Fix conversion of untyped integers to pointersGinger Bill2017-01-171-0/+45