Skip to content
Merged
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
18 changes: 12 additions & 6 deletions src/passes/GlobalTypeOptimization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,16 +407,22 @@ struct GlobalTypeOptimization : public Pass {

// Process the descriptor.
if (auto desc = type.getDescriptorType()) {
// To remove a descriptor, it must not be used in subtypes. It must also
// have no write (see above, we note only dangerous writes which might
// trap), as if it could trap, we'd have no easy way to remove it in a
// global scope.
// To remove a descriptor, it must not be read via supertypes and it
// must not have to remain in supertypes because e.g. they are public.
// It must also have no write (see above, we note only dangerous writes
// which might trap), as if it could trap, we'd have no easy way to
// remove it in a global scope.
// TODO: We could check and handle the global scope specifically, but
// the trapsNeverHappen flag avoids this problem entirely anyhow.
//
// This does not handle descriptor subtyping, see below.
if (!dataFromSupers.desc.hasRead &&
(!dataFromSupers.desc.hasWrite || trapsNeverHappen)) {
auto super = type.getDeclaredSuperType();
bool superNeedsDescriptor = super && super->getDescriptorType() &&
!haveUnneededDescriptors.count(*super);
bool descriptorIsUsed =
dataFromSupers.desc.hasRead ||
(dataFromSupers.desc.hasWrite && !trapsNeverHappen);
if (!superNeedsDescriptor && !descriptorIsUsed) {
haveUnneededDescriptors.insert(type);
}
}
Expand Down
84 changes: 84 additions & 0 deletions test/lit/passes/gto-desc.wast
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,90 @@
)
)

;; Here we cannot optimize with placeholders because the public supertype needs
;; to keep its descriptor and its subtypes therefore need to keep their related
;; descriptors.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $public (sub (descriptor $public.desc (struct))))
(type $public (sub (descriptor $public.desc (struct))))
;; CHECK: (type $public.desc (sub (describes $public (struct))))
(type $public.desc (sub (describes $public (struct))))
)
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $unused (sub $public (descriptor $unused.desc (struct))))
(type $unused (sub $public (descriptor $unused.desc (struct))))
;; CHECK: (type $unused.desc (sub $public.desc (describes $unused (struct))))
(type $unused.desc (sub $public.desc (describes $unused (struct))))

;; CHECK: (type $used (sub $unused (descriptor $used.desc (struct))))
(type $used (sub $unused (descriptor $used.desc (struct))))
;; CHECK: (type $used.desc (sub $unused.desc (describes $used (struct))))
(type $used.desc (sub $unused.desc (describes $used (struct))))
)

;; CHECK: (type $6 (func (param (ref $used)) (result (ref $used.desc))))

;; CHECK: (global $public (ref null $public) (ref.null none))
(global $public (export "public") (ref null $public) (ref.null none))

;; CHECK: (export "public" (global $public))

;; CHECK: (func $use (type $6) (param $used (ref $used)) (result (ref $used.desc))
;; CHECK-NEXT: (ref.get_desc $used
;; CHECK-NEXT: (local.get $used)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $use (param $used (ref $used)) (result (ref $used.desc))
(ref.get_desc $used
(local.get $used)
)
)
)

;; Now the public supertype does not have a descriptor, so we can still
;; optimize.
(module
(rec
;; CHECK: (type $public (sub (struct)))
(type $public (sub (struct)))
)
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (descriptor $unused.desc (struct)))

;; CHECK: (type $unused (sub $public (struct)))
(type $unused (sub $public (descriptor $unused.desc (struct))))
;; CHECK: (type $unused.desc (sub (describes $1 (struct))))
(type $unused.desc (sub (describes $unused (struct))))

;; CHECK: (type $used (sub $unused (descriptor $used.desc (struct))))
(type $used (sub $unused (descriptor $used.desc (struct))))
;; CHECK: (type $used.desc (sub $unused.desc (describes $used (struct))))
(type $used.desc (sub $unused.desc (describes $used (struct))))
)

;; CHECK: (type $6 (func (param (ref $used)) (result (ref $used.desc))))

;; CHECK: (global $public (ref null $public) (ref.null none))
(global $public (export "public") (ref null $public) (ref.null none))

;; CHECK: (export "public" (global $public))

;; CHECK: (func $use (type $6) (param $used (ref $used)) (result (ref $used.desc))
;; CHECK-NEXT: (ref.get_desc $used
;; CHECK-NEXT: (local.get $used)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $use (param $used (ref $used)) (result (ref $used.desc))
(ref.get_desc $used
(local.get $used)
)
)
)

;; Sibling types $A and $B. The supertype that connects them should not stop us
;; from optimizing $B here, even though $A cannot be optimized.
(module
Expand Down
Loading