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 `intrinsics.count_zeros`
gingerBill
2021-04-25
1
-0
/
+10
*
|
Rename intrinsics to count_trailing_zeros and count_leading_zeros
gingerBill
2021-04-25
1
-6
/
+6
*
|
Replace many `foreign` llvm calls with intrinsics
gingerBill
2021-04-25
1
-0
/
+22
*
|
Remove old procedure ABI code
gingerBill
2021-04-25
1
-11
/
+8
|
/
*
Fix #857
gingerBill
2021-04-25
1
-4
/
+15
*
Fix #911 for -llvm-api backend
gingerBill
2021-04-25
1
-1
/
+1
*
Up ci.yml
gingerBill
2021-04-24
1
-1
/
+1
*
Move out some intrinsics into separate procedures in llvm_backend.cpp; Rename...
gingerBill
2021-04-24
1
-43
/
+72
*
Improve `auto_cast` logic
gingerBill
2021-04-22
1
-1
/
+2
*
Reuse unused 'context' variables to minimize stack usage (-llvm-api)
gingerBill
2021-04-22
1
-5
/
+39
*
Make `main` calling convention "odin" rather than "contextless" to simplify c...
gingerBill
2021-04-22
1
-42
/
+42
*
Remove old code
gingerBill
2021-04-22
1
-14
/
+5
*
Change function pass manager passes
gingerBill
2021-04-22
1
-3
/
+3
*
Change how `lb_populate_function_pass_manager` works by using the default LLV...
gingerBill
2021-04-22
1
-1
/
+36
*
Add intrinsics: overflow_add, overflow_sub, overflow_mul; Change byte swap be...
gingerBill
2021-04-22
1
-50
/
+73
*
Add intrinsics: byte_swap (integers and floats); count_ones; trailing_zeros; ...
gingerBill
2021-04-22
1
-0
/
+82
*
Remove `intrinsics.x86_mmx` type
gingerBill
2021-04-22
1
-14
/
+4
*
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
gingerBill
2021-04-22
1
-0
/
+58
*
Add `optimization_mode` attribute for procedures
gingerBill
2021-04-22
1
-4
/
+22
*
Add `-build-mode:llvm-ir` for `-llvm-api` backend
gingerBill
2021-04-21
1
-1
/
+7
*
Add `-doc-format` command for the new .odin-doc file format (to be used to ge...
gingerBill
2021-04-18
1
-1
/
+0
*
Correct call site attributes
gingerBill
2021-04-14
1
-2
/
+2
*
Add `@(cold)` attribute to procedure declarations
gingerBill
2021-04-14
1
-2
/
+33
*
Minor fixes to platform checking code
gingerBill
2021-04-11
1
-0
/
+10
*
Add `break;` for sanity
gingerBill
2021-04-08
1
-1
/
+1
*
Add "Dwarf Version" metadata for `darwin` on `-llvm-api`
gingerBill
2021-04-08
1
-4
/
+16
*
Add assertion check on parameter types for `lb_emit_call_internal`
gingerBill
2021-04-06
1
-4
/
+24
*
Fix `LLVMConstIntOfArbitraryPrecision` usage for a pointer
gingerBill
2021-04-06
1
-3
/
+8
*
Undo fix
gingerBill
2021-04-03
1
-7
/
+0
*
Fix lb_emit_array_ep
gingerBill
2021-04-03
1
-1
/
+8
*
Fix signed fixed arithmetic intrinsics
gingerBill
2021-04-01
1
-5
/
+6
*
Cleanup again
gingerBill
2021-04-01
1
-2
/
+4
*
Cleanup code for fixed-point intrinsics
gingerBill
2021-04-01
1
-11
/
+9
*
Implement fixed-point arithmetic intrinsics for -llvm-api backend
gingerBill
2021-04-01
1
-0
/
+46
*
Implement `f16` functionality
gingerBill
2021-04-01
1
-14
/
+97
*
Change `>>` behaviour in LLVM to prevent stupid UB
gingerBill
2021-03-30
1
-4
/
+4
*
Fix shifting limits and LLVM code gen bug relating to shifts
gingerBill
2021-03-29
1
-6
/
+8
*
Change how `lb_populate_module_pass_manager` handles the LLVMPassManagerBuild...
gingerBill
2021-03-29
1
-7
/
+14
*
Clamp maximum optimization level to 2 for `-llvm-api`
gingerBill
2021-03-29
1
-3
/
+3
*
Change alignment of alloca to a larger one if `OdinLLVMBuildTransmute` requir...
gingerBill
2021-03-29
1
-0
/
+12
*
Another minor change to `OdinLLVMBuildTransmute` regarding minimum source ali...
gingerBill
2021-03-29
1
-1
/
+5
*
Change `OdinLLVMBuildTransmute` when to deal with loads
gingerBill
2021-03-29
1
-9
/
+4
*
Issue #823 - Change semantics of `disabled` attribute to not evaluate any of ...
gingerBill
2021-03-27
1
-0
/
+7
*
Fix endian conversion to and from floats and ints
gingerBill
2021-03-27
1
-0
/
+24
*
Remove extra passes
gingerBill
2021-03-27
1
-6
/
+4
*
Fix byte swapping for endian specific types in `-llvm-api`
gingerBill
2021-03-27
1
-0
/
+11
*
Move variable declarations to aid other compilers
gingerBill
2021-03-25
1
-3
/
+3
*
Fix to `OdinLLVMBuildTransmute` to `goto general_end` on different sized data
gingerBill
2021-03-25
1
-4
/
+7
*
Fix pseudo-constant local slice initialization
gingerBill
2021-03-25
1
-7
/
+8
*
Minor zero enforcement
gingerBill
2021-03-25
1
-1
/
+1
[prev]
[next]