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
...
*
Add extra message to assert
gingerBill
2021-07-13
1
-3
/
+1
*
Do manual byte swapping for endianness in `lb_big_int_to_llvm`
gingerBill
2021-07-13
1
-5
/
+12
*
Temporarily disable `-threaded-checker`; Restructure the untyped-expr-info sy...
gingerBill
2021-07-13
1
-0
/
+1
*
Add sanity casts for 32/64 bit correctness
gingerBill
2021-07-12
1
-25
/
+25
*
Clean up big int to LLVM integer code
gingerBill
2021-07-11
1
-63
/
+34
*
Change the compiler's big integer library to use libTomMath
gingerBill
2021-07-11
1
-20
/
+54
*
Add sanity conversion check for integer to quaternion
gingerBill
2021-07-11
1
-0
/
+19
*
Convert constant tag to the correct type for LLVMAddCase
gingerBill
2021-07-10
1
-0
/
+1
*
Prepare for multithreading the semantic checker by giving mutexes to variable...
gingerBill
2021-07-10
1
-1
/
+1
*
Fix #1050
gingerBill
2021-07-10
1
-1
/
+1
*
Allow `x in ptr_to_map_or_bit_set`
gingerBill
2021-07-10
1
-0
/
+5
*
Remove `try`; Replace `try x else y` with `or_else(x, y)`
gingerBill
2021-07-05
1
-52
/
+47
*
Try `try` and `or_else` built-in procedures with operators `try` and `try else`
gingerBill
2021-07-04
1
-100
/
+55
*
Refactor `return` logic to be more reusable with `lb_emit_try`
gingerBill
2021-07-04
1
-44
/
+24
*
Simplify `lb_emit_try` return logic
gingerBill
2021-07-04
1
-88
/
+18
*
Fix `lb_emit_try`
gingerBill
2021-07-04
1
-9
/
+13
*
[Experimental] Add 'try' and `or_else' built-in procedures
gingerBill
2021-07-04
1
-6
/
+270
*
Fix #1042
gingerBill
2021-06-28
1
-19
/
+21
*
Fix #1043
gingerBill
2021-06-28
1
-0
/
+3
*
Fix swizzling of pointers to arrays
gingerBill
2021-06-28
1
-2
/
+7
*
Modify scope finding rules for distinct types in lb_debug_type
gingerBill
2021-06-27
1
-3
/
+23
*
Fix #1044
gingerBill
2021-06-26
1
-4
/
+17
*
Support compound literals for `struct #raw_union` types
gingerBill
2021-06-26
1
-2
/
+12
*
Fix compiler errors
gingerBill
2021-06-25
1
-3
/
+3
*
Change logic for comparison against `nil` for array-like data types (compare ...
gingerBill
2021-06-24
1
-12
/
+27
*
Correct selector call expression chaining behaviour (a bit of a hack)
gingerBill
2021-06-16
1
-9
/
+28
*
Fix #1017
gingerBill
2021-06-15
1
-4
/
+7
*
Fix #1019
gingerBill
2021-06-15
1
-2
/
+0
*
Fix #1015
gingerBill
2021-06-14
1
-11
/
+15
*
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
[prev]
[next]