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
...
*
Just create `context` when required
gingerBill
2021-06-14
1
-16
/
+1
*
Fix `context` logic
gingerBill
2021-06-13
1
-3
/
+3
*
Remove dead code
gingerBill
2021-06-12
1
-22
/
+0
*
Correct `context `logic in `lb_build_addr`
gingerBill
2021-06-12
1
-1
/
+1
*
Improve vector arithmetic generation for array programming operations
gingerBill
2021-06-12
1
-72
/
+215
*
Fix linkage problem for procedures required by LLVM
gingerBill
2021-06-10
1
-9
/
+18
*
Minor code clean up
gingerBill
2021-06-09
1
-11
/
+4
*
Improve code generation for type switch statements to use a jump table by def...
gingerBill
2021-06-09
1
-26
/
+35
*
Allow trivial optimizations for switch statements of `typeid`
gingerBill
2021-06-09
1
-9
/
+21
*
Do trivial SwitchInstr optimization for constant case switch statements
gingerBill
2021-06-09
1
-6
/
+93
*
Correct minimum dependency for `complex32`
gingerBill
2021-06-08
1
-10
/
+22
*
Improve code generation hints for return statements which return by pointer
gingerBill
2021-06-08
1
-7
/
+35
*
Minor alignment cleanup for swizzle load
gingerBill
2021-06-08
1
-1
/
+10
*
Fix and improve swizzle loads for ordered indices
gingerBill
2021-06-08
1
-1
/
+17
*
Minor improvements to `-use-separate-modules`
gingerBill
2021-06-08
1
-6
/
+25
*
Replace `js_wasm32` with `freestanding_wasm32`
gingerBill
2021-06-08
1
-17
/
+19
*
Fix `lb_build_defer_stmt`
gingerBill
2021-06-08
1
-0
/
+3
*
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
[prev]
[next]