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
/
core
/
runtime
Commit message (
Expand
)
Author
Age
Files
Lines
*
Improve logic for diverging procedures by checking if it terminates
gingerBill
2021-06-16
1
-4
/
+4
*
Change uses for parapoly records to use `$` always
gingerBill
2021-06-14
1
-1
/
+1
*
More minor stylization changes (remove unneeded parentheses)
gingerBill
2021-06-14
2
-8
/
+8
*
Correct minimum dependency for `complex32`
gingerBill
2021-06-08
1
-0
/
+6
*
Aid code generation on non-release builds
gingerBill
2021-06-08
1
-6
/
+5
*
Reorganize code to improve code generation
gingerBill
2021-06-08
5
-118
/
+127
*
Remove `context.thread_id`
gingerBill
2021-06-08
5
-23
/
+0
*
Minor improvements to `-use-separate-modules`
gingerBill
2021-06-08
1
-1
/
+1
*
Replace `js_wasm32` with `freestanding_wasm32`
gingerBill
2021-06-08
3
-3
/
+1
*
Fix `-target:js_wasm32` for `core:runtime`
gingerBill
2021-06-08
5
-65
/
+87
*
Fix 128-bit integer to float cast by explicitly calling the procedure direct;...
gingerBill
2021-06-06
3
-84
/
+85
*
Fix #1004
gingerBill
2021-05-31
1
-6
/
+6
*
Update core:runtime to use the new intrinsics
gingerBill
2021-05-30
2
-20
/
+18
*
Use `intrinsics.mem_zero` in `runtime.mem_zero`
gingerBill
2021-05-24
1
-1
/
+1
*
Make `js` default to nil allocator for the time being
gingerBill
2021-05-23
2
-2
/
+2
*
Clean up organization of `package runtime`
gingerBill
2021-05-23
6
-81
/
+102
*
Add `intrinsics.mem_copy` and `intrinsics.mem_copy_non_overlapping`
gingerBill
2021-05-19
1
-20
/
+4
*
Add `intrinsics.sqrt` for floating-point values
gingerBill
2021-05-19
1
-11
/
+6
*
Unify `AstTernaryExpr` with `AstTernaryIfExpr`
gingerBill
2021-05-05
1
-1
/
+1
*
Allow `union`s to be comparable if all their variants are comparable
gingerBill
2021-05-03
1
-0
/
+3
*
Add "naked" calling convention (removes prologue and epilogue)
gingerBill
2021-04-28
1
-0
/
+1
*
Rename intrinsics to count_trailing_zeros and count_leading_zeros
gingerBill
2021-04-25
3
-4
/
+4
*
Replace many `foreign` llvm calls with intrinsics
gingerBill
2021-04-25
6
-100
/
+31
*
Remove `use_llvm_api` related checks and other related things
gingerBill
2021-04-25
1
-30
/
+10
*
Remove `intrinsics.x86_mmx` type
gingerBill
2021-04-22
2
-9
/
+4
*
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
gingerBill
2021-04-22
1
-3
/
+0
*
Fix #906
gingerBill
2021-04-20
1
-4
/
+2
*
Update builtin procedures to support the new allocator features (without brea...
gingerBill
2021-04-19
4
-46
/
+50
*
Improve the `Allocator` interface to support returning `Allocator_Error` to a...
gingerBill
2021-04-19
8
-73
/
+116
*
Fix `floattidf`
gingerBill
2021-04-14
2
-11
/
+11
*
Fix style issues; Use new attribute `@(cold)` where appropriate in the new sy...
gingerBill
2021-04-14
1
-92
/
+92
*
Add `__extendhfsf2` for macOS
gingerBill
2021-04-05
1
-0
/
+5
*
Implement `f16` functionality
gingerBill
2021-04-01
1
-0
/
+167
*
Fix byte swapping for endian specific types in `-llvm-api`
gingerBill
2021-03-27
1
-4
/
+13
*
Minor fixes
gingerBill
2021-03-18
1
-0
/
+1
*
Make trailing comma usage consistent
gingerBill
2021-03-13
2
-9
/
+8
*
Remove dead code
gingerBill
2021-03-06
1
-10
/
+0
*
Minimize the size of `runtime.Source_Code_Location` to use `i32` instead of `...
gingerBill
2021-03-05
2
-12
/
+12
*
Minimize unneeded casts
gingerBill
2021-03-03
5
-18
/
+18
*
Remove unneeded return value from `incl` and `excl`
gingerBill
2021-03-02
1
-12
/
+6
*
Add `make_soa` and `delete_soa`; Reorganize soa procedures into a separate file
gingerBill
2021-03-01
2
-207
/
+404
*
Replace `inline` uses in the rest of core with `#force_inline`
gingerBill
2021-02-23
1
-16
/
+16
*
Replace usage of `inline proc` with `#force_inline proc` in the core library
gingerBill
2021-02-23
4
-53
/
+53
*
Remove `#opaque` types
gingerBill
2021-02-23
2
-9
/
+0
*
Deprecate `inline for` in favour of `#unroll for`
gingerBill
2021-02-23
1
-1
/
+1
*
Remove `"pure"` and `"pure_none"` calling conventions
gingerBill
2021-02-23
1
-6
/
+4
*
Remove `bit_field` in type info, runtime, and general core library
gingerBill
2021-02-19
2
-23
/
+0
*
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
gingerBill
2021-02-19
1
-10
/
+11
*
Change `default_temp_allocator_proc` behaviour to use the `default_allocator`...
gingerBill
2021-02-09
1
-6
/
+1
*
Fix `delete_map`
gingerBill
2021-02-02
1
-1
/
+1
[next]