aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #915 from wilsonk/issue-820gingerBill2021-04-261-1/+21
|\
| * Fix for issue 820 (import name is not an identifier)Kelly Wilson2021-04-251-1/+21
* | Move `check_builtin_procedure` to check_builtin.cppgingerBill2021-04-231-0/+1
|/
* Add intrinsics: overflow_add, overflow_sub, overflow_mul; Change byte swap be...gingerBill2021-04-221-9/+17
* Remove `intrinsics.x86_mmx` typegingerBill2021-04-221-9/+0
* Add `optimization_mode` attribute for proceduresgingerBill2021-04-221-0/+23
* Fix `override_entity_in_scope `behaviour to correctly to report the changes u...gingerBill2021-04-191-2/+0
* Add `@(cold)` attribute to procedure declarationsgingerBill2021-04-141-0/+12
* Add `runtime.extendhfsf2` to dependency listgingerBill2021-04-051-0/+1
* Fix missing complex32/quaternion64 checksgingerBill2021-04-011-1/+3
* Implement `f16` functionalitygingerBill2021-04-011-0/+5
* Make `check_single_global_entity` use `create_checker_context`gingerBill2021-03-151-6/+11
* Change from `test_*` prefix to `@(test)` attribute for `odin test`gingerBill2021-03-141-11/+10
* `odin test` to work with the new `core:testing` packagegingerBill2021-03-141-2/+39
* Fix nullref access violation when building with no entry pointJose Luis Rey Mendez2021-03-061-1/+1
* Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...gingerBill2021-03-041-14/+14
* Fix crash when a forced dependency doesn't existgingerBill2021-02-271-6/+4
* HACK check_unchecked_bodies further!gingerBill2021-02-261-1/+8
* Fix patch (yeah... I know)gingerBill2021-02-261-17/+21
* Patch issue with minimum dependency system and how it interacts with para pol...gingerBill2021-02-261-4/+45
* Remove `#opaque` typesgingerBill2021-02-231-10/+0
* Remove `bit_field` keyword and parsing logicgingerBill2021-02-231-1/+0
* Remove `bit_field` in type info, runtime, and general core librarygingerBill2021-02-191-2/+0
* Remove `bit_field` type from Odin (keyword and dead runtime code still exists)gingerBill2021-02-191-16/+0
* Fix #831gingerBill2021-01-271-2/+5
* Fix #825gingerBill2021-01-171-2/+4
* Allow nested procedures to access `@(static)` and `@(thread_local)` variablesgingerBill2020-12-041-3/+8
* Add `intrinsics.type_hasher_proc`; Make `map` work with generic hasher proceduregingerBill2020-11-291-2/+6
* Add intrinsics.type_equal_proc; Make `map` use an internal equal procedure to...gingerBill2020-11-291-0/+8
* map type internal reorganizationgingerBill2020-11-231-4/+4
* Add `flags: Type_Info_Flags,` to `runtime.Type_Info`gingerBill2020-11-231-2/+3
* Add comparisons to structs where all fields are comparable `==` and `!=`gingerBill2020-11-231-0/+1
* Add `ODIN_TEST` constant for checking if `odin test` is being rungingerBill2020-11-211-0/+1
* Improve `system_exec_command_line_app` functionality; Restrict `test_*` proce...gingerBill2020-11-171-4/+6
* Begin rudimentary work on implementing `odin test` tooling with `*_test.odin`...gingerBill2020-11-171-2/+48
* Improve flags for `odin doc`gingerBill2020-11-171-0/+4
* Basic `odin doc` supportgingerBill2020-11-171-1/+3
* 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