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
*
Correct `map_insert`
gingerBill
2022-11-14
1
-4
/
+1
*
Add @(require_results) to map procedures where possible
gingerBill
2022-11-13
1
-14
/
+36
*
Simplify the handling of the hashing calls for `map`s
gingerBill
2022-11-13
1
-74
/
+24
*
Correct `map_reserve_dynamic` caused by an bizarre code generation bug
gingerBill
2022-11-13
2
-14
/
+20
*
Correct json/unmarshal.odin
gingerBill
2022-11-11
1
-0
/
+6
*
Begin work on map static set
gingerBill
2022-11-11
1
-3
/
+1
*
Make `map` get internal calls take the hash value rather than compute it inte...
gingerBill
2022-11-11
1
-12
/
+9
*
Change `map_reserve_dynamic` no do anything when current capacity is greater ...
gingerBill
2022-11-11
2
-2
/
+4
*
Get deleted key and value for `delete_key`
gingerBill
2022-11-11
2
-5
/
+15
*
Correct static map get; make get take a pointer to simplify compiler internals
gingerBill
2022-11-10
1
-11
/
+10
*
Unify reserve and grow code
gingerBill
2022-11-10
1
-44
/
+3
*
Make `map_alloc_dynamic` handle the `nil_allocator()`
gingerBill
2022-11-10
1
-0
/
+4
*
Correct logic for `__dynamic_map_set`
gingerBill
2022-11-09
1
-20
/
+32
*
Swap hashes
gingerBill
2022-11-09
1
-6
/
+4
*
Rewrite `map_insert_hash_dynamic`
gingerBill
2022-11-09
1
-38
/
+28
*
Use `mem_resize` where possible
gingerBill
2022-11-09
1
-17
/
+3
*
Inline `__dynamic_map_set` code where possible
gingerBill
2022-11-08
1
-23
/
+17
*
Check for existence before setting
gingerBill
2022-11-08
1
-21
/
+8
*
Do an extra check before insertion for pre-existing keys
gingerBill
2022-11-08
1
-17
/
+32
*
Correct `map_insert_hash_dynamic` and `map_insert_dynamic`
gingerBill
2022-11-08
1
-88
/
+5
*
Fix bug with allocator not getting set on a `map`
gingerBill
2022-11-08
2
-42
/
+27
*
Make `map_free_dynamic` take the total size of the allocation
gingerBill
2022-11-08
2
-23
/
+30
*
Minor change to `map_cell_index_static`
gingerBill
2022-11-08
1
-9
/
+9
*
Allow for `-use-static-map-calls` which generates a get procedure per `map`; ...
gingerBill
2022-11-08
1
-9
/
+95
*
Change `__dynamic_map_get` signature
gingerBill
2022-11-08
1
-85
/
+88
*
Change `Raw_Map.len` to `int` from `uintptr`
gingerBill
2022-11-08
2
-3
/
+3
*
Add `intrinsics.map_cell_info` and `intrinsics.map_info`
gingerBill
2022-11-08
1
-15
/
+8
*
Make `Map_Info` store pointers to cell info rather than inline
gingerBill
2022-11-08
2
-57
/
+35
*
Add `runtime.map_exists_dynamic`
gingerBill
2022-11-08
1
-1
/
+24
*
Correct `reflect.map_entry_info_slice`
gingerBill
2022-11-08
1
-2
/
+1
*
Correct hashing for `map` types
gingerBill
2022-11-08
1
-86
/
+93
*
General modifications
gingerBill
2022-11-08
1
-22
/
+26
*
Basic fmt printing for `map`
gingerBill
2022-11-07
2
-12
/
+9
*
Basic get and set support for new `map`
gingerBill
2022-11-07
1
-28
/
+62
*
Begin work on implementing the new `map` internals
gingerBill
2022-11-07
3
-331
/
+708
*
Merge branch 'master' into allocator-mode-alloc-non-zeroed
gingerBill
2022-11-03
3
-33
/
+5
|
\
|
*
Make `raw_data` an intrinsic rather a `@(builtin)` runtime procedure
gingerBill
2022-10-30
1
-28
/
+0
|
*
Fix signature for `objc_allocateClassPair`
Julian Ceipek
2022-10-20
1
-1
/
+1
|
*
Use `uint` instead of `int` to improve code generation for bounds checking
gingerBill
2022-09-27
1
-3
/
+3
|
*
Fix typo in `map_insert`
gingerBill
2022-09-23
1
-1
/
+1
*
|
Add `Allocator_Mode.Alloc_Non_Zerored`
gingerBill
2022-09-22
6
-12
/
+20
|
/
*
Fix `map_insert`
gingerBill
2022-09-21
1
-3
/
+3
*
Remove header cache code
gingerBill
2022-09-21
1
-3
/
+0
*
Reduce unnecessary map gets
gingerBill
2022-09-21
2
-10
/
+21
*
Simplify `__get_map_header` stuff
gingerBill
2022-09-21
1
-11
/
+21
*
Split header table data and the map pointer
gingerBill
2022-09-21
1
-84
/
+90
*
Minor correction to `__get_map_header`
gingerBill
2022-09-17
1
-1
/
+1
*
General clean up minor with rearrangements and removing unneeded procedures
gingerBill
2022-09-17
1
-31
/
+26
*
Inline many calls and delete unused procedures
gingerBill
2022-09-17
2
-34
/
+20
*
Minor refactor of the dynamic_map_internal.odin stuff
gingerBill
2022-09-17
2
-66
/
+60
[next]