gingerBill
|
2b27300387
|
Fix LLVM code gen bug
|
2020-06-22 16:57:21 +01:00 |
|
gingerBill
|
aa029fe8d9
|
Add "pure" procedure types
|
2020-05-23 13:38:06 +01:00 |
|
gingerBill
|
ff92eb9112
|
Relative pointers
|
2020-05-15 17:37:00 +01:00 |
|
gingerBill
|
e0a242e9a1
|
Enforce explicit context definition for procedure calls
|
2020-05-14 13:44:28 +01:00 |
|
gingerBill
|
f661d34049
|
Implement Explicit context creation #639
|
2020-05-14 00:13:26 +01:00 |
|
gingerBill
|
e27f5796d6
|
Add experimental atom op tables for llvm-backend
|
2020-05-02 18:45:57 +01:00 |
|
gingerBill
|
97f7a558fa
|
#optional_ok tag for procedures
|
2020-04-19 21:45:04 +01:00 |
|
gingerBill
|
f229084baa
|
Basic polymorphic named procedure parameters for procedures and records
|
2020-04-13 15:48:56 +01:00 |
|
gingerBill
|
da283d5a7f
|
Add byval
|
2020-03-12 22:33:49 +00:00 |
|
gingerBill
|
e92fdb4a99
|
x if cond else y and x when cond else y expressions
|
2020-03-05 20:34:30 +00:00 |
|
gingerBill
|
3d74c2f6c0
|
Add proc(#const x: Type) to enforce a constant parameter (but not polymorphic) to a procedure
|
2020-02-26 22:53:40 +00:00 |
|
gingerBill
|
5073fcd39e
|
Improve error message on using with procedure parameters #568
|
2020-02-23 10:37:27 +00:00 |
|
gingerBill
|
0f399a7294
|
Add union #maybe
|
2020-02-01 11:10:28 +00:00 |
|
gingerBill
|
5ae924f988
|
Make "none" calling convention ignore return_by_pointer flag
|
2020-01-04 12:42:16 +00:00 |
|
gingerBill
|
9ba2926e7e
|
Fix enumerated array contiguous error
|
2019-12-28 16:31:15 +00:00 |
|
gingerBill
|
5ec8dd166a
|
Add #partial tag for enumerated arrays to prevent common errors using non-contiguous enumerations
|
2019-12-27 16:55:32 +00:00 |
|
gingerBill
|
880c7f01a8
|
Fix array lengths with enum value counts.
|
2019-12-27 13:55:18 +00:00 |
|
gingerBill
|
10f0961184
|
Enumerated arrays [Enum_Type]Elem_Type
|
2019-12-27 12:51:02 +00:00 |
|
gingerBill
|
995ba0df9a
|
Fix using on array in struct
|
2019-12-21 14:42:08 +00:00 |
|
gingerBill
|
58d4d424c6
|
Replace #vector[N]T with #simd[N]T to reduce confusion #498
|
2019-12-15 11:30:09 +00:00 |
|
gingerBill
|
e229885b2b
|
Remove addressing mode Addressing_Immutable
|
2019-12-01 19:11:00 +00:00 |
|
gingerBill
|
9db81498d8
|
Make the string type elements "immutable", akin to char const * in C
Allows for extra security and optimization benefits
|
2019-12-01 14:10:59 +00:00 |
|
gingerBill
|
9b58781122
|
#soa[dynamic]Type (Experimental)
|
2019-11-21 19:36:07 +00:00 |
|
gingerBill
|
b74f8f2047
|
Fix SOA entity usage error on -vet
|
2019-11-21 18:21:27 +00:00 |
|
gingerBill
|
2c5a84bb78
|
#soa[]Type (Experimental)
|
2019-11-21 00:07:21 +00:00 |
|
gingerBill
|
44e0e96612
|
Prepare SOA Struct code for slices and dynamic arrays *to be implemented*
|
2019-11-19 23:54:36 +00:00 |
|
gingerBill
|
d22e5b697d
|
Add new #soa and #vector syntax
|
2019-11-17 10:30:37 -08:00 |
|
gingerBill
|
8a46b493fd
|
Fix Slice passed incorrectly in LLVM IR to procedure called via procedure pointer #465
|
2019-11-05 19:40:08 +00:00 |
|
gingerBill
|
a634444f99
|
Fix "Polymorphic parameter declared in return type doesn't compile #464" by giving a conversion error (code wasn't handling polymorphic result types as intended)
|
2019-11-05 19:37:19 +00:00 |
|
gingerBill
|
a20c31d6b5
|
Fix polymorphic record parameter determination bug caused by polymorphic constants not being handled correctly #447
|
2019-10-31 22:58:38 +00:00 |
|
gingerBill
|
560bdc339b
|
Fix stack overflow bug caused by polymorphic record with polymorphic constant parameters. #447
DOES NOT FIX THE UNDERLYING BUG
|
2019-10-31 22:39:12 +00:00 |
|
gingerBill
|
01dfb1dac8
|
Fix double calling of lhs of logical binary expressions
|
2019-10-31 20:17:50 +00:00 |
|
gingerBill
|
ee8d3e03f8
|
Delay determination of procedure abi types until as late as possible to prevent type undetermination in self-referential data types #454
|
2019-10-31 18:25:39 +00:00 |
|
gingerBill
|
416ff149bd
|
Fix procedure group "best fit" algorithm for polymorphic procedures
|
2019-10-27 19:42:21 +00:00 |
|
gingerBill
|
b53fe14c22
|
Change error to syntax_error in parser
|
2019-10-13 16:06:41 +01:00 |
|
gingerBill
|
45683703ea
|
Fix System V for certain structs
|
2019-10-13 14:29:56 +01:00 |
|
gingerBill
|
2a6d9e8927
|
#panic; Minor change to demo.odin; Fix #assert bug at file scope
|
2019-10-13 12:38:23 +01:00 |
|
gingerBill
|
fa81061db0
|
Minor fix to Odin types with System V ABI
|
2019-10-10 21:50:20 +01:00 |
|
gingerBill
|
39b3c8c80f
|
Update System V ABI to for more Odin types
|
2019-10-10 21:39:46 +01:00 |
|
gingerBill
|
3139151935
|
Minor fix to systemv_distribute_struct_fields
|
2019-10-10 21:24:32 +01:00 |
|
gingerBill
|
672a8f5dbd
|
Add Odin types for System V ABI
|
2019-10-10 21:13:06 +01:00 |
|
gingerBill
|
8672ff1c55
|
Fix typo in System V ABI determination
|
2019-10-10 20:57:31 +01:00 |
|
gingerBill
|
abfa894566
|
Fix general IR parameter case
|
2019-10-10 20:52:07 +01:00 |
|
gingerBill
|
5b52fed268
|
Correct (experimental) System V AMD64 ABI support
|
2019-10-10 20:41:16 +01:00 |
|
gingerBill
|
1b8c3ca22a
|
Fix typos and make demo work with -vet
|
2019-10-08 20:28:45 +01:00 |
|
gingerBill
|
66ae4e5afc
|
Change ODIN_OS string for osx from "osx" to "darwin" to allow for other platforms
|
2019-10-01 20:38:50 +01:00 |
|
gingerBill
|
5fc42bf9c9
|
Update demo.odin
|
2019-09-08 19:15:12 +01:00 |
|
gingerBill
|
42bbd31df1
|
Disallow where clauses on non-polymorphic records
|
2019-09-08 19:03:57 +01:00 |
|
gingerBill
|
c7cc38b7d8
|
Remove assert
|
2019-09-08 15:47:57 +01:00 |
|
gingerBill
|
4afc78efc6
|
Add where clauses to struct and union
|
2019-09-08 12:12:41 +01:00 |
|