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
*
`opaque` keyword and type
gingerBill
2018-11-11
1
-0
/
+6
*
Fix package usage with `when` on `import` #278
gingerBill
2018-11-07
1
-8
/
+12
*
Fix CompositeType for zero length arrays
gingerBill
2018-10-29
1
-0
/
+3
*
Fix atomic.odin
gingerBill
2018-10-20
1
-2
/
+1
*
Move atomic intrinsics to the new built-in package intrinsics
gingerBill
2018-10-20
1
-11
/
+26
*
__atomic_* "intrinsics" using LLVM instructions
gingerBill
2018-10-17
1
-2
/
+3
*
Remove AstTypeType
gingerBill
2018-10-13
1
-2
/
+1
*
context.allocator = a; Remove __ from runtime procs; improve division for com...
gingerBill
2018-09-15
1
-0
/
+3
*
Disallow `inline` for recursive procedures
gingerBill
2018-09-09
1
-1
/
+13
*
`typeid` as keyword (ready to implement polymorphic name parameters)
gingerBill
2018-09-02
1
-1
/
+59
*
Remove test code
gingerBill
2018-08-30
1
-1
/
+1
*
Change memory layout of `map` to be 3 words smaller
gingerBill
2018-08-30
1
-5
/
+8
*
Add `default_assertion_failure_proc` to the minimum dependency build
gingerBill
2018-08-29
1
-0
/
+1
*
Temporary allocator for `context`
gingerBill
2018-08-29
1
-0
/
+1
*
Fix file scope #assert
gingerBill
2018-08-24
1
-4
/
+7
*
Add underlying type for `bit_set`
gingerBill
2018-08-17
1
-1
/
+1
*
Fix defer ir bug
gingerBill
2018-08-15
1
-1
/
+1
*
Add `bit_set` type
gingerBill
2018-08-14
1
-0
/
+6
*
`-no-crt` flag for windows amd64
gingerBill
2018-08-13
1
-0
/
+13
*
foreign import x {"foo.lib", "bar.lib"}
gingerBill
2018-07-29
1
-19
/
+21
*
Do `using Foo :: enum` at the `type_decl` stage
gingerBill
2018-07-29
1
-1
/
+1
*
using Foo :: enum {A, B, C}; len(Foo)
gingerBill
2018-07-29
1
-0
/
+8
*
Fix `when` statements within a `foreign` block
gingerBill
2018-07-07
1
-1
/
+0
*
Scope to use flags rathers than booleans
gingerBill
2018-06-17
1
-38
/
+36
*
Minor cleanup for builtin scope/pkg
gingerBill
2018-06-17
1
-40
/
+37
*
Clean up import lookup code
gingerBill
2018-06-17
1
-11
/
+2
*
Allow importation of `core:builtin` to get built-in entities
gingerBill
2018-06-17
1
-62
/
+46
*
Move TypeAndValue to Ast from Map
gingerBill
2018-06-17
1
-22
/
+18
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-125
/
+125
*
Minimize AstNode size
gingerBill
2018-06-17
1
-17
/
+18
*
Fix cyclic polymorphic procedure usage and improve its error message
gingerBill
2018-06-15
1
-6
/
+39
*
Allow `.allocator` for dynamic arrays; Add `mem.Pool`
gingerBill
2018-06-12
1
-2
/
+2
*
Fix min dependency check
gingerBill
2018-06-11
1
-7
/
+5
*
Allow for base enum type with an enum declaration
gingerBill
2018-06-11
1
-3
/
+0
*
Remove `using in` stuff
gingerBill
2018-06-11
1
-61
/
+27
*
Use global arena for AstNode allocations
gingerBill
2018-06-09
1
-2
/
+2
*
Entity aliasing clean up
gingerBill
2018-06-09
1
-20
/
+19
*
Remove dead code
gingerBill
2018-06-07
1
-3
/
+5
*
Fix min type info for polymorphic procedures and named types
gingerBill
2018-06-03
1
-5
/
+5
*
Fix minor possible issue
gingerBill
2018-06-03
1
-1
/
+1
*
Rename os.default_allocator to os.heap_allocator
gingerBill
2018-06-03
1
-1
/
+1
*
Remove special shared scope for runtime stuff
gingerBill
2018-06-03
1
-55
/
+106
*
Split up `init_preload` into specific parts
gingerBill
2018-06-03
1
-112
/
+98
*
Remove need for __llvm_core
gingerBill
2018-06-03
1
-6
/
+3
*
Use const & for Array<AstNode *> parameters
gingerBill
2018-06-03
1
-8
/
+7
*
Re-allow `when` statements at the file scope
gingerBill
2018-06-02
1
-20
/
+238
*
Remove dead code from checker
gingerBill
2018-06-02
1
-192
/
+84
*
Comment based build tags for packages (basic and temporary)
gingerBill
2018-05-28
1
-7
/
+7
*
Remove clutter parameters and begin parallelizing the type checker
gingerBill
2018-05-28
1
-49
/
+143
*
Refactor: use CheckerContext rather than Checker in type checking part
gingerBill
2018-05-28
1
-146
/
+164
[next]