Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backports for 1.12.0-beta2 #58009

Open
wants to merge 4 commits into
base: release-1.12
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ New library functions
* The new `isfull(c::Channel)` function can be used to check if `put!(c, some_value)` will block ([#53159]).
* `waitany(tasks; throw=false)` and `waitall(tasks; failfast=false, throw=false)` which wait for multiple tasks
at once ([#53341]).
* `uuid7()` creates an RFC 9652 compliant UUID with version 7 ([#54834]).
* `uuid7()` creates an RFC 9562 compliant UUID with version 7 ([#54834]).
* `insertdims(array; dims)` inserts singleton dimensions into an array --- the inverse operation of
`dropdims` ([#45793]).
* A new `Fix` type generalizes `Fix1/Fix2` for fixing a single argument ([#54653]).
Expand Down
44 changes: 25 additions & 19 deletions base/Base_compiler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,31 @@ if false
println(io::IO, x...) = Core.println(io, x...)
end

## Load essential files and libraries
include("essentials.jl")

# Because lowering inserts direct references, it is mandatory for this binding
# to exist before we start inferring code.
function string end
import Core: String

# For OS specific stuff
# We need to strcat things here, before strings are really defined
function strcat(x::String, y::String)
out = ccall(:jl_alloc_string, Ref{String}, (Int,), Core.sizeof(x) + Core.sizeof(y))
gc_x = @_gc_preserve_begin(x)
gc_y = @_gc_preserve_begin(y)
gc_out = @_gc_preserve_begin(out)
out_ptr = unsafe_convert(Ptr{UInt8}, out)
unsafe_copyto!(out_ptr, unsafe_convert(Ptr{UInt8}, x), Core.sizeof(x))
unsafe_copyto!(out_ptr + Core.sizeof(x), unsafe_convert(Ptr{UInt8}, y), Core.sizeof(y))
@_gc_preserve_end(gc_x)
@_gc_preserve_end(gc_y)
@_gc_preserve_end(gc_out)
return out
end


"""
time_ns() -> UInt64

Expand All @@ -172,8 +197,6 @@ const _DOCS_ALIASING_WARNING = """
Behavior can be unexpected when any mutated argument shares memory with any other argument.
"""

## Load essential files and libraries
include("essentials.jl")
include("ctypes.jl")
include("gcutils.jl")
include("generator.jl")
Expand Down Expand Up @@ -284,7 +307,6 @@ include("rounding.jl")
include("float.jl")

# Lazy strings
import Core: String
include("strings/lazy.jl")

function cld end
Expand Down Expand Up @@ -321,22 +343,6 @@ using .Order
include("coreir.jl")
include("invalidation.jl")

# Because lowering inserts direct references, it is mandatory for this binding
# to exist before we start inferring code.
function string end

# For OS specific stuff
# We need to strcat things here, before strings are really defined
function strcat(x::String, y::String)
out = ccall(:jl_alloc_string, Ref{String}, (Csize_t,), Core.sizeof(x) + Core.sizeof(y))
GC.@preserve x y out begin
out_ptr = unsafe_convert(Ptr{UInt8}, out)
unsafe_copyto!(out_ptr, unsafe_convert(Ptr{UInt8}, x), Core.sizeof(x))
unsafe_copyto!(out_ptr + Core.sizeof(x), unsafe_convert(Ptr{UInt8}, y), Core.sizeof(y))
end
return out
end

BUILDROOT::String = ""
DATAROOT::String = ""
const DL_LOAD_PATH = String[]
Expand Down
2 changes: 2 additions & 0 deletions base/essentials.jl
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,8 @@ cconvert(::Type{<:Ptr}, x) = x # but defer the conversion to Ptr to unsafe_conve
unsafe_convert(::Type{T}, x::T) where {T} = x # unsafe_convert (like convert) defaults to assuming the convert occurred
unsafe_convert(::Type{T}, x::T) where {T<:Ptr} = x # to resolve ambiguity with the next method
unsafe_convert(::Type{P}, x::Ptr) where {P<:Ptr} = convert(P, x)
unsafe_convert(::Type{Ptr{UInt8}}, s::String) = ccall(:jl_string_ptr, Ptr{UInt8}, (Any,), s)
unsafe_convert(::Type{Ptr{Int8}}, s::String) = ccall(:jl_string_ptr, Ptr{Int8}, (Any,), s)

"""
reinterpret(::Type{Out}, x::In)
Expand Down
3 changes: 2 additions & 1 deletion base/expr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,8 @@ function generated_body_to_codeinfo(ex::Expr, defmod::Module, isva::Bool)
ci = ccall(:jl_expand, Any, (Any, Any), ex, defmod)
if !isa(ci, CodeInfo)
if isa(ci, Expr) && ci.head === :error
error("syntax: $(ci.args[1])")
msg = ci.args[1]
error(msg isa String ? strcat("syntax: ", msg) : msg)
end
error("The function body AST defined by this @generated function is not pure. This likely means it contains a closure, a comprehension or a generator.")
end
Expand Down
10 changes: 6 additions & 4 deletions base/intfuncs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@ function nextpow(a::Real, x::Real)
n = ceil(Integer,log(a, x))
# round-off error of log can go either direction, so need some checks
p = a^(n-1)
x > typemax(p) && throw(DomainError(x,"argument is beyond the range of type of the base"))
hastypemax(typeof(p)) && x > typemax(p) &&
throw(DomainError(x,"argument is beyond the range of type of the base"))
p >= x && return p
wp = a^n
wp > p || throw(OverflowError("result is beyond the range of type of the base"))
Expand Down Expand Up @@ -611,9 +612,10 @@ function prevpow(a::T, x::Real) where T <: Real
n = floor(Integer,log(a, x))
# round-off error of log can go either direction, so need some checks
p = a^n
x > typemax(p) && throw(DomainError(x,"argument is beyond the range of type of the base"))
hastypemax(typeof(p)) && x > typemax(p) &&
throw(DomainError(x,"argument is beyond the range of type of the base"))
if a isa Integer
wp, overflow = mul_with_overflow(a, p)
wp, overflow = mul_with_overflow(promote(a, p)...)
wp <= x && !overflow && return wp
else
wp = a^(n+1)
Expand Down Expand Up @@ -845,7 +847,7 @@ function append_c_digits(olength::Int, digits::Unsigned, buf, pos::Int)
while i >= 2
d, c = divrem(digits, 0x64)
digits = oftype(digits, d)
@inbounds d100 = _dec_d100[(c % Int) + 1]
@inbounds d100 = _dec_d100[(c % Int)::Int + 1]
@inbounds buf[pos + i - 2] = d100 % UInt8
@inbounds buf[pos + i - 1] = (d100 >> 0x8) % UInt8
i -= 2
Expand Down
2 changes: 0 additions & 2 deletions base/pointer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ cconvert(::Type{Ptr{UInt8}}, s::AbstractString) = String(s)
cconvert(::Type{Ptr{Int8}}, s::AbstractString) = String(s)
unsafe_convert(::Type{Ptr{UInt8}}, x::Symbol) = ccall(:jl_symbol_name, Ptr{UInt8}, (Any,), x)
unsafe_convert(::Type{Ptr{Int8}}, x::Symbol) = ccall(:jl_symbol_name, Ptr{Int8}, (Any,), x)
unsafe_convert(::Type{Ptr{UInt8}}, s::String) = ccall(:jl_string_ptr, Ptr{UInt8}, (Any,), s)
unsafe_convert(::Type{Ptr{Int8}}, s::String) = ccall(:jl_string_ptr, Ptr{Int8}, (Any,), s)

cconvert(::Type{<:Ptr}, a::Array) = getfield(a, :ref)
unsafe_convert(::Type{Ptr{S}}, a::AbstractArray{T}) where {S,T} = convert(Ptr{S}, unsafe_convert(Ptr{T}, a))
Expand Down
10 changes: 5 additions & 5 deletions stdlib/UUIDs/src/UUIDs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import Base: UUID
uuid_version(u::UUID) -> Int
Inspects the given UUID and returns its version
(see [RFC 4122](https://www.ietf.org/rfc/rfc4122)).
(see [RFC 4122](https://tools.ietf.org/html/rfc4122)).
# Examples
```jldoctest
Expand All @@ -39,7 +39,7 @@ const namespace_x500 = UUID(0x6ba7b8149dad11d180b400c04fd430c8) # 6ba7b814-9dad-
uuid1([rng::AbstractRNG]) -> UUID
Generates a version 1 (time-based) universally unique identifier (UUID), as specified
by [RFC 4122](https://www.ietf.org/rfc/rfc4122). Note that the Node ID is randomly generated (does not identify the host)
by [RFC 4122](https://tools.ietf.org/html/rfc4122). Note that the Node ID is randomly generated (does not identify the host)
according to section 4.5 of the RFC.
The default rng used by `uuid1` is not `Random.default_rng()` and every invocation of `uuid1()` without
Expand Down Expand Up @@ -92,7 +92,7 @@ end
uuid4([rng::AbstractRNG]) -> UUID
Generates a version 4 (random or pseudo-random) universally unique identifier (UUID),
as specified by [RFC 4122](https://www.ietf.org/rfc/rfc4122).
as specified by [RFC 4122](https://tools.ietf.org/html/rfc4122).
The default rng used by `uuid4` is not `Random.default_rng()` and every invocation of `uuid4()` without
an argument should be expected to return a unique identifier. Importantly, the outputs of
Expand Down Expand Up @@ -124,7 +124,7 @@ end
uuid5(ns::UUID, name::String) -> UUID
Generates a version 5 (namespace and domain-based) universally unique identifier (UUID),
as specified by RFC 4122.
as specified by [RFC 4122](https://tools.ietf.org/html/rfc4122).
!!! compat "Julia 1.1"
This function requires at least Julia 1.1.
Expand Down Expand Up @@ -165,7 +165,7 @@ end
uuid7([rng::AbstractRNG]) -> UUID
Generates a version 7 (random or pseudo-random) universally unique identifier (UUID),
as specified by [RFC 9652](https://www.rfc-editor.org/rfc/rfc9562).
as specified by [RFC 9562](https://tools.ietf.org/html/rfc9562).
The default rng used by `uuid7` is not `Random.default_rng()` and every invocation of `uuid7()` without
an argument should be expected to return a unique identifier. Importantly, the outputs of
Expand Down
17 changes: 16 additions & 1 deletion test/intfuncs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,14 @@ end
end

@testset "nextpow/prevpow" begin
fs = (prevpow, nextpow)
types = (Int8, BigInt, BigFloat)
for f ∈ fs, P ∈ types, R ∈ types, p ∈ 1:20, r ∈ 2:5
q = P(p)
n = R(r)
@test f(r, p) == f(n, q)
end

@test nextpow(2, 3) == 4
@test nextpow(2, 4) == 4
@test nextpow(2, 7) == 8
Expand All @@ -339,7 +347,14 @@ end
@test prevpow(10, 101.0) === 100
@test prevpow(10.0, 101) === 100.0
@test_throws DomainError prevpow(0, 3)
@test_throws DomainError prevpow(0, 3)
@test_throws DomainError prevpow(3, 0)

# "argument is beyond the range of type of the base"
@test_throws DomainError prevpow(Int8(3), 243)
@test_throws DomainError nextpow(Int8(3), 243)

# "result is beyond the range of type of the base"
@test_throws OverflowError nextpow(Int8(3), 82)
end

@testset "ndigits/ndigits0z" begin
Expand Down
2 changes: 2 additions & 0 deletions test/staged.jl
Original file line number Diff line number Diff line change
Expand Up @@ -477,3 +477,5 @@ module GeneratedScope57417
end
@test g() == 1
end

@test_throws "syntax: expression too large" code_lowered(ntuple, (Returns{Nothing}, Val{1000000}))