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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix typo
gingerBill
2021-09-08
1
-1
/
+1
*
Add a minimum alignment on *nix for the compiler in heap_allocator_proc
gingerBill
2021-09-08
1
-4
/
+14
*
Add some minor sanity checks to the compiler's `heap_allocator_proc` on Darwin
gingerBill
2021-09-08
2
-12
/
+23
*
Add calling convention `"system"` which is an alias for `"stdcall"` on Window...
gingerBill
2021-09-08
1
-0
/
+6
*
Remove `goto` in favour of multiple exits
gingerBill
2021-09-08
1
-2
/
+4
*
Fix #1120 code generation
gingerBill
2021-09-08
1
-5
/
+52
*
Fix code gen bug for slicing multi pointers
gingerBill
2021-09-08
1
-1
/
+4
*
Strip semicolons; Make `odin strip-semicolon` replace `..` with `..=` if used...
gingerBill
2021-09-06
3
-4
/
+35
*
Correct fix to `heap_allocator_proc` in compiler
gingerBill
2021-09-06
1
-11
/
+7
*
Merge pull request #1112 from odin-lang/optional-semicolons
gingerBill
2021-09-06
5
-203
/
+297
|
\
|
*
Merge branch 'master' into optional-semicolons
gingerBill
2021-09-06
2
-3
/
+29
|
|
\
|
*
|
Strip semicolon if followed by a `}` or `)` on the same line
gingerBill
2021-08-31
1
-0
/
+12
|
*
|
Remove debug message
gingerBill
2021-08-31
1
-1
/
+1
|
*
|
Correct parsing rules for `#assert` directives for semicolons
gingerBill
2021-08-31
3
-36
/
+18
|
*
|
Remove dead code and add debug messages
gingerBill
2021-08-31
2
-26
/
+19
|
*
|
Add semicolon stripping command: `odin strip-semicolon`, has the same paramet...
gingerBill
2021-08-31
3
-11
/
+145
|
*
|
Make `-insert-semicolon` the default now
gingerBill
2021-08-31
4
-156
/
+129
*
|
|
Minor fix to `heap_allocator_proc` in common_memory.cpp
gingerBill
2021-09-06
1
-4
/
+14
|
|
/
|
/
|
*
|
`intrinsics.alloca` now returns `[^]u8`
gingerBill
2021-09-06
1
-1
/
+1
*
|
Add `intrinsics.is_package_imported(<string>)`
gingerBill
2021-09-06
2
-2
/
+28
|
/
*
Merge pull request #1111 from Kelimion/libtommath
Jeroen van Rijn
2021-08-29
1
-19
/
+19
|
\
|
*
Slim down LibTomMath compile.
Jeroen van Rijn
2021-08-29
1
-19
/
+19
*
|
Add `intrinsics.syscall` (for Linux and Darwin only)
gingerBill
2021-08-29
3
-34
/
+209
|
/
*
`ERROR_BLOCK()` any usages of "Did you mean?" like behaviour whilst iterating...
gingerBill
2021-08-27
4
-7
/
+10
*
Correct did you mean logic and make thread-safe-er
gingerBill
2021-08-27
5
-21
/
+38
*
Disable local mutex for the time being.
gingerBill
2021-08-26
1
-1
/
+2
*
Use local mutex for each `AstFile.arena`
gingerBill
2021-08-26
3
-7
/
+19
*
Make `thread_join` be more correct
gingerBill
2021-08-26
1
-4
/
+5
*
Add mutex around `condition_broadcast`
gingerBill
2021-08-26
1
-0
/
+6
*
Wrap linux specific code for `internal_thread_proc`
gingerBill
2021-08-26
1
-2
/
+4
*
Add missing header
gingerBill
2021-08-26
1
-0
/
+4
*
Don't permit any signal delivery to threads on Linux
gingerBill
2021-08-26
1
-1
/
+6
*
Correct race condition and incorrect usage of `condition_signal` outside of a...
gingerBill
2021-08-26
5
-1
/
+10
*
Treat `Type_Tuple` closer to a `Type_Struct` in `lb_type`
gingerBill
2021-08-26
1
-0
/
+3
*
Don't use the thread pool if worker count is 0
gingerBill
2021-08-26
1
-1
/
+24
*
Simplify logic for `-thread-count:1`
gingerBill
2021-08-26
2
-20
/
+8
*
Unify thread pool logic across the rest of the compiler, using a global threa...
gingerBill
2021-08-26
9
-142
/
+189
*
Fix typo
gingerBill
2021-08-26
1
-2
/
+2
*
Improved `ThreadPool` implementation
gingerBill
2021-08-26
2
-61
/
+161
*
Remove unneeded +1 for `outstanding_task_count`
gingerBill
2021-08-26
1
-3
/
+0
*
Fix typo
gingerBill
2021-08-26
1
-1
/
+1
*
Correct `platform_virtual_memory_init` on Unix
gingerBill
2021-08-26
1
-12
/
+21
*
Implement virtual memory code for *nix and make generic
gingerBill
2021-08-26
1
-41
/
+59
*
Minor fixes
gingerBill
2021-08-26
3
-12
/
+6
*
Change the implementation of `Arena` to use virtual memory, and remove the ol...
gingerBill
2021-08-26
9
-1053
/
+424
*
Simplify logic for `parse_binary_expr`
gingerBill
2021-08-25
1
-16
/
+17
*
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
6
-28
/
+58
*
Fix bug in `check_is_terminating`
gingerBill
2021-08-23
1
-0
/
+3
*
Add extra message to assert
gingerBill
2021-08-23
1
-1
/
+2
[next]