From 484adec87c8b988cbb24d0a2fc4718ac69625173 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Fri, 13 Dec 2024 13:24:07 -0800 Subject: [NFC] Move HeapType::isBottom() to header (#7150) This makes Precompute about 5% faster on a WasmGC binary. Inspired by #6931. --- src/wasm-type.h | 27 +++++++++++++++++++++++++++ src/wasm/wasm-type.cpp | 25 ------------------------- 2 files changed, 27 insertions(+), 25 deletions(-) (limited to 'src') diff --git a/src/wasm-type.h b/src/wasm-type.h index b48a10713..1e7c0a0ba 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -870,6 +870,33 @@ std::ostream& operator<<(std::ostream&, Struct); std::ostream& operator<<(std::ostream&, Array); std::ostream& operator<<(std::ostream&, TypeBuilder::ErrorReason); +// Inline some nontrivial methods here for performance reasons. + +inline bool HeapType::isBottom() const { + if (isBasic()) { + switch (getBasic(Unshared)) { + case ext: + case func: + case cont: + case any: + case eq: + case i31: + case struct_: + case array: + case exn: + case string: + return false; + case none: + case noext: + case nofunc: + case nocont: + case noexn: + return true; + } + } + return false; +} + } // namespace wasm namespace std { diff --git a/src/wasm/wasm-type.cpp b/src/wasm/wasm-type.cpp index a6ed68770..4f341588b 100644 --- a/src/wasm/wasm-type.cpp +++ b/src/wasm/wasm-type.cpp @@ -866,31 +866,6 @@ HeapTypeKind HeapType::getKind() const { return getHeapTypeInfo(*this)->kind; } -bool HeapType::isBottom() const { - if (isBasic()) { - switch (getBasic(Unshared)) { - case ext: - case func: - case cont: - case any: - case eq: - case i31: - case struct_: - case array: - case exn: - case string: - return false; - case none: - case noext: - case nofunc: - case nocont: - case noexn: - return true; - } - } - return false; -} - bool HeapType::isOpen() const { if (isBasic()) { return false; -- cgit v1.2.3