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
*
fix #1187
Arne Döring
2021-09-22
1
-4
/
+8
*
Merge branch 'master' of https://github.com/odin-lang/Odin
gingerBill
2021-09-18
1
-0
/
+2
|
\
|
*
Merge branch 'master' into llvm-12.0.1-windows
gingerBill
2021-09-18
1
-7
/
+5
|
|
\
|
*
|
Update Windows to LLVM 12.0.1
gingerBill
2021-09-11
1
-0
/
+2
*
|
|
Fix #1174
gingerBill
2021-09-18
1
-0
/
+1
|
|
/
|
/
|
*
|
LLVM Code Generator: Add explicitly padding between fields in LLVM struct types
gingerBill
2021-09-13
1
-3
/
+1
*
|
Replace many uses of `heap_allocator()` with `permanent_allocator()`
gingerBill
2021-09-13
1
-1
/
+1
*
|
Begin minimize `Type` size by replacing `Array` with `Slice` etc
gingerBill
2021-09-13
1
-3
/
+3
|
/
*
Add error message for minimum required LLVM
gingerBill
2021-09-11
1
-0
/
+4
*
Unify thread pool logic across the rest of the compiler, using a global threa...
gingerBill
2021-08-26
1
-5
/
+2
*
Correct procedure checking flag handling, and correct the (bodge) handle of u...
gingerBill
2021-08-23
1
-0
/
+1
*
Rewrite thread_pool.cpp
nakst
2021-08-22
1
-2
/
+1
*
Fix race condition from `add_entity_use` due to Entity.identifier
gingerBill
2021-08-19
1
-2
/
+3
*
Remove unused code
gingerBill
2021-08-19
1
-20
/
+3
*
Correct DllMain behaviour
gingerBill
2021-08-09
1
-3
/
+19
*
Inline heap_allocator resize logic on *nix platforms
gingerBill
2021-08-07
1
-1
/
+1
*
Minor clean-up
gingerBill
2021-08-07
1
-3
/
+3
*
Reorganize llvm_backend.cpp into separate files for easier maintenance
gingerBill
2021-08-07
1
-14673
/
+8
*
Fix #1070
gingerBill
2021-08-07
1
-3
/
+5
*
Fix typo
gingerBill
2021-08-03
1
-2
/
+2
*
Add extra `debugf` message for generate missing procedure
gingerBill
2021-08-03
1
-0
/
+1
*
Remove debug `gb_printf_err` and replace with `debugf`
gingerBill
2021-08-03
1
-4
/
+6
*
Reorganize `missing_procedures_to_check` generation code
gingerBill
2021-08-03
1
-4
/
+8
*
Add `missing_procedures_to_check` to `lbModule`
gingerBill
2021-08-03
1
-47
/
+65
*
Add sanity check in `lb_create_procedure`
gingerBill
2021-08-03
1
-1
/
+4
*
Begin optimizing tokenizer; Replace `gb_utf8_decode` with `utf8_decode` (CC b...
gingerBill
2021-08-01
1
-2
/
+2
*
Big simplification and improvement of the entity collection system, reducing ...
gingerBill
2021-07-27
1
-105
/
+148
*
Manually short circuit in `lb_build_if_stmt` for constant conditions
gingerBill
2021-07-26
1
-10
/
+52
*
Move asserts around
gingerBill
2021-07-13
1
-3
/
+5
*
Correct `lb_big_int_to_llvm`
gingerBill
2021-07-13
1
-9
/
+10
*
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
[next]