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.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Correct error message for `add_import_dependency_node`
gingerBill
2021-08-08
1
-6
/
+2
*
Reorganize stages in checker
gingerBill
2021-08-03
1
-3
/
+3
*
Reorganize some of the checker stages
gingerBill
2021-08-03
1
-15
/
+18
*
Sort files by name in packages
gingerBill
2021-08-02
1
-0
/
+10
*
Add sanity checks to checker
dev-2021-08
gingerBill
2021-08-02
1
-12
/
+21
*
Add `@(warning=<string>)`
gingerBill
2021-08-02
1
-0
/
+18
*
Remove the literal conversion logic to the parser from the tokenizer
gingerBill
2021-08-02
1
-3
/
+6
*
Begin optimizing tokenizer; Replace `gb_utf8_decode` with `utf8_decode` (CC b...
gingerBill
2021-08-01
1
-1
/
+1
*
Add mutex for `@(builtin)` attributes
gingerBill
2021-07-28
1
-14
/
+20
*
Add accidentally removed call
gingerBill
2021-07-27
1
-0
/
+3
*
Correct race condition on untyped expr info map logic on global evaluations
gingerBill
2021-07-27
1
-24
/
+62
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
1
-6
/
+6
*
Short circuit `check_with_workers` logic on `worker_count == 0`
gingerBill
2021-07-27
1
-2
/
+13
*
Unify threading logic
gingerBill
2021-07-27
1
-130
/
+45
*
Remove global semaphore and place in CheckerInfo
gingerBill
2021-07-27
1
-12
/
+72
*
Remove dead mutex
gingerBill
2021-07-27
1
-2
/
+0
*
Correct logic for `check_import_entities - collect file decls`
gingerBill
2021-07-27
1
-18
/
+32
*
Big simplification and improvement of the entity collection system, reducing ...
gingerBill
2021-07-27
1
-165
/
+148
*
Improve default scope size
gingerBill
2021-07-27
1
-5
/
+22
*
Minor fix
gingerBill
2021-07-25
1
-3
/
+3
*
INTERNAL USE ONLY: `//+lazy` build flag
gingerBill
2021-07-25
1
-5
/
+97
*
Remove dead code
gingerBill
2021-07-15
1
-15
/
+1
*
Remove need for scope mutex, make Scope singly linked list tree with atomic p...
gingerBill
2021-07-14
1
-12
/
+7
*
Override libtommath allocation procedures
gingerBill
2021-07-14
1
-6
/
+6
*
Remove random load balancing in `thread_proc_body`
gingerBill
2021-07-14
1
-5
/
+6
*
Add Greed Work Stealing and Random Load Balancing for check_procedure_bodies
gingerBill
2021-07-14
1
-9
/
+35
*
Muilthread `check_collect_entities_all`
gingerBill
2021-07-14
1
-2
/
+72
*
Remove duplicate code
gingerBill
2021-07-14
1
-13
/
+0
*
Replace non-recursive mutexes with `BlockingMutex`; Minor improves to initial...
gingerBill
2021-07-14
1
-61
/
+99
*
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
-82
/
+104
*
Minor code clean up to reuse the ProcInfo consumption code
gingerBill
2021-07-13
1
-33
/
+36
*
Add (internal flag) -show-debug-messages
gingerBill
2021-07-13
1
-4
/
+6
*
Minor code reorganization
gingerBill
2021-07-13
1
-165
/
+168
*
Split up cycle check and adding type info timings
gingerBill
2021-07-13
1
-6
/
+11
*
Short on `-threaded-checker`
gingerBill
2021-07-13
1
-1
/
+27
*
Big improvement to the `-threaded-checker` code, unifying the logic and simpl...
gingerBill
2021-07-13
1
-41
/
+101
*
Temporarily disable `-threaded-checker`; Restructure the untyped-expr-info sy...
gingerBill
2021-07-13
1
-116
/
+80
*
Add experimental support for a threaded semantic checker to `-threaded-checker`
gingerBill
2021-07-10
1
-44
/
+127
*
Move things around for sanity checking for multithread preparation
gingerBill
2021-07-10
1
-12
/
+29
*
Implement `MPMCQueue` for procedure body checking
gingerBill
2021-07-10
1
-24
/
+13
*
Remove debug code
gingerBill
2021-07-10
1
-1
/
+1
*
Prepare for multithreading the semantic checker by giving mutexes to variable...
gingerBill
2021-07-10
1
-34
/
+97
*
Improve CheckerContext usage
gingerBill
2021-07-10
1
-61
/
+79
*
Remove dead variable
gingerBill
2021-07-10
1
-4
/
+0
*
Improve update expr type semantics for ternary expressions
gingerBill
2021-07-10
1
-0
/
+7
*
Fix #1019
gingerBill
2021-06-15
1
-0
/
+1
*
Correct `is_operand_value` for Swizzle addressing modes
gingerBill
2021-06-08
1
-0
/
+2
*
Add warning to variables which may overflow the stack on declaration; #Fix 661
gingerBill
2021-06-06
1
-16
/
+25
*
Fix 128-bit integer to float cast by explicitly calling the procedure direct;...
gingerBill
2021-06-06
1
-0
/
+1
[next]