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
/
ir.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Delete ir.cpp and related files
gingerBill
2021-04-25
1
-13167
/
+0
*
Move out some intrinsics into separate procedures in llvm_backend.cpp; Rename...
gingerBill
2021-04-24
1
-2
/
+2
*
Improve `auto_cast` logic
gingerBill
2021-04-22
1
-1
/
+2
*
Remove `intrinsics.x86_mmx` type
gingerBill
2021-04-22
1
-7
/
+3
*
Fix proc literal bug not finding the associated `DeclInfo`
gingerBill
2021-04-09
1
-1
/
+7
*
Implement `f16` functionality
gingerBill
2021-04-01
1
-11
/
+28
*
Change `>>` behaviour in LLVM to prevent stupid UB
gingerBill
2021-03-30
1
-4
/
+3
*
Fix shifting limits and LLVM code gen bug relating to shifts
gingerBill
2021-03-29
1
-6
/
+7
*
Issue #823 - Change semantics of `disabled` attribute to not evaluate any of ...
gingerBill
2021-03-27
1
-0
/
+7
*
Make the parser support as many identifiers on the LHS in `for in` loops to i...
gingerBill
2021-03-24
1
-10
/
+10
*
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` t...
gingerBill
2021-03-06
1
-6
/
+5
*
Minimize the size of `runtime.Source_Code_Location` to use `i32` instead of `...
gingerBill
2021-03-05
1
-16
/
+16
*
Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...
gingerBill
2021-03-04
1
-20
/
+19
*
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
*
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 th...
gingerBill
2020-12-08
1
-78
/
+114
*
Fix typo
gingerBill
2020-12-08
1
-1
/
+1
*
Improve rules for zeroing types with the ir.cpp backend with `ir_type_require...
gingerBill
2020-12-08
1
-2
/
+64
*
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 to...
gingerBill
2020-11-29
1
-34
/
+50
*
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 arrays/...
gingerBill
2020-11-20
1
-3
/
+5
*
Allow string literals for `[N]byte`
gingerBill
2020-11-20
1
-1
/
+3
*
Begin rudimentary work on implementing `odin test` tooling with `*_test.odin`...
gingerBill
2020-11-17
1
-3
/
+10
*
Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...
gingerBill
2020-11-16
1
-3
/
+3
[next]