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
/
llvm_backend.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Correct code for `#simd` in unions
gingerBill
2021-06-06
1
-9
/
+14
*
Fix #861 - Add extra check on missing `main`
gingerBill
2021-06-06
1
-2
/
+4
*
Fix 128-bit integer to float cast by explicitly calling the procedure direct;...
gingerBill
2021-06-06
1
-0
/
+11
*
Add support for `Addressing_OptionalOkPtr`
gingerBill
2021-06-06
1
-90
/
+191
*
Clean up lbAddr_Swizzle logic for load and store
gingerBill
2021-06-05
1
-47
/
+73
*
Use `shufflevector` when possible for lbAddr_Swizzle load
gingerBill
2021-06-05
1
-0
/
+39
*
Improved `lb_build_assign_stmt_array` logic
gingerBill
2021-06-05
1
-16
/
+36
*
Fix `lb_build_assign_stmt_array` for `lbAddr_Swizzle`
gingerBill
2021-06-05
1
-1
/
+28
*
Experimental support for inline swizzling for array types of len <= 4 e.g. `v...
gingerBill
2021-06-05
1
-56
/
+61
*
Make inline array arithmetic use `load+extractvalue` rather than `getelementp...
dev-2021-06
gingerBill
2021-06-01
1
-7
/
+42
*
Improves to array arithmetic on += etc assignment statements
gingerBill
2021-06-01
1
-68
/
+218
*
Fix #992
gingerBill
2021-05-31
1
-2
/
+4
*
Fix #999
gingerBill
2021-05-31
1
-1
/
+1
*
Fix #1004
gingerBill
2021-05-31
1
-36
/
+0
*
Add intrinsics.{ptr_offset, ptr_sub}
gingerBill
2021-05-30
1
-0
/
+31
*
Improve logic for intrinsics.{mem_copy, mem_copy_non_overlapping, mem_zero} t...
gingerBill
2021-05-30
1
-10
/
+65
*
Fix comparison bug of enumerated arrays
gingerBill
2021-05-27
1
-2
/
+6
*
Disable copy elision on assignments for the time being
gingerBill
2021-05-25
1
-2
/
+2
*
Minimize copying on getting the address of a call if required
gingerBill
2021-05-24
1
-1
/
+5
*
Add `intrinsics.mem_zero`
gingerBill
2021-05-24
1
-2
/
+14
*
Move the mem zero into a separate procedure for reuse
gingerBill
2021-05-24
1
-19
/
+27
*
Refactoring of lbFunctionType retrieval
gingerBill
2021-05-24
1
-15
/
+26
*
Refactor backend code for assignments; Refactor some statements into separate...
gingerBill
2021-05-24
1
-399
/
+335
*
Heavily improve the copy elision logic in the backend
gingerBill
2021-05-24
1
-44
/
+96
*
Add `@(link_section=<string>)` for global variables
gingerBill
2021-05-24
1
-0
/
+3
*
Handle #c_vararg correctly
gingerBill
2021-05-24
1
-0
/
+6
*
Modify ABI for the Odin calling conventions on SysV slightly
gingerBill
2021-05-22
1
-6
/
+5
*
Fix `..=` logic in the backend
gingerBill
2021-05-21
1
-6
/
+6
*
Add range-based error messages to `-verbose-errors`
gingerBill
2021-05-19
1
-2
/
+2
*
Remove @(static) for global variables
gingerBill
2021-05-19
1
-1
/
+1
*
More minor linkage changes
gingerBill
2021-05-19
1
-22
/
+15
*
Minor change to internal linkage stuff
gingerBill
2021-05-19
1
-9
/
+27
*
Add `intrinsics.mem_copy` and `intrinsics.mem_copy_non_overlapping`
gingerBill
2021-05-19
1
-0
/
+38
*
Add `intrinsics.sqrt` for floating-point values
gingerBill
2021-05-19
1
-0
/
+22
*
Improve untyped to typed logic for aiding the backend
gingerBill
2021-05-16
1
-7
/
+53
*
Add concrete type information for untyped values as procedure arguments
gingerBill
2021-05-16
1
-0
/
+1
*
Allow `..=` alongside `..` as a "full range" operator; Update `core:odin/pars...
gingerBill
2021-05-16
1
-2
/
+4
*
Add custom basic dead instruction elimination pass
gingerBill
2021-05-15
1
-13
/
+15
*
Remove old dead code
gingerBill
2021-05-15
1
-51
/
+0
*
Add name to aggregate result pointer to procedures
gingerBill
2021-05-15
1
-1
/
+5
*
Change `for i in x..y {}` behaviour
gingerBill
2021-05-15
1
-107
/
+89
*
Disallow slicing of constant values
gingerBill
2021-05-15
1
-1
/
+18
*
Add minor ignoring hint on type assertions to get better code generation with...
gingerBill
2021-05-13
1
-2
/
+53
*
Fix #741
gingerBill
2021-05-13
1
-2
/
+3
*
Fix #948
gingerBill
2021-05-12
1
-27
/
+7
*
Add `byval` with `align`, `sret` attributes for SysV
gingerBill
2021-05-11
1
-3
/
+24
*
Remove warning on \*nix
gingerBill
2021-05-11
1
-4
/
+3
*
Minor change (in preparation for something else) to opt passes
gingerBill
2021-05-11
1
-8
/
+8
*
Fix debug information for array types by setting the `DISubrange`
gingerBill
2021-05-10
1
-4
/
+20
*
Correct SysV ABI for `-> (f32, bool)`
gingerBill
2021-05-10
1
-6
/
+21
[prev]
[next]