| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Merge branch 'master' into llvm-integration | gingerBill | 2020-03-15 | 1 | -1/+1 | |
| |\ | ||||||
| | * | Fix #590 | gingerBill | 2020-03-15 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix `llvm.memset` for both backends | gingerBill | 2020-03-08 | 1 | -5/+15 | |
| | | | ||||||
| * | | Fix `context` system; add more to -show-more-timings for LLVM API; Add ↵ | gingerBill | 2020-03-08 | 1 | -10/+30 | |
| | | | | | | | | | `ODIN_USE_LLVM_API` global constant | |||||
| * | | Merge branch 'master' into llvm-integration | gingerBill | 2020-03-05 | 1 | -5/+5 | |
| |\| | ||||||
| | * | `x if cond else y` and `x when cond else y` expressions | gingerBill | 2020-03-05 | 1 | -5/+5 | |
| | | | ||||||
| * | | Merge branch 'master' into llvm-integration | gingerBill | 2020-03-04 | 1 | -2/+2 | |
| |\| | ||||||
| | * | Fix formatting | gingerBill | 2020-03-04 | 1 | -2/+2 | |
| | | | ||||||
| * | | Type_Info initialization | gingerBill | 2020-02-29 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge branch 'master' into llvm-integration | gingerBill | 2020-02-29 | 1 | -5/+6 | |
| |\| | ||||||
| | * | Fix __dynamic_array_reserve | gingerBill | 2020-02-26 | 1 | -3/+6 | |
| | | | ||||||
| | * | Fix __dynamic_array_reserve to allow for zero sized elements | gingerBill | 2020-02-26 | 1 | -3/+1 | |
| | | | ||||||
| * | | Merge branch 'master' into llvm-integration | gingerBill | 2020-02-23 | 1 | -4/+5 | |
| |\| | ||||||
| | * | Enhance logger interface with 'f' and not 'f' variants, also move level ↵ | Mikkel Hjortshoej | 2020-02-10 | 1 | -4/+5 | |
| | | | | | | | | | detection out | |||||
| * | | Basic work on obj generation | gingerBill | 2020-02-23 | 2 | -17/+17 | |
| |/ | ||||||
| * | Add `union #maybe` | gingerBill | 2020-02-01 | 1 | -1/+2 | |
| | | ||||||
| * | Fix `make(map[K]V, 0)` by ensuring `reserve` always sets an allocator | Tetralux | 2020-01-26 | 1 | -2/+4 | |
| | | | | | | | | | Currently, `make(map[K]V, 0)` asserts, because trying `reserve` zero items does not set the allocator; it early-outs. `__dynamic_map_reserve` assumed that `__dynamic_array_reserve` would always set the allocator - even if given a desired capacity of `0`. Rather than making `__slice_resize` just _also_ set the default allocator if there isn't one, this makes `__dynamic_array_reserve` always set the allocator, even if it is about to early out. This is because users are lead to understand that `append` will set the allocator if one is not already set - `reserve` should work the same way. | |||||
| * | Begin work on `-target:windows_386` | gingerBill | 2020-01-18 | 1 | -0/+59 | |
| | | ||||||
| * | Improve runtime/default_allocators.odin | gingerBill | 2020-01-11 | 1 | -2/+21 | |
| | | ||||||
| * | Improve minimum dependency for complex numbers and quaternion numbers. | gingerBill | 2020-01-04 | 1 | -0/+2 | |
| | | ||||||
| * | Fix make and reserve | Tetralux | 2020-01-03 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | - Set the allocator, even if memory allocation fails. Right now it doesn't, which means that if allocation fails, it'll use the context allocator instead. This memory will be leaked if the user doesn't understand that this happened. - Only set len and cap of the array returned from make iif the memory allocation succeeded. This means that reserve will return false if you do this: ``` a := make([dynamic]int, failing_allocator); if !reserve(&a, 5) do return; // or whatever indicates failure ``` | |||||
| * | Fix behaviour for `make` to return `nil` when alloc returns `nil` | gingerBill | 2020-01-03 | 1 | -0/+2 | |
| | | ||||||
| * | Fix `append_string` | Tetralux | 2020-01-02 | 1 | -1/+1 | |
| | | ||||||
| * | Fix typeid information for enumerated arrays | gingerBill | 2019-12-31 | 1 | -8/+7 | |
| | | ||||||
| * | Fix memset for unix | gingerBill | 2019-12-31 | 1 | -2/+2 | |
| | | ||||||
| * | Use naive definition of `memset` for !windows | gingerBill | 2019-12-31 | 1 | -22/+7 | |
| | | ||||||
| * | Make `mem.set` use `llvm.memset.p0i8.iXX` | gingerBill | 2019-12-31 | 1 | -17/+20 | |
| | | ||||||
| * | Fix new changes to runtime for unix | gingerBill | 2019-12-31 | 1 | -9/+12 | |
| | | ||||||
| * | Add new runtime files. | gingerBill | 2019-12-31 | 2 | -0/+148 | |
| | | ||||||
| * | Move definition of mem.Allocator and log.Logger to `package runtime`, to ↵ | gingerBill | 2019-12-31 | 2 | -56/+275 | |
| | | | | | reduce import cycle magic | |||||
| * | Add `_tls_index` and `_fltused` for windows `-no-crt` | gingerBill | 2019-12-29 | 1 | -0/+8 | |
| | | ||||||
| * | Add `-disable-assert` to disable the code generation of the built-in ↵ | gingerBill | 2019-12-29 | 1 | -2/+5 | |
| | | | | | run-time 'assert' procedure | |||||
| * | Make default `context.temp_allocator` thread safe when using `package thread` | gingerBill | 2019-12-29 | 1 | -3/+6 | |
| | | ||||||
| * | Enumerated arrays `[Enum_Type]Elem_Type` | gingerBill | 2019-12-27 | 2 | -0/+17 | |
| | | ||||||
| * | minor details ;) | Patric Dexheimer | 2019-12-24 | 1 | -2/+2 | |
| | | ||||||
| * | Fix `runtime.mem_copy_non_overlapping` to be like C's `memcpy` | gingerBill | 2019-12-24 | 1 | -4/+4 | |
| | | ||||||
| * | Implement `#complete switch` by default, replace with `#partial switch` #511 | gingerBill | 2019-12-22 | 2 | -4/+7 | |
| | | ||||||
| * | Add udivmod128.odin | gingerBill | 2019-12-21 | 1 | -0/+180 | |
| | | ||||||
| * | Add `-help` which prints information about the compiler flags | gingerBill | 2019-12-21 | 1 | -178/+0 | |
| | | ||||||
| * | Replace `#vector[N]T` with `#simd[N]T` to reduce confusion #498 | gingerBill | 2019-12-15 | 1 | -1/+1 | |
| | | ||||||
| * | Fix `append_elem_string`, again | gingerBill | 2019-12-03 | 1 | -1/+1 | |
| | | ||||||
| * | Fix `append_elem_string` | gingerBill | 2019-12-03 | 1 | -1/+1 | |
| | | ||||||
| * | Fix `append_elem_string` | gingerBill | 2019-12-03 | 1 | -1/+2 | |
| | | ||||||
| * | Make the `string` type elements "immutable", akin to `char const *` in C | gingerBill | 2019-12-01 | 2 | -12/+35 | |
| | | | | | Allows for extra security and optimization benefits | |||||
| * | #soa[dynamic]Type (Experimental) | gingerBill | 2019-11-21 | 1 | -0/+196 | |
| | | ||||||
| * | Prepare SOA Struct code for slices and dynamic arrays *to be implemented* | gingerBill | 2019-11-19 | 2 | -7/+34 | |
| | | ||||||
| * | Add new #soa and #vector syntax | gingerBill | 2019-11-17 | 1 | -3/+9 | |
| | | ||||||
| * | Use `runtime.mem_copy` in `package me` | gingerBill | 2019-11-03 | 1 | -0/+16 | |
| | | ||||||
| * | SOA support of Structures and Arrays; Runtime information for SOA structs; ↵ | gingerBill | 2019-11-03 | 1 | -0/+3 | |
| | | | | | fmt printing support for SOA structs | |||||
| * | Fix `runtime.cstring_len` | gingerBill | 2019-10-29 | 1 | -3/+3 | |
| | | ||||||