| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update builtin constants | Damian Tarnawski | 2024-07-31 | 1 | -2/+3 |
| | | |||||
| * | add `#optional_ok` to docs file for intrinsics | Laytan Laats | 2024-07-16 | 1 | -3/+3 |
| | | |||||
| * | fix `add_sat` and `sub_sat` intrinsics | Laytan Laats | 2024-07-16 | 1 | -3/+6 |
| | | |||||
| * | fix some bugs with -disable-assert | Laytan Laats | 2024-07-16 | 1 | -1/+2 |
| | | |||||
| * | help `fmt` with `Type_Info_Struct` and `Type_Info_Bit_Field` changes | Laytan Laats | 2024-07-15 | 1 | -10/+10 |
| | | |||||
| * | Type erase `_make_dynamic_array_len_cap` | gingerBill | 2024-07-15 | 1 | -6/+13 |
| | | |||||
| * | Add `#force_no_inline` | gingerBill | 2024-07-14 | 1 | -6/+6 |
| | | |||||
| * | Minor clean ups | gingerBill | 2024-07-14 | 1 | -8/+11 |
| | | |||||
| * | Inline `_append_elem_string` further | gingerBill | 2024-07-14 | 1 | -6/+1 |
| | | |||||
| * | Type erase for `append_elems` | gingerBill | 2024-07-14 | 1 | -32/+33 |
| | | |||||
| * | Type erase `append_elem` | gingerBill | 2024-07-14 | 1 | -29/+29 |
| | | |||||
| * | type erase `resize` and `reserve` internals | gingerBill | 2024-07-14 | 1 | -22/+21 |
| | | |||||
| * | Reduce the size of `runtime.Type_Info` | gingerBill | 2024-07-14 | 2 | -25/+36 |
| | | |||||
| * | Imply `#no_capture` to all variadic parameters | gingerBill | 2024-07-14 | 3 | -8/+8 |
| | | |||||
| * | Add more uses of `#no_capture` | gingerBill | 2024-07-14 | 3 | -12/+12 |
| | | |||||
| * | Add hinstdll forward to runtime globals | Jeroen van Rijn | 2024-07-10 | 2 | -1/+4 |
| | | |||||
| * | fix `@(optimization_mode)` usage in builtin collections | Laytan Laats | 2024-07-08 | 1 | -1/+1 |
| | | |||||
| * | darwin: remove syscall usage (without -no-crt) to comply to Apple guidelines | Laytan Laats | 2024-07-08 | 1 | -5/+18 |
| | | |||||
| * | Add `intrinsics.type_struct_has_implicit_padding` #3844 | gingerBill | 2024-07-01 | 1 | -1/+2 |
| | | |||||
| * | Add `non_zero_*` variants for `#soa` dynamic array | gingerBill | 2024-07-01 | 2 | -6/+61 |
| | | |||||
| * | Add `#soa` support to `append` directly | gingerBill | 2024-07-01 | 1 | -0/+3 |
| | | |||||
| * | Add `#no_broadcast` to `append_soa` | gingerBill | 2024-07-01 | 1 | -2/+2 |
| | | |||||
| * | Add #soa forms to reserve, clear, and resize | gingerBill | 2024-07-01 | 1 | -4/+23 |
| | | |||||
| * | Add support for `make(#soa[]T)` etc | gingerBill | 2024-07-01 | 1 | -0/+5 |
| | | |||||
| * | Unify #soa code for structs and arrays | gingerBill | 2024-07-01 | 1 | -42/+15 |
| | | |||||
| * | wasi: make the demo run on wasi and run it in CI | Laytan Laats | 2024-06-29 | 3 | -4/+53 |
| | | |||||
| * | Fix loads of indentation issues with mixing spaces and tabs | gingerBill | 2024-06-29 | 1 | -2/+2 |
| | | |||||
| * | Even more style fixes | gingerBill | 2024-06-29 | 1 | -1/+1 |
| | | |||||
| * | Remove unneeded `transmute` | gingerBill | 2024-06-29 | 1 | -1/+1 |
| | | |||||
| * | Add another `-vet-cast` check | gingerBill | 2024-06-29 | 1 | -0/+1 |
| | | |||||
| * | Update for `transmute` `-vet-cast` | gingerBill | 2024-06-29 | 2 | -9/+9 |
| | | |||||
| * | Check for unneeded `transmute` with `-vet-cast` | gingerBill | 2024-06-29 | 1 | -1/+1 |
| | | |||||
| * | Use explicit calling conventions | gingerBill | 2024-06-29 | 1 | -4/+4 |
| | | |||||
| * | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2024-06-29 | 2 | -8/+9 |
| |\ | |||||
| | * | Made default capacity of dynamic arrays more consistent. | Karl Zylinski | 2024-06-29 | 2 | -8/+9 |
| | | | | | | | | | | | | | | | | | | | Before this if you do `arr: [dynamic]int` and then append to arr, then it will have capacity 8. But if you did `arr := make([dynamic]int, context.temp_allocator)` then arr would have capacity 16. Now both `arr: [dynamic]int` and `arr := make([dynamic]int, context.temp_allocator)` will resut in arr having zero 0. The only reason to use `make` without an explicit len or cap now is because you want to set it up for a non-default allocator. After the first call to `append` it will now in both cases have capacity 8. I also updated the documentation on the strings builder, both to reflect this, and also to fix it incorrectly saying that len would be 'max(16,len)', which wasn't true even before these changes. | ||||
| * | | Use `f32` operations rather than `f16` in `complex32` and `quaternion64` to ↵ | gingerBill | 2024-06-29 | 1 | -17/+20 |
| |/ | | | | improve accuracy and performance | ||||
| * | Merge pull request #3502 from ARtemachka/master | gingerBill | 2024-06-28 | 1 | -2/+2 |
| |\ | | | | | Fix typo in core_builtin | ||||
| | * | Fix typo in core_builtin | Artsiom Babukh | 2024-04-28 | 1 | -2/+2 |
| | | | |||||
| * | | Initialize default `context` in `heap_allocator_other.odin` | gingerBill | 2024-06-28 | 1 | -0/+3 |
| | | | |||||
| * | | Replace `max(8, 1)` in _append_elem with just `8` and a comment. | Karl Zylinski | 2024-06-25 | 1 | -1/+2 |
| | | | |||||
| * | | Make `runtime.heap_alloc` `contextless` | gingerBill | 2024-06-25 | 5 | -15/+15 |
| | | | |||||
| * | | Fix unaligned store for rand | Jeroen van Rijn | 2024-06-20 | 1 | -1/+1 |
| | | | |||||
| * | | Optimize default RNG for the common case | Feoramund | 2024-06-20 | 1 | -9/+16 |
| | | | |||||
| * | | Merge pull request #3524 from Feoramund/freebsd-amd64-syscall-errno | gingerBill | 2024-06-20 | 1 | -0/+2 |
| |\ \ | | | | | | | Add `intrinsics.syscall_bsd` | ||||
| | * | | Add `intrinsics.syscall_bsd` | Feoramund | 2024-06-12 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | This is a BSD-style syscall that checks for a high Carry Flag as the error state. If the CF is high, the boolean return value is false, and if it is low (no errors) then the boolean return value is true. | ||||
| * | | | Clarify that the arena in base:runtime shouldn't be used for anything but ↵ | Karl Zylinski | 2024-06-18 | 1 | -1/+2 |
| | | | | | | | | | | | | | the default temp allocator. This is done by renaming the file in which it lives, and also by improving the comment above `Arena :: struct {`. This should avoid some confusion where people end up using the Arena in base:runtime because they thought it was the 'default arena'. | ||||
| * | | | Fix `default_random_generator_proc` not using state | Feoramund | 2024-06-15 | 1 | -1/+6 |
| | | | | |||||
| * | | | Update `core:math/rand` to use `context.random_generator` and remove `rand.Rand` | gingerBill | 2024-06-15 | 1 | -2/+16 |
| | | | | |||||
| * | | | Add `Reset` mode | gingerBill | 2024-06-15 | 2 | -13/+25 |
| | | | | |||||
| * | | | Add `runtime.default_random_generator` | gingerBill | 2024-06-15 | 2 | -1/+70 |
| | | | | |||||