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 package name and source code location to `Type_Info_Named`
gingerBill
2020-12-05
1
-1
/
+22
*
Remove `hash` field in runtime.Source_Code_Location
gingerBill
2020-12-05
1
-13
/
+2
*
Allow nested procedures to access `@(static)` and `@(thread_local)` variables
gingerBill
2020-12-04
1
-9
/
+23
*
Change ExactValue layout for complex/quaternion types to minimize its size
gingerBill
2020-12-03
1
-12
/
+12
*
Fix -llvm-api const initialization of `&T{}`
gingerBill
2020-12-02
1
-0
/
+2
*
Disable `lb_const_hash` for the time being
gingerBill
2020-12-02
1
-5
/
+31
*
Fix typo
gingerBill
2020-12-01
1
-1
/
+1
*
Fix Pointer store in LLVM backend
gingerBill
2020-12-01
1
-2
/
+2
*
Revert function passes
gingerBill
2020-11-29
1
-51
/
+95
*
Improve default pass manager for -llvm-api
gingerBill
2020-11-29
1
-57
/
+25
*
Make 16 simple hasher cases for small types
gingerBill
2020-11-29
1
-9
/
+5
*
Simplify simple compare hasher code
gingerBill
2020-11-29
1
-98
/
+76
*
Support any comparable type for map keys
gingerBill
2020-11-29
1
-9
/
+89
*
Support map keys for simple compare types
gingerBill
2020-11-29
1
-2
/
+8
*
Improve const hash
gingerBill
2020-11-29
1
-10
/
+36
*
Simplify hashing approach `map`
gingerBill
2020-11-29
1
-29
/
+15
*
Add `intrinsics.type_hasher_proc`; Make `map` work with generic hasher procedure
gingerBill
2020-11-29
1
-53
/
+131
*
Add intrinsics.type_equal_proc; Make `map` use an internal equal procedure to...
gingerBill
2020-11-29
1
-31
/
+48
*
Fix for in enum type
gingerBill
2020-11-26
1
-1
/
+1
*
Enforce zeroing through memset to ensure padding is zeroed with llvm api
gingerBill
2020-11-25
1
-2
/
+20
*
Update package json for new map layout; Correct llvm-api includes for *nix
gingerBill
2020-11-25
1
-0
/
+4
*
Prepare for M1 Mac
gingerBill
2020-11-24
1
-2
/
+2
*
Make hash internal key be `uintptr` rather than `u64` to reduce entry size
gingerBill
2020-11-23
1
-2
/
+4
*
Change internal layout of `map[K]V`
gingerBill
2020-11-23
1
-22
/
+17
*
map type internal reorganization
gingerBill
2020-11-23
1
-1
/
+1
*
Add `equal` procedure field to `runtime.Type_Info_Struct`
gingerBill
2020-11-23
1
-5
/
+9
*
Add `flags: Type_Info_Flags,` to `runtime.Type_Info`
gingerBill
2020-11-23
1
-2
/
+8
*
Add comparisons to structs where all fields are comparable `==` and `!=`
gingerBill
2020-11-23
1
-0
/
+98
*
Modify llvm_abi.cpp to work correctly for win64 abi of `i128` types. (it's a ...
gingerBill
2020-11-22
1
-137
/
+156
*
Support string literals for fixed arrays of runes; Add %q support for arrays/...
gingerBill
2020-11-20
1
-0
/
+26
*
Allow string literals for `[N]byte`
gingerBill
2020-11-20
1
-1
/
+9
*
Begin rudimentary work on implementing `odin test` tooling with `*_test.odin`...
gingerBill
2020-11-17
1
-4
/
+14
*
Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...
gingerBill
2020-11-16
1
-2
/
+2
*
Fix calling convention for new LLVM ABI, and change`PtrSet` index to be `u32`...
gingerBill
2020-11-15
1
-11
/
+16
*
Implement custom temporary allocator using ring buffer
gingerBill
2020-11-15
1
-24
/
+0
*
Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a block
gingerBill
2020-11-15
1
-4
/
+24
*
Make `set_procedure_abi_types` use the permanent_allocator
gingerBill
2020-11-15
1
-8
/
+8
*
Begin clarifying allocation patterns by changing from `heap_allocator` to spe...
gingerBill
2020-11-15
1
-165
/
+114
*
Improve lb_abi_to_odin_type
gingerBill
2020-11-14
1
-0
/
+4
*
Improve USE_NEW_LLVM_ABI_SYSTEM's System V ABI
gingerBill
2020-11-12
1
-35
/
+125
*
Update LLVM backend to begin work on a generic ABI system
gingerBill
2020-11-12
1
-161
/
+532
*
Fix `typeid_of` bug
gingerBill
2020-11-10
1
-18
/
+12
*
Fix LLVM-API type cycle for procedures of named procedures
gingerBill
2020-11-09
1
-1
/
+2
*
Inline asm expression (-llvm-api)
gingerBill
2020-10-24
1
-0
/
+37
*
Add intrinsics.cpu_relax for llvm-api
gingerBill
2020-10-24
1
-2
/
+11
*
Improve multiple return value copy-elision
gingerBill
2020-10-20
1
-23
/
+68
*
Improve array programming code generation
gingerBill
2020-10-20
1
-7
/
+15
*
Specific set the code gen level for -llvm-api
gingerBill
2020-10-20
1
-1
/
+9
*
Add `-build-mode:assembly` for `-llvm-api`
gingerBill
2020-10-20
1
-14
/
+22
*
Add `-microarch:<string>` (e.g. `-microarch:native`)
gingerBill
2020-10-20
1
-1
/
+16
[prev]
[next]