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

Type-parameterize Core.Box #53382

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 6 additions & 4 deletions base/boot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -427,10 +427,12 @@ include(m::Module, fname::String) = ccall(:jl_load_, Any, (Any, Any), m, fname)

eval(m::Module, @nospecialize(e)) = ccall(:jl_toplevel_eval_in, Any, (Any, Any), m, e)

mutable struct Box
contents::Any
Box(@nospecialize(x)) = new(x)
Box() = new()
mutable struct Box{C}
contents::C
Box{C}(c) where C = new{C}(c)
Box(@nospecialize(c)) = new{Any}(c)
Box{C}() where C = new{C}()
Box() = new{Any}()
end

# constructors for built-in types
Expand Down
Empty file modified contrib/asan/build.sh
100755 → 100644
Empty file.
Empty file modified contrib/asan/check.jl
100755 → 100644
Empty file.
Empty file modified contrib/bpftrace/gc_all.bt
100755 → 100644
Empty file.
Empty file modified contrib/bpftrace/gc_simple.bt
100755 → 100644
Empty file.
Empty file modified contrib/bpftrace/gc_stop_the_world_latency.bt
100755 → 100644
Empty file.
Empty file modified contrib/bpftrace/rt_all.bt
100755 → 100644
Empty file.
Empty file modified contrib/check-whitespace.jl
100755 → 100644
Empty file.
Empty file modified contrib/commit-name.sh
100755 → 100644
Empty file.
Empty file modified contrib/delete-all-rpaths.sh
100755 → 100644
Empty file.
Empty file modified contrib/download_cmake.sh
100755 → 100644
Empty file.
Empty file modified contrib/excise_stdlib.sh
100755 → 100644
Empty file.
Empty file modified contrib/fixup-libgfortran.sh
100755 → 100644
Empty file.
Empty file modified contrib/fixup-libstdc++.sh
100755 → 100644
Empty file.
Empty file modified contrib/fixup-rpath.sh
100755 → 100644
Empty file.
Empty file modified contrib/install.sh
100755 → 100644
Empty file.
Empty file modified contrib/julia-config.jl
100755 → 100644
Empty file.
Empty file modified contrib/mac/app/notarize_check.sh
100755 → 100644
Empty file.
Empty file modified contrib/mac/app/renotarize_dmg.sh
100755 → 100644
Empty file.
Empty file modified contrib/new-stdlib.sh
100755 → 100644
Empty file.
Empty file modified contrib/normalize_triplet.py
100755 → 100644
Empty file.
Empty file modified contrib/prepare_release.sh
100755 → 100644
Empty file.
Empty file modified contrib/relative_path.py
100755 → 100644
Empty file.
Empty file modified contrib/tsan/build.sh
100755 → 100644
Empty file.
Empty file modified contrib/windows/icon-readme.md
100755 → 100644
Empty file.
Empty file modified contrib/windows/julia-banner.bmp
100755 → 100644
Empty file.
Empty file modified contrib/windows/julia.ico
100755 → 100644
Empty file.
Empty file modified deps/tools/jlchecksum
100755 → 100644
Empty file.
Empty file modified deps/tools/jldownload
100755 → 100644
Empty file.
Empty file modified src/flisp/bootstrap.sh
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/julia-syntax.scm
Original file line number Diff line number Diff line change
Expand Up @@ -3455,7 +3455,7 @@ f(x) = yt(x)
(call (core _setsuper!) ,s ,super)
(= (outerref ,name) ,s)
(call (core _typebody!) ,s
(call (core svec) ,@(map (lambda (v) '(core Box)) fields)))
(call (core svec) ,@(map (lambda (v) '(call (core apply_type) (core Box) (core Any))) fields)))
(return (null)))))))))

;; better versions of above, but they get handled wrong in many places
Expand Down Expand Up @@ -4137,7 +4137,7 @@ f(x) = yt(x)
(typedef ;; expression to define the type
(let* ((fieldtypes (map (lambda (v)
(if (is-var-boxed? v lam)
'(core Box)
'(call (core apply_type) (core Box) (core Any))
(make-ssavalue)))
capt-vars))
(para (append closure-param-syms
Expand Down