gingerBill
|
0b30c3dc5a
|
Add flags: Type_Info_Flags, to runtime.Type_Info
|
2020-11-23 14:35:31 +00:00 |
|
gingerBill
|
2bd0fd932a
|
Begin rudimentary work on implementing odin test tooling with *_test.odin files
|
2020-11-17 18:50:30 +00:00 |
|
gingerBill
|
a0fbc56317
|
Improve flags for odin doc
|
2020-11-17 15:13:38 +00:00 |
|
gingerBill
|
d90fc18bef
|
Basic odin doc support
|
2020-11-17 15:05:16 +00:00 |
|
gingerBill
|
6f71d1f2a9
|
Add -show-unused (Shows unused package declarations of all imported packages)
Crude output at the moment but better than nothing
|
2020-11-17 12:10:25 +00:00 |
|
gingerBill
|
ca4b0527e8
|
Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> when the parameter doesn't need to grow
|
2020-11-16 15:18:25 +00:00 |
|
gingerBill
|
939878df50
|
Improve logic for x->y() shorthand
|
2020-11-15 23:54:18 +00:00 |
|
gingerBill
|
17ec3e72a6
|
Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a block
|
2020-11-15 18:45:40 +00:00 |
|
gingerBill
|
3c1c10a178
|
Begin clarifying allocation patterns by changing from heap_allocator to specific arenas
|
2020-11-15 18:08:52 +00:00 |
|
gingerBill
|
781395ada1
|
Add deferred_in_out attribute
|
2020-06-16 16:21:44 +01:00 |
|
gingerBill
|
aa029fe8d9
|
Add "pure" procedure types
|
2020-05-23 13:38:06 +01:00 |
|
gingerBill
|
d09ac8943a
|
Minor fixes to improve hash map/set performance
|
2020-05-21 16:27:40 +01:00 |
|
gingerBill
|
f661d34049
|
Implement Explicit context creation #639
|
2020-05-14 00:13:26 +01:00 |
|
gingerBill
|
c2bfb221f5
|
Fix #561 where statements that eval to false do not show incorrect usage location
|
2020-05-13 23:45:55 +01:00 |
|
gingerBill
|
d59fced21b
|
#591 Improve type switch statement error for fallthrough
|
2020-05-13 23:33:03 +01:00 |
|
gingerBill
|
7c42d4ba75
|
(#594) Add #config to replace #defined; Restrict #defined within procedure bodies to remove race condition
|
2020-05-13 23:29:06 +01:00 |
|
gingerBill
|
6861ff47bc
|
Replace entity_of_ident with entity_of_node
|
2020-05-12 16:28:22 +01:00 |
|
gingerBill
|
e27f5796d6
|
Add experimental atom op tables for llvm-backend
|
2020-05-02 18:45:57 +01:00 |
|
gingerBill
|
f09b6a4c90
|
Simplify compiler's Map and create a StringMap specifically for strings
|
2020-04-13 13:02:30 +01:00 |
|
gingerBill
|
fc0002ab67
|
Fix enum type info generation
|
2020-03-19 12:28:39 +00:00 |
|
gingerBill
|
18fb6a4be4
|
Merge branch 'master' into llvm-integration
|
2020-03-15 14:31:26 +00:00 |
|
gingerBill
|
2a2d3273ea
|
Add @require for global variables
|
2020-03-12 14:40:13 +00:00 |
|
gingerBill
|
8dc74a004c
|
Fix nested type declarations name generation, to be internally consistent
|
2020-03-08 11:46:05 +00:00 |
|
gingerBill
|
2252d992d7
|
Add -disable-assert to disable the code generation of the built-in run-time 'assert' procedure
|
2019-12-29 21:10:27 +00:00 |
|
gingerBill
|
9e9e905431
|
Add @(private="file") and @(private="package")
|
2019-12-29 15:39:20 +00:00 |
|
gingerBill
|
1d14b3059e
|
Fix Internal Compiler Error: Type_Info for 'XXX' could not be found #507
|
2019-12-22 14:16:56 +00:00 |
|
gingerBill
|
4ba579bc25
|
Also allow #no_bounds_check on an expression #499
|
2019-12-15 11:41:21 +00:00 |
|
gingerBill
|
3b898e5224
|
Add @force to foreign import
|
2019-11-01 19:26:22 +00:00 |
|
gingerBill
|
416ff149bd
|
Fix procedure group "best fit" algorithm for polymorphic procedures
|
2019-10-27 19:42:21 +00:00 |
|
gingerBill
|
2a6d9e8927
|
#panic; Minor change to demo.odin; Fix #assert bug at file scope
|
2019-10-13 12:38:23 +01:00 |
|
gingerBill
|
b311540b16
|
Make require_results an attribute rather than a suffix tag for procedures
|
2019-08-31 14:48:56 +01:00 |
|
gingerBill
|
01c10aa944
|
inline for loops (only for 'in' based for loops)
|
2019-08-26 13:54:35 +01:00 |
|
gingerBill
|
37633c1d2a
|
intrinsics.type_* constant evaluation procedures
|
2019-08-04 11:02:00 +01:00 |
|
gingerBill
|
5697d6df74
|
-go-to-definitions (OGTD file format)
|
2019-05-26 15:16:45 +01:00 |
|
gingerBill
|
b1684fe455
|
@(private) for foreign blocks; Improve foreign signature similarity rules
|
2019-03-24 11:58:26 +00:00 |
|
gingerBill
|
a9ab90bd24
|
Make static an attribute rather than a keyword prefix
|
2019-02-23 22:17:27 +00:00 |
|
gingerBill
|
e551d2b25e
|
Replace foreign export {} with @export
|
2019-02-23 21:39:47 +00:00 |
|
gingerBill
|
4c51384ad6
|
intrinsics.vector type (Experimental)
|
2019-02-23 16:44:16 +00:00 |
|
gingerBill
|
8fc24fd6f2
|
Replace deferred with deferred_none, deferred_in, deferred_out
|
2019-01-13 19:34:08 +00:00 |
|
gingerBill
|
7c982b6e10
|
min & max for types
|
2018-12-27 12:12:14 +00:00 |
|
gingerBill
|
95873e66ab
|
deferred procedure attribute
|
2018-12-14 21:05:02 +00:00 |
|
gingerBill
|
3e11b4fe1e
|
Reorganize decl attribute code
|
2018-12-04 21:02:12 +00:00 |
|
gingerBill
|
444f4f446a
|
-vet flag to do basic vetting of code
|
2018-11-25 14:14:58 +00:00 |
|
gingerBill
|
f9654b6c36
|
Fix package usage with when on import #278
|
2018-11-07 16:11:14 +00:00 |
|
gingerBill
|
72f4186b21
|
Fix atomic.odin
|
2018-10-20 12:55:48 +01:00 |
|
gingerBill
|
3742d9e7e9
|
Move atomic intrinsics to the new built-in package intrinsics
|
2018-10-20 10:44:02 +01:00 |
|
gingerBill
|
b171cc41e6
|
__atomic_* "intrinsics" using LLVM instructions
|
2018-10-17 21:16:01 +01:00 |
|
gingerBill
|
aa542980ce
|
Change memory layout of map to be 3 words smaller
|
2018-08-30 19:14:10 +01:00 |
|
gingerBill
|
cc88dd0b71
|
Allow for variadic min max procs
Request #252
|
2018-08-25 11:12:52 +01:00 |
|
gingerBill
|
835d7dcab2
|
make as a user-level procedure rather than a built-in procedure
|
2018-08-08 13:04:40 +01:00 |
|