Skip to content

Commit 8f07a28

Browse files
committed
replace uses of ANY
1 parent afadcd1 commit 8f07a28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+378
-334
lines changed

base/array.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ getindex(::Type{T}, x) where {T} = (@_inline_meta; a = Array{T,1}(1); @inbounds
224224
getindex(::Type{T}, x, y) where {T} = (@_inline_meta; a = Array{T,1}(2); @inbounds (a[1] = x; a[2] = y); a)
225225
getindex(::Type{T}, x, y, z) where {T} = (@_inline_meta; a = Array{T,1}(3); @inbounds (a[1] = x; a[2] = y; a[3] = z); a)
226226

227-
function getindex(::Type{Any}, vals::ANY...)
227+
function getindex(::Type{Any}, @nospecialize vals...)
228228
a = Array{Any,1}(length(vals))
229229
@inbounds for i = 1:length(vals)
230230
a[i] = vals[i]
@@ -472,9 +472,9 @@ function _collect_indices(indsA, A)
472472
end
473473

474474
if isdefined(Core, :Inference)
475-
_default_eltype(itrt::ANY) = Core.Inference.return_type(first, Tuple{itrt})
475+
_default_eltype(@nospecialize itrt) = Core.Inference.return_type(first, Tuple{itrt})
476476
else
477-
_default_eltype(itr::ANY) = Any
477+
_default_eltype(@nospecialize itr) = Any
478478
end
479479

480480
_array_for(::Type{T}, itr, ::HasLength) where {T} = Array{T,1}(Int(length(itr)::Integer))
@@ -680,7 +680,7 @@ function push!(a::Array{T,1}, item) where T
680680
return a
681681
end
682682

683-
function push!(a::Array{Any,1}, item::ANY)
683+
function push!(a::Array{Any,1}, @nospecialize item)
684684
_growend!(a, 1)
685685
arrayset(a, item, length(a))
686686
return a

base/associative.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ function rehash!(t::ObjectIdDict, newsz = length(t.ht))
451451
t
452452
end
453453

454-
function setindex!(t::ObjectIdDict, v::ANY, k::ANY)
454+
function setindex!(t::ObjectIdDict, @nospecialize(v), @nospecialize(k))
455455
if t.ndel >= ((3*length(t.ht))>>2)
456456
rehash!(t, max(length(t.ht)>>1, 32))
457457
t.ndel = 0
@@ -460,22 +460,22 @@ function setindex!(t::ObjectIdDict, v::ANY, k::ANY)
460460
return t
461461
end
462462

463-
get(t::ObjectIdDict, key::ANY, default::ANY) =
463+
get(t::ObjectIdDict, @nospecialize(key), @nospecialize(default)) =
464464
ccall(:jl_eqtable_get, Any, (Any, Any, Any), t.ht, key, default)
465465

466-
function pop!(t::ObjectIdDict, key::ANY, default::ANY)
466+
function pop!(t::ObjectIdDict, @nospecialize(key), @nospecialize(default))
467467
val = ccall(:jl_eqtable_pop, Any, (Any, Any, Any), t.ht, key, default)
468468
# TODO: this can underestimate `ndel`
469469
val === default || (t.ndel += 1)
470470
return val
471471
end
472472

473-
function pop!(t::ObjectIdDict, key::ANY)
473+
function pop!(t::ObjectIdDict, @nospecialize(key))
474474
val = pop!(t, key, secret_table_token)
475475
val !== secret_table_token ? val : throw(KeyError(key))
476476
end
477477

478-
function delete!(t::ObjectIdDict, key::ANY)
478+
function delete!(t::ObjectIdDict, @nospecialize(key))
479479
pop!(t, key, secret_table_token)
480480
t
481481
end

base/base.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ mutable struct MethodError <: Exception
5454
f
5555
args
5656
world::UInt
57-
MethodError(f::ANY, args::ANY, world::UInt) = new(f, args, world)
57+
MethodError(@nospecialize(f), @nospecialize(args), world::UInt) = new(f, args, world)
5858
end
59-
MethodError(f::ANY, args::ANY) = MethodError(f, args, typemax(UInt))
59+
MethodError(@nospecialize(f), @nospecialize(args)) = MethodError(f, args, typemax(UInt))
6060

6161
"""
6262
EOFError()
@@ -122,7 +122,7 @@ ccall(:jl_get_system_hooks, Void, ())
122122
==(w::WeakRef, v) = isequal(w.value, v)
123123
==(w, v::WeakRef) = isequal(w, v.value)
124124

125-
function finalizer(o::ANY, f::ANY)
125+
function finalizer(@nospecialize(o), @nospecialize(f))
126126
if isimmutable(o)
127127
error("objects of type ", typeof(o), " cannot be finalized")
128128
end
@@ -138,8 +138,8 @@ function finalizer(o::T, f::Ptr{Void}) where T
138138
Core.getptls(), o, f)
139139
end
140140

141-
finalize(o::ANY) = ccall(:jl_finalize_th, Void, (Ptr{Void}, Any,),
142-
Core.getptls(), o)
141+
finalize(@nospecialize(o)) = ccall(:jl_finalize_th, Void, (Ptr{Void}, Any,),
142+
Core.getptls(), o)
143143

144144
gc(full::Bool=true) = ccall(:jl_gc_collect, Void, (Int32,), full)
145145
gc_enable(on::Bool) = ccall(:jl_gc_enable, Int32, (Int32,), on) != 0

base/boot.jl

+37-31
Original file line numberDiff line numberDiff line change
@@ -182,16 +182,22 @@ else
182182
end
183183

184184
function Typeof end
185-
(f::typeof(Typeof))(x::ANY) = isa(x,Type) ? Type{x} : typeof(x)
185+
ccall(:jl_toplevel_eval_in, Any, (Any, Any),
186+
Core, quote
187+
(f::typeof(Typeof))(x) = ($(_expr(:meta,:nospecialize,:x)); isa(x,Type) ? Type{x} : typeof(x))
188+
end)
189+
190+
ccall(:jl_toplevel_eval_in, Any, (Any, Any),
191+
Core, quote
192+
Expr(args...) = ($(_expr(:meta,:nospecialize,:args)); _expr(args...))
193+
end)
186194

187195
abstract type Exception end
188196
mutable struct ErrorException <: Exception
189197
msg::AbstractString
190198
ErrorException(msg::AbstractString) = new(msg)
191199
end
192200

193-
Expr(args::ANY...) = _expr(args...)
194-
195201
macro _noinline_meta()
196202
Expr(:meta, :noinline)
197203
end
@@ -204,8 +210,8 @@ struct BoundsError <: Exception
204210
a::Any
205211
i::Any
206212
BoundsError() = new()
207-
BoundsError(a::ANY) = (@_noinline_meta; new(a))
208-
BoundsError(a::ANY, i) = (@_noinline_meta; new(a,i))
213+
BoundsError(@nospecialize(a)) = (@_noinline_meta; new(a))
214+
BoundsError(@nospecialize(a), i) = (@_noinline_meta; new(a,i))
209215
end
210216
struct DivideError <: Exception end
211217
struct DomainError <: Exception end
@@ -236,16 +242,16 @@ getptls() = ccall(:jl_get_ptls_states, Ptr{Void}, ())
236242

237243
include(m::Module, fname::String) = ccall(:jl_load_, Any, (Any, Any), m, fname)
238244

239-
eval(e::ANY) = eval(Main, e)
240-
eval(m::Module, e::ANY) = ccall(:jl_toplevel_eval_in, Any, (Any, Any), m, e)
245+
eval(@nospecialize(e)) = eval(Main, e)
246+
eval(m::Module, @nospecialize(e)) = ccall(:jl_toplevel_eval_in, Any, (Any, Any), m, e)
241247

242-
kwfunc(f::ANY) = ccall(:jl_get_keyword_sorter, Any, (Any,), f)
248+
kwfunc(@nospecialize(f)) = ccall(:jl_get_keyword_sorter, Any, (Any,), f)
243249

244-
kwftype(t::ANY) = typeof(ccall(:jl_get_kwsorter, Any, (Any,), t))
250+
kwftype(@nospecialize(t)) = typeof(ccall(:jl_get_kwsorter, Any, (Any,), t))
245251

246252
mutable struct Box
247253
contents::Any
248-
Box(x::ANY) = new(x)
254+
Box(@nospecialize(x)) = new(x)
249255
Box() = new()
250256
end
251257

@@ -254,18 +260,18 @@ end
254260
mutable struct WeakRef
255261
value
256262
WeakRef() = WeakRef(nothing)
257-
WeakRef(v::ANY) = ccall(:jl_gc_new_weakref_th, Ref{WeakRef},
258-
(Ptr{Void}, Any), getptls(), v)
263+
WeakRef(@nospecialize(v)) = ccall(:jl_gc_new_weakref_th, Ref{WeakRef},
264+
(Ptr{Void}, Any), getptls(), v)
259265
end
260266

261267
TypeVar(n::Symbol) =
262268
ccall(:jl_new_typevar, Ref{TypeVar}, (Any, Any, Any), n, Union{}, Any)
263-
TypeVar(n::Symbol, ub::ANY) =
269+
TypeVar(n::Symbol, @nospecialize(ub)) =
264270
ccall(:jl_new_typevar, Ref{TypeVar}, (Any, Any, Any), n, Union{}, ub)
265-
TypeVar(n::Symbol, lb::ANY, ub::ANY) =
271+
TypeVar(n::Symbol, @nospecialize(lb), @nospecialize(ub)) =
266272
ccall(:jl_new_typevar, Ref{TypeVar}, (Any, Any, Any), n, lb, ub)
267273

268-
UnionAll(v::TypeVar, t::ANY) = ccall(:jl_type_unionall, Any, (Any, Any), v, t)
274+
UnionAll(v::TypeVar, @nospecialize(t)) = ccall(:jl_type_unionall, Any, (Any, Any), v, t)
269275

270276
Void() = nothing
271277

@@ -280,26 +286,26 @@ VecElement(arg::T) where {T} = VecElement{T}(arg)
280286
# used by lowering of splicing unquote
281287
splicedexpr(hd::Symbol, args::Array{Any,1}) = (e=Expr(hd); e.args=args; e)
282288

283-
_new(typ::Symbol, argty::Symbol) = eval(:((::Type{$typ})(n::$argty) = $(Expr(:new, typ, :n))))
289+
_new(typ::Symbol, argty::Symbol) = eval(Core, :((::Type{$typ})(@nospecialize n::$argty) = $(Expr(:new, typ, :n))))
284290
_new(:LabelNode, :Int)
285291
_new(:GotoNode, :Int)
286292
_new(:NewvarNode, :SlotNumber)
287-
_new(:QuoteNode, :ANY)
293+
_new(:QuoteNode, :Any)
288294
_new(:SSAValue, :Int)
289-
eval(:((::Type{LineNumberNode})(l::Int) = $(Expr(:new, :LineNumberNode, :l, nothing))))
290-
eval(:((::Type{LineNumberNode})(l::Int, f::ANY) = $(Expr(:new, :LineNumberNode, :l, :f))))
291-
eval(:((::Type{GlobalRef})(m::Module, s::Symbol) = $(Expr(:new, :GlobalRef, :m, :s))))
292-
eval(:((::Type{SlotNumber})(n::Int) = $(Expr(:new, :SlotNumber, :n))))
293-
eval(:((::Type{TypedSlot})(n::Int, t::ANY) = $(Expr(:new, :TypedSlot, :n, :t))))
295+
eval(Core, :((::Type{LineNumberNode})(l::Int) = $(Expr(:new, :LineNumberNode, :l, nothing))))
296+
eval(Core, :((::Type{LineNumberNode})(l::Int, @nospecialize(f)) = $(Expr(:new, :LineNumberNode, :l, :f))))
297+
eval(Core, :((::Type{GlobalRef})(m::Module, s::Symbol) = $(Expr(:new, :GlobalRef, :m, :s))))
298+
eval(Core, :((::Type{SlotNumber})(n::Int) = $(Expr(:new, :SlotNumber, :n))))
299+
eval(Core, :((::Type{TypedSlot})(n::Int, @nospecialize(t)) = $(Expr(:new, :TypedSlot, :n, :t))))
294300

295301
Module(name::Symbol=:anonymous, std_imports::Bool=true) = ccall(:jl_f_new_module, Ref{Module}, (Any, Bool), name, std_imports)
296302

297-
Task(f::ANY) = ccall(:jl_new_task, Ref{Task}, (Any, Int), f, 0)
303+
Task(@nospecialize(f)) = ccall(:jl_new_task, Ref{Task}, (Any, Int), f, 0)
298304

299305
# simple convert for use by constructors of types in Core
300306
# note that there is no actual conversion defined here,
301307
# so the methods and ccall's in Core aren't permitted to use convert
302-
convert(::Type{Any}, x::ANY) = x
308+
convert(::Type{Any}, @nospecialize(x)) = x
303309
convert(::Type{T}, x::T) where {T} = x
304310
cconvert(::Type{T}, x) where {T} = convert(T, x)
305311
unsafe_convert(::Type{T}, x::T) where {T} = x
@@ -374,16 +380,16 @@ function write(io::IO, x::String)
374380
return nb
375381
end
376382

377-
show(io::IO, x::ANY) = ccall(:jl_static_show, Void, (Ptr{Void}, Any), io_pointer(io), x)
383+
show(io::IO, @nospecialize x) = ccall(:jl_static_show, Void, (Ptr{Void}, Any), io_pointer(io), x)
378384
print(io::IO, x::Char) = ccall(:jl_uv_putc, Void, (Ptr{Void}, Char), io_pointer(io), x)
379385
print(io::IO, x::String) = (write(io, x); nothing)
380-
print(io::IO, x::ANY) = show(io, x)
381-
print(io::IO, x::ANY, a::ANY...) = (print(io, x); print(io, a...))
386+
print(io::IO, @nospecialize x) = show(io, x)
387+
print(io::IO, @nospecialize(x), @nospecialize a...) = (print(io, x); print(io, a...))
382388
println(io::IO) = (write(io, 0x0a); nothing) # 0x0a = '\n'
383-
println(io::IO, x::ANY...) = (print(io, x...); println(io))
389+
println(io::IO, @nospecialize x...) = (print(io, x...); println(io))
384390

385-
show(a::ANY) = show(STDOUT, a)
386-
print(a::ANY...) = print(STDOUT, a...)
387-
println(a::ANY...) = println(STDOUT, a...)
391+
show(@nospecialize a) = show(STDOUT, a)
392+
print(@nospecialize a...) = print(STDOUT, a...)
393+
println(@nospecialize a...) = println(STDOUT, a...)
388394

389395
ccall(:jl_set_istopmod, Void, (Any, Bool), Core, true)

base/client.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ end
142142
display_error(er, bt) = display_error(STDERR, er, bt)
143143
display_error(er) = display_error(er, [])
144144

145-
function eval_user_input(ast::ANY, show_value)
145+
function eval_user_input(@nospecialize(ast), show_value)
146146
errcount, lasterr, bt = 0, (), nothing
147147
while true
148148
try

base/dates/adjusters.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ lastdayofquarter(dt::DateTime) = DateTime(lastdayofquarter(Date(dt)))
186186
struct DateFunction
187187
f::Function
188188
# validate boolean, single-arg inner constructor
189-
function DateFunction(f::ANY, dt::TimeType)
189+
function DateFunction(@nospecialize(f), dt::TimeType)
190190
isa(f(dt), Bool) || throw(ArgumentError("Provided function must take a single TimeType argument and return true or false"))
191191
return new(f)
192192
end

base/deepcopy.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function deepcopy_internal(x::String, stackdict::ObjectIdDict)
5151
return y
5252
end
5353

54-
function deepcopy_internal(x::ANY, stackdict::ObjectIdDict)
54+
function deepcopy_internal(@nospecialize(x), stackdict::ObjectIdDict)
5555
T = typeof(x)::DataType
5656
nf = nfields(T)
5757
(isbits(T) || nf == 0) && return x
@@ -78,7 +78,7 @@ function deepcopy_internal(x::Array, stackdict::ObjectIdDict)
7878
_deepcopy_array_t(x, eltype(x), stackdict)
7979
end
8080

81-
function _deepcopy_array_t(x::ANY, T, stackdict::ObjectIdDict)
81+
function _deepcopy_array_t(@nospecialize(x), T, stackdict::ObjectIdDict)
8282
if isbits(T)
8383
return (stackdict[x]=copy(x))
8484
end

base/deprecated.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ end
11141114
@deprecate(SharedArray(filename::AbstractString, ::Type{T}, dims::NTuple, offset; kwargs...) where {T},
11151115
SharedArray{T}(filename, dims, offset; kwargs...))
11161116

1117-
@noinline function is_intrinsic_expr(x::ANY)
1117+
@noinline function is_intrinsic_expr(@nospecialize(x))
11181118
Base.depwarn("is_intrinsic_expr is deprecated. There are no intrinsic functions anymore.", :is_intrinsic_expr)
11191119
return false
11201120
end
@@ -1372,11 +1372,11 @@ _current_module() = ccall(:jl_get_current_module, Ref{Module}, ())
13721372
depwarn("binding_module(symbol) is deprecated, use `binding_module(module, symbol)` instead.", :binding_module)
13731373
return binding_module(_current_module(), s)
13741374
end
1375-
@noinline function expand(x::ANY)
1375+
@noinline function expand(@nospecialize(x))
13761376
depwarn("expand(x) is deprecated, use `expand(module, x)` instead.", :expand)
13771377
return expand(_current_module(), x)
13781378
end
1379-
@noinline function macroexpand(x::ANY)
1379+
@noinline function macroexpand(@nospecialize(x))
13801380
depwarn("macroexpand(x) is deprecated, use `macroexpand(module, x)` instead.", :macroexpand)
13811381
return macroexpand(_current_module(), x)
13821382
end

base/distributed/clusterserialize.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function lookup_object_number(s::ClusterSerializer, n::UInt64)
3232
return get(known_object_data, n, nothing)
3333
end
3434

35-
function remember_object(s::ClusterSerializer, o::ANY, n::UInt64)
35+
function remember_object(s::ClusterSerializer, @nospecialize(o), n::UInt64)
3636
known_object_data[n] = o
3737
if isa(o, TypeName) && !haskey(object_numbers, o)
3838
# set up reverse mapping for serialize

base/docs/Docs.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ mutable struct DocStr
146146
data :: Dict{Symbol, Any}
147147
end
148148

149-
function docstr(binding::Binding, typesig::ANY = Union{})
149+
function docstr(binding::Binding, @nospecialize typesig = Union{})
150150
for m in modules
151151
dict = meta(m)
152152
if haskey(dict, binding)
@@ -229,7 +229,7 @@ end
229229
230230
Adds a new docstring `str` to the docsystem of `__module__` for `binding` and signature `sig`.
231231
"""
232-
function doc!(__module__::Module, b::Binding, str::DocStr, sig::ANY = Union{})
232+
function doc!(__module__::Module, b::Binding, str::DocStr, @nospecialize sig = Union{})
233233
initmeta(__module__)
234234
m = get!(meta(__module__), b, MultiDoc())
235235
if haskey(m.docs, sig)

base/docs/utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ Strip all Markdown markup from x, leaving the result in plain text. Used
416416
internally by apropos to make docstrings containing more than one markdown
417417
element searchable.
418418
"""
419-
stripmd(x::ANY) = string(x) # for random objects interpolated into the docstring
419+
stripmd(@nospecialize x) = string(x) # for random objects interpolated into the docstring
420420
stripmd(x::AbstractString) = x # base case
421421
stripmd(x::Void) = " "
422422
stripmd(x::Vector) = string(map(stripmd, x)...)

0 commit comments

Comments
 (0)