index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
checker.hpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Begin work on support objc intrinsics
gingerBill
2022-02-08
1
-1
/
+14
*
Begin work to move entry point code to Odin itself rather than in C++ side
gingerBill
2022-01-12
1
-0
/
+3
*
Disable `DEFAULT_TO_THREADED_CHECKER` until race condition is found
gingerBill
2022-01-11
1
-1
/
+1
*
Remove `scope` field from `Ast`
gingerBill
2021-11-14
1
-1
/
+0
*
Remove `map.cpp` code
gingerBill
2021-11-05
1
-7
/
+0
*
Increase usage of `PtrMap`
gingerBill
2021-11-05
1
-2
/
+2
*
Correct `map_remove(PtrMap)`
gingerBill
2021-11-05
1
-1
/
+1
*
Add `PtrMap`, begin working change `Map` to `PtrMap` where possible
gingerBill
2021-11-05
1
-1
/
+1
*
`@(linkage=<string>)` for procedures and variables; `@(require)` for procedur...
gingerBill
2021-11-04
1
-0
/
+1
*
Add @(init) attribute for procedures, allowing for procedures to be called at...
gingerBill
2021-10-03
1
-8
/
+10
*
Move more of `gb.h`'s Synchronization code into common.cpp
gingerBill
2021-08-19
1
-2
/
+2
*
Add mutex to Scope lookups and insertions
gingerBill
2021-08-18
1
-0
/
+1
*
Add mutex for `add_type_and_value`
gingerBill
2021-08-17
1
-0
/
+2
*
Fix race condition when adding a dependency
gingerBill
2021-08-16
1
-1
/
+2
*
Add `@(warning=<string>)`
gingerBill
2021-08-02
1
-0
/
+1
*
Add mutex for `@(builtin)` attributes
gingerBill
2021-07-28
1
-0
/
+1
*
Correct race condition on untyped expr info map logic on global evaluations
gingerBill
2021-07-27
1
-2
/
+5
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
1
-3
/
+3
*
Remove global semaphore and place in CheckerInfo
gingerBill
2021-07-27
1
-0
/
+2
*
Remove dead mutex
gingerBill
2021-07-27
1
-2
/
+0
*
Big simplification and improvement of the entity collection system, reducing ...
gingerBill
2021-07-27
1
-2
/
+2
*
INTERNAL USE ONLY: `//+lazy` build flag
gingerBill
2021-07-25
1
-0
/
+2
*
Remove dead code
gingerBill
2021-07-15
1
-1
/
+4
*
Remove need for scope mutex, make Scope singly linked list tree with atomic p...
gingerBill
2021-07-14
1
-6
/
+2
*
Override libtommath allocation procedures
gingerBill
2021-07-14
1
-11
/
+12
*
Replace non-recursive mutexes with `BlockingMutex`; Minor improves to initial...
gingerBill
2021-07-14
1
-8
/
+11
*
Remove dead mutexes
gingerBill
2021-07-13
1
-3
/
+0
*
Reduce mutex usage and convert things to queues from arrays
gingerBill
2021-07-13
1
-16
/
+23
*
Big improvement to the `-threaded-checker` code, unifying the logic and simpl...
gingerBill
2021-07-13
1
-1
/
+4
*
Temporarily disable `-threaded-checker`; Restructure the untyped-expr-info sy...
gingerBill
2021-07-13
1
-7
/
+20
*
`enum Addressing_Mode : u8;`
gingerBill
2021-07-12
1
-2
/
+2
*
Add experimental support for a threaded semantic checker to `-threaded-checker`
gingerBill
2021-07-10
1
-1
/
+2
*
Move things around for sanity checking for multithread preparation
gingerBill
2021-07-10
1
-12
/
+17
*
Implement `MPMCQueue` for procedure body checking
gingerBill
2021-07-10
1
-3
/
+2
*
Prepare for multithreading the semantic checker by giving mutexes to variable...
gingerBill
2021-07-10
1
-2
/
+10
*
Improve CheckerContext usage
gingerBill
2021-07-10
1
-19
/
+22
*
Remove dead variable
gingerBill
2021-07-10
1
-2
/
+0
*
Fix #1011 by unifying the logic
gingerBill
2021-06-08
1
-0
/
+1
*
Add `@(link_section=<string>)` for global variables
gingerBill
2021-05-24
1
-0
/
+1
*
Remove old dead code
gingerBill
2021-05-15
1
-1
/
+0
*
Remove unused hint
gingerBill
2021-05-06
1
-1
/
+0
*
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
gingerBill
2021-04-22
1
-0
/
+1
*
Add `optimization_mode` attribute for procedures
gingerBill
2021-04-22
1
-0
/
+1
*
Remove temporary reference types
gingerBill
2021-04-19
1
-2
/
+2
*
Fix `override_entity_in_scope `behaviour to correctly to report the changes u...
gingerBill
2021-04-19
1
-0
/
+4
*
Add `@(cold)` attribute to procedure declarations
gingerBill
2021-04-14
1
-0
/
+1
*
Change from `test_*` prefix to `@(test)` attribute for `odin test`
gingerBill
2021-03-14
1
-0
/
+1
*
Add `flags: Type_Info_Flags,` to `runtime.Type_Info`
gingerBill
2020-11-23
1
-0
/
+4
*
Begin rudimentary work on implementing `odin test` tooling with `*_test.odin`...
gingerBill
2020-11-17
1
-0
/
+2
*
Improve flags for `odin doc`
gingerBill
2020-11-17
1
-0
/
+3
[prev]
[next]