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
/
check_expr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Support indexing matrices
gingerBill
2021-10-19
1
-3
/
+63
*
|
Change syntax for matrices to `matrix[R, C]T`
gingerBill
2021-10-19
1
-3
/
+3
*
|
Basic support for matrix*vector, vector*matrix operations
gingerBill
2021-10-19
1
-11
/
+19
*
|
Very basic matrix support in backend
gingerBill
2021-10-18
1
-3
/
+150
*
|
Begin work on matrix type
gingerBill
2021-10-18
1
-3
/
+49
|
/
*
Fix typo
gingerBill
2021-10-09
1
-1
/
+1
*
Disallow `or_return` within `defer`
gingerBill
2021-10-09
1
-0
/
+4
*
Minor code cleanup for backend; add `struct_fields_index_by_increasing_offset...
gingerBill
2021-10-02
1
-2
/
+2
*
Move redundant `auto_cast` error from `-vet` to `-vet-extra`
gingerBill
2021-09-28
1
-3
/
+2
*
Add `#load_or(path_string, default_byte_slice)`
gingerBill
2021-09-23
1
-3
/
+12
*
Simplify directive parsing for expressions
gingerBill
2021-09-23
1
-2
/
+25
*
Replace many uses of `heap_allocator()` with `permanent_allocator()`
gingerBill
2021-09-13
1
-1
/
+1
*
Begin minimize `Type` size by replacing `Array` with `Slice` etc
gingerBill
2021-09-13
1
-12
/
+24
*
`ERROR_BLOCK()` any usages of "Did you mean?" like behaviour whilst iterating...
gingerBill
2021-08-27
1
-6
/
+4
*
Correct did you mean logic and make thread-safe-er
gingerBill
2021-08-27
1
-0
/
+8
*
Remove debug message
gingerBill
2021-08-24
1
-7
/
+0
*
Correct procedure checking flag handling, and correct the (bodge) handle of u...
gingerBill
2021-08-23
1
-16
/
+15
*
Add suggestions when trying to take the address the a value from a `for`/`swi...
gingerBill
2021-08-23
1
-1
/
+11
*
Correct Multi Pointer Type handling in expressions
gingerBill
2021-08-22
1
-0
/
+6
*
Fix multi pointers for parapoly
gingerBill
2021-08-21
1
-2
/
+12
*
Add multi-pointer types `[^]T`
gingerBill
2021-08-21
1
-15
/
+67
*
Improve error message for `Cannot assign value` if they have the same name bu...
gingerBill
2021-08-21
1
-6
/
+61
*
Remove unused code
gingerBill
2021-08-19
1
-18
/
+2
*
Make flags atomic for `Entity` and `Type`
gingerBill
2021-08-16
1
-1
/
+1
*
Fix race condition when adding a dependency
gingerBill
2021-08-16
1
-3
/
+6
*
Correct `or_return` logic for debug printing and expression is not used checking
gingerBill
2021-08-16
1
-0
/
+15
*
Make `or_else` and `or_return` operators (binary and suffix respectively)
gingerBill
2021-08-15
1
-0
/
+136
*
Remove some dead code
gingerBill
2021-08-15
1
-15
/
+2
*
Add `#any_int` directive to replace `auto_cast` uses on parameters.
gingerBill
2021-08-15
1
-0
/
+10
*
Fix #1077
gingerBill
2021-08-13
1
-0
/
+7
*
Fix #1076
gingerBill
2021-08-13
1
-2
/
+13
*
Fix #1061
gingerBill
2021-08-09
1
-1
/
+20
*
Correct and improve type inference for swizzling expressions
gingerBill
2021-08-09
1
-12
/
+23
*
Remove dead comments
gingerBill
2021-08-04
1
-6
/
+1
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
1
-2
/
+2
*
Remove dead mutexes
gingerBill
2021-07-13
1
-12
/
+0
*
Reduce mutex usage and convert things to queues from arrays
gingerBill
2021-07-13
1
-13
/
+5
*
Big improvement to the `-threaded-checker` code, unifying the logic and simpl...
gingerBill
2021-07-13
1
-2
/
+2
*
Temporarily disable `-threaded-checker`; Restructure the untyped-expr-info sy...
gingerBill
2021-07-13
1
-45
/
+51
*
Add sanity casts for 32/64 bit correctness
gingerBill
2021-07-12
1
-1
/
+1
*
Clean up big int to LLVM integer code
gingerBill
2021-07-11
1
-1
/
+1
*
Change the compiler's big integer library to use libTomMath
gingerBill
2021-07-11
1
-13
/
+7
*
Add sanity conversion check for integer to quaternion
gingerBill
2021-07-11
1
-21
/
+23
*
Minimize mutex usage in `update_expr_type`
gingerBill
2021-07-11
1
-20
/
+20
*
Add experimental support for a threaded semantic checker to `-threaded-checker`
gingerBill
2021-07-10
1
-30
/
+64
*
Move things around for sanity checking for multithread preparation
gingerBill
2021-07-10
1
-0
/
+1
*
Prepare for multithreading the semantic checker by giving mutexes to variable...
gingerBill
2021-07-10
1
-15
/
+24
*
Improve CheckerContext usage
gingerBill
2021-07-10
1
-11
/
+9
*
Fix #1028
gingerBill
2021-07-10
1
-2
/
+3
*
Fix #1051
gingerBill
2021-07-10
1
-1
/
+3
[prev]
[next]