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
...
*
Refactor: use CheckerContext rather than Checker in type checking part
gingerBill
2018-05-28
1
-146
/
+164
*
Remove `tmp_allocator` from `Checker`
gingerBill
2018-05-28
1
-35
/
+14
*
Parallelize per file rather than per package
gingerBill
2018-05-28
1
-22
/
+32
*
Remove unused packages
gingerBill
2018-05-27
1
-14
/
+30
*
Clean up name mangling by using unique package names per project
gingerBill
2018-05-27
1
-11
/
+12
*
Reorganize `runtime` package
gingerBill
2018-05-27
1
-36
/
+58
*
Fix delayed assert collection
gingerBill
2018-05-27
1
-24
/
+11
*
Remove dead code
gingerBill
2018-05-27
1
-68
/
+30
*
Single file "main" file
gingerBill
2018-05-27
1
-4
/
+4
*
Allow for either .odin file or directory as the initial start
gingerBill
2018-05-27
1
-2
/
+2
*
Move ODIN_* platform constants to `core:os`
gingerBill
2018-05-27
1
-16
/
+22
*
IR now builds with the new package system
gingerBill
2018-05-27
1
-0
/
+4
*
Add file scopes for the packages
gingerBill
2018-05-27
1
-132
/
+113
*
Add basic package support (no IR support yet)
gingerBill
2018-05-26
1
-510
/
+245
*
Fix issues with exact integer bounds and remove dead code
gingerBill
2018-05-13
1
-0
/
+1
*
Add `typeid` to `Type_Info` struct
gingerBill
2018-05-13
1
-2
/
+2
*
Fix default initialized values for globals (#217)
gingerBill
2018-05-12
1
-1
/
+0
*
`typeid`
gingerBill
2018-05-12
1
-0
/
+4
*
Minimal Type Info Dependency handling
gingerBill
2018-05-12
1
-32
/
+173
*
Complete remove all non required preload stuff from min dep and only use what...
gingerBill
2018-05-12
1
-10
/
+18
*
Improve minimal dependency system
gingerBill
2018-05-12
1
-5
/
+33
*
Move cycle checking to much earlier on in the semantic stage
gingerBill
2018-03-23
1
-36
/
+68
*
Remove allocator parameter to `types.cpp` functions
gingerBill
2018-03-23
1
-35
/
+35
*
Merge branch 'master' of https://github.com/odin-lang/Odin
gingerBill
2018-03-23
1
-5
/
+6
|
\
|
*
fix compile warnings on linux
Nakst
2018-03-10
1
-5
/
+6
*
|
Fix type cycle bug
gingerBill
2018-03-23
1
-0
/
+1
|
/
*
Add `unselector_expr`
gingerBill
2018-03-04
1
-7
/
+4
*
Remove dead code; fix referencing of a type assertion in a selector expression
gingerBill
2018-03-04
1
-3
/
+1
*
Fix `using` determination order
gingerBill
2018-03-03
1
-1
/
+1
*
`deprecated` attribute for procedure declarations
gingerBill
2018-03-03
1
-0
/
+41
*
More code tidying with `Array`
gingerBill
2018-02-25
1
-3
/
+2
*
`array_make`
gingerBill
2018-02-25
1
-9
/
+6
*
Replace `compile_assert` with `#assert`
gingerBill
2018-02-24
1
-0
/
+12
*
Fix issue #192
gingerBill
2018-02-22
1
-10
/
+12
*
Fix `enum #export` does not work with `export` #185
gingerBill
2018-02-13
1
-0
/
+9
*
Fix zero value initialization in IR
gingerBill
2018-02-11
1
-4
/
+4
*
Improve min-dep for Type Info
gingerBill
2018-01-28
1
-17
/
+22
*
Add ODIN_DEBUG
gingerBill
2018-01-28
1
-0
/
+1
*
Fix minimum dependency generation for foreign entities
gingerBill
2018-01-28
1
-15
/
+25
*
Cache type size/align; Improve speed of ir_print.cpp
gingerBill
2018-01-20
1
-1
/
+1
*
Named return value act as variables; Code reorganization
gingerBill
2018-01-17
1
-376
/
+4
*
Remove `u128` and `i128`
gingerBill
2018-01-13
1
-1
/
+0
*
Fix Type info bug for 'llvm bool'
gingerBill
2017-12-23
1
-0
/
+3
*
"Fix" LLVM boolean bug (more like a bodge)
gingerBill
2017-12-22
1
-1
/
+1
*
Remove `struct #ordered`
gingerBill
2017-12-17
1
-1
/
+4
*
using x in bar;
gingerBill
2017-12-17
1
-2
/
+1
*
`using in` importation statements
gingerBill
2017-12-17
1
-32
/
+88
*
Change Map and PtrSet grow rate
gingerBill
2017-12-12
1
-36
/
+52
*
Merge branch 'checker-optimizations' into explicit-overloading
gingerBill
2017-12-12
1
-94
/
+69
|
\
|
*
Localize checker data
gingerBill
2017-12-12
1
-94
/
+69
[prev]
[next]