| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'master' into update-tilde | gingerBill | 2024-06-11 | 18 | -51/+1095 |
| |\ | |||||
| | * | Add compilation-related constants | Feoramund | 2024-06-10 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | `ODIN_VERSION_HASH` is the `git` SHA hash of the commit the Odin compiler was built with. `ODIN_MICROARCH_STRING` is the string passed to `-microarch` when the program was built. `ODIN_OPTIMIZATION_MODE` is an enum value of which optimization mode was used to build the program. | ||||
| | * | Change indentation | gingerBill | 2024-06-09 | 1 | -14/+14 |
| | | | |||||
| | * | Add `@(rodata)` and `@(static, rodata)` where appropriate | gingerBill | 2024-06-06 | 1 | -2/+2 |
| | | | |||||
| | * | improve orca target | Laytan Laats | 2024-06-05 | 8 | -16/+117 |
| | | | |||||
| | * | Fix some typos | Feoramund | 2024-06-04 | 1 | -1/+1 |
| | | | |||||
| | * | Add missing `Raw_*` types for complex and quaternion | Feoramund | 2024-06-03 | 1 | -0/+3 |
| | | | |||||
| | * | Move `Raw_Complex/Quaternion` types to `base:runtime` | Feoramund | 2024-06-03 | 1 | -0/+6 |
| | | | |||||
| | * | wasm: fix target wasm64p32 runtime procs | Laytan Laats | 2024-05-31 | 1 | -9/+15 |
| | | | | | | | | | | | | | | | | | LLVM generates calls with `i32` regardless of target, so if a call to any of these procs was generated this failed to compile. I opted to fix by changing from `int` to `i32` on wasm64p32 and adding `#any_int` so existing code keeps working. | ||||
| | * | Make `ODIN_OS`, `ODIN_BUILD_MODE` comments congruent to underlying data | Feoramund | 2024-05-28 | 1 | -0/+3 |
| | | | | | | | | | Sourced from `src/checker.cpp`. | ||||
| | * | wasm: enable default temp allocator | Laytan Laats | 2024-05-24 | 1 | -1/+1 |
| | | | | | | | | | After #3592 I think it makes sense to also enable the temp allocator by default | ||||
| | * | Merge pull request #3592 from laytan/wasm-gpa | gingerBill | 2024-05-20 | 4 | -2/+905 |
| | |\ | | | | | | | add a default heap/general purpose allocator for wasm to `base:runtime` | ||||
| | | * | add a default heap/general purpose allocator for wasm to `base:runtime` | Laytan Laats | 2024-05-16 | 4 | -3/+906 |
| | | | | |||||
| | * | | Merge pull request #3570 from jasonKercher/linux-arm32 | gingerBill | 2024-05-20 | 1 | -1/+5 |
| | |\ \ | | | | | | | | | Get the compiler to build and work on arm32 Linux | ||||
| | | * | | arm32 now compiles and runs demo | jasonkercher | 2024-05-10 | 1 | -1/+5 |
| | | | | | |||||
| | * | | | Correct #soa RTTI usage | gingerBill | 2024-05-16 | 1 | -8/+8 |
| | | |/ | |/| | |||||
| | * | | Merge pull request #3439 from andreas-jonsson/netbsd | gingerBill | 2024-05-15 | 3 | -4/+8 |
| | |\ \ | | | | | | | | | NetBSD support | ||||
| | | * \ | Merge branch 'master' into netbsd | Andreas T Jonsson | 2024-05-13 | 1 | -8/+8 |
| | | |\ \ | |||||
| | | * \ \ | Merged with master | Andreas T Jonsson | 2024-05-02 | 1 | -4/+4 |
| | | |\ \ \ | | | | |/ | | | |/| | |||||
| | | * | | | Merge branch 'master' into netbsd | Andreas T Jonsson | 2024-04-25 | 4 | -25/+41 |
| | | |\ \ \ | |||||
| | | * | | | | Initial commit of NetBSD port | Andreas T Jonsson | 2024-04-16 | 3 | -4/+8 |
| | | | | | | | |||||
| | * | | | | | Add comment state to prefer `virtual.Arena` over `runtime.Arena` | gingerBill | 2024-05-14 | 1 | -0/+1 |
| | | |_|_|/ | |/| | | | |||||
| | * | | | | Add `runtime.Typeid_Bit_Field` | gingerBill | 2024-05-10 | 1 | -8/+8 |
| | | |_|/ | |/| | | |||||
| * / | | | Update again | gingerBill | 2024-04-30 | 1 | -17/+11 |
| |/ / / | |||||
| * | / | Fix #3459 | gingerBill | 2024-04-30 | 1 | -4/+4 |
| | |/ |/| | |||||
| * | | Improve codegen for `bit_field [N]T` compound literals | gingerBill | 2024-04-24 | 1 | -6/+4 |
| | | | |||||
| * | | Do not print column of a runtime.Source_Code_Location if the `column == 0` | gingerBill | 2024-04-19 | 1 | -4/+8 |
| | | | |||||
| * | | Add `ODIN_NO_BOUNDS_CHECK` | gingerBill | 2024-04-18 | 1 | -1/+13 |
| | | | |||||
| * | | Add `@(optimization_mode="size")` to `runtime.print_type` | gingerBill | 2024-04-18 | 1 | -0/+2 |
| | | | |||||
| * | | Add `#force_no_inline` to many of the runtime print procedures | gingerBill | 2024-04-18 | 1 | -12/+12 |
| | | | |||||
| * | | Correct `copy_from_string` docs | Chris | 2024-04-16 | 1 | -2/+2 |
| |/ | |||||
| * | Merge pull request #3406 from laytan/bit-field-core-parser | Jeroen van Rijn | 2024-04-10 | 1 | -2/+3 |
| |\ | | | | | add bit_field to `core:odin` | ||||
| | * | add bit_field parsing to `core:odin/parser` | Laytan Laats | 2024-04-10 | 1 | -2/+3 |
| | | | | | | | | | Also adds it to the core type thingy like it is in the compiler. | ||||
| * | | Make `map_total_allocation_size` public; Add ↵ | gingerBill | 2024-04-08 | 1 | -1/+7 |
| |/ | | | | `map_total_allocation_size_from_value` | ||||
| * | Fix `resize` bug caused by typo | gingerBill | 2024-03-24 | 1 | -1/+1 |
| | | |||||
| * | Fix `resize` zeroing behaviour | gingerBill | 2024-03-24 | 1 | -0/+3 |
| | | |||||
| * | fix wasm with `-target-features:"simd128"` | Laytan Laats | 2024-03-22 | 2 | -11/+27 |
| | | | | | | | | | the required procs within wasm would compile to take native v128 arguments in, but the procs are supposed to take in i64's causing bad wasm modules. Fixes #3263 | ||||
| * | Add `#no_broadcast` procedure parameter to disallow automatic array ↵ | gingerBill | 2024-03-21 | 1 | -6/+6 |
| | | | | | programming broadcasting on procedure arguments | ||||
| * | Add `#row_major matrix[R, C]T` | gingerBill | 2024-03-19 | 1 | -0/+4 |
| | | | | | | As well as `#column_major matrix[R, C]T` as an alias for just `matrix[R, C]T`. This is because some libraries require a row_major internal layout but still want to be used with row or major oriented vectors. | ||||
| * | Change `return` to `panic` | gingerBill | 2024-03-13 | 1 | -1/+1 |
| | | |||||
| * | Fix typo due to deletion | gingerBill | 2024-03-13 | 1 | -1/+1 |
| | | |||||
| * | Add infinite loop check and early out in `map_insert_hash_dynamic` | gingerBill | 2024-03-13 | 1 | -3/+13 |
| | | |||||
| * | Add builtin `map_upsert` | gingerBill | 2024-03-11 | 1 | -7/+9 |
| | | |||||
| * | Merge pull request #3199 from JamesDSource/soa | gingerBill | 2024-03-09 | 1 | -1/+94 |
| |\ | | | | | Add into_dynamic_soa, unordered_remove_soa, and ordered_remove_soa | ||||
| | * | Fix syntax mistake again | James Duran | 2024-02-16 | 1 | -1/+1 |
| | | | | | | | | | Sorry for being blind | ||||
| | * | Fix Syntax Mistake | James Duran | 2024-02-16 | 1 | -1/+1 |
| | | | |||||
| | * | Make into_dynamic_soa more concise and remove builtin tag from it | James Duran | 2024-02-16 | 1 | -8/+4 |
| | | | |||||
| | * | Added into_dynamic_soa, unordered_remove_soa, and ordered_remove_soa | James Duran | 2024-02-14 | 1 | -1/+98 |
| | | | |||||
| * | | Incorrect write syscall on Darwin - fixes stderr output. | Ralph Caraveo | 2024-03-08 | 1 | -1/+1 |
| | | | | | | | | | | | On macos, Odin was previously swallowing errors that would be reported via stderr. I've confirmed with @laytan on Discord that this fixes the issue. | ||||
| * | | Merge branch 'odin-lang:master' into haiku | avanspector | 2024-02-29 | 1 | -2/+2 |
| |\ \ | |||||