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/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
/
ir.cpp
Commit message (
Collapse
)
Author
Age
Files
Lines
*
Make the parser support as many identifiers on the LHS in `for in` loops to ↵
gingerBill
2021-03-24
1
-10
/
+10
|
|
|
|
improve error messages
*
For `bit_set`, allow `+` and `-` to be aliases for `|` and `&~`, respectively
gingerBill
2021-03-23
1
-0
/
+9
|
*
Add `pkg` field to `testing.Internal_Test`
gingerBill
2021-03-14
1
-2
/
+9
|
*
`odin test` to work with the new `core:testing` package
gingerBill
2021-03-14
1
-3
/
+30
|
*
Add `intrinsics.volatile_store` and `intrinsics.volatile_load`
gingerBill
2021-03-09
1
-3
/
+16
|
*
Fix `context` bug with `deferred_*` attributes which caused a new `context` ↵
gingerBill
2021-03-06
1
-6
/
+5
|
|
|
|
to be created every time
*
Minimize the size of `runtime.Source_Code_Location` to use `i32` instead of ↵
gingerBill
2021-03-05
1
-16
/
+16
|
|
|
|
`int`
*
Minimize TokenPos size by using `i32` for line/column/offset and file_id ↵
gingerBill
2021-03-04
1
-20
/
+19
|
|
|
|
|
|
instead of `String` To make `i32` safe, the parser limits the file size of odin files to a maximum of 2GiB (which will be good enough for the vast vast majority of cases)
*
Clean up logic for `<<` and `>>` behaviour
gingerBill
2021-03-02
1
-4
/
+4
|
*
Fix Addressing for SOA on store; Add intrinsics.type_struct_field_count(T)
gingerBill
2021-03-01
1
-6
/
+23
|
*
Add message to assert in `ir_build_expr_internal`
gingerBill
2021-02-26
1
-3
/
+3
|
*
Remove `#opaque` types
gingerBill
2021-02-23
1
-17
/
+0
|
*
Deprecate `inline for` in favour of `#unroll for`
gingerBill
2021-02-23
1
-1
/
+1
|
*
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
gingerBill
2021-02-19
1
-304
/
+26
|
*
Fix for `c_vararg` issue
Jim Powers
2021-01-18
1
-0
/
+6
|
|
|
|
Fixes #817
*
Fix ir_print.cpp for typeid constants
gingerBill
2020-12-17
1
-2
/
+10
|
*
If `ir_type_requires_mem_zero` is stored with zero, don't store again with ↵
gingerBill
2020-12-08
1
-78
/
+114
|
|
|
|
the `zeroinitializer`
*
Fix typo
gingerBill
2020-12-08
1
-1
/
+1
|
*
Improve rules for zeroing types with the ir.cpp backend with ↵
gingerBill
2020-12-08
1
-2
/
+64
|
|
|
|
`ir_type_requires_mem_zero`
*
Add package name and source code location to `Type_Info_Named`
gingerBill
2020-12-05
1
-0
/
+15
|
*
Remove `hash` field in runtime.Source_Code_Location
gingerBill
2020-12-05
1
-13
/
+0
|
*
Remove type name generation for procedures in ir.cpp
gingerBill
2020-12-05
1
-0
/
+3
|
*
Make 16 simple hasher cases for small types
gingerBill
2020-11-29
1
-25
/
+17
|
*
Simplify simple compare hasher code
gingerBill
2020-11-29
1
-88
/
+74
|
*
Support any comparable type for map keys
gingerBill
2020-11-29
1
-9
/
+87
|
*
Support map keys for simple compare types
gingerBill
2020-11-29
1
-2
/
+8
|
*
Improve const hash
gingerBill
2020-11-29
1
-6
/
+31
|
*
Simplify hashing approach `map`
gingerBill
2020-11-29
1
-34
/
+16
|
*
Add `intrinsics.type_hasher_proc`; Make `map` work with generic hasher procedure
gingerBill
2020-11-29
1
-5
/
+91
|
*
Add intrinsics.type_equal_proc; Make `map` use an internal equal procedure ↵
gingerBill
2020-11-29
1
-34
/
+50
|
|
|
|
to compare keys
*
Fix for in enum type
gingerBill
2020-11-26
1
-1
/
+1
|
*
Make hash internal key be `uintptr` rather than `u64` to reduce entry size
gingerBill
2020-11-23
1
-1
/
+4
|
*
Change internal layout of `map[K]V`
gingerBill
2020-11-23
1
-24
/
+20
|
*
map type internal reorganization
gingerBill
2020-11-23
1
-1
/
+1
|
*
Add `equal` procedure field to `runtime.Type_Info_Struct`
gingerBill
2020-11-23
1
-3
/
+8
|
*
Add `flags: Type_Info_Flags,` to `runtime.Type_Info`
gingerBill
2020-11-23
1
-2
/
+7
|
*
Add comparisons to structs where all fields are comparable `==` and `!=`
gingerBill
2020-11-23
1
-1
/
+114
|
*
Support string literals for fixed arrays of runes; Add %q support for ↵
gingerBill
2020-11-20
1
-3
/
+5
|
|
|
|
arrays/slices of bytes
*
Allow string literals for `[N]byte`
gingerBill
2020-11-20
1
-1
/
+3
|
*
Begin rudimentary work on implementing `odin test` tooling with ↵
gingerBill
2020-11-17
1
-3
/
+10
|
|
|
|
`*_test.odin` files
*
Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> ↵
gingerBill
2020-11-16
1
-3
/
+3
|
|
|
|
when the parameter doesn't need to grow
*
Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a block
gingerBill
2020-11-15
1
-17
/
+14
|
*
Make `set_procedure_abi_types` use the permanent_allocator
gingerBill
2020-11-15
1
-10
/
+10
|
*
Made sure the entry point is not generated when -no-entry-point is specified.
F0x1fy
2020-11-10
1
-3
/
+3
|
*
Fix ir printing for nested procedure literals indirectly through identifiers
gingerBill
2020-10-29
1
-0
/
+9
|
*
Improve multiple return value copy-elision
gingerBill
2020-10-20
1
-17
/
+17
|
*
Improve array programming code generation
gingerBill
2020-10-20
1
-6
/
+13
|
*
Fix multiple declared foreign procedures
gingerBill
2020-10-01
1
-0
/
+12
|
*
Fix and clean up default procedure parameter code for non-constant types
gingerBill
2020-09-22
1
-49
/
+38
|
*
Fix -debug bug with internal startup procedures
gingerBill
2020-09-16
1
-0
/
+5
|
[next]