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
*
Merge branch 'master' into new-temp-allocator
gingerBill
2023-02-28
1
-8
/
+49
|
\
|
*
Fix overriding procedure information for literals
gingerBill
2023-02-17
1
-2
/
+2
|
*
Implement `@(fini)` (opposite of `@(init)`)
gingerBill
2023-02-15
1
-6
/
+47
*
|
Warn on 'expand_to_tuple' has been replaced with 'expand_values'
gingerBill
2023-02-10
1
-0
/
+7
|
/
*
Fix crash when a variable declaration must be an identifier
gingerBill
2023-02-08
1
-4
/
+3
*
Rename to `Type_Info_Parameters`
gingerBill
2023-02-08
1
-2
/
+2
*
Fix `when` within `foreign` block (again)
gingerBill
2023-02-02
1
-13
/
+9
*
Fix `when` within `foreign` blocks at the file scope
gingerBill
2023-02-01
1
-0
/
+8
*
Add for C++ for loop uses
gingerBill
2023-01-30
1
-8
/
+5
*
Update `debugf` usage
gingerBill
2023-01-14
1
-5
/
+4
*
Bring `PtrMap` inline with `StringMap`
gingerBill
2023-01-14
1
-4
/
+4
*
Minimize `StringMap` structure usage
gingerBill
2023-01-14
1
-5
/
+5
*
Clean up use of `StringMap`
gingerBill
2023-01-13
1
-7
/
+4
*
Correct missing procedures in other build modules which cause a linkage problem
gingerBill
2023-01-12
1
-1
/
+1
*
Minimize contention on the deps for decls
gingerBill
2023-01-12
1
-0
/
+7
*
Minor clean up
gingerBill
2023-01-12
1
-3
/
+0
*
Replace all queues with MPSCQueue where possible
gingerBill
2023-01-12
1
-7
/
+7
*
Correct `mpsc_dequeue`
gingerBill
2023-01-12
1
-14
/
+16
*
Implement `MPSCQueue`
gingerBill
2023-01-12
1
-4
/
+4
*
Move check for type info above
gingerBill
2023-01-11
1
-4
/
+8
*
General optimizations
gingerBill
2023-01-11
1
-7
/
+8
*
Make `-threaded-checker` the default not (opt out with `-no-threaded-checker`)
gingerBill
2023-01-11
1
-1
/
+1
*
Add uncomment `add_type_info_type` calls for type assertions
gingerBill
2023-01-05
1
-33
/
+5
*
Fix min dep type info problem caused by const ref of `map_set`
gingerBill
2023-01-04
1
-1
/
+4
*
Localize `GenProcsData` to the entity itself
gingerBill
2023-01-04
1
-2
/
+2
*
Move walking of dependencies for procedures to just before calculating the mi...
gingerBill
2023-01-04
1
-11
/
+65
*
Improve the `PtrSet` to be as simple and small as possible
gingerBill
2023-01-04
1
-20
/
+13
*
Convert `minimum_dependency_type_info_set` to use a `PtrMap`
gingerBill
2023-01-03
1
-12
/
+7
*
Add `type_and_value_mutex` to `DeclInfo`
gingerBill
2023-01-03
1
-2
/
+6
*
Use `RwMutex` for `gen_procs`
gingerBill
2023-01-03
1
-6
/
+7
*
Use `RwMutex` for `DeclInfo` `deps
gingerBill
2023-01-03
1
-4
/
+4
*
Use `RwMutex` for the `Scope`
gingerBill
2023-01-03
1
-8
/
+13
*
Allow all set entry types to be implicitly cast to their key/value type to al...
gingerBill
2023-01-03
1
-25
/
+13
*
Make all maps use heap allocator implicitly
gingerBill
2023-01-03
1
-18
/
+15
*
Use heap_allocator for all hash set types
gingerBill
2023-01-03
1
-17
/
+7
*
Narrow global `gen_procs_mutex` further
gingerBill
2023-01-02
1
-0
/
+1
*
Code moving around
gingerBill
2023-01-02
1
-20
/
+27
*
Use a package local mutex for `add_type_and_value`
gingerBill
2023-01-02
1
-4
/
+9
*
Re enable `type_and_value_mutex`
gingerBill
2023-01-02
1
-2
/
+2
*
Comment out `type_and_value_mutex` usage
gingerBill
2023-01-02
1
-2
/
+2
*
Use `mutex_try_lock` in `check_proc_info`
gingerBill
2023-01-02
1
-1
/
+4
*
Narrow type info mutex usage
gingerBill
2023-01-02
1
-27
/
+26
*
Use local mutexes rather than a global one for the dependency insertion
gingerBill
2023-01-02
1
-24
/
+6
*
Remove some unneeded checks
gingerBill
2023-01-02
1
-2
/
+2
*
Correct a race condition when checking the procedure body
gingerBill
2023-01-02
1
-46
/
+178
*
Multithread checker
gingerBill
2023-01-02
1
-59
/
+5
*
Remove use of queues for procedure checking.
gingerBill
2023-01-02
1
-66
/
+42
*
Multi thread `check_export_entities`
gingerBill
2023-01-02
1
-102
/
+88
*
Remove `global_` prefix from `global_thread_pool_*` procedures
gingerBill
2023-01-02
1
-6
/
+6
*
Multithread `check_collect_entities_all` using new thread pool
gingerBill
2023-01-02
1
-23
/
+48
[next]