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/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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add various debug location stuff.
lachsinc
2018-09-30
2
-3
/
+24
*
Add debug location stack.
lachsinc
2018-09-30
2
-41
/
+101
*
Tagged union debug info. Aggregate type fixes (unions inside structs etc.).
lachsinc
2018-09-27
2
-42
/
+81
*
Cleanup debug info 'name' stuff.
lachsinc
2018-09-27
2
-52
/
+51
*
Cleanup hardcoded bytes to bits
lachsinc
2018-09-27
1
-43
/
+45
*
Cleanup.
lachsinc
2018-09-27
1
-106
/
+95
*
Fix pointers to all things debug info. Cleanup param order. Make scope/file o...
lachsinc
2018-09-27
2
-103
/
+144
*
(Basic) Map debug info support. Minor slice fix.
lachsinc
2018-09-26
1
-6
/
+21
*
Slices. Fix dynamic array data ptr size.
lachsinc
2018-09-26
1
-1
/
+42
*
Add support for any. Fix rawptr debug type.
lachsinc
2018-09-26
2
-45
/
+82
*
Cleanup dynamic array/string bloat.
lachsinc
2018-09-26
1
-98
/
+103
*
Cleanup comments/todos.
lachsinc
2018-09-26
2
-20
/
+11
*
Add debug info for globals. Misc debug info cleanup.
lachsinc
2018-09-26
2
-32
/
+130
*
Add DebugInfoArray as separate debug info type. Minor cleanup of various debu...
lachsinc
2018-09-25
2
-178
/
+195
*
Expose dynamic array data/len/cap debug info. Minor cleanup of odin string de...
lachsinc
2018-09-19
1
-36
/
+104
*
String debug info. Minor cleanup of derived / composite debug info output.
lachsinc
2018-09-19
2
-20
/
+85
*
Static array debug info. Temporary dynamic array debug info (pointer to data,...
lachsinc
2018-09-18
2
-28
/
+87
*
Add proper procedure type support (return types and param proc signature)
lachsinc
2018-09-18
2
-16
/
+43
*
Enum debug info support.
lachsinc
2018-09-18
2
-2
/
+38
*
Fix stepping/jumping between procedures/files.
lachsinc
2018-09-18
1
-2
/
+7
*
Remove llc/opt hack. XX.bc now contains useful debug info thanks to removal o...
lachsinc
2018-09-18
2
-20
/
+17
*
Provide llvm ir with more debug info (for Visual Studio debugger support).
lachsinc
2018-09-18
3
-23
/
+394
*
Fix runtime proc names; Change calling convention of `context` parameter
gingerBill
2018-09-15
4
-20
/
+16
*
Merge branch 'master' of https://github.com/odin-lang/Odin
gingerBill
2018-09-15
1
-1
/
+2
|
\
|
*
fix macos thread_count value
Hasen Judy
2018-09-15
1
-1
/
+2
*
|
context.allocator = a; Remove __ from runtime procs; improve division for com...
gingerBill
2018-09-15
4
-85
/
+87
|
/
*
Syntactic sugar for anonymous enum within a bit set
gingerBill
2018-09-11
4
-15
/
+46
*
Fix are_types_identical for bit_set
gingerBill
2018-09-11
1
-1
/
+7
*
Fix polymorphic constant parameters for procedures
gingerBill
2018-09-11
2
-1
/
+10
*
Allow for optional ok for return
gingerBill
2018-09-11
3
-3
/
+30
*
Remove assertion from constant parameter
gingerBill
2018-09-10
1
-1
/
+0
*
Constant polymorphic names
gingerBill
2018-09-10
1
-4
/
+29
*
Fix cloning of `auto_cast` Ast
gingerBill
2018-09-10
1
-0
/
+3
*
Procedure inlining on call site
gingerBill
2018-09-09
5
-14
/
+83
*
Disallow `inline` for recursive procedures
gingerBill
2018-09-09
1
-1
/
+13
*
Make diverging procedure types different from ones without a return type
gingerBill
2018-09-09
6
-16
/
+17
*
Diverging procedures `proc() -> !` (no return)
gingerBill
2018-09-08
6
-5
/
+26
*
Parametric polymorphic union type
gingerBill
2018-09-08
6
-58
/
+292
*
Fix array_ordered_remove typo
gingerBill
2018-09-08
1
-1
/
+1
*
Fix minor parsing issue for polymorphic identifiers
Ginger Bill
2018-09-04
1
-1
/
+1
*
Add `$T: typeid/[]$E`; Deprecate `T: type/[]$E`
gingerBill
2018-09-02
2
-13
/
+86
*
`typeid` as keyword (ready to implement polymorphic name parameters)
gingerBill
2018-09-02
11
-45
/
+218
*
Remove test code
gingerBill
2018-08-30
1
-1
/
+1
*
Change memory layout of `map` to be 3 words smaller
gingerBill
2018-08-30
8
-34
/
+69
*
Prevent other parameters being the default value
gingerBill
2018-08-30
1
-3
/
+25
*
Add `default_assertion_failure_proc` to the minimum dependency build
gingerBill
2018-08-29
2
-5
/
+12
*
Temporary allocator for `context`
gingerBill
2018-08-29
2
-3
/
+15
*
Allow for default parameters that are non-constant entities, but not any non-...
gingerBill
2018-08-28
3
-7
/
+30
*
Add `-lld` flag for using "bin\lld-link.exe" on Windows
gingerBill
2018-08-28
2
-29
/
+49
*
Allow enums for array lengths
llvm-windows
gingerBill
2018-08-26
1
-1
/
+1
[next]