https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
c5d6f31 slightly improved `dataids` docstring 09 August 2023, 19:02:12 UTC
ef31a5f remove `dataids(::AbstractDict)` 09 August 2023, 18:56:16 UTC
1ba7f18 implement `unaliascopy(A::PermutedDimsArray)` 09 August 2023, 17:13:30 UTC
4832890 remove dataids(::Dict) micro-optimization 08 August 2023, 18:48:57 UTC
5040206 more careful dict handling only use pointer_from_objref for Dict itself; otherwise use objectid as some AbstractDicts are immutable 08 August 2023, 13:24:50 UTC
67348e0 update docstring 07 August 2023, 18:09:31 UTC
83d9a1c add dataids(::AbstractDictionary) 07 August 2023, 18:09:31 UTC
ef1d351 Add custom implementation of `unaliascopy(::LogicalIndex)` 07 August 2023, 17:29:42 UTC
ae2d5bc Further refine fallback dataids 07 August 2023, 17:29:40 UTC
77f7a92 Provide custom `dataids` for `Tridiagonal` 07 August 2023, 17:29:03 UTC
b57a2a0 slightly better abstract definition but not reliably inferable for nested structures 07 August 2023, 17:28:58 UTC
e5de7b6 Optimize dataids(::AbstractArray) I was previously calling objectid -- I should have been using pointer_from_objref. The former is a hash, the latter is much quicker and easier to compute. 07 August 2023, 16:15:35 UTC
9f9e989 Move `round(T::Type, x)` docstring above `round(z::Complex, ...)` docstring (#50775) 06 August 2023, 04:35:03 UTC
3e04129 fix `bit_map!` with aliasing (#50781) fixes #50780 caused by #47013. 05 August 2023, 21:10:15 UTC
117ef2e inference: continue const-prop' when concrete-eval returns non-inlineable (#50618) 05 August 2023, 03:15:02 UTC
ab94fad Add fallback if we have make a weird GC decision. (#50682) If something odd happens during GC (the PC goes to sleep) or a very big transient the heuristics might make a bad decision. What this PR implements is if we try to make our target more than double the one we had before we fallback to a more conservative method. This fixes the new issue @vtjnash found in https://github.com/JuliaLang/julia/issues/40644 for me. 05 August 2023, 00:29:42 UTC
67d600c Model :consistent for compilerbarrier (#50793) 04 August 2023, 23:19:58 UTC
2c45e3b Clarify that `trunc`/`ceil`/`floor` are allowed to round without throwing `InexactError`. (#50777) 04 August 2023, 00:35:53 UTC
f337c3d Minor refactor to image generation (#50779) 04 August 2023, 00:09:17 UTC
6dd763b re-allow non-string values in ENV `get!` (#50771) fixes #50472 03 August 2023, 20:18:56 UTC
a2f3d77 optimizer: move inlineable constants into argument position during `compact!`-ion (#50767) In code like below ```julia Base.@assume_effects :nothrow function erase_before_inlining(x, y) z = sin(y) if x return "julia" end return z end let y::Float64 length(erase_before_inlining(true, y)) end ``` the constant prop' can figure out the constant return type of `erase_before_inlining(true, y)` while it is profitable not to inline expand it since otherwise we left some `!:nothrow` callees there (xref: https://github.com/JuliaLang/julia/pull/47305). In order to workaround this problem, this commit makes `compact!`move inlineable constants into argument positions so that the such "inlineable, but safe as a whole" calls to be erased during compaction. This should give us general compile-time performance improvement too as we no longer need to expand the IR for those calls. Requires: - #50764 - #50765 - #50768 03 August 2023, 18:03:42 UTC
c03a346 Optimize PLT and jl_load_and_lookup calls (#50745) 03 August 2023, 16:40:38 UTC
881e08b Support rounding `Irrational`s (#45598) 03 August 2023, 15:50:41 UTC
b3e8bd0 ssair: `compact!` constant `PiNode` (#50768) Currently the `compact!`-ion pass fails to fold constant `PiNode` like `PiNode(0.0, Const(0.0))`. This commit fixes it up. 03 August 2023, 15:36:54 UTC
1b9eeca docs: fix wrong description (#50774) The descriptions had `i <= 5` while the code block had `i <=3`. 03 August 2023, 13:24:09 UTC
c62f4ea Add command line option for short banner (#50726) ``` o | Version 1.10.0-beta1 (2023-07-25) o o | Official https://julialang.org/ release ``` --------- Co-authored-by: Claire Foster <aka.c42f@gmail.com> 03 August 2023, 11:42:07 UTC
2a8eca3 irinterp: refine `:nothrow` only when it is not proved yet (#50764) This makes irinterp not override `:nothrow=true` that are assumed by `Base.@assume_effects`. 03 August 2023, 10:56:24 UTC
cbc72d5 test: make sure cachecompile does not combine modules in one file (#50750) 03 August 2023, 03:08:03 UTC
7d0da58 Fix log1p(z) for extremely small |z|. (#50769) If |z| is extremely small (e.g. `1e-200+5e-175im`), the expression `log(u)*z/(u-1)` (where `u` is `1 + z`) evaluates to 0, because the product `log(u)*z` is approximately `z.im*z` when |z| is very small, and that product underflows to 0. By adding parentheses so that the expression is `log(u)*(z/(u-1))`, `z/(u - 1)` is evaluated first and the underflow is avoided. 03 August 2023, 01:41:16 UTC
6b4d519 effects: fix `:nothrow` modeling of `getglobal` (#50765) 02 August 2023, 23:22:32 UTC
bea8c44 Don't partition alwaysinline functions (#50766) 02 August 2023, 21:51:31 UTC
d64d336 AbstractIntepreter: revert `invokecall` to a positional argument (#50763) In #50739, `invokecall` argument of `concrete_eval_call` was changed to a keyword argument. However, this was an unintentional change that imposes unnecessary changes to be required on packages using external `AbstractInterpreter`. This commit simply restores it to positional argument as before. 02 August 2023, 19:36:18 UTC
3eddd17 follow up "[NFC] minor refactorings on gf.c & codegen.cpp (#50645)" (#50748) This follows up commit https://github.com/JuliaLang/julia/commit/19f6926d2109df35ae51a45f587f4d61e81a1d50. As discussed in PR, the changes in gf.c were not NFC and may lead to performance problems, so should be reverted. Also added more detailed comments on the codegen.cpp change. 02 August 2023, 15:45:09 UTC
bb4929d Fix outdated usage of scrubbing for log test failures (#50759) Fixes #50755. 02 August 2023, 15:42:29 UTC
edff86a cat: remove unused promote_eltype methods that confuse inference (#50753) These cannot be reached, but they would imply this function might return Bottom, which it cannot. Fix #50550 02 August 2023, 15:41:19 UTC
202a64c 🤖 [master] Bump the Pkg stdlib from 80e64bcd3 to 2c04d5a98 (#50760) 02 August 2023, 15:33:10 UTC
3c64bc3 fix O(n^2) `length` calls in compact-ir lowering step (#50756) This can be a problem for very long function bodies. 02 August 2023, 03:34:16 UTC
33e3d9f inference: permit recursive type traits (#50694) We had a special case for Type that disallowed type trait recursion in favor of a pattern that almost never appears in code (only once in the compiler by accident where it doesn't matter). This was unnecessarily confusing and unexpected to predict what can infer, and made traits harder than necessary (such as Broadcast.ndims since 70fc3cdc11b). Fix #43296 Fix #43368 02 August 2023, 03:32:13 UTC
3708229 Add alignment to constant globals (#50738) 02 August 2023, 00:25:09 UTC
f00957b Refactor final-gc-lowering (#50741) 01 August 2023, 22:05:05 UTC
8066c29 AbstractInterpreter: add a hook to customize bestguess calculation (#50744) Currently, the code that updates `bestguess` using `ReturnNode` information includes hardcodes that relate to `Conditional` and `LimitedAccuracy`. These behaviors are actually lattice-dependent and therefore should be overloadable by `AbstractInterpreter`. Additionally, particularly in Diffractor, a clever strategy is required to update return types in a way that it takes into account information from both the original method and its rule method (xref: JuliaDiff/Diffractor.jl#202). This also requires such an overload to exist. In response to these needs, this commit introduces an implementation of a hook named `update_bestguess!`. 01 August 2023, 20:54:41 UTC
9822257 only limit types in stack traces in the REPL (#50598) fixes #50575 Co-authored-by: Shuhei Kadowaki <40514306+aviatesk@users.noreply.github.com> 01 August 2023, 19:29:33 UTC
7b587ac irinterp: fix semi-concrete evaluation of overlay methods (#50739) This commit introduces several fixes related to the overlay method and its semi-concrete evaluation. When `f` is being overlayed, semi-concrete interpretation is performed on `f`. While this isn't problematic in itself, the issue arises since there is no overlay check within concrete evaluation in the semi-concrete interpretation (`concrete_eval_invoke`), potentially leading to mis-compilation. This commit makes adjustments to allow semi-concrete interpretation for overlay methods, while preventing the concretization of overlay methods within `concrete_eval_invoke`. Note: Confirmed GPUCompiler test suite passes with this patch after https://github.com/JuliaGPU/GPUCompiler.jl/pull/488. 01 August 2023, 14:59:37 UTC
9808035 Respect linkage type in jl_merge_module (#50678) We shouldn't merge non-external definitions in `jl_merge_module`, so that we can freely emit internal globals without relying on a global counter. Depends on #50650 01 August 2023, 14:46:47 UTC
ec8df3d Print out module in more places when we abort (#50723) 31 July 2023, 19:24:34 UTC
382ba35 Support `convert(LineNumberNode, ::LineInfoNode)` (#50676) xref https://github.com/timholy/CodeTracking.jl/pull/113. It looks like that method might not even be important anymore for CodeTracking and the Revise stack, but because we have lots of packages that dive into internals, having this seems to make sense. 31 July 2023, 18:10:23 UTC
441fcb1 Merge opaque closure modules with the rest of the workqueue (#50724) This sticks the compiled opaque closure module into the `compiled_functions` list of modules that we have compiled for the particular `jl_codegen_params_t`. We probably should manage that vector in codegen_params, since it lets us see if a particular codeinst has already been compiled but not yet emitted. 31 July 2023, 17:58:04 UTC
f4cb8bc fix `CyclePadding(::DataType)` (#50719) We probably want to add a test for this code path. 31 July 2023, 16:40:41 UTC
6f0a9e5 broadcast: simplify ndims (#50695) The extra dispatch was inconsistently used, which seemed unnecessary. Also make sure T is captured as a Type parameter in the closure (fast), instead of a value (potentially slow). Very small difference measured (probably just noise): broadcast (1) | 115.68 | 0.78 | 0.7 | 4245.13 | 849.62 before broadcast (1) | 109.73 | 0.80 | 0.7 | 4243.89 | 788.25 after 31 July 2023, 16:27:18 UTC
a712455 doc: fix typo in tempname docstring (#50734) 31 July 2023, 12:02:51 UTC
21ac3c5 Allocation Profiler: Types for all allocations (#50337) Pass the types to the allocator functions. ------- Before this PR, we were missing the types for allocations in two cases: 1. allocations from codegen 2. allocations in `gc_managed_realloc_` The second one is easy: those are always used for buffers, right? For the first one: we extend the allocation functions called from codegen, to take the type as a parameter, and set the tag there. I kept the old interfaces around, since I think that they cannot be removed due to supporting legacy code? ------ An example of the generated code: ```julia %ptls_field6 = getelementptr inbounds {}**, {}*** %4, i64 2 %13 = bitcast {}*** %ptls_field6 to i8** %ptls_load78 = load i8*, i8** %13, align 8 %box = call noalias nonnull dereferenceable(32) {}* @ijl_gc_pool_alloc_typed(i8* %ptls_load78, i32 1184, i32 32, i64 4366152144) #7 ``` Fixes #43688. Fixes #45268. Co-authored-by: Valentin Churavy <vchuravy@users.noreply.github.com> 31 July 2023, 02:27:11 UTC
210c5b5 Fix rdiv of complex lhs by real factorizations (#50671) Co-authored-by: Martin Holters <martin@holters.name> 29 July 2023, 16:59:04 UTC
c664a57 Fix link in TOML docs (#50715) 29 July 2023, 16:54:58 UTC
5c69561 Attach `tanpi` docstring to method (#50689) 29 July 2023, 16:39:50 UTC
4825a0c A legendary tale of why we should make pmap default to using CachingPool (#33892) Once upon a time, there was a young julia user first getting started with parallelism. And she found it fearsomely slow. And so she did investigate, and she did illuminate upon her issue. Her closures, they were being reserialized again and again. And so this young woman, she openned an issue #16345. Lo and behold, a noble soul did come and resolve it, by making the glorious `CachingPool()` in #16808. 3 long years a later this julia user did bravely return to the world of parallism, with many battle worn scars. and once more she did face the demon that is `pmap` over closures. But to her folly, she felt no fear, for she believed the demon to be crippled and chained by the glorious `CachingPool`. Fearlessly, she threw his closure over 2GB of data into the maw of the demon `pmap`. But alas, alas indeed, she was wrong. The demon remained unbound, and it slew her, and slew her again. 100 times did it slay her for 101 items was the user iterating upon. For the glorious chains of the the `CachingPool()` remains unused, left aside in the users tool chest, forgotten. 28 July 2023, 23:57:12 UTC
503d5b4 Revert "Remove number / vector (#44358)" (#49915) 28 July 2023, 21:25:23 UTC
62605cc include `--pkgimage=no` caches for stdlibs (#50666) 27 July 2023, 17:35:04 UTC
943db02 Restructure JIT to have more extension points and more logical control flow (#50650) Rather than forking the optimize and compile layers into individual layers per optlevel, each optimize and compile layer will switch on the requested optlevel of the module, which reduces the complexity of tracing a module's path through the JIT. In addition, this lets us move some of the `addModule` code to happen post-optimization, which makes the optimization pipeline not see literal pointers except those generated by codegen. 27 July 2023, 15:17:04 UTC
da19bc1 document Libc.FILE (#49908) Adds some missing documentation for `Libc.FILE`, which is already exported. 27 July 2023, 15:10:00 UTC
dc06468 Make reinterpret specialize fully. (#50670) Fixes https://github.com/JuliaLang/julia/issues/50612 The issue here was the reinterpret change made a bunch of operations like `Core.bitcast(UInt64,24)` not fold, even though they are fully known at compile time. That made `UInt32(Char)` not inline which then caused the regression. 27 July 2023, 11:09:58 UTC
4fd68e8 Add `Libdl.LazyLibrary` (#50074) This provides an in-base mechanism to handle chained library dependencies. In essence, the `LazyLibrary` object can be used anywhere a pointer to a library can be used (`dlopen`, `dlsym`, `ccall`, etc...) but it delays loading the library (and its recursive dependencies) until it is actually needed. This is the foundational piece needed to upgrade JLLs to lazily-load their libraries. In this new scheme, JLLs would generally lose all executable code and consist of nothing more than `LazyLibrary` definitions. 27 July 2023, 11:07:56 UTC
43a14f8 Base.MPFR: implement `signbit` in Julia without a `ccall` (#50675) This accesses MPFR's internals, but it should be stable. 27 July 2023, 00:57:10 UTC
4cdd8cd Properly isolate `sysimg` bootstrap environment (#50683) The stdlib environment should be isolated from the global environment while it is bootstrapping; it should only load from the stdlib directory. 26 July 2023, 23:36:13 UTC
c43e5a1 `versioninfo()`: include build info and unofficial warning (#50635) 26 July 2023, 19:40:55 UTC
ff14eaf Reuse incremental JIT compilation for --image-codegen (#50649) We don't need to merge all of the workqueue modules when performing compilation with `--image-codegen` set, we just need the global variable initializers to be defined before they're used in one of the modules. Therefore we can do this by compiling all of the global variable initializers upfront, so that later references will link them properly. 26 July 2023, 13:34:54 UTC
8c3452f Clean up various naming aspects of codegen (#50638) Most of the changes are changing from `const std::string &` to `const Twine &`, which lets us be lazier about computing string values efficiently. We also make the plt function private linkage since it's only referred to by the plt global. --------- Co-authored-by: Jameson Nash <vtjnash@gmail.com> 26 July 2023, 13:32:34 UTC
9c6efd6 remove extraneous using .Libdl in Libc (#50672) From f9351253124 --------- Co-authored-by: Elliot Saba <staticfloat@gmail.com> 26 July 2023, 12:46:37 UTC
c777c71 fix hashing regression. (#50655) This fixes 2 bugs introduced by #49996 and #50041. Closes #50628. 26 July 2023, 10:21:19 UTC
a87b164 fix 32 bit tests 26 July 2023, 01:48:37 UTC
7ca0f0d codegen: Remove literal_static_pointer_val from literal_pointer_val implementation (#50632) This eliminates most of the literal pointers outside of ccalls and directly JIT-ted code, except instead of adding names we instead just use imaging mode and fix up the visualization in `jl_get_llvmf_defn`. 25 July 2023, 19:54:44 UTC
207c09a Avoid generic call in most cases for getproperty (#50523) More generic than https://github.com/JuliaLang/julia/pull/50444. Should we keep the boundscheck on the getfield since we got the index from the runtime itself? 25 July 2023, 19:31:27 UTC
9124234 print `@time` msg into print buffer (#50665) 25 July 2023, 15:59:28 UTC
6f6439e Don't use integer division for cong (#50427) 24 July 2023, 20:04:20 UTC
c57d33a Remove SparseArrays legacy code (#50637) 24 July 2023, 17:22:47 UTC
1f2b5e0 Update base/float.jl Co-authored-by: Lilith Orion Hafner <lilithhafner@gmail.com> 24 July 2023, 16:07:38 UTC
3cc0590 `Array(::AbstractRange)` should return an `Array` (#50568) Currently, `Array(r::AbstractRange)` falls back to `vcat(r)`, but certain ranges may choose to specialize `vcat(r::AbstractRange)` to not return an `Array`. This PR ensures that `Array(r)` always returns an `Array`. At present, there's some code overlap with `vcat` (just above the `Array` method added in this PR). Perhaps some of these may be replaced by `unsafe_copyto!`, but the tests for ranges include some special cases that don't support `getindex`, which complicates things a bit. I've not done this for now. In any case, the common bit of code is pretty simple, so perhaps the duplication is harmless. 24 July 2023, 16:03:22 UTC
0fcac7a Update base/float.jl Co-authored-by: Lilith Orion Hafner <lilithhafner@gmail.com> 24 July 2023, 15:47:20 UTC
08fdf0a Update base/float.jl Co-authored-by: Lilith Orion Hafner <lilithhafner@gmail.com> 24 July 2023, 15:43:13 UTC
eaffc71 Update base/float.jl Co-authored-by: Lilith Orion Hafner <lilithhafner@gmail.com> 24 July 2023, 15:43:06 UTC
760c8be typo 24 July 2023, 15:40:39 UTC
0d4b2a1 add comments 24 July 2023, 15:13:33 UTC
02a158f fix hashing 24 July 2023, 14:55:03 UTC
76a9772 add `using Random` to UUIDs docstring (#50622) this makes the docstring more self-contained 24 July 2023, 14:29:32 UTC
19f6926 [NFC] minor refactorings on gf.c & codegen.cpp (#50645) Improvements I made during I looked at the execution chain of top-level code. 24 July 2023, 13:32:51 UTC
e23e116 Shift DCE pass to optimize imaging mode code better (#50631) 23 July 2023, 17:27:17 UTC
ae798cd Revert storage of method instance in LineInfoNode (#50546) Due to #50082, reverting the causative portion from #41099, which stored MethodInstances in LineInfoNodes. 23 July 2023, 14:39:55 UTC
3c5b3c0 Add `Base.format_bytes(; binary=false)` option (#50572) Add a `binary` keyword argument to `Base.format_bytes` that enables switching between the default units KiB, MiB, GiB, etc. and kB, MB, GB. I've wanted this feature multiple times before so I thought I should just make a PR. ```julia julia> Base.format_bytes(12345678) "11.774 MiB" julia> Base.format_bytes(12345678; binary=false) # with this PR "12.346 MB" ``` 23 July 2023, 14:38:09 UTC
3d944dd Add function signature to code_native and code_llvm (#50630) When getting LLVM IR from `@code_llvm`, it's sometimes necessary to know exactly which `f` is being compiled. This prints the type signature of a function in front of `code_llvm` and `code_native` to assist in that process. <details> <summary>Example</summary> ```julia julia> @code_llvm zeros(64) ``` ```llvm ; Function Signature: zeros(Int64) ; @ array.jl:629 within `zeros` define nonnull {}* @julia_zeros_121(i64 signext %"dims[1]::Int64") #0 { top: ; @ array.jl:629 within `zeros` @ array.jl:631 @ array.jl:634 ; ┌ @ boot.jl:484 within `Array` @ boot.jl:475 %0 = call nonnull {}* inttoptr (i64 140604991500960 to {}* ({}*, i64)*)({}* inttoptr (i64 140604630439728 to {}*), i64 %"dims[1]::Int64") ; └ ; @ array.jl:629 within `zeros` @ array.jl:631 @ array.jl:635 ; ┌ @ array.jl:392 within `fill!` ; │┌ @ abstractarray.jl:318 within `eachindex` ; ││┌ @ abstractarray.jl:134 within `axes1` ; │││┌ @ abstractarray.jl:98 within `axes` ; ││││┌ @ array.jl:191 within `size` %1 = bitcast {}* %0 to { i8*, i64, i16, i16, i32 }* %.length_ptr = getelementptr inbounds { i8*, i64, i16, i16, i32 }, { i8*, i64, i16, i16, i32 }* %1, i64 0, i32 1 %.length = load i64, i64* %.length_ptr, align 8 ; │└└└└ ; │┌ @ range.jl:897 within `iterate` ; ││┌ @ range.jl:674 within `isempty` ; │││┌ @ operators.jl:378 within `>` ; ││││┌ @ int.jl:83 within `<` %.not.not = icmp eq i64 %.length, 0 ; │└└└└ br i1 %.not.not, label %L30, label %L13.preheader L13.preheader: ; preds = %top %2 = bitcast {}* %0 to i8** %.data1013 = load i8*, i8** %2, align 8 ; │ @ array.jl:394 within `fill!` %3 = shl nuw i64 %.length, 3 ; │ @ array.jl:393 within `fill!` ; │┌ @ array.jl:1019 within `setindex!` call void @llvm.memset.p0i8.i64(i8* nonnull align 8 %.data1013, i8 0, i64 %3, i1 false) ; └└ ; @ array.jl:629 within `zeros` br label %L30 L30: ; preds = %L13.preheader, %top ret {}* %0 } ``` </details> 23 July 2023, 14:37:12 UTC
092231c Backport LLVM patches to fix various issues. (#50639) - https://github.com/llvm/llvm-project/commit/af39acda8873cc75db116e326588447f018a99d9 closing https://github.com/JuliaLang/julia/issues/50448 - https://reviews.llvm.org/D139078 closing https://github.com/JuliaLang/julia/issues/49907 23 July 2023, 14:28:29 UTC
32aa29f Page based heap size heuristics (#50144) This PR implements GC heuristics based on the amount of pages allocated instead of live objects like was done before. The heuristic for new heap target is based on https://dl.acm.org/doi/10.1145/3563323 (in summary it argues that the heap target should have square root behaviour). From my testing this fixes https://github.com/JuliaLang/julia/issues/49545 and https://github.com/JuliaLang/julia/issues/49761 23 July 2023, 13:11:50 UTC
d1be33d Assert tid>0 in workqueue_for (#50602) Otherwise the inbounds annotations are not sound. As requested in https://github.com/JuliaLang/julia/pull/50597#pullrequestreview-1537852869. 22 July 2023, 20:20:48 UTC
6691a75 🤖 [master] Bump the SparseArrays stdlib from b4b0e72 to 99c99b4 (#50634) Stdlib: SparseArrays URL: https://github.com/JuliaSparse/SparseArrays.jl.git Stdlib branch: main Julia branch: master Old commit: b4b0e72 New commit: 99c99b4 Julia version: 1.11.0-DEV SparseArrays version: 1.10.0 (Does not match) Bump invoked by: @dkarrasch Powered by: [BumpStdlibs.jl](https://github.com/JuliaLang/BumpStdlibs.jl) Diff: https://github.com/JuliaSparse/SparseArrays.jl/compare/b4b0e721ada6e8cf5f6391aff4db307be69b0401...99c99b4521eb19a7973643d1aa4d7b1e4d50a6db ``` $ git log --oneline b4b0e72..99c99b4 99c99b4 Specialize 3-arg `dot` for sparse self-adjoint matrices (#398) cb10c1e use unwrapping mechanism for triangular matrices (#396) b3872c8 added warning for iterating while mutating a sparse matrix (#415) f8f0f40 bring coverage of fixed SparseMatrixCSC to 100% (#392) 0eb9c04 fix typos (#414) ``` Co-authored-by: Dilum Aluthge <dilum@aluthge.com> 22 July 2023, 15:53:24 UTC
c82656d gc: faster invalid object lookup in conservative GC (#50599) Optimizes invalid object lookup in conservative GC by just looking at the page metadata and GC bits. 22 July 2023, 00:55:32 UTC
90c0e19 Add function signature to code_native and code_llvm 22 July 2023, 00:02:56 UTC
bf00ff4 Add extra profiling events to JIT/AOT compilation (#50610) 21 July 2023, 19:34:42 UTC
049de79 Name a couple more things in LLVM IR (#50625) 21 July 2023, 19:33:09 UTC
958f647 Remove libuv_jll contents (#50601) We link libuv statically, so there's no point in trying to use a JLL. I'm not removing the JLL entirely as removing stdlibs is difficult, and we may link libuv dynamically in the future. Fixes https://github.com/JuliaLang/julia/issues/50592 21 July 2023, 03:21:21 UTC
eb74011 Update runtests.jl 20 July 2023, 23:20:53 UTC
d080fe6 build: fix various makefile bugs (#50591) Trying for cross-compile and disabling CSL and realized both of those configurations were broken now. 20 July 2023, 19:57:46 UTC
9f3ca7c Merge branch 'master' into new-heuristics 20 July 2023, 17:08:25 UTC
back to top