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
*
Add `-disable-assert` to disable the code generation of the built-in run-time...
gingerBill
2019-12-29
1
-0
/
+2
*
Add `@(private="file")` and `@(private="package")`
gingerBill
2019-12-29
1
-2
/
+8
*
Fix Internal Compiler Error: Type_Info for 'XXX' could not be found #507
gingerBill
2019-12-22
1
-1
/
+1
*
Also allow #no_bounds_check on an expression #499
gingerBill
2019-12-15
1
-1
/
+1
*
Add `@force` to `foreign import`
gingerBill
2019-11-01
1
-0
/
+3
*
Fix procedure group "best fit" algorithm for polymorphic procedures
gingerBill
2019-10-27
1
-0
/
+1
*
`#panic`; Minor change to demo.odin; Fix `#assert` bug at file scope
gingerBill
2019-10-13
1
-0
/
+1
*
Make `require_results` an attribute rather than a suffix tag for procedures
gingerBill
2019-08-31
1
-0
/
+1
*
`inline for` loops (only for 'in' based for loops)
gingerBill
2019-08-26
1
-0
/
+3
*
`intrinsics.type_*` constant evaluation procedures
gingerBill
2019-08-04
1
-212
/
+2
*
-go-to-definitions (OGTD file format)
gingerBill
2019-05-26
1
-0
/
+5
*
`@(private)` for `foreign` blocks; Improve foreign signature similarity rules
gingerBill
2019-03-24
1
-0
/
+1
*
Make `static` an attribute rather than a keyword prefix
gingerBill
2019-02-23
1
-0
/
+1
*
Replace `foreign export {}` with `@export`
gingerBill
2019-02-23
1
-1
/
+1
*
`intrinsics.vector` type (Experimental)
gingerBill
2019-02-23
1
-0
/
+5
*
Replace `deferred` with `deferred_none`, `deferred_in`, `deferred_out`
gingerBill
2019-01-13
1
-1
/
+12
*
min & max for types
gingerBill
2018-12-27
1
-2
/
+2
*
`deferred` procedure attribute
gingerBill
2018-12-14
1
-0
/
+1
*
Reorganize decl attribute code
gingerBill
2018-12-04
1
-1
/
+2
*
`-vet` flag to do basic vetting of code
gingerBill
2018-11-25
1
-1
/
+0
*
Fix package usage with `when` on `import` #278
gingerBill
2018-11-07
1
-2
/
+0
*
Fix atomic.odin
gingerBill
2018-10-20
1
-1
/
+1
*
Move atomic intrinsics to the new built-in package intrinsics
gingerBill
2018-10-20
1
-94
/
+100
*
__atomic_* "intrinsics" using LLVM instructions
gingerBill
2018-10-17
1
-1
/
+148
*
Change memory layout of `map` to be 3 words smaller
gingerBill
2018-08-30
1
-0
/
+1
*
Allow for variadic `min` `max` procs
gingerBill
2018-08-25
1
-2
/
+2
*
`make` as a user-level procedure rather than a built-in procedure
gingerBill
2018-08-08
1
-24
/
+0
*
Do `using Foo :: enum` at the `type_decl` stage
gingerBill
2018-07-29
1
-1
/
+1
*
Minor style change
gingerBill
2018-06-17
1
-1
/
+2
*
Scope to use flags rathers than booleans
gingerBill
2018-06-17
1
-18
/
+24
*
Minor cleanup for builtin scope/pkg
gingerBill
2018-06-17
1
-2
/
+9
*
Clean up import lookup code
gingerBill
2018-06-17
1
-2
/
+0
*
Allow importation of `core:builtin` to get built-in entities
gingerBill
2018-06-17
1
-9
/
+9
*
Move TypeAndValue to Ast from Map
gingerBill
2018-06-17
1
-27
/
+8
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-40
/
+40
*
Minimize AstNode size
gingerBill
2018-06-17
1
-2
/
+1
*
Fix cyclic polymorphic procedure usage and improve its error message
gingerBill
2018-06-15
1
-10
/
+20
*
Allow for base enum type with an enum declaration
gingerBill
2018-06-11
1
-0
/
+1
*
Entity aliasing clean up
gingerBill
2018-06-09
1
-4
/
+4
*
Remove special shared scope for runtime stuff
gingerBill
2018-06-03
1
-20
/
+22
*
Split up `init_preload` into specific parts
gingerBill
2018-06-03
1
-3
/
+2
*
Re-allow `when` statements at the file scope
gingerBill
2018-06-02
1
-2
/
+5
*
Remove dead code from checker
gingerBill
2018-06-02
1
-43
/
+31
*
Remove clutter parameters and begin parallelizing the type checker
gingerBill
2018-05-28
1
-4
/
+8
*
Refactor: use CheckerContext rather than Checker in type checking part
gingerBill
2018-05-28
1
-17
/
+21
*
Remove `tmp_allocator` from `Checker`
gingerBill
2018-05-28
1
-8
/
+7
*
Parallelize per file rather than per package
gingerBill
2018-05-28
1
-2
/
+1
*
Clean up name mangling by using unique package names per project
gingerBill
2018-05-27
1
-1
/
+2
*
Reorganize `runtime` package
gingerBill
2018-05-27
1
-11
/
+11
*
Move ODIN_* platform constants to `core:os`
gingerBill
2018-05-27
1
-1
/
+1
[next]