aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Add `-show-unused` (Shows unused package declarations of all imported packages)gingerBill2020-11-171-19/+9
* Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...gingerBill2020-11-161-6/+6
* Minimize Ast flags usagegingerBill2020-11-161-8/+8
* Improve generate_entity_dependency_graph: Calculate edges for graph M - Part 2gingerBill2020-11-151-9/+42
* Fix calling convention for new LLVM ABI, and change`PtrSet` index to be `u32`...gingerBill2020-11-151-6/+3
* Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a blockgingerBill2020-11-151-19/+16
* Begin clarifying allocation patterns by changing from `heap_allocator` to spe...gingerBill2020-11-151-1/+3
* Force dependency for @(export) entitiesgingerBill2020-11-101-0/+16
* Added -no-entry-point flag and relevant check.F0x1fy2020-11-101-1/+1
* Add -default-to-nil-allocator flag (sets `ODIN_DEFAULT_TO_NIL_ALLOCATOR`)gingerBill2020-09-151-0/+1
* Improve error message for multi-valued global declarations not be allowedgingerBill2020-09-121-6/+2
* Fix check_arity_match buggingerBill2020-09-121-2/+31
* Add extra check for checking uniqueness of package namesgingerBill2020-09-101-0/+29
* Ensure `add_type_info_type` and `add_min_dep_type_info` are consistentgingerBill2020-08-051-20/+31
* Fix #705gingerBill2020-08-051-4/+10
* Add `-no-dynamic-literals` to disallow dynamic array and map literalsgingerBill2020-07-141-0/+1
* Add `deferred_in_out` attributegingerBill2020-06-161-0/+66
* Add force usage when importing `intrinsics` or `builtin`gingerBill2020-06-101-1/+5
* Fix rules for recursive initialization with procedure entities; Fix executabl...gingerBill2020-05-301-15/+88
* Improve performance of tokenization and parsinggingerBill2020-05-271-2/+2
* Minor fixes to improve hash map/set performancegingerBill2020-05-211-1/+1
* Add extra information to `-show-more-timings`gingerBill2020-05-211-0/+1
* Relative pointersgingerBill2020-05-151-0/+24
* Enforce explicit context definition for procedure callsgingerBill2020-05-141-0/+1
* Implement Explicit context creation #639gingerBill2020-05-141-0/+5
* (#594) Add `#config` to replace `#defined`; Restrict `#defined` within proced...gingerBill2020-05-131-1/+9
* Add extra 128 bit integer proceduresgingerBill2020-05-131-0/+5
* Replace `entity_of_ident` with `entity_of_node`gingerBill2020-05-121-16/+5
* Let -vet ignore intentional declaration shadowing #637gingerBill2020-05-121-7/+22
* Fix typogingerBill2020-05-031-8/+8
* Add experimental atom op tables for llvm-backendgingerBill2020-05-021-0/+211
* Fix @(export) for global variable declarationsgingerBill2020-04-241-0/+1
* Basic polymorphic named procedure parameters for procedures and recordsgingerBill2020-04-131-0/+3
* Simplify compiler's `Map` and create a `StringMap` specifically for stringsgingerBill2020-04-131-44/+36
* Add `-build-mode=obj`gingerBill2020-04-131-1/+1
* Endian specific floating point types (e.g. f32be)gingerBill2020-04-111-0/+3
* Add `runtime.bswap_*` required for -llvm-apigingerBill2020-04-111-0/+5
* Fix typeid comparison bug in `ir.cpp`gingerBill2020-04-041-6/+16
* Merge branch 'master' into llvm-integrationgingerBill2020-03-151-4/+18
|\
| * Add `@require` for global variablesgingerBill2020-03-121-4/+18
* | Fix `context` system; add more to -show-more-timings for LLVM API; Add `ODIN_...gingerBill2020-03-081-0/+1
* | Basic work on obj generationgingerBill2020-02-231-0/+2
* | Get basic IR code generation working properlygingerBill2020-02-101-2/+3
|/
* Fix typogingerBill2020-01-051-1/+1
* Improve minimum dependency for complex numbers and quaternion numbers.gingerBill2020-01-041-9/+1
* Move definition of mem.Allocator and log.Logger to `package runtime`, to redu...gingerBill2019-12-311-43/+59
* Add `_tls_index` and `_fltused` for windows `-no-crt`gingerBill2019-12-291-1/+2
* Add `-disable-assert` to disable the code generation of the built-in run-time...gingerBill2019-12-291-0/+11
* Add `@(private="file")` and `@(private="package")`gingerBill2019-12-291-14/+47
* Enumerated arrays `[Enum_Type]Elem_Type`gingerBill2019-12-271-49/+66