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
/
types.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix alignment for complex32 and quaternion64
gingerBill
2021-04-01
1
-6
/
+6
*
Implement `f16` functionality
gingerBill
2021-04-01
1
-33
/
+92
*
`bit_set` support in debug symbols by treating them like a bit field of 1 bit...
gingerBill
2021-03-23
1
-0
/
+1
*
Improve debug type names for composite types (arrays, map, struct, union)
gingerBill
2021-03-23
1
-0
/
+3
*
Fix Addressing for SOA on store; Add intrinsics.type_struct_field_count(T)
gingerBill
2021-03-01
1
-0
/
+3
*
Remove `#opaque` types
gingerBill
2021-02-23
1
-54
/
+0
*
Remove `"pure"` and `"pure_none"` calling conventions
gingerBill
2021-02-23
1
-6
/
+0
*
Remove `bit_field` in type info, runtime, and general core library
gingerBill
2021-02-19
1
-3
/
+0
*
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
gingerBill
2021-02-19
1
-140
/
+0
*
Make `container.Map` have similar semantics to the built-in `map` type
gingerBill
2020-12-15
1
-0
/
+3
*
Support any comparable type for map keys
gingerBill
2020-11-29
1
-0
/
+6
*
Support map keys for simple compare types
gingerBill
2020-11-29
1
-1
/
+3
*
Simplify hashing approach `map`
gingerBill
2020-11-29
1
-0
/
+3
*
Add `intrinsics.type_hasher_proc`; Make `map` work with generic hasher procedure
gingerBill
2020-11-29
1
-1
/
+5
*
Add intrinsics.type_equal_proc; Make `map` use an internal equal procedure to...
gingerBill
2020-11-29
1
-0
/
+2
*
map type internal reorganization
gingerBill
2020-11-23
1
-1
/
+1
*
Fix logic for comparisons of struct #raw_union types
gingerBill
2020-11-23
1
-0
/
+3
*
Add `equal` procedure field to `runtime.Type_Info_Struct`
gingerBill
2020-11-23
1
-48
/
+49
*
Add `flags: Type_Info_Flags,` to `runtime.Type_Info`
gingerBill
2020-11-23
1
-0
/
+23
*
Add comparisons to structs where all fields are comparable `==` and `!=`
gingerBill
2020-11-23
1
-0
/
+64
*
Support string literals for fixed arrays of runes; Add %q support for arrays/...
gingerBill
2020-11-20
1
-21
/
+31
*
Allow string literals for `[N]byte`
gingerBill
2020-11-20
1
-0
/
+7
*
Fix calling convention for new LLVM ABI, and change`PtrSet` index to be `u32`...
gingerBill
2020-11-15
1
-0
/
+9
*
Begin clarifying allocation patterns by changing from `heap_allocator` to spe...
gingerBill
2020-11-15
1
-4
/
+4
*
Improve USE_NEW_LLVM_ABI_SYSTEM's System V ABI
gingerBill
2020-11-12
1
-1
/
+0
*
Update LLVM backend to begin work on a generic ABI system
gingerBill
2020-11-12
1
-0
/
+10
*
Fix LLVM-API type cycle for procedures of named procedures
gingerBill
2020-11-09
1
-0
/
+1
*
Fix cyclic check in `is_type_polymorphic`
gingerBill
2020-11-08
1
-1
/
+13
*
Inline asm expression (-llvm-api)
gingerBill
2020-10-24
1
-0
/
+4
*
Improve multiple return value copy-elision
gingerBill
2020-10-20
1
-0
/
+11
*
Fix indirect selector bug with `using` on `offset_of`
gingerBill
2020-10-15
1
-0
/
+2
*
Fix and clean up default procedure parameter code for non-constant types
gingerBill
2020-09-22
1
-1
/
+0
*
Update math and math/linalg; add "pure_none" calling convention
gingerBill
2020-09-10
1
-0
/
+3
*
Fix #714
gingerBill
2020-08-27
1
-0
/
+3
*
Remove some dead code
gingerBill
2020-07-14
1
-1
/
+0
*
Improve `intrinsics.type_is_simple_compare`
gingerBill
2020-06-12
1
-1
/
+27
*
Add support for `using` on relative pointers #670
gingerBill
2020-06-10
1
-2
/
+7
*
Basic cross compilation support
gingerBill
2020-06-10
1
-0
/
+3
*
Improve performance of tokenization and parsing
gingerBill
2020-05-27
1
-1
/
+1
*
Relative pointer and relative slices
gingerBill
2020-05-15
1
-0
/
+4
*
Relative pointers
gingerBill
2020-05-15
1
-6
/
+72
*
Add experimental atom op tables for llvm-backend
gingerBill
2020-05-02
1
-4
/
+25
*
Move TypeProc outside
gingerBill
2020-05-02
1
-26
/
+28
*
LLVM API: Fix compound literals with constant parameters to `union` fields
gingerBill
2020-04-25
1
-1
/
+1
*
`#optional_ok` tag for procedures
gingerBill
2020-04-19
1
-3
/
+6
*
Basic polymorphic named procedure parameters for procedures and records
gingerBill
2020-04-13
1
-0
/
+3
*
Simplify compiler's `Map` and create a `StringMap` specifically for strings
gingerBill
2020-04-13
1
-1
/
+1
*
Endian specific floating point types (e.g. f32be)
gingerBill
2020-04-11
1
-0
/
+22
*
Fix #599 - llvm-api GEP for structs with custom alignment
gingerBill
2020-03-28
1
-2
/
+7
*
Change behaviour of `switch v in &value` to make `v` have by-reference semantics
gingerBill
2020-03-24
1
-8
/
+49
[next]