/src/WasmEdge/include/experimental/expected.hpp
Line | Count | Source (jump to first uncovered line) |
1 | | // SPDX-License-Identifier: CC0-1.0 |
2 | | /// |
3 | | // expected - An c++17 implementation of std::expected with extensions |
4 | | // Written in 2017 by Simon Brand (simonrbrand@gmail.com, @TartanLlama) |
5 | | // Modified in 2020 by Shen-Ta Hsieh (ibmibmibm.tw@gmail.com, @ibmibmibm) |
6 | | // |
7 | | // To the extent possible under law, the author(s) have dedicated all |
8 | | // copyright and related and neighboring rights to this software to the |
9 | | // public domain worldwide. This software is distributed without any warranty. |
10 | | // |
11 | | // You should have received a copy of the CC0 Public Domain Dedication |
12 | | // along with this software. If not, see |
13 | | // <http://creativecommons.org/publicdomain/zero/1.0/>. |
14 | | /// |
15 | | |
16 | | #pragma once |
17 | | #include <functional> |
18 | | #include <type_traits> |
19 | | #include <utility> |
20 | | #include <variant> |
21 | | |
22 | | #if defined(_MSC_VER) && !defined(__clang__) |
23 | | #define __builtin_expect(exp, c) (exp) |
24 | | #endif |
25 | | |
26 | | #if defined(__has_feature) |
27 | | #if __has_feature(cxx_exceptions) |
28 | | #define M_ENABLE_EXCEPTIONS 1 |
29 | | #else |
30 | | #define M_ENABLE_EXCEPTIONS 0 |
31 | | #endif |
32 | | #elif defined(__GNUC__) |
33 | | #ifdef __EXCEPTIONS |
34 | | #define M_ENABLE_EXCEPTIONS 1 |
35 | | #else |
36 | | #define M_ENABLE_EXCEPTIONS 0 |
37 | | #endif |
38 | | #elif defined(_MSC_VER) |
39 | | #ifdef _CPPUNWIND |
40 | | #define M_ENABLE_EXCEPTIONS 1 |
41 | | #else |
42 | | #define M_ENABLE_EXCEPTIONS 0 |
43 | | #endif |
44 | | #endif |
45 | | |
46 | | #ifndef M_ENABLE_EXCEPTIONS |
47 | | #define M_ENABLE_EXCEPTIONS 1 |
48 | | #endif |
49 | | |
50 | | #if M_ENABLE_EXCEPTIONS |
51 | | #define throw_exception_again throw |
52 | | #else |
53 | | #define try if (true) |
54 | | #define catch(X) if (false) |
55 | | #define throw(X) abort() |
56 | | #define throw_exception_again |
57 | | #endif |
58 | | |
59 | | namespace cxx20 { |
60 | | using namespace std; |
61 | | |
62 | | template <class T, class E> class expected; |
63 | | template <class E> class unexpected; |
64 | | template <class E> unexpected(E) -> unexpected<E>; |
65 | | |
66 | | template <class E> class bad_expected_access; |
67 | | template <> class bad_expected_access<void> : public exception { |
68 | | public: |
69 | 0 | explicit bad_expected_access() = default; |
70 | | }; |
71 | | template <class E> |
72 | | class bad_expected_access : public bad_expected_access<void> { |
73 | | public: |
74 | 0 | explicit bad_expected_access(E e) : m_error(std::move(e)) {} Unexecuted instantiation: cxx20::bad_expected_access<WasmEdge::ErrCode>::bad_expected_access(WasmEdge::ErrCode) Unexecuted instantiation: cxx20::bad_expected_access<cxx20::unexpected<WasmEdge::ErrCode> >::bad_expected_access(cxx20::unexpected<WasmEdge::ErrCode>) |
75 | 0 | const char *what() const noexcept override { return "Bad expected access"; } Unexecuted instantiation: cxx20::bad_expected_access<__wasi_errno_t>::what() const Unexecuted instantiation: cxx20::bad_expected_access<WasmEdge::ErrCode>::what() const Unexecuted instantiation: cxx20::bad_expected_access<cxx20::unexpected<WasmEdge::ErrCode> >::what() const |
76 | | const E &error() const & { return m_error; } |
77 | | const E &&error() const && { return std::move(m_error); } |
78 | | E &error() & { return m_error; } |
79 | | E &&error() && { return std::move(m_error); } |
80 | | |
81 | | private: |
82 | | E m_error; |
83 | | }; |
84 | | |
85 | | struct unexpect_t { |
86 | | explicit constexpr unexpect_t() = default; |
87 | | }; |
88 | | inline constexpr unexpect_t unexpect{}; |
89 | | |
90 | | namespace detail { |
91 | | |
92 | | template <class T> using remove_cvref_t = remove_cv_t<remove_reference_t<T>>; |
93 | | |
94 | | template <class A, class B> |
95 | | static inline constexpr bool |
96 | | is_not_constructible_and_not_reverse_convertible_v = |
97 | | !is_constructible_v<A, B &> && !is_constructible_v<A, B &&> && |
98 | | !is_constructible_v<A, const B &> && |
99 | | !is_constructible_v<A, const B &&> && !is_convertible_v<B &, A> && |
100 | | !is_convertible_v<B &&, A> && !is_convertible_v<const B &, A> && |
101 | | !is_convertible_v<const B &&, A>; |
102 | | |
103 | | struct no_init_t { |
104 | | explicit constexpr no_init_t() = default; |
105 | | }; |
106 | | inline constexpr no_init_t no_init{}; |
107 | | |
108 | | template <class T> struct is_expected : false_type {}; |
109 | | template <class T, class E> struct is_expected<expected<T, E>> : true_type {}; |
110 | | template <class T> |
111 | | static inline constexpr bool is_expected_v = is_expected<T>::value; |
112 | | |
113 | 98.5M | static inline bool likely(bool V) { return __builtin_expect(V, true); } Unexecuted instantiation: wasmedge.cpp:cxx20::detail::likely(bool) fuzzTool.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 19.5k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: fuzzPO.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: uniTool.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: compilerTool.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: runtimeTool.cpp:cxx20::detail::likely(bool) vm.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 1.06M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: plugin.cpp:cxx20::detail::likely(bool) module.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 201k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: func.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: argument_parser.cpp:cxx20::detail::likely(bool) section.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 10.5M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
description.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 314k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
segment.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 409k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
type.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 332k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
expression.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 69.5k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
instruction.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 53.5M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
loader.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 46.3k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
component.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 18.5k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: component_section.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_instance.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_sort.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_alias.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_canonical.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_start.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_type.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_import.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: component_export.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_module.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_section.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_segment.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_type.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_description.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_expression.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: serial_instruction.cpp:cxx20::detail::likely(bool) filemgr.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 14.7M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: shared_library.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: aot_section.cpp:cxx20::detail::likely(bool) validator.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 8.62M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: validator_component.cpp:cxx20::detail::likely(bool) formchecker.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 8.50M | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: proxy.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: threadInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: refInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: engine.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: helper.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: executor.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: coredump.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_alias.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_canon.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_export.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_import.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_instance.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_start.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: instantiate_component_type.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: tag.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: controlInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: tableInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: memoryInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: variableInstr.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: import.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: function.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: global.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: table.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: memory.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: elem.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: data.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: export.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: environ.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: vinode.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: wasimodule.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: inode-linux.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: wasifunc.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: clock-linux.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: environ-linux.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: compiler.cpp:cxx20::detail::likely(bool) codegen.cpp:cxx20::detail::likely(bool) Line | Count | Source | 113 | 4.28k | static inline bool likely(bool V) { return __builtin_expect(V, true); } |
Unexecuted instantiation: jit.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: allocator.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: fault.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: stacktrace.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: hash.cpp:cxx20::detail::likely(bool) Unexecuted instantiation: errinfo.cpp:cxx20::detail::likely(bool) |
114 | | |
115 | | } // namespace detail |
116 | | |
117 | | template <class E> class unexpected { |
118 | | E m_val; |
119 | | |
120 | | public: |
121 | 3.45k | constexpr unexpected(const unexpected &) = default; |
122 | 3.84k | constexpr unexpected(unexpected &&) = default; |
123 | | constexpr unexpected &operator=(const unexpected &) = default; |
124 | | |
125 | | template <class... Args, |
126 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
127 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
128 | | constexpr explicit unexpected(in_place_t, Args &&...args) noexcept(NoExcept) |
129 | 33.1k | : m_val(std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IJNS2_7ErrCodeENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEETnPNS7_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOSF_ Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ _ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 129 | 29.7k | : m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IJNS2_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ _ZN5cxx2010unexpectedINS0_IN8WasmEdge7ErrCodeEEEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 129 | 3.43k | : m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge4LLVM5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx2010unexpectedI14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_ Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge7ErrCode5ValueEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ |
130 | | template <class U, class... Args, |
131 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
132 | | nullptr, |
133 | | bool NoExcept = |
134 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
135 | | constexpr explicit unexpected(in_place_t, initializer_list<U> il, |
136 | | Args &&...args) noexcept(NoExcept) |
137 | | : m_val(il, std::forward<Args>(args)...) {} |
138 | | template <class Err = E, |
139 | | enable_if_t<is_constructible_v<E, Err> && |
140 | | !is_same_v<detail::remove_cvref_t<E>, in_place_t> && |
141 | | !is_same_v<detail::remove_cvref_t<E>, unexpected>> * = |
142 | | nullptr, |
143 | | bool NoExcept = is_nothrow_constructible_v<E, Err>> |
144 | | constexpr explicit unexpected(Err &&e) noexcept(NoExcept) |
145 | 120k | : m_val(std::forward<Err>(e)) {} Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IRS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS7_9is_same_vIS3_NS7_10in_place_tEEEEntL_ZNSA_IS3_S4_EEEEvE4typeELPv0ELb0EEEOS9_ Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS6_9is_same_vIS3_NS6_10in_place_tEEEEntL_ZNS9_IS3_S4_EEEEvE4typeELPv0ELb1EEEOS8_ _ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS5_9is_same_vIS2_NS5_10in_place_tEEEEntL_ZNS8_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 145 | 67.4k | : m_val(std::forward<Err>(e)) {} |
_ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IRKS2_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS7_9is_same_vIS2_NS7_10in_place_tEEEEntL_ZNSA_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 145 | 5.76k | : m_val(std::forward<Err>(e)) {} |
_ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IRS2_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS6_9is_same_vIS2_NS6_10in_place_tEEEEntL_ZNS9_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS8_ Line | Count | Source | 145 | 46.3k | : m_val(std::forward<Err>(e)) {} |
Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2INS2_5ValueETnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS6_9is_same_vIS2_NS6_10in_place_tEEEEntL_ZNS9_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS8_ _ZN5cxx2010unexpectedINS0_IN8WasmEdge7ErrCodeEEEEC2IS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS6_9is_same_vIS3_NS6_10in_place_tEEEEntL_ZNS9_IS3_S4_EEEEvE4typeELPv0ELb1EEEOS8_ Line | Count | Source | 145 | 406 | : m_val(std::forward<Err>(e)) {} |
Unexecuted instantiation: _ZN5cxx2010unexpectedI14__wasi_errno_tEC2IRS1_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS1_T_EntL_ZNS5_9is_same_vIS1_NS5_10in_place_tEEEEntL_ZNS8_IS1_S2_EEEEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge7ErrCode5ValueEEC2IS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS6_9is_same_vIS3_NS6_10in_place_tEEEEntL_ZNS9_IS3_S4_EEEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx2010unexpectedI14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS1_T_EntL_ZNS4_9is_same_vIS1_NS4_10in_place_tEEEEntL_ZNS7_IS1_S2_EEEEvE4typeELPv0ELb1EEEOS6_ Unexecuted instantiation: _ZN5cxx2010unexpectedI14__wasi_errno_tEC2IRKS1_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS1_T_EntL_ZNS6_9is_same_vIS1_NS6_10in_place_tEEEEntL_ZNS9_IS1_S2_EEEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx2010unexpectedIP15LLVMOpaqueErrorEC2IRS2_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS6_9is_same_vIS2_NS6_10in_place_tEEEEntL_ZNS9_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS8_ |
146 | | |
147 | | template < |
148 | | class Err, |
149 | | enable_if_t<is_constructible_v<E, const Err &> && |
150 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
151 | | E, unexpected<Err>>> * = nullptr, |
152 | | bool NoExcept = is_nothrow_constructible_v<E, const Err &>> |
153 | | constexpr unexpected(const unexpected<Err> &rhs) noexcept(NoExcept) |
154 | | : m_val(rhs.m_val) {} |
155 | | template < |
156 | | class Err, |
157 | | enable_if_t<is_constructible_v<E, Err &&> && |
158 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
159 | | E, unexpected<Err>>> * = nullptr, |
160 | | bool NoExcept = is_nothrow_constructible_v<E, Err &&>> |
161 | | constexpr unexpected(unexpected<Err> &&rhs) noexcept(NoExcept) |
162 | | : m_val(std::move(rhs.m_val)) {} |
163 | | |
164 | | template <class Err = E, |
165 | | enable_if_t<is_assignable_v<E, const Err &>> * = nullptr, |
166 | | bool NoExcept = is_nothrow_assignable_v<E, const Err &>> |
167 | | constexpr unexpected &operator=(const unexpected<Err> &e) noexcept(NoExcept) { |
168 | | m_val = e.m_val; |
169 | | return *this; |
170 | | } |
171 | | template <class Err = E, enable_if_t<is_assignable_v<E, Err &&>> * = nullptr, |
172 | | bool NoExcept = is_nothrow_assignable_v<E, Err &&>> |
173 | | constexpr unexpected &operator=(unexpected<Err> &&e) noexcept(NoExcept) { |
174 | | m_val = std::move(e.m_val); |
175 | | return *this; |
176 | | } |
177 | 0 | constexpr const E &value() const &noexcept { return m_val; } Unexecuted instantiation: cxx20::unexpected<WasmEdge::ErrCode>::value() const & Unexecuted instantiation: cxx20::unexpected<__wasi_errno_t>::value() const & |
178 | 121k | constexpr E &value() &noexcept { return m_val; } Unexecuted instantiation: cxx20::unexpected<__wasi_errno_t>::value() & Unexecuted instantiation: cxx20::unexpected<WasmEdge::PO::Error>::value() & cxx20::unexpected<WasmEdge::ErrCode>::value() & Line | Count | Source | 178 | 118k | constexpr E &value() &noexcept { return m_val; } |
cxx20::unexpected<cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 178 | 3.45k | constexpr E &value() &noexcept { return m_val; } |
Unexecuted instantiation: cxx20::unexpected<LLVMOpaqueError*>::value() & Unexecuted instantiation: cxx20::unexpected<WasmEdge::LLVM::Error>::value() & |
179 | 31.2k | constexpr E &&value() &&noexcept { return std::move(m_val); } cxx20::unexpected<WasmEdge::ErrCode>::value() && Line | Count | Source | 179 | 30.8k | constexpr E &&value() &&noexcept { return std::move(m_val); } |
Unexecuted instantiation: cxx20::unexpected<WasmEdge::ErrCode::Value>::value() && cxx20::unexpected<cxx20::unexpected<WasmEdge::ErrCode> >::value() && Line | Count | Source | 179 | 391 | constexpr E &&value() &&noexcept { return std::move(m_val); } |
|
180 | | constexpr const E &&value() const &&noexcept { return std::move(m_val); } |
181 | | |
182 | | template <class Err = E, enable_if_t<is_swappable_v<Err>> * = nullptr, |
183 | | bool NoExcept = is_nothrow_swappable_v<Err>> |
184 | | void swap(unexpected<Err> &rhs) noexcept(NoExcept) { |
185 | | using std::swap; |
186 | | swap(m_val, rhs.m_val); |
187 | | } |
188 | | |
189 | | template <class Err = E, enable_if_t<!is_swappable_v<Err>> * = nullptr> |
190 | | void swap(unexpected<Err> &rhs) = delete; |
191 | | }; |
192 | | template <class E1, class E2, |
193 | | bool NoExcept = noexcept(declval<E1>() == declval<E2>())> |
194 | | constexpr bool operator==(const unexpected<E1> &x, |
195 | | const unexpected<E2> &y) noexcept(NoExcept) { |
196 | | return x.value() == y.value(); |
197 | | } |
198 | | template <class E1, class E2, |
199 | | bool NoExcept = noexcept(declval<E1>() != declval<E2>())> |
200 | | constexpr bool operator!=(const unexpected<E1> &x, |
201 | | const unexpected<E2> &y) noexcept(NoExcept) { |
202 | | return x.value() != y.value(); |
203 | | } |
204 | | |
205 | | namespace detail { |
206 | | |
207 | | template <class T, class E> struct expected_traits { |
208 | | template <class U, class G> |
209 | | static inline constexpr bool enable_other_copy_constructible_v = |
210 | | is_constructible_v<T, const U &> && is_constructible_v<E, const G &> && |
211 | | is_not_constructible_and_not_reverse_convertible_v<T, expected<U, G>> && |
212 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
213 | | unexpected<E>, expected<U, G>>; |
214 | | template <class U, class G> |
215 | | static inline constexpr bool explicit_other_copy_constructible_v = |
216 | | !is_convertible_v<const U &, T> || !is_convertible_v<const G &, E>; |
217 | | |
218 | | template <class U, class G> |
219 | | static inline constexpr bool enable_other_move_constructible_v = |
220 | | is_constructible_v<T, U &&> && is_constructible_v<E, G &&> && |
221 | | is_not_constructible_and_not_reverse_convertible_v<T, expected<U, G>> && |
222 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
223 | | unexpected<E>, expected<U, G>>; |
224 | | template <class U, class G> |
225 | | static inline constexpr bool explicit_other_move_constructible_v = |
226 | | !is_convertible_v<U &&, T> || !is_convertible_v<G &&, E>; |
227 | | |
228 | | template <class U, class G> |
229 | | static inline constexpr bool is_nothrow_other_copy_constructible_v = |
230 | | is_nothrow_constructible_v<T, const U &> && |
231 | | is_nothrow_constructible_v<E, const G &>; |
232 | | template <class U, class G> |
233 | | static inline constexpr bool is_nothrow_other_move_constructible_v = |
234 | | is_nothrow_constructible_v<T, U &&> && |
235 | | is_nothrow_constructible_v<E, G &&>; |
236 | | template <class U> |
237 | | static inline constexpr bool enable_in_place_v = |
238 | | is_constructible_v<T, U> && !is_same_v<remove_cvref_t<U>, in_place_t> && |
239 | | !is_same_v<expected<T, E>, remove_cvref_t<U>> && |
240 | | !is_same_v<unexpected<E>, remove_cvref_t<U>>; |
241 | | static inline constexpr bool enable_emplace_value_v = |
242 | | is_nothrow_move_constructible_v<T> || is_nothrow_move_constructible_v<E>; |
243 | | template <class U> |
244 | | static inline constexpr bool enable_assign_value_v = |
245 | | !conjunction_v<is_scalar<T>, is_same<T, decay_t<U>>> && |
246 | | is_constructible_v<T, U> && is_assignable_v<T &, U> && |
247 | | is_nothrow_move_constructible_v<E>; |
248 | | }; |
249 | | template <class E> struct expected_traits<void, E> { |
250 | | template <class U, class G> |
251 | | static inline constexpr bool enable_other_copy_constructible_v = |
252 | | is_void_v<U> && is_constructible_v<E, const G &> && |
253 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
254 | | unexpected<E>, expected<U, G>>; |
255 | | template <class U, class G> |
256 | | static inline constexpr bool explicit_other_copy_constructible_v = |
257 | | !is_convertible_v<const G &, E>; |
258 | | |
259 | | template <class U, class G> |
260 | | static inline constexpr bool enable_other_move_constructible_v = |
261 | | is_void_v<U> && is_constructible_v<E, G &&> && |
262 | | detail::is_not_constructible_and_not_reverse_convertible_v< |
263 | | unexpected<E>, expected<U, G>>; |
264 | | template <class U, class G> |
265 | | static inline constexpr bool explicit_other_move_constructible_v = |
266 | | !is_convertible_v<G &&, E>; |
267 | | |
268 | | template <class U, class G> |
269 | | static inline constexpr bool is_nothrow_other_copy_constructible_v = |
270 | | is_void_v<U> && is_nothrow_constructible_v<E, const G &>; |
271 | | template <class U, class G> |
272 | | static inline constexpr bool is_nothrow_other_move_constructible_v = |
273 | | is_void_v<U> && is_nothrow_constructible_v<E, G &&>; |
274 | | template <class U> static inline constexpr bool enable_in_place_v = false; |
275 | | template <class U> static inline constexpr bool enable_assign_value_v = false; |
276 | | }; |
277 | | |
278 | | template <class T, class E, bool = is_trivially_destructible_v<T>, |
279 | | bool = is_trivially_destructible_v<E>> |
280 | | struct expected_storage_base { |
281 | | constexpr expected_storage_base() noexcept( |
282 | | is_nothrow_default_constructible_v<T>) |
283 | | : m_has_val(true), m_val() {} |
284 | | constexpr expected_storage_base(no_init_t) noexcept |
285 | | : m_has_val(false), m_no_init() {} |
286 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
287 | | constexpr expected_storage_base & |
288 | | operator=(const expected_storage_base &) = default; |
289 | | |
290 | | template <class... Args, |
291 | | enable_if_t<is_constructible_v<T, Args...>> * = nullptr, |
292 | | bool NoExcept = is_nothrow_constructible_v<T, Args...>> |
293 | | constexpr expected_storage_base(in_place_t, Args &&...args) noexcept(NoExcept) |
294 | 0 | : m_has_val(true), m_val(std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge2PO5ErrorELb0ELb0EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM8OrcLLJITENS3_5ErrorELb0ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ |
295 | | template <class U, class... Args, |
296 | | enable_if_t<is_constructible_v<T, initializer_list<U>, Args...>> * = |
297 | | nullptr, |
298 | | bool NoExcept = |
299 | | is_nothrow_constructible_v<T, initializer_list<U>, Args...>> |
300 | | constexpr expected_storage_base(in_place_t, initializer_list<U> il, |
301 | | Args &&...args) noexcept(NoExcept) |
302 | | : m_has_val(true), m_val(std::move(il), std::forward<Args>(args)...) {} |
303 | | |
304 | | template <class... Args, |
305 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
306 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
307 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
308 | 0 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
309 | | template <class U, class... Args, |
310 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
311 | | nullptr, |
312 | | bool NoExcept = |
313 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
314 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
315 | | Args &&...args) noexcept(NoExcept) |
316 | | : m_has_val(false), |
317 | | m_unex(in_place, std::move(il), std::forward<Args>(args)...) {} |
318 | | |
319 | | ~expected_storage_base() noexcept( |
320 | 0 | is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E>) { |
321 | 0 | if (m_has_val) { |
322 | 0 | destruct_value(); |
323 | 0 | } else { |
324 | 0 | destruct_error(); |
325 | 0 | } |
326 | 0 | } Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error, false, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, false, false>::~expected_storage_base() |
327 | | |
328 | | protected: |
329 | 0 | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { |
330 | 0 | m_val.~T(); |
331 | 0 | } Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error, false, false>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, false, false>::destruct_value() |
332 | 0 | constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) { |
333 | 0 | m_unex.~unexpected<E>(); |
334 | 0 | } Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error, false, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, false, false>::destruct_error() |
335 | | |
336 | | bool m_has_val; |
337 | | union { |
338 | | T m_val; |
339 | | unexpected<E> m_unex; |
340 | | char m_no_init; |
341 | | }; |
342 | | }; |
343 | | |
344 | | template <class T, class E> struct expected_storage_base<T, E, true, true> { |
345 | | constexpr expected_storage_base() noexcept( |
346 | | is_nothrow_default_constructible_v<T>) |
347 | 0 | : m_has_val(true), m_val() {} |
348 | | constexpr expected_storage_base(no_init_t) noexcept |
349 | | : m_has_val(false), m_no_init() {} |
350 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
351 | | constexpr expected_storage_base & |
352 | | operator=(const expected_storage_base &) = default; |
353 | | |
354 | | template <class... Args, |
355 | | enable_if_t<is_constructible_v<T, Args...>> * = nullptr, |
356 | | bool NoExcept = is_nothrow_constructible_v<T, Args...>> |
357 | | constexpr expected_storage_base(in_place_t, Args &&...args) noexcept(NoExcept) |
358 | 37.0M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge10RefVariantENS2_7ErrCodeELb1ELb1EEC2IJRKS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJRKjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 1.90M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIhN8WasmEdge7ErrCodeELb1ELb1EEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 145k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ _ZN5cxx206detail21expected_storage_baseIjNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 838k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIhNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 168k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS2_7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 358 | 128k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6ValMutENS2_7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 358 | 8.55k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6OpCodeENS2_7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 358 | 8.63M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6OpCodeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Line | Count | Source | 358 | 8.63M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIlNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 534k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ _ZN5cxx206detail21expected_storage_baseIiNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 1.92M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIfNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 35.2k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIdNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 15.4k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJRjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS5_7ErrCodeELb1ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS5_7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSI_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS4_ETnPNS2_9enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSD_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS3_IjEENS4_IJjNS7_11PrimValTypeEEEEEEEEENS5_7ErrCodeELb1ELb1EEC2IJSD_ETnPNS2_9enable_ifIX18is_constructible_vISD_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSI_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS3_IjEENS4_IJjNS7_11PrimValTypeEEEEEEEEENS5_7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vISD_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSL_ _ZN5cxx206detail21expected_storage_baseIhN8WasmEdge7ErrCodeELb1ELb1EEC2IJRKhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 358 | 9.12M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIfN8WasmEdge7ErrCodeELb1ELb1EEC2IJfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 35.2k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIdN8WasmEdge7ErrCodeELb1ELb1EEC2IJdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 15.4k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIlN8WasmEdge7ErrCodeELb1ELb1EEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 537k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIiN8WasmEdge7ErrCodeELb1ELb1EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 358 | 1.92M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES8_EENS5_7ErrCodeELb1ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 358 | 9.82k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST13CompositeTypeENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Line | Count | Source | 358 | 3.96k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge7ValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_ Line | Count | Source | 358 | 2.21M | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge7ValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS5_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb0EEENS2_10in_place_tEDpOSB_ Line | Count | Source | 358 | 169k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST7SubTypeENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge10RefVariantENS2_7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge10RefVariantENS2_7ErrCodeELb1ELb1EEC2IJKS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS3_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJKjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPvN8WasmEdge7ErrCodeELb1ELb1EEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELS2_0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPvN8WasmEdge7ErrCodeELb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELS2_0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEENS2_7ErrCodeELb1ELb1EEC2IJSF_ETnPNSt3__19enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENSJ_10in_place_tEDpOSL_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST11InstructionENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIm14__wasi_errno_tLb1ELb1EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI17__wasi_filetype_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIm14__wasi_errno_tLb1ELb1EEC2IJRlETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJ14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJR14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_clockid_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI18__wasi_eventtype_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI22__wasi_subclockflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_advice_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_fdflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_rights_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI17__wasi_fstflags_t14__wasi_errno_tLb1ELb1EEC2IJKS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIiN8WasmEdge7ErrCodeELb1ELb1EEC2IJ14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_whence_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIiN8WasmEdge7ErrCodeELb1ELb1EEC2IJR14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI20__wasi_lookupflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_oflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIi14__wasi_errno_tLb1ELb1EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_signal_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI23__wasi_address_family_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI18__wasi_sock_type_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_riflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIt14__wasi_errno_tLb1ELb1EEC2IJtETnPNSt3__19enable_ifIX18is_constructible_vItDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_sdflags_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI23__wasi_sock_opt_level_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI20__wasi_sock_opt_so_t14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ |
359 | | template <class U, class... Args, |
360 | | enable_if_t<is_constructible_v<T, initializer_list<U>, Args...>> * = |
361 | | nullptr, |
362 | | bool NoExcept = |
363 | | is_nothrow_constructible_v<T, initializer_list<U>, Args...>> |
364 | | constexpr expected_storage_base(in_place_t, initializer_list<U> il, |
365 | | Args &&...args) noexcept(NoExcept) |
366 | | : m_has_val(true), m_val(std::move(il), std::forward<Args>(args)...) {} |
367 | | |
368 | | template <class... Args, |
369 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
370 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
371 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
372 | 13.8k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIm14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS2_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge10RefVariantENS2_7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 1.06k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIhN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 5.63k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ _ZN5cxx206detail21expected_storage_baseIjNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 712 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIhNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 106 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS2_7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 372 | 313 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6ValMutENS2_7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 372 | 12 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6OpCodeENS2_7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 372 | 2.08k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge6OpCodeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Line | Count | Source | 372 | 2.08k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIlNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 191 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ _ZN5cxx206detail21expected_storage_baseIiNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 87 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIfNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 10 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIdNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 372 | 11 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS5_7ErrCodeELb1ELb1EEC2IJSB_ETnPNS2_9enable_ifIX18is_constructible_vISB_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__18optionalINS2_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS3_IjEENS4_IJjNS7_11PrimValTypeEEEEEEEEENS5_7ErrCodeELb1ELb1EEC2IJSE_ETnPNS2_9enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSI_ _ZN5cxx206detail21expected_storage_baseIfN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 10 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIdN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 11 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIlN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 215 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIiN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 372 | 87 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES8_EENS5_7ErrCodeELb1ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 372 | 11 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST13CompositeTypeENS2_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Line | Count | Source | 372 | 13 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge7ValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Line | Count | Source | 372 | 1.20k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST7SubTypeENS2_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS3_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPvN8WasmEdge7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELS2_0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEENS2_7ErrCodeELb1ELb1EEC2IJSG_ETnPNSt3__19enable_ifIX18is_constructible_vISG_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSL_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPKN8WasmEdge3AST11InstructionENS2_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS2_7ErrCodeELb1ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI17__wasi_filetype_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_clockid_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI18__wasi_eventtype_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI22__wasi_subclockflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_advice_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_fdflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_rights_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI17__wasi_fstflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_whence_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI20__wasi_lookupflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_oflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIi14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15__wasi_signal_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI23__wasi_address_family_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI18__wasi_sock_type_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_riflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIt14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI16__wasi_sdflags_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI23__wasi_sock_opt_level_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI20__wasi_sock_opt_so_t14__wasi_errno_tLb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ |
373 | | template <class U, class... Args, |
374 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
375 | | nullptr, |
376 | | bool NoExcept = |
377 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
378 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
379 | | Args &&...args) noexcept(NoExcept) |
380 | | : m_has_val(false), |
381 | | m_unex(in_place, std::move(il), std::forward<Args>(args)...) {} |
382 | | |
383 | | ~expected_storage_base() noexcept = default; |
384 | | |
385 | | protected: |
386 | 0 | constexpr void destruct_value() noexcept {} |
387 | 0 | constexpr void destruct_error() noexcept {} |
388 | | |
389 | | bool m_has_val; |
390 | | union { |
391 | | T m_val; |
392 | | unexpected<E> m_unex; |
393 | | char m_no_init; |
394 | | }; |
395 | | }; |
396 | | |
397 | | template <class T, class E> struct expected_storage_base<T, E, true, false> { |
398 | | constexpr expected_storage_base() noexcept( |
399 | | is_nothrow_default_constructible_v<T>) |
400 | | : m_has_val(true), m_val() {} |
401 | | constexpr expected_storage_base(no_init_t) noexcept |
402 | | : m_has_val(false), m_no_init() {} |
403 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
404 | | constexpr expected_storage_base & |
405 | | operator=(const expected_storage_base &) = default; |
406 | | |
407 | | template <class... Args, |
408 | | enable_if_t<is_constructible_v<T, Args...>> * = nullptr, |
409 | | bool NoExcept = is_nothrow_constructible_v<T, Args...>> |
410 | | constexpr expected_storage_base(in_place_t, Args &&...args) noexcept(NoExcept) |
411 | 0 | : m_has_val(true), m_val(std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIbN8WasmEdge2PO5ErrorELb1ELb0EEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseImN8WasmEdge2PO5ErrorELb1ELb0EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIiN8WasmEdge2PO5ErrorELb1ELb0EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIaN8WasmEdge2PO5ErrorELb1ELb0EEC2IJaETnPNSt3__19enable_ifIX18is_constructible_vIaDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIsN8WasmEdge2PO5ErrorELb1ELb0EEC2IJsETnPNSt3__19enable_ifIX18is_constructible_vIsDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIlN8WasmEdge2PO5ErrorELb1ELb0EEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIhN8WasmEdge2PO5ErrorELb1ELb0EEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseItN8WasmEdge2PO5ErrorELb1ELb0EEC2IJtETnPNSt3__19enable_ifIX18is_constructible_vItDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge2PO5ErrorELb1ELb0EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIfN8WasmEdge2PO5ErrorELb1ELb0EEC2IJKfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIdN8WasmEdge2PO5ErrorELb1ELb0EEC2IJKdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseI15WasmEdge_StringN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPPA38_KPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELS2_0ELb1EEENSC_10in_place_tEDpOSE_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPFvPvS2_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEPSG_ENS3_4LLVM5ErrorELb1ELb0EEC2IJSL_ETnPNSt3__19enable_ifIX18is_constructible_vISL_DpT_EEvE4typeELS2_0ELb1EEENSQ_10in_place_tEDpOSS_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELS2_0ELb1EEENS8_10in_place_tEDpOSA_ |
412 | | template <class U, class... Args, |
413 | | enable_if_t<is_constructible_v<T, initializer_list<U>, Args...>> * = |
414 | | nullptr, |
415 | | bool NoExcept = |
416 | | is_nothrow_constructible_v<T, initializer_list<U>, Args...>> |
417 | | constexpr expected_storage_base(in_place_t, initializer_list<U> il, |
418 | | Args &&...args) noexcept(NoExcept) |
419 | | : m_has_val(true), m_val(std::move(il), std::forward<Args>(args)...) {} |
420 | | |
421 | | template <class... Args, |
422 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
423 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
424 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
425 | 0 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIbN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseImN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIiN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIaN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIsN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIlN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIhN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseItN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIjN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIfN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIdN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPPA38_KPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELS2_0ELb1EEENS_10unexpect_tEDpOSG_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPFvPvS2_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEPSG_ENS3_4LLVM5ErrorELb1ELb0EEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vISN_DpT_EEvE4typeELS2_0ELb1EEENS_10unexpect_tEDpOSU_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELS2_0ELb1EEENS_10unexpect_tEDpOSC_ |
426 | | template <class U, class... Args, |
427 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
428 | | nullptr, |
429 | | bool NoExcept = |
430 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
431 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
432 | | Args &&...args) noexcept(NoExcept) |
433 | | : m_has_val(false), |
434 | | m_unex(in_place, std::move(il), std::forward<Args>(args)...) {} |
435 | | |
436 | 0 | ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) { |
437 | 0 | if (!m_has_val) { |
438 | 0 | destruct_error(); |
439 | 0 | } |
440 | 0 | } Unexecuted instantiation: cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned long, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<signed char, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<short, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<long, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned char, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned short, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned int, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<float, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<double, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge_String, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<void* const (**) [38], WasmEdge::LLVM::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error, true, false>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<void*, WasmEdge::LLVM::Error, true, false>::~expected_storage_base() |
441 | | |
442 | | protected: |
443 | | constexpr void destruct_value() noexcept {} |
444 | 0 | constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) { |
445 | 0 | m_unex.~unexpected<E>(); |
446 | 0 | } Unexecuted instantiation: cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned int, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<signed char, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned char, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<short, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned short, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<long, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<long long, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned long, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<unsigned long long, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<float, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<double, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<long double, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge_String, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<void* const (**) [38], WasmEdge::LLVM::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error, true, false>::destruct_error() Unexecuted instantiation: cxx20::detail::expected_storage_base<void*, WasmEdge::LLVM::Error, true, false>::destruct_error() |
447 | | |
448 | | bool m_has_val; |
449 | | union { |
450 | | T m_val; |
451 | | unexpected<E> m_unex; |
452 | | char m_no_init; |
453 | | }; |
454 | | }; |
455 | | |
456 | | template <class T, class E> struct expected_storage_base<T, E, false, true> { |
457 | | constexpr expected_storage_base() noexcept( |
458 | | is_nothrow_default_constructible_v<T>) |
459 | 0 | : m_has_val(true), m_val() {} |
460 | | constexpr expected_storage_base(no_init_t) noexcept |
461 | 0 | : m_has_val(false), m_no_init() {} Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::expected_storage_base(cxx20::detail::no_init_t) Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::expected_storage_base(cxx20::detail::no_init_t) |
462 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
463 | | constexpr expected_storage_base & |
464 | | operator=(const expected_storage_base &) = default; |
465 | | |
466 | | template <class... Args, |
467 | | enable_if_t<is_constructible_v<T, Args...>> * = nullptr, |
468 | | bool NoExcept = is_nothrow_constructible_v<T, Args...>> |
469 | | constexpr expected_storage_base(in_place_t, Args &&...args) noexcept(NoExcept) |
470 | 401k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeELb0ELb1EEC2IJSX_ETnPNS2_9enable_ifIX18is_constructible_vISX_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOS12_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCode5ValueELb0ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCode5ValueELb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeELb0ELb1EEC2IJSN_ETnPNS2_9enable_ifIX18is_constructible_vISN_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSS_ _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIhNS2_9allocatorIhEEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSC_ Line | Count | Source | 470 | 67.0k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSG_ Line | Count | Source | 470 | 89.0k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__16vectorIhNS2_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 470 | 48.6k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__16vectorIN8WasmEdge3AST11InstructionENS2_9allocatorIS6_EEEENS4_7ErrCodeELb0ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 470 | 62.0k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__17variantIJNS2_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS2_14default_deleteIS8_EEEENS4_INS6_6ModuleENS9_ISC_EEEEEEENS5_7ErrCodeELb0ELb1EEC2IJSF_ETnPNS2_9enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSK_ _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS2_14default_deleteIS6_EEEENS4_7ErrCodeELb0ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 470 | 3.80k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__17variantIJNS2_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS2_14default_deleteIS8_EEEENS4_INS6_6ModuleENS9_ISC_EEEEEEENS5_7ErrCodeELb0ELb1EEC2IJSE_ETnPNS2_9enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSK_ Line | Count | Source | 470 | 3.80k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__17variantIJNS2_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS2_14default_deleteIS8_EEEENS4_INS6_6ModuleENS9_ISC_EEEEEEENS5_7ErrCodeELb0ELb1EEC2IJSB_ETnPNS2_9enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSK_ _ZN5cxx206detail21expected_storage_baseINSt3__14pairINS2_6vectorIhNS2_9allocatorIhEEEES7_EEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 470 | 9.19k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ Line | Count | Source | 470 | 89.0k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator11FormChecker9CtrlFrameENS2_7ErrCodeELb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb0EEENS9_10in_place_tEDpOSB_ Line | Count | Source | 470 | 26.9k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tLb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSD_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIcNS2_9allocatorIcEEEE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tLb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tLb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCodeELb0ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 470 | 2.14k | : m_has_val(true), m_val(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJNS3_INS4_4LLVM10JITLibraryEEEETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_ |
471 | | template <class U, class... Args, |
472 | | enable_if_t<is_constructible_v<T, initializer_list<U>, Args...>> * = |
473 | | nullptr, |
474 | | bool NoExcept = |
475 | | is_nothrow_constructible_v<T, initializer_list<U>, Args...>> |
476 | | constexpr expected_storage_base(in_place_t, initializer_list<U> il, |
477 | | Args &&...args) noexcept(NoExcept) |
478 | | : m_has_val(true), m_val(std::move(il), std::forward<Args>(args)...) {} |
479 | | |
480 | | template <class... Args, |
481 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
482 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
483 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
484 | 19.3k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIhNS2_9allocatorIhEEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Line | Count | Source | 484 | 38 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS2_14default_deleteIS6_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 484 | 5.50k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCodeELb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeELb0ELb1EEC2IJSO_ETnPNS2_9enable_ifIX18is_constructible_vISO_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSS_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeELb0ELb1EEC2IJSY_ETnPNS2_9enable_ifIX18is_constructible_vISY_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS12_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCodeELb0ELb1EEC2IJNS5_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCode5ValueELb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJNS7_5ValueEETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCode5ValueELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ _ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJSC_ETnPNS2_9enable_ifIX18is_constructible_vISC_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSG_ Line | Count | Source | 484 | 227 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__16vectorIhNS2_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 484 | 6 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__16vectorIN8WasmEdge3AST11InstructionENS2_9allocatorIS6_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 484 | 7.49k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__17variantIJNS2_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS2_14default_deleteIS8_EEEENS4_INS6_6ModuleENS9_ISC_EEEEEEENS5_7ErrCodeELb0ELb1EEC2IJSG_ETnPNS2_9enable_ifIX18is_constructible_vISG_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSK_ Line | Count | Source | 484 | 5.50k | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__14pairINS2_6vectorIhNS2_9allocatorIhEEEES7_EEN8WasmEdge7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 484 | 111 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Line | Count | Source | 484 | 227 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator11FormChecker9CtrlFrameENS2_7ErrCodeELb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Line | Count | Source | 484 | 205 | : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSB_ETnPNS2_9enable_ifIX18is_constructible_vISB_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSB_ETnPNS2_9enable_ifIX18is_constructible_vISB_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSF_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tLb0ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIcNS2_9allocatorIcEEEE14__wasi_errno_tLb0ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tLb0ELb1EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ |
485 | | template <class U, class... Args, |
486 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
487 | | nullptr, |
488 | | bool NoExcept = |
489 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
490 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
491 | | Args &&...args) noexcept(NoExcept) |
492 | | : m_has_val(false), |
493 | | m_unex(in_place, std::move(il), std::forward<Args>(args)...) {} |
494 | | |
495 | 421k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { |
496 | 421k | if (m_has_val) { |
497 | 401k | destruct_value(); |
498 | 401k | } |
499 | 421k | } Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::~expected_storage_base() cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 2.14k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 2.14k | if (m_has_val) { | 497 | 2.14k | destruct_value(); | 498 | 2.14k | } | 499 | 2.14k | } |
cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 9.30k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 9.30k | if (m_has_val) { | 497 | 3.80k | destruct_value(); | 498 | 3.80k | } | 499 | 9.30k | } |
cxx20::detail::expected_storage_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 67.1k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 67.1k | if (m_has_val) { | 497 | 67.0k | destruct_value(); | 498 | 67.0k | } | 499 | 67.1k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::~expected_storage_base() cxx20::detail::expected_storage_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 9.30k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 9.30k | if (m_has_val) { | 497 | 3.80k | destruct_value(); | 498 | 3.80k | } | 499 | 9.30k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 89.3k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 89.3k | if (m_has_val) { | 497 | 89.0k | destruct_value(); | 498 | 89.0k | } | 499 | 89.3k | } |
cxx20::detail::expected_storage_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::~expected_storage_base() Line | Count | Source | 495 | 48.6k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 48.6k | if (m_has_val) { | 497 | 48.6k | destruct_value(); | 498 | 48.6k | } | 499 | 48.6k | } |
cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::~expected_storage_base() Line | Count | Source | 495 | 89.3k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 89.3k | if (m_has_val) { | 497 | 89.0k | destruct_value(); | 498 | 89.0k | } | 499 | 89.3k | } |
cxx20::detail::expected_storage_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 69.5k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 69.5k | if (m_has_val) { | 497 | 62.0k | destruct_value(); | 498 | 62.0k | } | 499 | 69.5k | } |
cxx20::detail::expected_storage_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 9.30k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 9.30k | if (m_has_val) { | 497 | 9.19k | destruct_value(); | 498 | 9.19k | } | 499 | 9.30k | } |
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::~expected_storage_base() Line | Count | Source | 495 | 27.1k | ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) { | 496 | 27.1k | if (m_has_val) { | 497 | 26.9k | destruct_value(); | 498 | 26.9k | } | 499 | 27.1k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::INode, __wasi_errno_t, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t, false, true>::~expected_storage_base() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t, false, true>::~expected_storage_base() |
500 | | |
501 | | protected: |
502 | 401k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { |
503 | 401k | m_val.~T(); |
504 | 401k | } Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::destruct_value() cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 2.14k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 2.14k | m_val.~T(); | 504 | 2.14k | } |
cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 3.80k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 3.80k | m_val.~T(); | 504 | 3.80k | } |
cxx20::detail::expected_storage_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 67.0k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 67.0k | m_val.~T(); | 504 | 67.0k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::destruct_value() cxx20::detail::expected_storage_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 3.80k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 3.80k | m_val.~T(); | 504 | 3.80k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode, false, true>::destruct_value() cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 89.0k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 89.0k | m_val.~T(); | 504 | 89.0k | } |
cxx20::detail::expected_storage_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::destruct_value() Line | Count | Source | 502 | 48.6k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 48.6k | m_val.~T(); | 504 | 48.6k | } |
cxx20::detail::expected_storage_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::destruct_value() Line | Count | Source | 502 | 89.0k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 89.0k | m_val.~T(); | 504 | 89.0k | } |
cxx20::detail::expected_storage_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 62.0k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 62.0k | m_val.~T(); | 504 | 62.0k | } |
cxx20::detail::expected_storage_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 9.19k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 9.19k | m_val.~T(); | 504 | 9.19k | } |
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::destruct_value() Line | Count | Source | 502 | 26.9k | constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) { | 503 | 26.9k | m_val.~T(); | 504 | 26.9k | } |
Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::INode, __wasi_errno_t, false, true>::destruct_value() Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t, false, true>::destruct_value() |
505 | | constexpr void destruct_error() noexcept {} |
506 | | |
507 | | bool m_has_val; |
508 | | union { |
509 | | T m_val; |
510 | | unexpected<E> m_unex; |
511 | | char m_no_init; |
512 | | }; |
513 | | }; |
514 | | |
515 | | template <class E> struct expected_storage_base<void, E, false, false> { |
516 | 0 | constexpr expected_storage_base() noexcept : m_has_val(true), m_no_init() {} |
517 | | constexpr expected_storage_base(no_init_t) noexcept |
518 | | : m_has_val(false), m_no_init() {} |
519 | | constexpr expected_storage_base(in_place_t) noexcept |
520 | | : m_has_val(true), m_no_init() {} |
521 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
522 | | constexpr expected_storage_base & |
523 | | operator=(const expected_storage_base &) = default; |
524 | | |
525 | | template <class... Args, |
526 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
527 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
528 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
529 | 0 | : m_has_val(false), m_unex(std::forward<Args>(args)...) {} |
530 | | template <class U, class... Args, |
531 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
532 | | nullptr, |
533 | | bool NoExcept = |
534 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
535 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
536 | | Args &&...args) noexcept(NoExcept) |
537 | | : m_has_val(false), m_unex(std::move(il), std::forward<Args>(args)...) {} |
538 | | |
539 | 0 | ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) { |
540 | 0 | if (!m_has_val) { |
541 | 0 | destruct_error(); |
542 | 0 | } |
543 | 0 | } |
544 | | |
545 | | protected: |
546 | | constexpr void destruct_value() noexcept {} |
547 | 0 | constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) { |
548 | 0 | m_unex.~unexpected<E>(); |
549 | 0 | } |
550 | | |
551 | | bool m_has_val; |
552 | | union { |
553 | | unexpected<E> m_unex; |
554 | | char m_no_init; |
555 | | }; |
556 | | }; |
557 | | |
558 | | template <class E> struct expected_storage_base<void, E, false, true> { |
559 | 44.0M | constexpr expected_storage_base() noexcept : m_has_val(true), m_no_init() {} cxx20::detail::expected_storage_base<void, WasmEdge::ErrCode, false, true>::expected_storage_base() Line | Count | Source | 559 | 41.6M | constexpr expected_storage_base() noexcept : m_has_val(true), m_no_init() {} |
Unexecuted instantiation: cxx20::detail::expected_storage_base<void, WasmEdge::ErrCode::Value, false, true>::expected_storage_base() cxx20::detail::expected_storage_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::expected_storage_base() Line | Count | Source | 559 | 2.38M | constexpr expected_storage_base() noexcept : m_has_val(true), m_no_init() {} |
Unexecuted instantiation: cxx20::detail::expected_storage_base<void, __wasi_errno_t, false, true>::expected_storage_base() |
560 | | constexpr expected_storage_base(no_init_t) noexcept |
561 | | : m_has_val(false), m_no_init() {} |
562 | | constexpr expected_storage_base(in_place_t) noexcept |
563 | | : m_has_val(true), m_no_init() {} |
564 | | constexpr expected_storage_base(const expected_storage_base &) = default; |
565 | | constexpr expected_storage_base & |
566 | | operator=(const expected_storage_base &) = default; |
567 | | |
568 | | template <class... Args, |
569 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
570 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
571 | | constexpr expected_storage_base(unexpect_t, Args &&...args) noexcept(NoExcept) |
572 | 59.0k | : m_has_val(false), m_unex(std::forward<Args>(args)...) {} _ZN5cxx206detail21expected_storage_baseIvN8WasmEdge7ErrCodeELb0ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 572 | 58.6k | : m_has_val(false), m_unex(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIvN8WasmEdge7ErrCode5ValueELb0ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIvN8WasmEdge7ErrCodeELb0ELb1EEC2IJNS3_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ _ZN5cxx206detail21expected_storage_baseIvNS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 572 | 406 | : m_has_val(false), m_unex(std::forward<Args>(args)...) {} |
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIv14__wasi_errno_tLb0ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ |
573 | | template <class U, class... Args, |
574 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
575 | | nullptr, |
576 | | bool NoExcept = |
577 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
578 | | constexpr expected_storage_base(unexpect_t, initializer_list<U> il, |
579 | | Args &&...args) noexcept(NoExcept) |
580 | | : m_has_val(false), m_unex(std::move(il), std::forward<Args>(args)...) {} |
581 | | |
582 | | ~expected_storage_base() noexcept = default; |
583 | | |
584 | | protected: |
585 | | constexpr void destruct_value() noexcept {} |
586 | | constexpr void destruct_error() noexcept {} |
587 | | |
588 | | bool m_has_val; |
589 | | union { |
590 | | unexpected<E> m_unex; |
591 | | char m_no_init; |
592 | | }; |
593 | | }; |
594 | | |
595 | | template <class T, class E> |
596 | | struct expected_view_base : public expected_storage_base<T, E> { |
597 | | using base = expected_storage_base<T, E>; |
598 | | using base::base; |
599 | | |
600 | 58.0M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::has_value() const cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 67.1k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 9.30k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 2.14k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::RefVariant, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::has_value() const cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 2.96M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::has_value() const cxx20::detail::expected_view_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 13.1k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<signed char, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<short, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<long, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned char, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned int, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<float, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<double, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge_String, WasmEdge::PO::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::has_value() const cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 17.9M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 89.3k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::has_value() const cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 1.62M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 134k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 93.4k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 270k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 257k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 538k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 17.1k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 69.5k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 8.63M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 17.2M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 824k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 1.92M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<int, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 1.92M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 35.2k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<float, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 35.2k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 15.4k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<double, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 600 | 15.4k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 18.4k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode>::has_value() const cxx20::detail::expected_view_base<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 19.6k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 3.19M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 54.1k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
cxx20::detail::expected_view_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 600 | 7.94k | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::INode, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_eventtype_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_clockid_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_subclockflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_advice_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fdflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_rights_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fstflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_whence_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_lookupflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_oflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<int, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_signal_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_address_family_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_type_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_riflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sdflags_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_level_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_so_t, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<void* const (**) [38], WasmEdge::LLVM::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::LLVM::Error>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::has_value() const |
601 | 0 | constexpr const E &error() const &noexcept { return base::m_unex.value(); } Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() const & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::error() const & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() const & |
602 | | constexpr const E &&error() const &&noexcept { |
603 | | return std::move(base::m_unex).value(); |
604 | | } |
605 | 21.8k | constexpr E &error() &noexcept { return base::m_unex.value(); } Unexecuted instantiation: cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::error() & cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 5.50k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 32 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::RefVariant, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::error() & cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 353 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::error() & cxx20::detail::expected_view_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 5.50k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<signed char, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<short, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<long, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned char, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned int, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<float, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<double, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge_String, WasmEdge::PO::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::error() & cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 5.52k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::error() & cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 605 | 688 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 605 | 120 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::error() & cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 605 | 65 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 313 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 24 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 12 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 605 | 2.08k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 605 | 86 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::error() & cxx20::detail::expected_view_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 111 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode>::error() & cxx20::detail::expected_view_base<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 11 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 1.20k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 205 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
cxx20::detail::expected_view_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::error() & Line | Count | Source | 605 | 13 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::INode, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_eventtype_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_clockid_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_subclockflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_advice_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fdflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_rights_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fstflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_whence_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_lookupflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_oflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<int, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_signal_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_address_family_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_type_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_riflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sdflags_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_level_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_so_t, __wasi_errno_t>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<void* const (**) [38], WasmEdge::LLVM::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::LLVM::Error>::error() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::error() & |
606 | 11.3k | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 6 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::error() && cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 712 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 114 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::error() && cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 227 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 107 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 41 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 24 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 6 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 7.49k | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 2.08k | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 191 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::error() && cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 87 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<int, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 87 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 105 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 10 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<float, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 10 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::error() && Line | Count | Source | 606 | 11 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
cxx20::detail::expected_view_base<double, cxx20::unexpected<WasmEdge::ErrCode> >::error() && Line | Count | Source | 606 | 11 | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::RefVariant, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::error() && Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::error() && |
607 | | |
608 | | template <class... Args, |
609 | | enable_if_t<is_constructible_v<T, Args...> && |
610 | | (is_nothrow_constructible_v<T, Args...> || |
611 | | is_nothrow_move_constructible_v<T> || |
612 | | is_nothrow_move_constructible_v<E>)> * = nullptr, |
613 | | bool NoExcept = is_nothrow_constructible_v<T, Args...> && |
614 | | is_nothrow_move_assignable_v<T> &&is_nothrow_destructible_v<E>> |
615 | | T &emplace(Args &&...args) noexcept(NoExcept) { |
616 | | if (has_value()) { |
617 | | if constexpr (is_nothrow_constructible_v<T, Args...>) { |
618 | | base::destruct_value(); |
619 | | construct_value(std::forward<Args>(args)...); |
620 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
621 | | T tmp(std::forward<Args>(args)...); |
622 | | base::destruct_value(); |
623 | | construct_value(std::move(tmp)); |
624 | | } else if constexpr (is_nothrow_move_assignable_v<T>) { |
625 | | val() = T(std::forward<Args>(args)...); |
626 | | } else { |
627 | | T tmp = std::move(val()); |
628 | | base::destruct_value(); |
629 | | try { |
630 | | construct_value(std::forward<Args>(args)...); |
631 | | } catch (...) { |
632 | | base::construct(std::move(tmp)); |
633 | | throw_exception_again; |
634 | | } |
635 | | } |
636 | | } else { |
637 | | if constexpr (is_nothrow_constructible_v<T, Args...>) { |
638 | | base::destruct_error(); |
639 | | construct_value(std::forward<Args>(args)...); |
640 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
641 | | T tmp(std::forward<Args>(args)...); |
642 | | base::destruct_error(); |
643 | | construct_value(std::move(tmp)); |
644 | | } else { |
645 | | E tmp = std::move(error()); |
646 | | base::destruct_error(); |
647 | | try { |
648 | | construct_value(std::forward<Args>(args)...); |
649 | | } catch (...) { |
650 | | base::construct_error(std::move(tmp)); |
651 | | throw_exception_again; |
652 | | } |
653 | | } |
654 | | } |
655 | | return val(); |
656 | | } |
657 | | template <class U, class... Args, |
658 | | enable_if_t< |
659 | | is_constructible_v<T, initializer_list<U>, Args...> && |
660 | | (is_nothrow_constructible_v<T, initializer_list<U>, Args...> || |
661 | | is_nothrow_move_constructible_v<T> || |
662 | | is_nothrow_move_constructible_v<E>)> * = nullptr, |
663 | | bool NoExcept = is_nothrow_constructible_v<T, initializer_list<U>, |
664 | | Args...> && |
665 | | is_nothrow_move_assignable_v<T> &&is_nothrow_destructible_v<E>> |
666 | | T &emplace(initializer_list<U> il, Args &&...args) noexcept(NoExcept) { |
667 | | if (has_value()) { |
668 | | if constexpr (is_nothrow_constructible_v<T, Args...>) { |
669 | | base::destruct_value(); |
670 | | construct_value(il, std::forward<Args>(args)...); |
671 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
672 | | T tmp(il, std::forward<Args>(args)...); |
673 | | base::destruct_value(); |
674 | | construct_value(std::move(tmp)); |
675 | | } else if constexpr (is_nothrow_move_assignable_v<T>) { |
676 | | val() = T(il, std::forward<Args>(args)...); |
677 | | } else { |
678 | | T tmp = std::move(val()); |
679 | | base::destruct_value(); |
680 | | try { |
681 | | construct_value(il, std::forward<Args>(args)...); |
682 | | } catch (...) { |
683 | | base::construct_value(std::move(tmp)); |
684 | | throw_exception_again; |
685 | | } |
686 | | } |
687 | | } else { |
688 | | if constexpr (is_nothrow_constructible_v<T, Args...>) { |
689 | | base::destruct_error(); |
690 | | construct_value(il, std::forward<Args>(args)...); |
691 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
692 | | T tmp(il, std::forward<Args>(args)...); |
693 | | base::destruct_error(); |
694 | | construct_value(std::move(tmp)); |
695 | | } else { |
696 | | E tmp = std::move(error()); |
697 | | base::destruct_error(); |
698 | | try { |
699 | | construct_value(il, std::forward<Args>(args)...); |
700 | | } catch (...) { |
701 | | base::construct_error(std::move(tmp)); |
702 | | throw_exception_again; |
703 | | } |
704 | | } |
705 | | } |
706 | | return val(); |
707 | | } |
708 | | |
709 | | protected: |
710 | 0 | constexpr const T &val() const &noexcept { return base::m_val; } Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() const & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() const & |
711 | | constexpr const T &&val() const &&noexcept { return std::move(base::m_val); } |
712 | 35.7M | constexpr T &val() &noexcept { return base::m_val; } Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() & cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 76.3k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 3.80k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 2.14k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::RefVariant, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::val() & cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 1.90M | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() & cxx20::detail::expected_view_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 3.80k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<signed char, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<short, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<long, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned char, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned int, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<float, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<double, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge_String, WasmEdge::PO::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::val() & cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 9.15M | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 89.0k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::val() & cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 838k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 89.0k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 48.6k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 168k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 128k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 545k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 8.55k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 62.0k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 8.63M | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 8.63M | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 534k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::val() & cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 1.92M | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<int, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 1.92M | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 35.2k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<float, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 35.2k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 15.4k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<double, cxx20::unexpected<WasmEdge::ErrCode> >::val() & Line | Count | Source | 712 | 15.4k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 9.19k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode>::val() & cxx20::detail::expected_view_base<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 9.82k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 26.9k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 3.96k | constexpr T &val() &noexcept { return base::m_val; } |
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::val() & Line | Count | Source | 712 | 808k | constexpr T &val() &noexcept { return base::m_val; } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::SubType const*, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Runtime::Instance::GlobalInstance*, WasmEdge::ErrCode>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::INode, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_eventtype_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_clockid_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_subclockflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_advice_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fdflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_rights_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_fstflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_whence_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_lookupflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_oflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<int, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_signal_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_address_family_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_type_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_riflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned short, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sdflags_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_level_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<__wasi_sock_opt_so_t, __wasi_errno_t>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<void* const (**) [38], WasmEdge::LLVM::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<void*, WasmEdge::LLVM::Error>::val() & Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::val() & |
713 | 0 | constexpr T &&val() &&noexcept { return std::move(base::m_val); } Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() && Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::val() && Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::val() && |
714 | | template <class... Args, |
715 | | enable_if_t<is_constructible_v<T, Args &&...>> * = nullptr, |
716 | | bool NoExcept = is_nothrow_constructible_v<T, Args &&...>> |
717 | 0 | void construct_value(Args &&...args) noexcept(NoExcept) { |
718 | 0 | new (addressof(base::m_val)) T(std::forward<Args>(args)...); |
719 | 0 | base::m_has_val = true; |
720 | 0 | } Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeEE15construct_valueIJRKSN_ETnPNS2_9enable_ifIX18is_constructible_vISN_DpOT_EEvE4typeELPv0ELb0EEEvSW_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeEE15construct_valueIJRKSX_ETnPNS2_9enable_ifIX18is_constructible_vISX_DpOT_EEvE4typeELPv0ELb0EEEvS16_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeEE15construct_valueIJSN_ETnPNS2_9enable_ifIX18is_constructible_vISN_DpOT_EEvE4typeELPv0ELb1EEEvSU_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeEE15construct_valueIJSX_ETnPNS2_9enable_ifIX18is_constructible_vISX_DpOT_EEvE4typeELPv0ELb1EEEvS14_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseIhN8WasmEdge7ErrCodeEE15construct_valueIJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpOT_EEvE4typeELPv0ELb1EEEvSA_ |
721 | | template <class... Args, |
722 | | enable_if_t<is_constructible_v<E, Args &&...>> * = nullptr, |
723 | | bool NoExcept = is_nothrow_constructible_v<E, Args &&...>> |
724 | 0 | void construct_error(Args &&...args) noexcept(NoExcept) { |
725 | 0 | new (addressof(base::m_unex)) unexpected<E>(std::forward<Args>(args)...); |
726 | 0 | base::m_has_val = false; |
727 | 0 | } Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeEE15construct_errorIJRKSO_ETnPNS2_9enable_ifIX18is_constructible_vISO_DpOT_EEvE4typeELPv0ELb1EEEvSW_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeEE15construct_errorIJRKSY_ETnPNS2_9enable_ifIX18is_constructible_vISY_DpOT_EEvE4typeELPv0ELb1EEEvS16_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS5_10RefVariantEEEENS5_7ValTypeEEENS2_9allocatorISK_EEEENS5_7ErrCodeEE15construct_errorIJSO_ETnPNS2_9enable_ifIX18is_constructible_vISO_DpOT_EEvE4typeELPv0ELb1EEEvSU_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrIN8WasmEdge7ValCompEEENSD_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_7ValTypeEEENS9_ISV_EEEENSD_7ErrCodeEE15construct_errorIJSY_ETnPNS2_9enable_ifIX18is_constructible_vISY_DpOT_EEvE4typeELPv0ELb1EEEvS14_ Unexecuted instantiation: _ZN5cxx206detail18expected_view_baseIhN8WasmEdge7ErrCodeEE15construct_errorIJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpOT_EEvE4typeELPv0ELb1EEEvSA_ |
728 | | }; |
729 | | |
730 | | template <class E> |
731 | | struct expected_view_base<void, E> : public expected_storage_base<void, E> { |
732 | | using base = expected_storage_base<void, E>; |
733 | | using base::base; |
734 | | |
735 | 40.4M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::has_value() const Line | Count | Source | 735 | 38.0M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void, __wasi_errno_t>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<void, WasmEdge::ErrCode::Value>::has_value() const Unexecuted instantiation: cxx20::detail::expected_view_base<void, WasmEdge::PO::Error>::has_value() const cxx20::detail::expected_view_base<void, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const Line | Count | Source | 735 | 2.38M | constexpr bool has_value() const noexcept { return likely(base::m_has_val); } |
|
736 | 0 | constexpr const E &error() const &noexcept { return base::m_unex.value(); } Unexecuted instantiation: cxx20::detail::expected_view_base<void, __wasi_errno_t>::error() const & Unexecuted instantiation: cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() const & |
737 | | constexpr const E &&error() const &&noexcept { |
738 | | return std::move(base::m_unex).value(); |
739 | | } |
740 | 39.0k | constexpr E &error() &noexcept { return base::m_unex.value(); } cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() & Line | Count | Source | 740 | 38.6k | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void, WasmEdge::PO::Error>::error() & cxx20::detail::expected_view_base<void, cxx20::unexpected<WasmEdge::ErrCode> >::error() & Line | Count | Source | 740 | 406 | constexpr E &error() &noexcept { return base::m_unex.value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void, __wasi_errno_t>::error() & |
741 | 19.9k | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() && Line | Count | Source | 741 | 19.9k | constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); } |
Unexecuted instantiation: cxx20::detail::expected_view_base<void, WasmEdge::ErrCode::Value>::error() && |
742 | | |
743 | | void emplace() noexcept(is_nothrow_destructible_v<E>) { |
744 | | if (!has_value()) { |
745 | | base::destruct_error(); |
746 | | } |
747 | | construct_value(); |
748 | | } |
749 | | |
750 | | protected: |
751 | | constexpr void val() const noexcept {} |
752 | | |
753 | 0 | void construct_value() noexcept { base::m_has_val = true; } |
754 | | template <class... Args, |
755 | | enable_if_t<is_constructible_v<E, Args &&...>> * = nullptr, |
756 | | bool NoExcept = is_nothrow_constructible_v<E, Args &&...>> |
757 | 0 | void construct_error(Args &&...args) noexcept(NoExcept) { |
758 | 0 | new (addressof(base::m_unex)) unexpected<E>(std::forward<Args>(args)...); |
759 | 0 | base::m_has_val = false; |
760 | 0 | } |
761 | | }; |
762 | | |
763 | | template <class T, class E> |
764 | | struct expected_operations_base : public expected_view_base<T, E> { |
765 | | using expected_view_base<T, E>::expected_view_base; |
766 | | |
767 | | protected: |
768 | | template <class U = T, |
769 | | bool NoExcept = is_nothrow_constructible_v<T, U> |
770 | | &&is_nothrow_assignable_v<add_lvalue_reference_t<T>, U>> |
771 | | void assign_value(U &&rhs) noexcept(NoExcept) { |
772 | | if (!this->has_value()) { |
773 | | if constexpr (is_nothrow_constructible_v<T, U>) { |
774 | | this->destruct_error(); |
775 | | this->construct_value(std::forward<U>(rhs)); |
776 | | } else { |
777 | | E tmp = this->error(); |
778 | | this->destruct_error(); |
779 | | try { |
780 | | this->construct_value(std::forward<U>(rhs)); |
781 | | } catch (...) { |
782 | | this->construct_error(std::move(tmp)); |
783 | | throw_exception_again; |
784 | | } |
785 | | } |
786 | | } else { |
787 | | this->val() = std::forward<U>(rhs); |
788 | | } |
789 | | } |
790 | | |
791 | | template <class G = E, bool NoExcept = is_nothrow_destructible_v<T>> |
792 | | void assign_error(const unexpected<G> &rhs) noexcept(NoExcept) { |
793 | | static_assert(is_nothrow_constructible_v<E, const G &>, |
794 | | "E must nothrow copy constructible"); |
795 | | static_assert(is_nothrow_assignable_v<E &, const G &>, |
796 | | "E must copy assignable"); |
797 | | if (this->has_value()) { |
798 | | this->destruct_value(); |
799 | | this->construct_error(rhs.value()); |
800 | | } else { |
801 | | this->error() = rhs.value(); |
802 | | } |
803 | | } |
804 | | template <class G = E, bool NoExcept = is_nothrow_destructible_v<T>> |
805 | | void assign_error(unexpected<G> &&rhs) noexcept(NoExcept) { |
806 | | static_assert(is_nothrow_constructible_v<E, G &&>, |
807 | | "E must nothrow move constructible"); |
808 | | static_assert(is_nothrow_assignable_v<E &, G &&>, "E must move assignable"); |
809 | | if (this->has_value()) { |
810 | | this->destruct_value(); |
811 | | this->construct_error(std::move(rhs).value()); |
812 | | } else { |
813 | | this->error() = std::move(rhs).value(); |
814 | | } |
815 | | } |
816 | | |
817 | | void assign(const expected_operations_base &rhs) noexcept( |
818 | | is_nothrow_copy_assignable_v<T> &&is_nothrow_copy_assignable_v<E> |
819 | | &&is_nothrow_copy_assignable_v<E> &&is_nothrow_destructible_v<E> && |
820 | | (disjunction_v<is_void<T>, is_nothrow_copy_constructible<T>>)) { |
821 | | static_assert(is_nothrow_move_constructible_v<E>, |
822 | | "E must nothrow move constructible"); |
823 | | static_assert(disjunction_v<is_void<T>, is_move_constructible<T>>, |
824 | | "T must move constructible"); |
825 | | if (!this->has_value() && rhs.has_value()) { |
826 | | if constexpr (is_void_v<T>) { |
827 | | this->destruct_error(); |
828 | | this->construct_value(); |
829 | | } else if constexpr (is_nothrow_copy_constructible_v<T>) { |
830 | | this->destruct_error(); |
831 | | this->construct_value(rhs.val()); |
832 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
833 | | T tmp = rhs.val(); |
834 | | this->destruct_error(); |
835 | | this->construct_value(std::move(tmp)); |
836 | | } else { |
837 | | E tmp = this->error(); |
838 | | this->destruct_error(); |
839 | | try { |
840 | | this->construct_value(rhs.val()); |
841 | | } catch (...) { |
842 | | this->construct_error(std::move(tmp)); |
843 | | throw_exception_again; |
844 | | } |
845 | | } |
846 | | } else if (this->has_value() && !rhs.has_value()) { |
847 | | if constexpr (is_void_v<T>) { |
848 | | this->construct_error(rhs.error()); |
849 | | } else if constexpr (is_nothrow_copy_constructible_v<T>) { |
850 | | this->destruct_value(); |
851 | | this->construct_error(rhs.error()); |
852 | | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
853 | | E tmp = rhs.error(); |
854 | | this->destruct_value(); |
855 | | this->construct_error(std::move(tmp)); |
856 | | } else { |
857 | | T tmp = this->val(); |
858 | | this->destruct_value(); |
859 | | try { |
860 | | this->construct_error(rhs.error()); |
861 | | } catch (...) { |
862 | | this->construct_value(std::move(tmp)); |
863 | | throw_exception_again; |
864 | | } |
865 | | } |
866 | | } else { |
867 | | if constexpr (is_void_v<T>) { |
868 | | if (!this->has_value()) { |
869 | | this->error() = rhs.error(); |
870 | | } |
871 | | } else { |
872 | | if (this->has_value()) { |
873 | | this->val() = rhs.val(); |
874 | | } else { |
875 | | this->error() = rhs.error(); |
876 | | } |
877 | | } |
878 | | } |
879 | | } |
880 | | |
881 | | void assign(expected_operations_base &&rhs) noexcept( |
882 | | is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E> |
883 | | &&is_nothrow_move_constructible_v<T> |
884 | 0 | &&is_nothrow_move_assignable_v<E>) { |
885 | 0 | static_assert(is_nothrow_move_constructible_v<E>, |
886 | 0 | "E must nothrow move constructible"); |
887 | 0 | static_assert(disjunction_v<is_void<T>, is_move_constructible<T>>, |
888 | 0 | "T must move constructible"); |
889 | 0 | if (!this->has_value() && rhs.has_value()) { |
890 | | if constexpr (is_void_v<T>) { |
891 | | this->destruct_error(); |
892 | | this->construct_value(); |
893 | 0 | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
894 | 0 | this->destruct_error(); |
895 | 0 | this->construct_value(std::move(rhs).val()); |
896 | | } else { |
897 | | E tmp = std::move(this->error()); |
898 | | this->destruct_error(); |
899 | | try { |
900 | | this->construct_value(std::move(rhs).val()); |
901 | | } catch (...) { |
902 | | this->construct_error(std::move(tmp)); |
903 | | throw_exception_again; |
904 | | } |
905 | | } |
906 | 0 | } else if (this->has_value() && !rhs.has_value()) { |
907 | | if constexpr (is_void_v<T>) { |
908 | | this->construct_error(std::move(rhs).error()); |
909 | 0 | } else if constexpr (is_nothrow_move_constructible_v<T>) { |
910 | 0 | this->destruct_value(); |
911 | 0 | this->construct_error(std::move(rhs).error()); |
912 | | } else { |
913 | | T tmp = std::move(this->val()); |
914 | | this->destruct_value(); |
915 | | try { |
916 | | this->construct_error(std::move(rhs).error()); |
917 | | } catch (...) { |
918 | | this->construct_value(std::move(tmp)); |
919 | | throw_exception_again; |
920 | | } |
921 | | } |
922 | 0 | } else { |
923 | 0 | if (this->has_value()) { |
924 | 0 | if constexpr (!is_void_v<T>) { |
925 | 0 | this->val() = std::move(rhs).val(); |
926 | 0 | } |
927 | 0 | } else { |
928 | 0 | this->error() = std::move(rhs).error(); |
929 | 0 | } |
930 | 0 | } |
931 | 0 | } |
932 | | }; |
933 | | |
934 | | template <class T, class E, |
935 | | bool = conjunction_v< |
936 | | is_trivially_copy_constructible<E>, |
937 | | disjunction<is_void<T>, is_trivially_copy_constructible<T>>>> |
938 | | struct expected_copy_base : public expected_operations_base<T, E> { |
939 | | using expected_operations_base<T, E>::expected_operations_base; |
940 | | }; |
941 | | |
942 | | template <class T, class E> |
943 | | struct expected_copy_base<T, E, false> : public expected_operations_base<T, E> { |
944 | | using expected_operations_base<T, E>::expected_operations_base; |
945 | | |
946 | 44.0M | constexpr expected_copy_base() = default; Unexecuted instantiation: cxx20::detail::expected_copy_base<void, WasmEdge::PO::Error, false>::expected_copy_base() cxx20::detail::expected_copy_base<void, WasmEdge::ErrCode, false>::expected_copy_base() Line | Count | Source | 946 | 41.6M | constexpr expected_copy_base() = default; |
cxx20::detail::expected_copy_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_copy_base() Line | Count | Source | 946 | 2.38M | constexpr expected_copy_base() = default; |
Unexecuted instantiation: cxx20::detail::expected_copy_base<unsigned char, WasmEdge::ErrCode, false>::expected_copy_base() Unexecuted instantiation: cxx20::detail::expected_copy_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false>::expected_copy_base() |
947 | | constexpr expected_copy_base(const expected_copy_base &rhs) noexcept( |
948 | | is_nothrow_copy_constructible_v<T>) |
949 | 0 | : expected_operations_base<T, E>(no_init) { |
950 | 0 | if (rhs.has_value()) { |
951 | | if constexpr (is_void_v<T>) { |
952 | | this->construct_value(); |
953 | 0 | } else { |
954 | 0 | this->construct_value(rhs.val()); |
955 | 0 | } |
956 | 0 | } else { |
957 | 0 | this->construct_error(rhs.error()); |
958 | 0 | } |
959 | 0 | } Unexecuted instantiation: cxx20::detail::expected_copy_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_base(cxx20::detail::expected_copy_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) Unexecuted instantiation: cxx20::detail::expected_copy_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_base(cxx20::detail::expected_copy_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) |
960 | | constexpr expected_copy_base(expected_copy_base &&rhs) = default; |
961 | | constexpr expected_copy_base & |
962 | | operator=(const expected_copy_base &rhs) = default; |
963 | | constexpr expected_copy_base &operator=(expected_copy_base &&rhs) = default; |
964 | | }; |
965 | | |
966 | | template <class T, class E, |
967 | | bool = conjunction_v< |
968 | | is_trivially_move_constructible<E>, |
969 | | disjunction<is_void<T>, is_trivially_move_constructible<T>>>> |
970 | | struct expected_move_base : public expected_copy_base<T, E> { |
971 | | using expected_copy_base<T, E>::expected_copy_base; |
972 | | }; |
973 | | |
974 | | template <class T, class E> |
975 | | struct expected_move_base<T, E, false> : public expected_copy_base<T, E> { |
976 | | using expected_copy_base<T, E>::expected_copy_base; |
977 | | |
978 | 44.0M | constexpr expected_move_base() = default; Unexecuted instantiation: cxx20::detail::expected_move_base<void, WasmEdge::PO::Error, false>::expected_move_base() cxx20::detail::expected_move_base<void, WasmEdge::ErrCode, false>::expected_move_base() Line | Count | Source | 978 | 41.6M | constexpr expected_move_base() = default; |
cxx20::detail::expected_move_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_move_base() Line | Count | Source | 978 | 2.38M | constexpr expected_move_base() = default; |
Unexecuted instantiation: cxx20::detail::expected_move_base<unsigned char, WasmEdge::ErrCode, false>::expected_move_base() Unexecuted instantiation: cxx20::detail::expected_move_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false>::expected_move_base() |
979 | | constexpr expected_move_base(expected_move_base &&rhs) noexcept( |
980 | | is_nothrow_move_constructible_v<T>) |
981 | 0 | : expected_copy_base<T, E>(no_init) { |
982 | 0 | if (rhs.has_value()) { |
983 | | if constexpr (is_void_v<T>) { |
984 | | this->construct_value(); |
985 | 0 | } else { |
986 | 0 | this->construct_value(std::move(rhs).val()); |
987 | 0 | } |
988 | 0 | } else { |
989 | 0 | this->construct_error(std::move(rhs).error()); |
990 | 0 | } |
991 | 0 | } Unexecuted instantiation: cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_base(cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) Unexecuted instantiation: cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_base(cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) |
992 | 0 | constexpr expected_move_base(const expected_move_base &rhs) = default; Unexecuted instantiation: cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_base(cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) Unexecuted instantiation: cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_base(cxx20::detail::expected_move_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) |
993 | | constexpr expected_move_base & |
994 | | operator=(const expected_move_base &rhs) = default; |
995 | | constexpr expected_move_base &operator=(expected_move_base &&rhs) = default; |
996 | | }; |
997 | | |
998 | | template < |
999 | | class T, class E, |
1000 | | bool = conjunction_v< |
1001 | | disjunction<is_void<T>, conjunction<is_trivially_copy_assignable<T>, |
1002 | | is_trivially_copy_constructible<T>, |
1003 | | is_trivially_destructible<T>>>, |
1004 | | is_trivially_copy_assignable<E>, is_trivially_copy_constructible<E>, |
1005 | | is_trivially_destructible<E>>> |
1006 | | struct expected_copy_assign_base : expected_move_base<T, E> { |
1007 | | using expected_move_base<T, E>::expected_move_base; |
1008 | | }; |
1009 | | |
1010 | | template <class T, class E> |
1011 | | struct expected_copy_assign_base<T, E, false> : expected_move_base<T, E> { |
1012 | | using expected_move_base<T, E>::expected_move_base; |
1013 | | |
1014 | 44.0M | constexpr expected_copy_assign_base() = default; Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<void, WasmEdge::PO::Error, false>::expected_copy_assign_base() cxx20::detail::expected_copy_assign_base<void, WasmEdge::ErrCode, false>::expected_copy_assign_base() Line | Count | Source | 1014 | 41.6M | constexpr expected_copy_assign_base() = default; |
cxx20::detail::expected_copy_assign_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_copy_assign_base() Line | Count | Source | 1014 | 2.38M | constexpr expected_copy_assign_base() = default; |
Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<unsigned char, WasmEdge::ErrCode, false>::expected_copy_assign_base() Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false>::expected_copy_assign_base() |
1015 | | constexpr expected_copy_assign_base(const expected_copy_assign_base &rhs) = |
1016 | 0 | default; Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_assign_base(cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_assign_base(cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) |
1017 | | constexpr expected_copy_assign_base(expected_copy_assign_base &&rhs) = |
1018 | 0 | default; Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_assign_base(cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_copy_assign_base(cxx20::detail::expected_copy_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) |
1019 | | constexpr expected_copy_assign_base & |
1020 | | operator=(const expected_copy_assign_base &rhs) noexcept( |
1021 | | is_nothrow_copy_constructible_v<T> &&is_nothrow_copy_assignable_v<E>) { |
1022 | | this->assign(rhs); |
1023 | | return *this; |
1024 | | } |
1025 | | constexpr expected_copy_assign_base & |
1026 | | operator=(expected_copy_assign_base &&rhs) = default; |
1027 | | }; |
1028 | | |
1029 | | template < |
1030 | | class T, class E, |
1031 | | bool = conjunction_v< |
1032 | | disjunction<is_void<T>, conjunction<is_trivially_destructible<T>, |
1033 | | is_trivially_move_constructible<T>, |
1034 | | is_trivially_move_assignable<T>>>, |
1035 | | is_trivially_destructible<E>, is_trivially_move_constructible<E>, |
1036 | | is_trivially_move_assignable<E>>> |
1037 | | struct expected_move_assign_base : expected_copy_assign_base<T, E> { |
1038 | | using expected_copy_assign_base<T, E>::expected_copy_assign_base; |
1039 | | }; |
1040 | | |
1041 | | template <class T, class E> |
1042 | | struct expected_move_assign_base<T, E, false> |
1043 | | : expected_copy_assign_base<T, E> { |
1044 | | using expected_copy_assign_base<T, E>::expected_copy_assign_base; |
1045 | | |
1046 | 44.0M | constexpr expected_move_assign_base() = default; Unexecuted instantiation: cxx20::detail::expected_move_assign_base<void, WasmEdge::PO::Error, false>::expected_move_assign_base() cxx20::detail::expected_move_assign_base<void, WasmEdge::ErrCode, false>::expected_move_assign_base() Line | Count | Source | 1046 | 41.6M | constexpr expected_move_assign_base() = default; |
cxx20::detail::expected_move_assign_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_move_assign_base() Line | Count | Source | 1046 | 2.38M | constexpr expected_move_assign_base() = default; |
Unexecuted instantiation: cxx20::detail::expected_move_assign_base<unsigned char, WasmEdge::ErrCode, false>::expected_move_assign_base() Unexecuted instantiation: cxx20::detail::expected_move_assign_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, false>::expected_move_assign_base() |
1047 | | constexpr expected_move_assign_base(const expected_move_assign_base &rhs) = |
1048 | 0 | default; Unexecuted instantiation: cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_assign_base(cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) Unexecuted instantiation: cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_assign_base(cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false> const&) |
1049 | | constexpr expected_move_assign_base(expected_move_assign_base &&rhs) = |
1050 | 0 | default; Unexecuted instantiation: cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_assign_base(cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) Unexecuted instantiation: cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>::expected_move_assign_base(cxx20::detail::expected_move_assign_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, false>&&) |
1051 | | constexpr expected_move_assign_base & |
1052 | | operator=(const expected_move_assign_base &rhs) = default; |
1053 | | constexpr expected_move_assign_base & |
1054 | | operator=(expected_move_assign_base &&rhs) noexcept( |
1055 | | is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E> |
1056 | | &&is_nothrow_move_constructible_v<T> |
1057 | 0 | &&is_nothrow_move_assignable_v<E>) { |
1058 | 0 | this->assign(std::move(rhs)); |
1059 | 0 | return *this; |
1060 | 0 | } |
1061 | | }; |
1062 | | |
1063 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1064 | | enable_if_t<!is_void_v<T>> * = nullptr, |
1065 | | class Ret = decltype(invoke(declval<F>(), *declval<Exp>()))> |
1066 | 36.8k | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { |
1067 | 36.8k | static_assert(is_expected_v<Ret>, "F must return an expected"); |
1068 | | |
1069 | 36.8k | if (exp.has_value()) { |
1070 | 33.0k | return invoke(std::forward<F>(f), *std::forward<Exp>(exp)); |
1071 | 33.0k | } |
1072 | 3.75k | return Ret(unexpect, std::forward<Exp>(exp).error()); |
1073 | 36.8k | } Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEEN8WasmEdge7ErrCodeEEEZZ24WasmEdge_CompilerCompileENK3$_0clEvEUlT_E_S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_INS3_10unique_ptrINS8_3AST6ModuleENS3_14default_deleteISM_EEEES9_EEEEDaOSC_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS3_14default_deleteIS7_EEEENS5_7ErrCodeEEEZZ24WasmEdge_CompilerCompileENK3$_0clEvEUlT_E0_SA_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvSB_EEEEDaOSE_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCodeEEEZZ24WasmEdge_CompilerCompileENK3$_0clEvEUlT_E1_S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS6_EEEEDaOS9_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS3_14default_deleteIS7_EEEENS5_7ErrCodeEEEZZ33WasmEdge_CompilerCompileFromBytesENK3$_0clEvEUlT_E_SA_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvSB_EEEEDaOSE_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCodeEEEZZ33WasmEdge_CompilerCompileFromBytesENK3$_0clEvEUlT_E0_S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS6_EEEEDaOS9_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCode5ValueEEEZNS3_2VM2VM17unsafeInstantiateEvE3$_3S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_INSC_10shared_ptrINS3_10ExecutableEEES6_EEEEDaOT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS5_7ErrCode5ValueEEEZNS5_2VM2VM17unsafeInstantiateEvE3$_5S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_ segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_4hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS4_EEEEDaOT_OT0_ Line | Count | Source | 1066 | 2.06k | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { | 1067 | 2.06k | static_assert(is_expected_v<Ret>, "F must return an expected"); | 1068 | | | 1069 | 2.06k | if (exp.has_value()) { | 1070 | 2.05k | return invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1071 | 2.05k | } | 1072 | 8 | return Ret(unexpect, std::forward<Exp>(exp).error()); | 1073 | 2.06k | } |
expression.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS3_9allocatorIS7_EEEENS5_7ErrCodeEEEZNS5_6Loader6Loader14loadExpressionERNS6_10ExpressionENS3_8optionalImEEE3$_1SA_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvSB_EEEEDaOT_OT0_ Line | Count | Source | 1066 | 34.7k | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { | 1067 | 34.7k | static_assert(is_expected_v<Ret>, "F must return an expected"); | 1068 | | | 1069 | 34.7k | if (exp.has_value()) { | 1070 | 31.0k | return invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1071 | 31.0k | } | 1072 | 3.74k | return Ret(unexpect, std::forward<Exp>(exp).error()); | 1073 | 34.7k | } |
Unexecuted instantiation: engine.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIPKN8WasmEdge3AST11InstructionENS3_7ErrCodeEEEZNS3_8Executor8Executor11runFunctionERNS3_7Runtime12StackManagerERKNSC_8Instance16FunctionInstanceENS_4spanIKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEELm18446744073709551615EEEE3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIN8WasmEdge10RefVariantENS3_7ErrCodeEEEZNS3_8Executor8Executor13runTableGetOpERNS3_7Runtime12StackManagerERNS9_8Instance13TableInstanceERKNS3_3AST11InstructionEE3$_1S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS5_EEEEDaOT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS4_7ErrCodeEEEZNS4_8Executor8Executor14runTableCopyOpERNS4_7Runtime12StackManagerERNSC_8Instance13TableInstanceESH_RKNS4_3AST11InstructionEE3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_ |
1074 | | |
1075 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1076 | | enable_if_t<is_void_v<T>> * = nullptr, |
1077 | | class Ret = decltype(invoke(declval<F>()))> |
1078 | 1.85k | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { |
1079 | 1.85k | static_assert(is_expected_v<Ret>, "F must return an expected"); |
1080 | | |
1081 | 1.85k | if (exp.has_value()) { |
1082 | 1.81k | return invoke(std::forward<F>(f)); |
1083 | 1.81k | } |
1084 | 41 | return Ret(unexpect, std::forward<Exp>(exp).error()); |
1085 | 1.85k | } Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZ24WasmEdge_CompilerCompileENK3$_0clEvEUlvE_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS2_INS8_6vectorIhNS8_9allocatorIhEEEES4_EEEEDaOT_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZ24WasmEdge_CompilerCompileENK3$_0clEvEUlvE0_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS2_INS3_4LLVM4DataES4_EEEEDaOT_OT0_ Unexecuted instantiation: wasmedge.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZ33WasmEdge_CompilerCompileFromBytesENK3$_0clEvEUlvE_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS2_INS3_4LLVM4DataES4_EEEEDaOT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCode5ValueEEEZNS3_2VM2VM17unsafeInstantiateEvE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS2_INS3_4LLVM4DataES4_EEEEDaOT_OT0_ segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ Line | Count | Source | 1078 | 926 | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { | 1079 | 926 | static_assert(is_expected_v<Ret>, "F must return an expected"); | 1080 | | | 1081 | 926 | if (exp.has_value()) { | 1082 | 926 | return invoke(std::forward<F>(f)); | 1083 | 926 | } | 1084 | 0 | return Ret(unexpect, std::forward<Exp>(exp).error()); | 1085 | 926 | } |
segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ Line | Count | Source | 1078 | 926 | constexpr auto expected_and_then_impl(Exp &&exp, F &&f) { | 1079 | 926 | static_assert(is_expected_v<Ret>, "F must return an expected"); | 1080 | | | 1081 | 926 | if (exp.has_value()) { | 1082 | 885 | return invoke(std::forward<F>(f)); | 1083 | 885 | } | 1084 | 41 | return Ret(unexpect, std::forward<Exp>(exp).error()); | 1085 | 926 | } |
Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST12TableSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST12TableSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_1vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST13GlobalSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST13GlobalSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_1vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_ |
1086 | | |
1087 | | template <class Exp, class F, |
1088 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1089 | | enable_if_t<!is_void_v<Ret>> * = nullptr> |
1090 | | constexpr auto expected_or_else_impl(Exp &&exp, F &&f) { |
1091 | | static_assert(is_expected_v<Ret>, "F must return an expected"); |
1092 | | if (exp.has_value()) { |
1093 | | return std::forward<Exp>(exp); |
1094 | | } |
1095 | | return invoke(std::forward<F>(f), std::forward<Exp>(exp).error()); |
1096 | | } |
1097 | | |
1098 | | template <class Exp, class F, |
1099 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1100 | | enable_if_t<is_void_v<Ret>> * = nullptr> |
1101 | | constexpr auto expected_or_else_impl(Exp &&exp, F &&f) { |
1102 | | if (!exp.has_value()) { |
1103 | | invoke(std::forward<F>(f), std::forward<Exp>(exp).error()); |
1104 | | } |
1105 | | return std::forward<Exp>(exp); |
1106 | | } |
1107 | | |
1108 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1109 | | class E = typename decay_t<Exp>::error_type, |
1110 | | enable_if_t<!is_void_v<T>> * = nullptr, |
1111 | | class Ret = decltype(invoke(declval<F>(), *declval<Exp>())), |
1112 | | enable_if_t<!is_void_v<Ret>> * = nullptr, |
1113 | | class Result = expected<decay_t<Ret>, E>> |
1114 | | constexpr Result expected_map_impl(Exp &&exp, F &&f) { |
1115 | | if (exp.has_value()) { |
1116 | | return Result(invoke(std::forward<F>(f), *std::forward<Exp>(exp))); |
1117 | | } |
1118 | | return Result(unexpect, std::forward<Exp>(exp).error()); |
1119 | | } |
1120 | | |
1121 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1122 | | class E = typename decay_t<Exp>::error_type, |
1123 | | enable_if_t<!is_void_v<T>> * = nullptr, |
1124 | | class Ret = decltype(invoke(declval<F>(), *declval<Exp>())), |
1125 | | enable_if_t<is_void_v<Ret>> * = nullptr, |
1126 | | class Result = expected<void, E>> |
1127 | 2.38M | constexpr Result expected_map_impl(Exp &&exp, F &&f) { |
1128 | 2.38M | if (exp.has_value()) { |
1129 | 2.38M | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); |
1130 | 2.38M | return Result(); |
1131 | 2.38M | } |
1132 | 391 | return Result(unexpect, std::forward<Exp>(exp).error()); |
1133 | 2.38M | } description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNSB_6Loader6Loader8loadDescERNSB_3AST10ImportDescEE3$_1S9_SD_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ENS2_IvSD_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 11.2k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 11.2k | if (exp.has_value()) { | 1129 | 11.1k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 11.1k | return Result(); | 1131 | 11.1k | } | 1132 | 36 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 11.2k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNSB_6Loader6Loader8loadDescERNSB_3AST10ImportDescEE3$_2S9_SD_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ENS2_IvSD_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 11.1k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 11.1k | if (exp.has_value()) { | 1129 | 11.1k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 11.1k | return Result(); | 1131 | 11.1k | } | 1132 | 29 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 11.1k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST10ImportDescEE3$_3hS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 11.1k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 11.1k | if (exp.has_value()) { | 1129 | 11.1k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 11.1k | return Result(); | 1131 | 11.1k | } | 1132 | 14 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 11.1k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST10ImportDescEE3$_4jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 3.04k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 3.04k | if (exp.has_value()) { | 1129 | 3.03k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 3.03k | return Result(); | 1131 | 3.03k | } | 1132 | 5 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 3.04k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNSB_6Loader6Loader8loadDescERNSB_3AST10ExportDescEE3$_1S9_SD_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ENS2_IvSD_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 21.8k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 21.8k | if (exp.has_value()) { | 1129 | 21.8k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 21.8k | return Result(); | 1131 | 21.8k | } | 1132 | 42 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 21.8k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST10ExportDescEE3$_2hS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 21.8k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 21.8k | if (exp.has_value()) { | 1129 | 21.8k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 21.8k | return Result(); | 1131 | 21.8k | } | 1132 | 6 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 21.8k | } |
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST10ExportDescEE3$_3jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 21.8k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 21.8k | if (exp.has_value()) { | 1129 | 21.8k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 21.8k | return Result(); | 1131 | 21.8k | } | 1132 | 4 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 21.8k | } |
Unexecuted instantiation: segment.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader11loadSegmentERNS4_3AST14ElementSegmentEE3$_1jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ segment.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader11loadSegmentERNS4_3AST14ElementSegmentEE3$_2jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 1.09k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 1.09k | if (exp.has_value()) { | 1129 | 1.09k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 1.09k | return Result(); | 1131 | 1.09k | } | 1132 | 5 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 1.09k | } |
segment.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader11loadSegmentERNS4_3AST11CodeSegmentEE3$_1jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 22.4k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 22.4k | if (exp.has_value()) { | 1129 | 22.4k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 22.4k | return Result(); | 1131 | 22.4k | } | 1132 | 6 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 22.4k | } |
segment.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader11loadSegmentERNS4_3AST11DataSegmentEE3$_1jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 829 | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 829 | if (exp.has_value()) { | 1129 | 825 | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 825 | return Result(); | 1131 | 825 | } | 1132 | 4 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 829 | } |
segment.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS9_6Loader6Loader11loadSegmentERNS9_3AST11DataSegmentEE3$_3S7_SB_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSJ_IX9is_void_vIT4_EEvE4typeELSO_0ENS2_IvSB_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 3.76k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 3.76k | if (exp.has_value()) { | 1129 | 3.75k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 3.75k | return Result(); | 1131 | 3.75k | } | 1132 | 6 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 3.76k | } |
instruction.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader15loadInstructionERNS4_3AST11InstructionEE3$_1iS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 1.92M | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 1.92M | if (exp.has_value()) { | 1129 | 1.92M | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 1.92M | return Result(); | 1131 | 1.92M | } | 1132 | 87 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 1.92M | } |
instruction.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader15loadInstructionERNS4_3AST11InstructionEE3$_2lS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 244k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 244k | if (exp.has_value()) { | 1129 | 244k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 244k | return Result(); | 1131 | 244k | } | 1132 | 105 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 244k | } |
instruction.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader15loadInstructionERNS4_3AST11InstructionEE3$_3fS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 35.2k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 35.2k | if (exp.has_value()) { | 1129 | 35.2k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 35.2k | return Result(); | 1131 | 35.2k | } | 1132 | 10 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 35.2k | } |
instruction.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader15loadInstructionERNS4_3AST11InstructionEE3$_4dS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 15.4k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 15.4k | if (exp.has_value()) { | 1129 | 15.4k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 15.4k | return Result(); | 1131 | 15.4k | } | 1132 | 11 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 15.4k | } |
instruction.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader15loadInstructionERNS4_3AST11InstructionEE3$_5hS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_ Line | Count | Source | 1127 | 34.1k | constexpr Result expected_map_impl(Exp &&exp, F &&f) { | 1128 | 34.1k | if (exp.has_value()) { | 1129 | 34.1k | invoke(std::forward<F>(f), *std::forward<Exp>(exp)); | 1130 | 34.1k | return Result(); | 1131 | 34.1k | } | 1132 | 21 | return Result(unexpect, std::forward<Exp>(exp).error()); | 1133 | 34.1k | } |
Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIiEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E0_jS4_TnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSA_IX9is_void_vIT4_EEvE4typeELSU_0ESC_EET6_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIlEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E0_jS4_TnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSA_IX9is_void_vIT4_EEvE4typeELSU_0ESC_EET6_OSB_OT0_ |
1134 | | |
1135 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1136 | | class E = typename decay_t<Exp>::error_type, |
1137 | | enable_if_t<is_void_v<T>> * = nullptr, |
1138 | | class Ret = decltype(invoke(declval<F>())), |
1139 | | enable_if_t<!is_void_v<Ret>> * = nullptr, |
1140 | | class Result = expected<decay_t<Ret>, E>> |
1141 | | constexpr Result expected_map_impl(Exp &&exp, F &&f) { |
1142 | | if (exp.has_value()) { |
1143 | | return Result(invoke(std::forward<F>(f))); |
1144 | | } |
1145 | | return Result(unexpect, std::forward<Exp>(exp).error()); |
1146 | | } |
1147 | | |
1148 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1149 | | class E = typename decay_t<Exp>::error_type, |
1150 | | enable_if_t<is_void_v<T>> * = nullptr, |
1151 | | class Ret = decltype(invoke(declval<F>())), |
1152 | | enable_if_t<is_void_v<Ret>> * = nullptr, |
1153 | | class Result = expected<void, E>> |
1154 | 0 | constexpr Result expected_map_impl(Exp &&exp, F &&f) { |
1155 | 0 | if (exp.has_value()) { |
1156 | 0 | invoke(std::forward<F>(f)); |
1157 | 0 | return Result(); |
1158 | 0 | } |
1159 | 0 | return Result(unexpect, std::forward<Exp>(exp).error()); |
1160 | 0 | } Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIasEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIhtEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIsiEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpItjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIilEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIjmEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpIhEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpItEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpIjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpImEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpIhEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpItEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpIjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpImEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlvE_vS4_TnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0EvTnPNSL_IX9is_void_vIT4_EEvE4typeELSQ_0ES5_EET6_OT_OT0_ |
1161 | | |
1162 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1163 | | enable_if_t<!is_void_v<T>> * = nullptr, |
1164 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1165 | | enable_if_t<!is_void_v<Ret>> * = nullptr, |
1166 | | class Result = expected<T, decay_t<Ret>>> |
1167 | 12.3M | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { |
1168 | 12.3M | if (exp.has_value()) { |
1169 | 12.3M | return Result(*std::forward<Exp>(exp)); |
1170 | 12.3M | } |
1171 | 7.18k | return Result(unexpect, |
1172 | 7.18k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); |
1173 | 12.3M | } Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorINS3_4pairINS3_7variantIJhtjmasilfdbNS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS3_10shared_ptrIN8WasmEdge7ValCompEEENSE_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSE_10RefVariantEEEEEEENSE_7ValTypeEEENSA_ISW_EEEENSE_7ErrCodeEEEZNSE_2VM2VM13unsafeExecuteEPKNSE_7Runtime8Instance17ComponentInstanceENS3_17basic_string_viewIcS9_EENS_4spanIKSU_Lm18446744073709551615EEENS1A_IKSV_Lm18446744073709551615EEEE3$_0SY_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESZ_TnPNS1G_IXnt9is_void_vIT3_EEvE4typeELS1L_0ES10_EET5_OT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCodeEEEZNS3_2VM2VM17unsafeInstantiateEvE3$_2S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS6_5ValueETnPNSC_IXnt9is_void_vIT3_EEvE4typeELSH_0ENS2_IS5_SI_EEEET5_OT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS5_7ErrCodeEEEZNS5_2VM2VM17unsafeInstantiateEvE3$_4S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS8_5ValueETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IS7_SJ_EEEET5_OT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorINS3_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS6_10RefVariantEEEENS6_7ValTypeEEENS3_9allocatorISL_EEEENS6_7ErrCodeEEEZNS6_2VM2VM13unsafeExecuteEPKNS6_7Runtime8Instance14ModuleInstanceENS3_17basic_string_viewIcNS3_11char_traitsIcEEEENS_4spanIKSJ_Lm18446744073709551615EEENS12_IKSK_Lm18446744073709551615EEEE3$_0SO_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESP_TnPNS18_IXnt9is_void_vIT3_EEvE4typeELS1D_0ESQ_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_1hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_2hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_3mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_4mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_5mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_6mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_7mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_8mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE3$_9jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE4$_10hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE4$_11mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE4$_12mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSectionERNS3_7FileMgrERNS3_3AST10AOTSectionEE4$_13jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEEN8WasmEdge7ErrCodeEEEZNS8_6Loader6Loader11loadSectionERNS8_7FileMgrERNS8_3AST10AOTSectionEE4$_14S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES9_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ESA_EET5_OT_OT0_ section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST13CustomSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 45.0k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 45.0k | if (exp.has_value()) { | 1169 | 45.0k | return Result(*std::forward<Exp>(exp)); | 1170 | 45.0k | } | 1171 | 10 | return Result(unexpect, | 1172 | 10 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 45.0k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZZNSA_6Loader6Loader11loadSectionERNSA_3AST13CustomSectionEENK3$_0clEvEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ENS2_IS9_ST_EEEET5_OSJ_OT0_ Line | Count | Source | 1167 | 45.0k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 45.0k | if (exp.has_value()) { | 1169 | 44.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 44.8k | } | 1171 | 120 | return Result(unexpect, | 1172 | 120 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 45.0k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEEN8WasmEdge7ErrCodeEEERZZNS8_6Loader6Loader11loadSectionERNS8_3AST13CustomSectionEENK3$_0clEvEUlT_E_S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS9_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS7_SR_EEEET5_OSH_OT0_ Line | Count | Source | 1167 | 44.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 44.8k | if (exp.has_value()) { | 1169 | 44.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 44.8k | } | 1171 | 0 | return Result(unexpect, | 1172 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 44.8k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST11TypeSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 4.55k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.55k | if (exp.has_value()) { | 1169 | 4.55k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.55k | } | 1171 | 2 | return Result(unexpect, | 1172 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.55k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader11loadSectionERNS3_3AST11TypeSectionEENK3$_0clEvEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IjSN_EEEET5_OSC_OT0_ Line | Count | Source | 1167 | 4.53k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.53k | if (exp.has_value()) { | 1169 | 4.51k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.51k | } | 1171 | 21 | return Result(unexpect, | 1172 | 21 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.53k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader11loadSectionERNS3_3AST11TypeSectionEENK3$_0clEvEUlT_E_hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IhSN_EEEET5_OSC_OT0_ Line | Count | Source | 1167 | 8.48k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 8.48k | if (exp.has_value()) { | 1169 | 8.48k | return Result(*std::forward<Exp>(exp)); | 1170 | 8.48k | } | 1171 | 2 | return Result(unexpect, | 1172 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 8.48k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST13ImportSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 279 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 279 | if (exp.has_value()) { | 1169 | 275 | return Result(*std::forward<Exp>(exp)); | 1170 | 275 | } | 1171 | 4 | return Result(unexpect, | 1172 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 279 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13ImportSectionENS9_10ImportDescEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 258 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 258 | if (exp.has_value()) { | 1169 | 247 | return Result(*std::forward<Exp>(exp)); | 1170 | 247 | } | 1171 | 11 | return Result(unexpect, | 1172 | 11 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 258 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST15FunctionSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 4.36k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.36k | if (exp.has_value()) { | 1169 | 4.35k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.35k | } | 1171 | 4 | return Result(unexpect, | 1172 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.36k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST15FunctionSectionEjZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRjE_EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Line | Count | Source | 1167 | 4.34k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.34k | if (exp.has_value()) { | 1169 | 4.33k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.33k | } | 1171 | 15 | return Result(unexpect, | 1172 | 15 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.34k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZZZNS3_6Loader6Loader11loadSectionERNS3_3AST15FunctionSectionEENK3$_0clEvENKUlRjE_clESC_EUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ENS2_IjSO_EEEET5_OSE_OT0_ Line | Count | Source | 1167 | 36.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 36.4k | if (exp.has_value()) { | 1169 | 36.3k | return Result(*std::forward<Exp>(exp)); | 1170 | 36.3k | } | 1171 | 31 | return Result(unexpect, | 1172 | 31 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 36.4k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST12TableSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 443 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 443 | if (exp.has_value()) { | 1169 | 441 | return Result(*std::forward<Exp>(exp)); | 1170 | 441 | } | 1171 | 2 | return Result(unexpect, | 1172 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 443 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST12TableSectionENS9_12TableSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 427 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 427 | if (exp.has_value()) { | 1169 | 408 | return Result(*std::forward<Exp>(exp)); | 1170 | 408 | } | 1171 | 19 | return Result(unexpect, | 1172 | 19 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 427 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST13MemorySectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 1.53k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.53k | if (exp.has_value()) { | 1169 | 1.53k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.53k | } | 1171 | 3 | return Result(unexpect, | 1172 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.53k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13MemorySectionENS9_10MemoryTypeEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 1.51k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.51k | if (exp.has_value()) { | 1169 | 1.49k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.49k | } | 1171 | 19 | return Result(unexpect, | 1172 | 19 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.51k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST13GlobalSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 683 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 683 | if (exp.has_value()) { | 1169 | 679 | return Result(*std::forward<Exp>(exp)); | 1170 | 679 | } | 1171 | 4 | return Result(unexpect, | 1172 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 683 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13GlobalSectionENS9_13GlobalSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 666 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 666 | if (exp.has_value()) { | 1169 | 650 | return Result(*std::forward<Exp>(exp)); | 1170 | 650 | } | 1171 | 16 | return Result(unexpect, | 1172 | 16 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 666 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST13ExportSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 1.25k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.25k | if (exp.has_value()) { | 1169 | 1.25k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.25k | } | 1171 | 1 | return Result(unexpect, | 1172 | 1 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.25k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13ExportSectionENS9_10ExportDescEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 1.23k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.23k | if (exp.has_value()) { | 1169 | 1.22k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.22k | } | 1171 | 16 | return Result(unexpect, | 1172 | 16 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.23k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST12StartSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 46 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 46 | if (exp.has_value()) { | 1169 | 43 | return Result(*std::forward<Exp>(exp)); | 1170 | 43 | } | 1171 | 3 | return Result(unexpect, | 1172 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 46 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader11loadSectionERNS3_3AST12StartSectionEENK3$_0clEvEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OSC_OT0_ Line | Count | Source | 1167 | 28 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 28 | if (exp.has_value()) { | 1169 | 25 | return Result(*std::forward<Exp>(exp)); | 1170 | 25 | } | 1171 | 3 | return Result(unexpect, | 1172 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 28 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST14ElementSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 1.43k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.43k | if (exp.has_value()) { | 1169 | 1.43k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.43k | } | 1171 | 3 | return Result(unexpect, | 1172 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.43k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST14ElementSectionENS9_14ElementSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 1.41k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.41k | if (exp.has_value()) { | 1169 | 1.40k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.40k | } | 1171 | 17 | return Result(unexpect, | 1172 | 17 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.41k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST11CodeSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 4.58k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.58k | if (exp.has_value()) { | 1169 | 4.58k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.58k | } | 1171 | 2 | return Result(unexpect, | 1172 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.58k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST11CodeSectionENS9_11CodeSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 4.57k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 4.57k | if (exp.has_value()) { | 1169 | 4.55k | return Result(*std::forward<Exp>(exp)); | 1170 | 4.55k | } | 1171 | 19 | return Result(unexpect, | 1172 | 19 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 4.57k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST11DataSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 1.59k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.59k | if (exp.has_value()) { | 1169 | 1.58k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.58k | } | 1171 | 6 | return Result(unexpect, | 1172 | 6 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.59k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST11DataSectionENS9_11DataSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ Line | Count | Source | 1167 | 1.56k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.56k | if (exp.has_value()) { | 1169 | 1.54k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.54k | } | 1171 | 20 | return Result(unexpect, | 1172 | 20 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.56k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST16DataCountSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Line | Count | Source | 1167 | 99 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 99 | if (exp.has_value()) { | 1169 | 96 | return Result(*std::forward<Exp>(exp)); | 1170 | 96 | } | 1171 | 3 | return Result(unexpect, | 1172 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 99 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader11loadSectionERNS3_3AST16DataCountSectionEENK3$_0clEvEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OSC_OT0_ Line | Count | Source | 1167 | 85 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 85 | if (exp.has_value()) { | 1169 | 83 | return Result(*std::forward<Exp>(exp)); | 1170 | 83 | } | 1171 | 2 | return Result(unexpect, | 1172 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 85 | } |
Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST10TagSectionEZNS7_11loadSectionERSA_E3$_0EENS2_IvS4_EERT_OT0_EUlSE_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSE_SH_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST10TagSectionENS9_7TagTypeEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_ description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader8loadDescERNSA_3AST10ImportDescEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 22.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 22.4k | if (exp.has_value()) { | 1169 | 22.3k | return Result(*std::forward<Exp>(exp)); | 1170 | 22.3k | } | 1171 | 65 | return Result(unexpect, | 1172 | 65 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 22.4k | } |
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST10ImportDescEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 11.1k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 11.1k | if (exp.has_value()) { | 1169 | 11.1k | return Result(*std::forward<Exp>(exp)); | 1170 | 11.1k | } | 1171 | 14 | return Result(unexpect, | 1172 | 14 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 11.1k | } |
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST10ImportDescEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 3.04k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 3.04k | if (exp.has_value()) { | 1169 | 3.03k | return Result(*std::forward<Exp>(exp)); | 1170 | 3.03k | } | 1171 | 5 | return Result(unexpect, | 1172 | 5 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 3.04k | } |
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader8loadDescERNSA_3AST10ExportDescEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 21.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 21.8k | if (exp.has_value()) { | 1169 | 21.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 21.8k | } | 1171 | 42 | return Result(unexpect, | 1172 | 42 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 21.8k | } |
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST10ExportDescEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 21.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 21.8k | if (exp.has_value()) { | 1169 | 21.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 21.8k | } | 1171 | 6 | return Result(unexpect, | 1172 | 6 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 21.8k | } |
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST10ExportDescEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 21.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 21.8k | if (exp.has_value()) { | 1169 | 21.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 21.8k | } | 1171 | 4 | return Result(unexpect, | 1172 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 21.8k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 580 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 580 | if (exp.has_value()) { | 1169 | 573 | return Result(*std::forward<Exp>(exp)); | 1170 | 573 | } | 1171 | 7 | return Result(unexpect, | 1172 | 7 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 580 | } |
Unexecuted instantiation: segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_1hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 11.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 11.4k | if (exp.has_value()) { | 1169 | 11.3k | return Result(*std::forward<Exp>(exp)); | 1170 | 11.3k | } | 1171 | 63 | return Result(unexpect, | 1172 | 63 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 11.4k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader11loadSegmentERNS3_3AST11CodeSegmentEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 48.2k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 48.2k | if (exp.has_value()) { | 1169 | 48.1k | return Result(*std::forward<Exp>(exp)); | 1170 | 48.1k | } | 1171 | 31 | return Result(unexpect, | 1172 | 31 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 48.2k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader11loadSegmentERNS3_3AST11DataSegmentEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 9.72k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 9.72k | if (exp.has_value()) { | 1169 | 9.70k | return Result(*std::forward<Exp>(exp)); | 1170 | 9.70k | } | 1171 | 25 | return Result(unexpect, | 1172 | 25 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 9.72k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEEN8WasmEdge7ErrCodeEEERZNS8_6Loader6Loader11loadSegmentERNS8_3AST11DataSegmentEE3$_0S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS9_EETnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ENS2_IS7_SP_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 3.76k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 3.76k | if (exp.has_value()) { | 1169 | 3.75k | return Result(*std::forward<Exp>(exp)); | 1170 | 3.75k | } | 1171 | 6 | return Result(unexpect, | 1172 | 6 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 3.76k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST14ElementSegmentENS9_10ExpressionEZNS7_11loadSegmentERSA_E3$_6EENS2_IvS4_EERNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E_jTnPNSF_9enable_ifIXnt9is_void_vISM_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IjSW_EEEET5_OSO_OSH_ Line | Count | Source | 1167 | 1.18k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.18k | if (exp.has_value()) { | 1169 | 1.16k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.16k | } | 1171 | 19 | return Result(unexpect, | 1172 | 19 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.18k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader17loadCompositeTypeERNS3_3AST13CompositeTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 8.46k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 8.46k | if (exp.has_value()) { | 1169 | 8.46k | return Result(*std::forward<Exp>(exp)); | 1170 | 8.46k | } | 1171 | 0 | return Result(unexpect, | 1172 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 8.46k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 3.81k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 3.81k | if (exp.has_value()) { | 1169 | 3.81k | return Result(*std::forward<Exp>(exp)); | 1170 | 3.81k | } | 1171 | 8 | return Result(unexpect, | 1172 | 8 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 3.81k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IjSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 3.77k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 3.77k | if (exp.has_value()) { | 1169 | 3.76k | return Result(*std::forward<Exp>(exp)); | 1170 | 3.76k | } | 1171 | 7 | return Result(unexpect, | 1172 | 7 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 3.77k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_2jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IjSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 1.39k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.39k | if (exp.has_value()) { | 1169 | 1.39k | return Result(*std::forward<Exp>(exp)); | 1170 | 1.39k | } | 1171 | 4 | return Result(unexpect, | 1172 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.39k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST7SubTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 8.46k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 8.46k | if (exp.has_value()) { | 1169 | 8.46k | return Result(*std::forward<Exp>(exp)); | 1170 | 8.46k | } | 1171 | 0 | return Result(unexpect, | 1172 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 8.46k | } |
Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST7TagTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IhSK_EEEET5_OT_OT0_ Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST7TagTypeEE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IjSK_EEEET5_OT_OT0_ Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST7SubTypeENS9_9FieldTypeEZNS7_17loadCompositeTypeERNS9_13CompositeTypeEE3$_1EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST7SubTypeEjRZNS7_8loadTypeERSA_E3$_1EENS2_IvS4_EERNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E_jTnPNSF_9enable_ifIXnt9is_void_vISM_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IjSW_EEEET5_OSO_OSH_ Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader8loadTypeERNS3_3AST7SubTypeEENK3$_1clERjEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IjSN_EEEET5_OSD_OT0_ type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST12FunctionTypeENS3_7ValTypeERZNS7_8loadTypeERSA_E3$_0EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Line | Count | Source | 1167 | 16.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 16.8k | if (exp.has_value()) { | 1169 | 16.8k | return Result(*std::forward<Exp>(exp)); | 1170 | 16.8k | } | 1171 | 18 | return Result(unexpect, | 1172 | 18 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 16.8k | } |
expression.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS3_9allocatorIS7_EEEENS5_7ErrCodeEEEZNS5_6Loader6Loader14loadExpressionERNS6_10ExpressionENS3_8optionalImEEE3$_0SA_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ESC_EET5_OT_OT0_ Line | Count | Source | 1167 | 34.7k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 34.7k | if (exp.has_value()) { | 1169 | 31.0k | return Result(*std::forward<Exp>(exp)); | 1170 | 31.0k | } | 1171 | 3.74k | return Result(unexpect, | 1172 | 3.74k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 34.7k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge6OpCodeENS3_7ErrCodeEEEZNS3_6Loader6Loader12loadInstrSeqENSt3__18optionalImEEE3$_0S4_TnPNS9_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS5_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IS4_SK_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 8.63M | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 8.63M | if (exp.has_value()) { | 1169 | 8.63M | return Result(*std::forward<Exp>(exp)); | 1170 | 8.63M | } | 1171 | 2.08k | return Result(unexpect, | 1172 | 2.08k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 8.63M | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIlN8WasmEdge7ErrCodeEEERKZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0lTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IlSM_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 290k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 290k | if (exp.has_value()) { | 1169 | 290k | return Result(*std::forward<Exp>(exp)); | 1170 | 290k | } | 1171 | 86 | return Result(unexpect, | 1172 | 86 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 290k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 8.51k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 8.51k | if (exp.has_value()) { | 1169 | 8.47k | return Result(*std::forward<Exp>(exp)); | 1170 | 8.47k | } | 1171 | 38 | return Result(unexpect, | 1172 | 38 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 8.51k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 34.1k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 34.1k | if (exp.has_value()) { | 1169 | 34.1k | return Result(*std::forward<Exp>(exp)); | 1170 | 34.1k | } | 1171 | 21 | return Result(unexpect, | 1172 | 21 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 34.1k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERKZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 589k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 589k | if (exp.has_value()) { | 1169 | 589k | return Result(*std::forward<Exp>(exp)); | 1170 | 589k | } | 1171 | 242 | return Result(unexpect, | 1172 | 242 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 589k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERKZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 71.9k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 71.9k | if (exp.has_value()) { | 1169 | 71.9k | return Result(*std::forward<Exp>(exp)); | 1170 | 71.9k | } | 1171 | 48 | return Result(unexpect, | 1172 | 48 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 71.9k | } |
Unexecuted instantiation: instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge7ValTypeENS3_7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS5_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IS4_SM_EEEET5_OT_OT0_ instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIiN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0iTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IiSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 1.92M | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 1.92M | if (exp.has_value()) { | 1169 | 1.92M | return Result(*std::forward<Exp>(exp)); | 1170 | 1.92M | } | 1171 | 87 | return Result(unexpect, | 1172 | 87 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 1.92M | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIlN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0lTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IlSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 244k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 244k | if (exp.has_value()) { | 1169 | 244k | return Result(*std::forward<Exp>(exp)); | 1170 | 244k | } | 1171 | 105 | return Result(unexpect, | 1172 | 105 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 244k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIfN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0fTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IfSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 35.2k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 35.2k | if (exp.has_value()) { | 1169 | 35.2k | return Result(*std::forward<Exp>(exp)); | 1170 | 35.2k | } | 1171 | 10 | return Result(unexpect, | 1172 | 10 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 35.2k | } |
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIdN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0dTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IdSL_EEEET5_OT_OT0_ Line | Count | Source | 1167 | 15.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1168 | 15.4k | if (exp.has_value()) { | 1169 | 15.4k | return Result(*std::forward<Exp>(exp)); | 1170 | 15.4k | } | 1171 | 11 | return Result(unexpect, | 1172 | 11 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1173 | 15.4k | } |
Unexecuted instantiation: loader.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13parseWasmUnitERKNSt3__14__fs10filesystem4pathEE3$_1jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_ Unexecuted instantiation: loader.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIhNS3_9allocatorIhEEEEN8WasmEdge7ErrCodeEEERZNS8_6Loader6Loader13parseWasmUnitERKNS3_4__fs10filesystem4pathEE3$_1S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES9_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ESA_EET5_OT_OT0_ Unexecuted instantiation: loader.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__17variantIJNS3_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS3_14default_deleteIS9_EEEENS5_INS7_6ModuleENSA_ISD_EEEEEEENS6_7ErrCodeEEERZNS6_6Loader6Loader13parseWasmUnitERKNS3_4__fs10filesystem4pathEE3$_1SG_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESH_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSX_0ESI_EET5_OT_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component17CoreModuleSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__14pairINS3_6vectorIhNS3_9allocatorIhEEEES8_EEN8WasmEdge7ErrCodeEEERZZNSA_6Loader6Loader11loadSectionERNSA_3AST9Component17CoreModuleSectionEENK3$_0clEvEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ESC_EET5_OSK_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component19CoreInstanceSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component19CoreInstanceSectionENSt3__17variantIJNSA_15CoreInstantiateENSA_19InlineExportImplVecINSA_8CoreSortEEEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSI_E_EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISP_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISU_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSY_IXnt9is_void_vIT3_EEvE4typeELS12_0ENS2_IjS14_EEEET5_OSW_OSP_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component15CoreTypeSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15CoreTypeSectionENSt3__17variantIJNS9_12FunctionTypeENSA_14CoreModuleTypeEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSG_E_EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISN_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISS_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSW_IXnt9is_void_vIT3_EEvE4typeELS10_0ENS2_IjS12_EEEET5_OSU_OSN_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component16ComponentSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__14pairINS3_6vectorIhNS3_9allocatorIhEEEES8_EEN8WasmEdge7ErrCodeEEERZZNSA_6Loader6Loader11loadSectionERNSA_3AST9Component16ComponentSectionEENK3$_0clEvEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ESC_EET5_OSK_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component15InstanceSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15InstanceSectionENSt3__17variantIJNSA_11InstantiateENSA_19InlineExportImplVecINSD_IJNSA_8CoreSortENSA_8SortCaseEEEEEEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSK_E_EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISR_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISW_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ENS2_IjS16_EEEET5_OSY_OSR_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component12AliasSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12AliasSectionENSA_5AliasEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSI_9allocatorISK_EEEEOT1_EUlT_E_jTnPNSI_9enable_ifIXnt9is_void_vISP_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNST_IXnt9is_void_vIT3_EEvE4typeELSX_0ENS2_IjSZ_EEEET5_OSR_OSK_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component11TypeSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11TypeSectionENSt3__17variantIJNSD_IJNSA_11PrimValTypeENSA_8RecordTyENSA_9VariantTyENSA_6ListTyENSA_7TupleTyENSA_7FlagsTyENSA_6EnumTyENSA_8OptionTyENSA_8ResultTyENSA_5OwnTyENSA_8BorrowTyEEEENSA_8FuncTypeENSA_13ComponentTypeENSA_12InstanceTypeENSA_12ResourceTypeEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSU_E_EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorIS11_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vIS16_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS1A_IXnt9is_void_vIT3_EEvE4typeELS1E_0ENS2_IjS1G_EEEET5_OS18_OS11_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component12CanonSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CanonSectionENSt3__17variantIJNSA_4LiftENSA_5LowerENSA_11ResourceNewENSA_12ResourceDropENSA_11ResourceRepEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSJ_E_EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISQ_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISV_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSZ_IXnt9is_void_vIT3_EEvE4typeELS13_0ENS2_IjS15_EEEET5_OSX_OSQ_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component12StartSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component13ImportSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ImportSectionENSA_6ImportEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSI_9allocatorISK_EEEEOT1_EUlT_E_jTnPNSI_9enable_ifIXnt9is_void_vISP_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNST_IXnt9is_void_vIT3_EEvE4typeELSX_0ENS2_IjSZ_EEEET5_OSR_OSK_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadSectionContentINS3_3AST9Component13ExportSectionEZNS7_11loadSectionERSB_E3$_0EENS2_IvS4_EERT_OT0_EUlSF_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OSF_SI_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ExportSectionENSA_6ExportEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSI_9allocatorISK_EEEEOT1_EUlT_E_jTnPNSI_9enable_ifIXnt9is_void_vISP_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNST_IXnt9is_void_vIT3_EEvE4typeELSX_0ENS2_IjSZ_EEEET5_OSR_OSK_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader16loadCoreInstanceERNSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSB_19InlineExportImplVecINSB_8CoreSortEEEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IhSR_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader16loadCoreInstanceERNSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSB_19InlineExportImplVecINSB_8CoreSortEEEEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader22loadCoreInstantiateArgERNSA_3AST9Component18InstantiateArgImplIjEEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ENS2_IS9_ST_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader22loadCoreInstantiateArgERNS3_3AST9Component18InstantiateArgImplIjEEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IhSN_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader22loadCoreInstantiateArgERNS3_3AST9Component18InstantiateArgImplIjEEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IjSN_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader20loadCoreInlineExportERNSA_3AST9Component16InlineExportImplINSG_8CoreSortEEEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ENS2_IS9_ST_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader12loadInstanceERNSt3__17variantIJNS3_3AST9Component11InstantiateENSB_19InlineExportImplVecINS9_IJNSB_8CoreSortENSB_8SortCaseEEEEEEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ENS2_IhST_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader12loadInstanceERNSt3__17variantIJNS3_3AST9Component11InstantiateENSB_19InlineExportImplVecINS9_IJNSB_8CoreSortENSB_8SortCaseEEEEEEEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ENS2_IjST_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader18loadInstantiateArgERNSA_3AST9Component18InstantiateArgImplINSG_9SortIndexINS3_7variantIJNSG_8CoreSortENSG_8SortCaseEEEEEEEEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IS9_SY_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader16loadInlineExportERNSA_3AST9Component16InlineExportImplINS3_7variantIJNSG_8CoreSortENSG_8SortCaseEEEEEEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IS9_SW_EEEET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSC_19InlineExportImplVecINSC_8CoreSortEEEEEENSC_18InstantiateArgImplIjEEZNS7_16loadCoreInstanceERSH_E3$_1EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISO_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vIST_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSX_IXnt9is_void_vIT3_EEvE4typeELS11_0ENS2_IjS13_EEEET5_OSV_OSO_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSC_19InlineExportImplVecINSC_8CoreSortEEEEEENSC_16InlineExportImplISF_EEZNS7_16loadCoreInstanceERSH_E3$_2EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISO_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vIST_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSX_IXnt9is_void_vIT3_EEvE4typeELS11_0ENS2_IjS13_EEEET5_OSV_OSO_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component11InstantiateENSC_19InlineExportImplVecINSA_IJNSC_8CoreSortENSC_8SortCaseEEEEEEEEENSC_18InstantiateArgImplINSC_9SortIndexISH_EEEEZNS7_12loadInstanceERSJ_E3$_1EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISS_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vISX_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS11_IXnt9is_void_vIT3_EEvE4typeELS15_0ENS2_IjS17_EEEET5_OSZ_OSS_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component11InstantiateENSC_19InlineExportImplVecINSA_IJNSC_8CoreSortENSC_8SortCaseEEEEEEEEENSC_16InlineExportImplISH_EEZNS7_12loadInstanceERSJ_E3$_2EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISQ_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vISV_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSZ_IXnt9is_void_vIT3_EEvE4typeELS13_0ENS2_IjS15_EEEET5_OSX_OSQ_ Unexecuted instantiation: component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader17loadCoreSortIndexERNS3_3AST9Component9SortIndexINS9_8CoreSortEEEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IjSN_EEEET5_OT_OT0_ Unexecuted instantiation: component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader12loadCoreSortERNS3_3AST9Component8CoreSortEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadSortIndexERNS3_3AST9Component9SortIndexINSt3__17variantIJNS9_8CoreSortENS9_8SortCaseEEEEEEE3$_0jTnPNSB_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ENS2_IjSQ_EEEET5_OT_OT0_ Unexecuted instantiation: component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadSortERNSt3__17variantIJNS3_3AST9Component8CoreSortENSB_8SortCaseEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ENS2_IhSO_EEEET5_OT_OT0_ Unexecuted instantiation: component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadAliasTargetERNSt3__17variantIJNS3_3AST9Component17AliasTargetExportENSB_16AliasTargetOuterEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ENS2_IhSP_EEEET5_OT_OT0_ Unexecuted instantiation: component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadAliasTargetERNSt3__17variantIJNS3_3AST9Component17AliasTargetExportENSB_16AliasTargetOuterEEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ENS2_IjSP_EEEET5_OT_OT0_ Unexecuted instantiation: component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader15loadAliasTargetERNS3_7variantIJNSA_3AST9Component17AliasTargetExportENSH_16AliasTargetOuterEEEEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ENS2_IS9_SV_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadCanonicalERNSt3__17variantIJNS3_3AST9Component4LiftENSB_5LowerENSB_11ResourceNewENSB_12ResourceDropENSB_11ResourceRepEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IhSR_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCanonicalERNSt3__17variantIJNS3_3AST9Component4LiftENSB_5LowerENSB_11ResourceNewENSB_12ResourceDropENSB_11ResourceRepEEEEE3$_1hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IhSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCanonicalERNSt3__17variantIJNS3_3AST9Component4LiftENSB_5LowerENSB_11ResourceNewENSB_12ResourceDropENSB_11ResourceRepEEEEE3$_1jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component4LiftEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component4LiftEE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component5LowerEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader19loadCanonicalOptionERNSt3__17variantIJNS3_3AST9Component14StringEncodingENSB_6MemoryENSB_7ReallocENSB_10PostReturnEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IhSR_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader19loadCanonicalOptionERNSt3__17variantIJNS3_3AST9Component14StringEncodingENSB_6MemoryENSB_7ReallocENSB_10PostReturnEEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component4LiftENSC_5LowerENSC_11ResourceNewENSC_12ResourceDropENSC_11ResourceRepEEEENSA_IJNSC_14StringEncodingENSC_6MemoryENSC_7ReallocENSC_10PostReturnEEEEZNS7_13loadCanonicalERSD_E3$_2EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISS_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vISX_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS11_IXnt9is_void_vIT3_EEvE4typeELS15_0ENS2_IjS17_EEEET5_OSZ_OSS_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component4LiftENSC_5LowerENSC_11ResourceNewENSC_12ResourceDropENSC_11ResourceRepEEEENSA_IJNSC_14StringEncodingENSC_6MemoryENSC_7ReallocENSC_10PostReturnEEEEZNS7_13loadCanonicalERSE_E3$_1EENS2_IvS4_EERNS9_6vectorIT0_NS9_9allocatorISS_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vISX_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS11_IXnt9is_void_vIT3_EEvE4typeELS15_0ENS2_IjS17_EEEET5_OSZ_OSS_ Unexecuted instantiation: component_start.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader9loadStartERNS3_3AST9Component5StartEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_ Unexecuted instantiation: component_start.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component5StartEjRZNS7_9loadStartERSB_E3$_1EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Unexecuted instantiation: component_start.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERKZNS3_6Loader6Loader9loadStartERNS3_3AST9Component5StartEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IjSN_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS3_3AST12FunctionTypeENSA_9Component14CoreModuleTypeEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ENS2_IhSO_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component14CoreModuleTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadModuleDeclERNSt3__17variantIJNS3_3AST10ImportDescENS8_10shared_ptrINSA_9Component8CoreTypeEEENSD_5AliasENSD_14CoreExportDeclEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IhSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader14loadExportDeclERNSA_3AST9Component14CoreExportDeclEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS9_IJNS3_3AST9Component11PrimValTypeENSB_8RecordTyENSB_9VariantTyENSB_6ListTyENSB_7TupleTyENSB_7FlagsTyENSB_6EnumTyENSB_8OptionTyENSB_8ResultTyENSB_5OwnTyENSB_8BorrowTyEEEENSB_8FuncTypeENSB_13ComponentTypeENSB_12InstanceTypeENSB_12ResourceTypeEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ENS2_IhS12_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component5OwnTyEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component8BorrowTyEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader8loadTypeERNSA_3AST9Component12LabelValTypeEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIlN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJjNS3_3AST9Component11PrimValTypeEEEEE3$_0lTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ENS2_IlSN_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader8loadCaseERNSA_3AST9Component4CaseEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IS9_SS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadCaseERNS3_3AST9Component4CaseEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader17loadComponentDeclERNSt3__17variantIJNS3_3AST9Component10ImportDeclENS9_IJNSB_8CoreTypeENSB_5AliasENS8_10shared_ptrINSB_4TypeEEENSB_10ExportDeclEEEEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ENS2_IhSU_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader16loadInstanceDeclERNSt3__17variantIJNS3_3AST9Component8CoreTypeENSB_5AliasENS8_10shared_ptrINSB_4TypeEEENSB_10ExportDeclEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IhSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component12ResourceTypeEE3$_1hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component12ResourceTypeEE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader14loadExternDescERNSt3__17variantIJNS3_3AST9Component13DescTypeIndexENS8_8optionalIjEENS9_IJjNSB_11PrimValTypeEEEEEEEE3$_0hTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IhSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader14loadExternDescERNSt3__17variantIJNS3_3AST9Component13DescTypeIndexENS8_8optionalIjEENS9_IJjNSB_11PrimValTypeEEEEEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IjSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component14CoreModuleTypeENSt3__17variantIJNS9_10ImportDescENSC_10shared_ptrINSA_8CoreTypeEEENSA_5AliasENSA_14CoreExportDeclEEEEZNS7_8loadTypeERSB_E3$_1EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISP_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISU_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSY_IXnt9is_void_vIT3_EEvE4typeELS12_0ENS2_IjS14_EEEET5_OSW_OSP_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8RecordTyENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9VariantTyENSA_4CaseEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7TupleTyENSt3__17variantIJjNSA_11PrimValTypeEEEEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISK_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISP_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNST_IXnt9is_void_vIT3_EEvE4typeELSX_0ENS2_IjSZ_EEEET5_OSR_OSK_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7FlagsTyENSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEZNS7_8loadTypeERSB_E3$_1EENS2_IvS4_EERNSC_6vectorIT0_NSG_ISN_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISR_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSV_IXnt9is_void_vIT3_EEvE4typeELSZ_0ENS2_IjS11_EEEET5_OST_OSN_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZZNSA_6Loader6Loader8loadTypeERNSA_3AST9Component7FlagsTyEENK3$_0clERS9_EUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ESC_EET5_OSL_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component6EnumTyENSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEZNS7_8loadTypeERSB_E3$_1EENS2_IvS4_EERNSC_6vectorIT0_NSG_ISN_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISR_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSV_IXnt9is_void_vIT3_EEvE4typeELSZ_0ENS2_IjS11_EEEET5_OST_OSN_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZZNSA_6Loader6Loader8loadTypeERNSA_3AST9Component6EnumTyEENK3$_0clERS9_EUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ESC_EET5_OSL_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8ResultTyENSt3__17variantIJjNSA_11PrimValTypeEEEEEENS2_INSC_8optionalIT0_EES4_EENSC_8functionIFNS2_IvS4_EERSH_EEEEUlT_E_hTnPNSC_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IhSY_EEEET5_OSP_OSH_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component4CaseENSt3__17variantIJjNSA_11PrimValTypeEEEEEENS2_INSC_8optionalIT0_EES4_EENSC_8functionIFNS2_IvS4_EERSH_EEEEUlT_E_hTnPNSC_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IhSY_EEEET5_OSP_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8FuncTypeENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_jTnPNSG_9enable_ifIXnt9is_void_vISN_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IjSX_EEEET5_OSP_OSI_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNSA_IJjNS3_3AST9Component11PrimValTypeEEEENS9_6vectorINSC_12LabelValTypeENS9_9allocatorISG_EEEEEEESG_ZNS7_8loadTypeERSK_E3$_1EENS2_IvS4_EERNSF_IT0_NSH_ISO_EEEEOT1_EUlT_E_jTnPNS9_9enable_ifIXnt9is_void_vISS_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSW_IXnt9is_void_vIT3_EEvE4typeELS10_0ENS2_IjS12_EEEET5_OSU_OSO_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ComponentTypeENSt3__17variantIJNSA_10ImportDeclENSD_IJNSA_8CoreTypeENSA_5AliasENSC_10shared_ptrINSA_4TypeEEENSA_10ExportDeclEEEEEEEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISR_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISW_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ENS2_IjS16_EEEET5_OSY_OSR_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12InstanceTypeENSt3__17variantIJNSA_8CoreTypeENSA_5AliasENSC_10shared_ptrINSA_4TypeEEENSA_10ExportDeclEEEEZNS7_8loadTypeERSB_E3$_0EENS2_IvS4_EERNSC_6vectorIT0_NSC_9allocatorISP_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISU_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSY_IXnt9is_void_vIT3_EEvE4typeELS12_0ENS2_IjS14_EEEET5_OSW_OSP_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component12ResourceTypeEjEENS2_INSt3__18optionalIT0_EES4_EENSC_8functionIFNS2_IvS4_EERSE_EEEEUlT_E_hTnPNSC_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ENS2_IhSV_EEEET5_OSM_OSE_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component12ResourceTypeEENK3$_0clERjEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OSE_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component6ExportENSt3__17variantIJNSA_13DescTypeIndexENSC_8optionalIjEENSD_IJjNSA_11PrimValTypeEEEEEEEEENS2_INSF_IT0_EES4_EENSC_8functionIFNS2_IvS4_EERSK_EEEEUlT_E_hTnPNSC_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSU_IXnt9is_void_vIT3_EEvE4typeELSZ_0ENS2_IhS11_EEEET5_OSS_OSK_ Unexecuted instantiation: threadInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor17runAtomicNotifyOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceERKNS3_3AST11InstructionEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEENS3_7ErrCodeEEEZNKS3_8Executor8Executor14runStructGetOpERNS3_7Runtime12StackManagerEjjRKNS3_3AST11InstructionEbE3$_0SG_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESH_TnPNSU_IXnt9is_void_vIT3_EEvE4typeELSZ_0ESI_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge10RefVariantENS3_7ErrCodeEEEZNKS3_8Executor8Executor17runArrayNewDataOpERNS3_7Runtime12StackManagerEjjRKNS3_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES5_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES6_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge10RefVariantENS3_7ErrCodeEEEZNKS3_8Executor8Executor17runArrayNewElemOpERNS3_7Runtime12StackManagerEjjRKNS3_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES5_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES6_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEENS3_7ErrCodeEEEZNKS3_8Executor8Executor13runArrayGetOpERNS3_7Runtime12StackManagerEjRKNS3_3AST11InstructionEbE3$_0SG_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESH_TnPNSU_IXnt9is_void_vIT3_EEvE4typeELSZ_0ESI_EET5_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIiEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_jTnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIlEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_jTnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: executor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS3_14default_deleteIS8_EEEENS5_7ErrCodeEEEZNS5_8Executor8Executor17instantiateModuleERNS6_12StoreManagerERKNS5_3AST6ModuleEE3$_0SB_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESC_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ESD_EET5_OT_OT0_ Unexecuted instantiation: executor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS3_14default_deleteIS8_EEEENS5_7ErrCodeEEEZNS5_8Executor8Executor14registerModuleERNS6_12StoreManagerERKNS5_3AST6ModuleENS3_17basic_string_viewIcNS3_11char_traitsIcEEEEE3$_0SB_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESC_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSW_0ESD_EET5_OT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge10RefVariantENS3_7ErrCodeEEEZNS3_8Executor8Executor13runTableGetOpERNS3_7Runtime12StackManagerERNS9_8Instance13TableInstanceERKNS3_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES5_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ES6_EET5_OT_OT0_ Unexecuted instantiation: memoryInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEEZNS5_8Executor8Executor15runMemoryCopyOpERNS5_7Runtime12StackManagerERNSA_8Instance14MemoryInstanceESF_RKNS5_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES7_EET5_OT_OT0_ |
1174 | | |
1175 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1176 | | enable_if_t<!is_void_v<T>> * = nullptr, |
1177 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1178 | | enable_if_t<is_void_v<Ret>> * = nullptr, |
1179 | | class Result = expected<T, monostate>> |
1180 | | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { |
1181 | | if (exp.has_value()) { |
1182 | | return Result(*std::forward<Exp>(exp)); |
1183 | | } |
1184 | | invoke(std::forward<F>(f), std::forward<Exp>(exp).error()); |
1185 | | return Result(unexpect); |
1186 | | } |
1187 | | |
1188 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1189 | | enable_if_t<is_void_v<T>> * = nullptr, |
1190 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1191 | | enable_if_t<!is_void_v<Ret>> * = nullptr, |
1192 | | class Result = expected<T, decay_t<Ret>>> |
1193 | 2.19M | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { |
1194 | 2.19M | if (exp.has_value()) { |
1195 | 2.17M | return Result(); |
1196 | 2.17M | } |
1197 | 19.8k | return Result(unexpect, |
1198 | 19.8k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); |
1199 | 2.19M | } Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_2VM2VM17unsafeInstantiateEvE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS4_5ValueETnPNSA_IXnt9is_void_vIT3_EEvE4typeELSF_0ENS2_IvSG_EEEET5_OT_OT0_ Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_2VM2VM17unsafeInstantiateEvE3$_6vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS4_5ValueETnPNSA_IXnt9is_void_vIT3_EEvE4typeELSF_0ENS2_IvSG_EEEET5_OT_OT0_ module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader10loadModuleERNS3_3AST6ModuleENSt3__18optionalImEEE3$_0vTnPNSB_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 65.9k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 65.9k | if (exp.has_value()) { | 1195 | 60.6k | return Result(); | 1196 | 60.6k | } | 1197 | 5.30k | return Result(unexpect, | 1198 | 5.30k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 65.9k | } |
Unexecuted instantiation: module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader17loadUniversalWASMERNS3_3AST6ModuleEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader11loadSectionERNS3_3AST11TypeSectionEENK3$_0clEvEUlT_E0_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OSC_OT0_ section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader11loadSectionERNS3_3AST11TypeSectionEENK3$_0clEvEUlT_E1_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OSC_OT0_ Line | Count | Source | 1193 | 8.46k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 8.46k | if (exp.has_value()) { | 1195 | 8.39k | return Result(); | 1196 | 8.39k | } | 1197 | 65 | return Result(unexpect, | 1198 | 65 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 8.46k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13ImportSectionENS9_10ImportDescEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 11.2k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 11.2k | if (exp.has_value()) { | 1195 | 11.1k | return Result(); | 1196 | 11.1k | } | 1197 | 110 | return Result(unexpect, | 1198 | 110 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 11.2k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST15FunctionSectionEjZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRjE_EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Line | Count | Source | 1193 | 36.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 36.4k | if (exp.has_value()) { | 1195 | 36.3k | return Result(); | 1196 | 36.3k | } | 1197 | 31 | return Result(unexpect, | 1198 | 31 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 36.4k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST12TableSectionENS9_12TableSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 580 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 580 | if (exp.has_value()) { | 1195 | 520 | return Result(); | 1196 | 520 | } | 1197 | 60 | return Result(unexpect, | 1198 | 60 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 580 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13MemorySectionENS9_10MemoryTypeEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 2.88k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 2.88k | if (exp.has_value()) { | 1195 | 2.83k | return Result(); | 1196 | 2.83k | } | 1197 | 47 | return Result(unexpect, | 1198 | 47 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 2.88k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13GlobalSectionENS9_13GlobalSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 926 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 926 | if (exp.has_value()) { | 1195 | 497 | return Result(); | 1196 | 497 | } | 1197 | 429 | return Result(unexpect, | 1198 | 429 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 926 | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13ExportSectionENS9_10ExportDescEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 21.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 21.8k | if (exp.has_value()) { | 1195 | 21.8k | return Result(); | 1196 | 21.8k | } | 1197 | 66 | return Result(unexpect, | 1198 | 66 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 21.8k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST14ElementSectionENS9_14ElementSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 6.27k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 6.27k | if (exp.has_value()) { | 1195 | 5.09k | return Result(); | 1196 | 5.09k | } | 1197 | 1.18k | return Result(unexpect, | 1198 | 1.18k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 6.27k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST11CodeSectionENS9_11CodeSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 22.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 22.4k | if (exp.has_value()) { | 1195 | 21.2k | return Result(); | 1196 | 21.2k | } | 1197 | 1.13k | return Result(unexpect, | 1198 | 1.13k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 22.4k | } |
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST11DataSectionENS9_11DataSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Line | Count | Source | 1193 | 5.12k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 5.12k | if (exp.has_value()) { | 1195 | 3.75k | return Result(); | 1196 | 3.75k | } | 1197 | 1.36k | return Result(unexpect, | 1198 | 1.36k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 5.12k | } |
Unexecuted instantiation: section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST10TagSectionENS9_7TagTypeEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_ Unexecuted instantiation: segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Unexecuted instantiation: segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_3vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_4vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 571 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 571 | if (exp.has_value()) { | 1195 | 520 | return Result(); | 1196 | 520 | } | 1197 | 51 | return Result(unexpect, | 1198 | 51 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 571 | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 926 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 926 | if (exp.has_value()) { | 1195 | 497 | return Result(); | 1196 | 497 | } | 1197 | 429 | return Result(unexpect, | 1198 | 429 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 926 | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_3vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 4.87k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 4.87k | if (exp.has_value()) { | 1195 | 3.97k | return Result(); | 1196 | 3.97k | } | 1197 | 908 | return Result(unexpect, | 1198 | 908 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 4.87k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Line | Count | Source | 1193 | 2.06k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 2.06k | if (exp.has_value()) { | 1195 | 2.04k | return Result(); | 1196 | 2.04k | } | 1197 | 15 | return Result(unexpect, | 1198 | 15 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 2.06k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_5vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 10.6k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 10.6k | if (exp.has_value()) { | 1195 | 10.6k | return Result(); | 1196 | 10.6k | } | 1197 | 18 | return Result(unexpect, | 1198 | 18 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 10.6k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST11CodeSegmentEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 22.3k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 22.3k | if (exp.has_value()) { | 1195 | 21.2k | return Result(); | 1196 | 21.2k | } | 1197 | 1.05k | return Result(unexpect, | 1198 | 1.05k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 22.3k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST11DataSegmentEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.08k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.08k | if (exp.has_value()) { | 1195 | 1.78k | return Result(); | 1196 | 1.78k | } | 1197 | 1.29k | return Result(unexpect, | 1198 | 1.29k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.08k | } |
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST14ElementSegmentENS9_10ExpressionEZNS7_11loadSegmentERSA_E3$_6EES5_RNSt3__16vectorIT0_NSE_9allocatorISG_EEEEOT1_EUlT_E0_vTnPNSE_9enable_ifIX9is_void_vISL_EEvE4typeELPv0ES4_TnPNSP_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSN_OSG_ Line | Count | Source | 1193 | 3.57k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.57k | if (exp.has_value()) { | 1195 | 3.46k | return Result(); | 1196 | 3.46k | } | 1197 | 105 | return Result(unexpect, | 1198 | 105 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.57k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST10MemoryTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.14k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.14k | if (exp.has_value()) { | 1195 | 3.09k | return Result(); | 1196 | 3.09k | } | 1197 | 51 | return Result(unexpect, | 1198 | 51 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.14k | } |
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9TableTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 674 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 674 | if (exp.has_value()) { | 1195 | 670 | return Result(); | 1196 | 670 | } | 1197 | 4 | return Result(unexpect, | 1198 | 4 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 674 | } |
Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST7SubTypeENS9_9FieldTypeEZNS7_17loadCompositeTypeERNS9_13CompositeTypeEE3$_1EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST7SubTypeEjRZNS7_8loadTypeERSA_E3$_1EES5_RNSt3__16vectorIT0_NSE_9allocatorISG_EEEEOT1_EUlT_E0_vTnPNSE_9enable_ifIX9is_void_vISL_EEvE4typeELPv0ES4_TnPNSP_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSN_OSG_ type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST12FunctionTypeENS3_7ValTypeERZNS7_8loadTypeERSA_E3$_0EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Line | Count | Source | 1193 | 16.8k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 16.8k | if (exp.has_value()) { | 1195 | 16.8k | return Result(); | 1196 | 16.8k | } | 1197 | 47 | return Result(unexpect, | 1198 | 47 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 16.8k | } |
Unexecuted instantiation: instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Unexecuted instantiation: loader.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13parseWasmUnitERKNSt3__14__fs10filesystem4pathEE3$_0vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Unexecuted instantiation: loader.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13parseWasmUnitERKNSt3__14__fs10filesystem4pathEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadComponentERNS3_3AST9Component9ComponentENSt3__18optionalImEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader11loadSectionERNS3_3AST9Component17CoreModuleSectionEENK3$_0clEvEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OSD_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component19CoreInstanceSectionENSt3__17variantIJNSA_15CoreInstantiateENSA_19InlineExportImplVecINSA_8CoreSortEEEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSI_E_EES5_RNSC_6vectorIT0_NSC_9allocatorISO_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIST_EEvE4typeELPv0ES4_TnPNSX_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OSV_OSO_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15CoreTypeSectionENSt3__17variantIJNS9_12FunctionTypeENSA_14CoreModuleTypeEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSG_E_EES5_RNSC_6vectorIT0_NSC_9allocatorISM_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISR_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELSZ_0ES5_EET5_OST_OSM_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader11loadSectionERNS3_3AST9Component16ComponentSectionEENK3$_0clEvEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OSD_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15InstanceSectionENSt3__17variantIJNSA_11InstantiateENSA_19InlineExportImplVecINSD_IJNSA_8CoreSortENSA_8SortCaseEEEEEEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSK_E_EES5_RNSC_6vectorIT0_NSC_9allocatorISQ_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISV_EEvE4typeELPv0ES4_TnPNSZ_IXnt9is_void_vIT3_EEvE4typeELS13_0ES5_EET5_OSX_OSQ_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12AliasSectionENSA_5AliasEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EES5_RNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSH_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11TypeSectionENSt3__17variantIJNSD_IJNSA_11PrimValTypeENSA_8RecordTyENSA_9VariantTyENSA_6ListTyENSA_7TupleTyENSA_7FlagsTyENSA_6EnumTyENSA_8OptionTyENSA_8ResultTyENSA_5OwnTyENSA_8BorrowTyEEEENSA_8FuncTypeENSA_13ComponentTypeENSA_12InstanceTypeENSA_12ResourceTypeEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSU_E_EES5_RNSC_6vectorIT0_NSC_9allocatorIS10_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIS15_EEvE4typeELPv0ES4_TnPNS19_IXnt9is_void_vIT3_EEvE4typeELS1D_0ES5_EET5_OS17_OS10_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CanonSectionENSt3__17variantIJNSA_4LiftENSA_5LowerENSA_11ResourceNewENSA_12ResourceDropENSA_11ResourceRepEEEEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSJ_E_EES5_RNSC_6vectorIT0_NSC_9allocatorISP_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISU_EEvE4typeELPv0ES4_TnPNSY_IXnt9is_void_vIT3_EEvE4typeELS12_0ES5_EET5_OSW_OSP_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader11loadSectionERNS3_3AST9Component12StartSectionEENK3$_0clEvEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OSD_OT0_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ImportSectionENSA_6ImportEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EES5_RNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSH_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_ Unexecuted instantiation: component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ExportSectionENSA_6ExportEZZNS7_11loadSectionERSB_ENK3$_0clEvEUlRSC_E_EES5_RNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSH_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader20loadCoreInlineExportERNS3_3AST9Component16InlineExportImplINS9_8CoreSortEEEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader18loadInstantiateArgERNS3_3AST9Component18InstantiateArgImplINS9_9SortIndexINSt3__17variantIJNS9_8CoreSortENS9_8SortCaseEEEEEEEEE3$_1vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader16loadInlineExportERNS3_3AST9Component16InlineExportImplINSt3__17variantIJNS9_8CoreSortENS9_8SortCaseEEEEEEE3$_1vTnPNSB_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSC_19InlineExportImplVecINSC_8CoreSortEEEEEENSC_18InstantiateArgImplIjEEZNS7_16loadCoreInstanceERSH_E3$_1EES5_RNS9_6vectorIT0_NS9_9allocatorISN_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISS_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_OSU_OSN_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component15CoreInstantiateENSC_19InlineExportImplVecINSC_8CoreSortEEEEEENSC_16InlineExportImplISF_EEZNS7_16loadCoreInstanceERSH_E3$_2EES5_RNS9_6vectorIT0_NS9_9allocatorISN_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISS_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_OSU_OSN_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component11InstantiateENSC_19InlineExportImplVecINSA_IJNSC_8CoreSortENSC_8SortCaseEEEEEEEEENSC_18InstantiateArgImplINSC_9SortIndexISH_EEEEZNS7_12loadInstanceERSJ_E3$_1EES5_RNS9_6vectorIT0_NS9_9allocatorISR_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISW_EEvE4typeELPv0ES4_TnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ES5_EET5_OSY_OSR_ Unexecuted instantiation: component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component11InstantiateENSC_19InlineExportImplVecINSA_IJNSC_8CoreSortENSC_8SortCaseEEEEEEEEENSC_16InlineExportImplISH_EEZNS7_12loadInstanceERSJ_E3$_2EES5_RNS9_6vectorIT0_NS9_9allocatorISP_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISU_EEvE4typeELPv0ES4_TnPNSY_IXnt9is_void_vIT3_EEvE4typeELS12_0ES5_EET5_OSW_OSP_ Unexecuted instantiation: component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader9loadAliasERNS3_3AST9Component5AliasEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IvSM_EEEET5_OT_OT0_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component4LiftENSC_5LowerENSC_11ResourceNewENSC_12ResourceDropENSC_11ResourceRepEEEENSA_IJNSC_14StringEncodingENSC_6MemoryENSC_7ReallocENSC_10PostReturnEEEEZNS7_13loadCanonicalERSD_E3$_2EES5_RNS9_6vectorIT0_NS9_9allocatorISR_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISW_EEvE4typeELPv0ES4_TnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ES5_EET5_OSY_OSR_ Unexecuted instantiation: component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNS3_3AST9Component4LiftENSC_5LowerENSC_11ResourceNewENSC_12ResourceDropENSC_11ResourceRepEEEENSA_IJNSC_14StringEncodingENSC_6MemoryENSC_7ReallocENSC_10PostReturnEEEEZNS7_13loadCanonicalERSE_E3$_1EES5_RNS9_6vectorIT0_NS9_9allocatorISR_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISW_EEvE4typeELPv0ES4_TnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ES5_EET5_OSY_OSR_ Unexecuted instantiation: component_start.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component5StartEjRZNS7_9loadStartERSB_E3$_1EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS3_3AST12FunctionTypeENSA_9Component14CoreModuleTypeEEEEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader14loadModuleDeclERNSt3__17variantIJNS3_3AST10ImportDescENS8_10shared_ptrINSA_9Component8CoreTypeEEENSD_5AliasENSD_14CoreExportDeclEEEEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadExportDeclERNS3_3AST9Component14CoreExportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS9_IJNS3_3AST9Component11PrimValTypeENSB_8RecordTyENSB_9VariantTyENSB_6ListTyENSB_7TupleTyENSB_7FlagsTyENSB_6EnumTyENSB_8OptionTyENSB_8ResultTyENSB_5OwnTyENSB_8BorrowTyEEEENSB_8FuncTypeENSB_13ComponentTypeENSB_12InstanceTypeENSB_12ResourceTypeEEEEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS3_3AST9Component11PrimValTypeENSB_8RecordTyENSB_9VariantTyENSB_6ListTyENSB_7TupleTyENSB_7FlagsTyENSB_6EnumTyENSB_8OptionTyENSB_8ResultTyENSB_5OwnTyENSB_8BorrowTyEEEEhE3$_0vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component6ListTyEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component8OptionTyEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component12LabelValTypeEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNSt3__17variantIJNS9_IJjNS3_3AST9Component11PrimValTypeEEEENS8_6vectorINSB_12LabelValTypeENS8_9allocatorISF_EEEEEEEE3$_0vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader17loadComponentDeclERNSt3__17variantIJNS3_3AST9Component10ImportDeclENS9_IJNSB_8CoreTypeENSB_5AliasENS8_10shared_ptrINSB_4TypeEEENSB_10ExportDeclEEEEEEEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadImportDeclERNS3_3AST9Component10ImportDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadImportDeclERNS3_3AST9Component10ImportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader16loadInstanceDeclERNSt3__17variantIJNS3_3AST9Component8CoreTypeENSB_5AliasENS8_10shared_ptrINSB_4TypeEEENSB_10ExportDeclEEEEE3$_1vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadExportDeclERNS3_3AST9Component10ExportDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader14loadExportDeclERNS3_3AST9Component10ExportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader14loadExternDescERNSt3__17variantIJNS3_3AST9Component13DescTypeIndexENS8_8optionalIjEENS9_IJjNSB_11PrimValTypeEEEEEEEE3$_0vTnPNS8_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IvSS_EEEET5_OT_OT0_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component14CoreModuleTypeENSt3__17variantIJNS9_10ImportDescENSC_10shared_ptrINSA_8CoreTypeEEENSA_5AliasENSA_14CoreExportDeclEEEEZNS7_8loadTypeERSB_E3$_1EES5_RNSC_6vectorIT0_NSC_9allocatorISO_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIST_EEvE4typeELPv0ES4_TnPNSX_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OSV_OSO_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8RecordTyENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_0EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9VariantTyENSA_4CaseEZNS7_8loadTypeERSB_E3$_0EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7TupleTyENSt3__17variantIJjNSA_11PrimValTypeEEEEZNS7_8loadTypeERSB_E3$_0EES5_RNSC_6vectorIT0_NSC_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7FlagsTyENSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEZNS7_8loadTypeERSB_E3$_1EES5_RNSC_6vectorIT0_NSG_ISM_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISQ_EEvE4typeELPv0ES4_TnPNSU_IXnt9is_void_vIT3_EEvE4typeELSY_0ES5_EET5_OSS_OSM_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component6EnumTyENSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEZNS7_8loadTypeERSB_E3$_1EES5_RNSC_6vectorIT0_NSG_ISM_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISQ_EEvE4typeELPv0ES4_TnPNSU_IXnt9is_void_vIT3_EEvE4typeELSY_0ES5_EET5_OSS_OSM_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8ResultTyENSt3__17variantIJjNSA_11PrimValTypeEEEEEENS2_INSC_8optionalIT0_EES4_EENSC_8functionIFS5_RSH_EEEEUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component4CaseENSt3__17variantIJjNSA_11PrimValTypeEEEEEENS2_INSC_8optionalIT0_EES4_EENSC_8functionIFS5_RSH_EEEEUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8FuncTypeENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_0EES5_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_vTnPNSF_9enable_ifIX9is_void_vISM_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSO_OSH_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINSt3__17variantIJNSA_IJjNS3_3AST9Component11PrimValTypeEEEENS9_6vectorINSC_12LabelValTypeENS9_9allocatorISG_EEEEEEESG_ZNS7_8loadTypeERSK_E3$_1EES5_RNSF_IT0_NSH_ISN_EEEEOT1_EUlT_E0_vTnPNS9_9enable_ifIX9is_void_vISR_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELSZ_0ES5_EET5_OST_OSN_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ComponentTypeENSt3__17variantIJNSA_10ImportDeclENSD_IJNSA_8CoreTypeENSA_5AliasENSC_10shared_ptrINSA_4TypeEEENSA_10ExportDeclEEEEEEEZNS7_8loadTypeERSB_E3$_0EES5_RNSC_6vectorIT0_NSC_9allocatorISQ_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISV_EEvE4typeELPv0ES4_TnPNSZ_IXnt9is_void_vIT3_EEvE4typeELS13_0ES5_EET5_OSX_OSQ_ Unexecuted instantiation: component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12InstanceTypeENSt3__17variantIJNSA_8CoreTypeENSA_5AliasENSC_10shared_ptrINSA_4TypeEEENSA_10ExportDeclEEEEZNS7_8loadTypeERSB_E3$_0EES5_RNSC_6vectorIT0_NSC_9allocatorISO_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIST_EEvE4typeELPv0ES4_TnPNSX_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OSV_OSO_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component12ResourceTypeEjEENS2_INSt3__18optionalIT0_EES4_EENSC_8functionIFS5_RSE_EEEEUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ES5_EET5_OSL_OSE_ Unexecuted instantiation: component_import.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadImportERNS3_3AST9Component6ImportEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_import.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadImportERNS3_3AST9Component6ImportEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: component_export.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadExportERNS3_3AST9Component6ExportEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_ Unexecuted instantiation: component_export.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadExportERNS3_3AST9Component6ExportEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component6ExportENSt3__17variantIJNSA_13DescTypeIndexENSC_8optionalIjEENSD_IJjNSA_11PrimValTypeEEEEEEEEENS2_INSF_IT0_EES4_EENSC_8functionIFS5_RSK_EEEEUlT_E0_vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNST_IXnt9is_void_vIT3_EEvE4typeELSY_0ES5_EET5_OSR_OSK_ Unexecuted instantiation: serial_module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer15serializeModuleERKNS3_3AST6ModuleEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSectionERKNS3_3AST11TypeSectionERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST12TableSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_2vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST13GlobalSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_2vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST14ElementSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST11CodeSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer16serializeSegmentERKNS3_3AST11DataSegmentERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer13serializeTypeERKNS3_3AST9TableTypeERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer13serializeTypeERKNS3_3AST10MemoryTypeERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ Unexecuted instantiation: serial_expression.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_6Loader10Serializer19serializeExpressionERKNS3_3AST10ExpressionERNSt3__16vectorIhNSC_9allocatorIhEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_ validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.80k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.80k | if (exp.has_value()) { | 1195 | 3.80k | return Result(); | 1196 | 3.80k | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.80k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.80k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.80k | if (exp.has_value()) { | 1195 | 3.79k | return Result(); | 1196 | 3.79k | } | 1197 | 9 | return Result(unexpect, | 1198 | 9 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.80k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.79k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.79k | if (exp.has_value()) { | 1195 | 3.78k | return Result(); | 1196 | 3.78k | } | 1197 | 8 | return Result(unexpect, | 1198 | 8 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.79k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_3vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.78k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.78k | if (exp.has_value()) { | 1195 | 3.78k | return Result(); | 1196 | 3.78k | } | 1197 | 2 | return Result(unexpect, | 1198 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.78k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_4vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.78k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.78k | if (exp.has_value()) { | 1195 | 3.75k | return Result(); | 1196 | 3.75k | } | 1197 | 31 | return Result(unexpect, | 1198 | 31 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.78k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_5vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.75k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.75k | if (exp.has_value()) { | 1195 | 3.69k | return Result(); | 1196 | 3.69k | } | 1197 | 62 | return Result(unexpect, | 1198 | 62 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.75k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_6vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.69k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.69k | if (exp.has_value()) { | 1195 | 3.69k | return Result(); | 1196 | 3.69k | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.69k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_7vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.69k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.69k | if (exp.has_value()) { | 1195 | 3.63k | return Result(); | 1196 | 3.63k | } | 1197 | 62 | return Result(unexpect, | 1198 | 62 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.69k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_8vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.63k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.63k | if (exp.has_value()) { | 1195 | 3.61k | return Result(); | 1196 | 3.61k | } | 1197 | 12 | return Result(unexpect, | 1198 | 12 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.63k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE3$_9vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.61k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.61k | if (exp.has_value()) { | 1195 | 3.57k | return Result(); | 1196 | 3.57k | } | 1197 | 44 | return Result(unexpect, | 1198 | 44 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.61k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE4$_10vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.57k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.57k | if (exp.has_value()) { | 1195 | 3.54k | return Result(); | 1196 | 3.54k | } | 1197 | 28 | return Result(unexpect, | 1198 | 28 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.57k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST6ModuleEE4$_11vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 3.54k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 3.54k | if (exp.has_value()) { | 1195 | 2.18k | return Result(); | 1196 | 2.18k | } | 1197 | 1.36k | return Result(unexpect, | 1198 | 1.36k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 3.54k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST7SubTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 6.74k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 6.74k | if (exp.has_value()) { | 1195 | 6.74k | return Result(); | 1196 | 6.74k | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 6.74k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST7SubTypeEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 5.55k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 5.55k | if (exp.has_value()) { | 1195 | 5.55k | return Result(); | 1196 | 5.55k | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 5.55k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9TableTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 333 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 333 | if (exp.has_value()) { | 1195 | 330 | return Result(); | 1196 | 330 | } | 1197 | 3 | return Result(unexpect, | 1198 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 333 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST10MemoryTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 1.45k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 1.45k | if (exp.has_value()) { | 1195 | 1.44k | return Result(); | 1196 | 1.44k | } | 1197 | 11 | return Result(unexpect, | 1198 | 11 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 1.45k | } |
Unexecuted instantiation: validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST12TableSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST12TableSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 303 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 303 | if (exp.has_value()) { | 1195 | 301 | return Result(); | 1196 | 301 | } | 1197 | 2 | return Result(unexpect, | 1198 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 303 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13GlobalSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 248 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 248 | if (exp.has_value()) { | 1195 | 186 | return Result(); | 1196 | 186 | } | 1197 | 62 | return Result(unexpect, | 1198 | 62 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 248 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13GlobalSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 186 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 186 | if (exp.has_value()) { | 1195 | 186 | return Result(); | 1196 | 186 | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 186 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST14ElementSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 1.21k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 1.21k | if (exp.has_value()) { | 1195 | 1.19k | return Result(); | 1196 | 1.19k | } | 1197 | 26 | return Result(unexpect, | 1198 | 26 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 1.21k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST14ElementSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 306 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 306 | if (exp.has_value()) { | 1195 | 301 | return Result(); | 1196 | 301 | } | 1197 | 5 | return Result(unexpect, | 1198 | 5 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 306 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11CodeSegmentEjE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 15.2k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 15.2k | if (exp.has_value()) { | 1195 | 13.9k | return Result(); | 1196 | 13.9k | } | 1197 | 1.36k | return Result(unexpect, | 1198 | 1.36k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 15.2k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11DataSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 186 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 186 | if (exp.has_value()) { | 1195 | 179 | return Result(); | 1196 | 179 | } | 1197 | 7 | return Result(unexpect, | 1198 | 7 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 186 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST10ImportDescEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 30 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 30 | if (exp.has_value()) { | 1195 | 29 | return Result(); | 1196 | 29 | } | 1197 | 1 | return Result(unexpect, | 1198 | 1 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 30 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST10ImportDescEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 32 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 32 | if (exp.has_value()) { | 1195 | 29 | return Result(); | 1196 | 29 | } | 1197 | 3 | return Result(unexpect, | 1198 | 3 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 32 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST10ImportDescEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 48 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 48 | if (exp.has_value()) { | 1195 | 48 | return Result(); | 1196 | 48 | } | 1197 | 0 | return Result(unexpect, | 1198 | 0 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 48 | } |
Unexecuted instantiation: validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11TypeSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13ImportSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 381 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 381 | if (exp.has_value()) { | 1195 | 372 | return Result(); | 1196 | 372 | } | 1197 | 9 | return Result(unexpect, | 1198 | 9 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 381 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST12TableSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 303 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 303 | if (exp.has_value()) { | 1195 | 301 | return Result(); | 1196 | 301 | } | 1197 | 2 | return Result(unexpect, | 1198 | 2 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 303 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13MemorySectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 1.42k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 1.42k | if (exp.has_value()) { | 1195 | 1.39k | return Result(); | 1196 | 1.39k | } | 1197 | 31 | return Result(unexpect, | 1198 | 31 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 1.42k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13GlobalSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 248 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 248 | if (exp.has_value()) { | 1195 | 186 | return Result(); | 1196 | 186 | } | 1197 | 62 | return Result(unexpect, | 1198 | 62 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 248 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST14ElementSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 602 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 602 | if (exp.has_value()) { | 1195 | 558 | return Result(); | 1196 | 558 | } | 1197 | 44 | return Result(unexpect, | 1198 | 44 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 602 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11CodeSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 15.2k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 15.2k | if (exp.has_value()) { | 1195 | 13.9k | return Result(); | 1196 | 13.9k | } | 1197 | 1.36k | return Result(unexpect, | 1198 | 1.36k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 15.2k | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11DataSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 367 | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 367 | if (exp.has_value()) { | 1195 | 339 | return Result(); | 1196 | 339 | } | 1197 | 28 | return Result(unexpect, | 1198 | 28 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 367 | } |
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST13ExportSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 14.4k | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 14.4k | if (exp.has_value()) { | 1195 | 14.4k | return Result(); | 1196 | 14.4k | } | 1197 | 55 | return Result(unexpect, | 1198 | 55 | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 14.4k | } |
formchecker.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator11FormChecker11checkInstrsENS_4spanIKNS3_3AST11InstructionELm18446744073709551615EEEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_ Line | Count | Source | 1193 | 1.83M | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { | 1194 | 1.83M | if (exp.has_value()) { | 1195 | 1.83M | return Result(); | 1196 | 1.83M | } | 1197 | 1.39k | return Result(unexpect, | 1198 | 1.39k | invoke(std::forward<F>(f), std::forward<Exp>(exp).error())); | 1199 | 1.83M | } |
Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor14runStructSetOpERNS3_7Runtime12StackManagerERKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEjjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor13runArraySetOpERNS3_7Runtime12StackManagerERKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor14runArrayFillOpERNS3_7Runtime12StackManagerEjRKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor14runArrayCopyOpERNS3_7Runtime12StackManagerEjjjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor18runArrayInitDataOpERNS3_7Runtime12StackManagerEjjjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: refInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNKS3_8Executor8Executor18runArrayInitElemOpERNS3_7Runtime12StackManagerEjjjRKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIjLj32EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpImLj64EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIfLj32EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIdLj64EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIiLj8EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIjLj8EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIiLj16EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIjLj16EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIlLj8EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpImLj8EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIlLj16EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpImLj16EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIlLj32EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpImLj32EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIjLj32EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpImLj64EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIfLj32EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIdLj64EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIjLj8EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIjLj16EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpImLj8EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpImLj16EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpImLj32EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIoLj128EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIasEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIhtEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIsiEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpItjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIilEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runLoadExpandOpIjmEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpIhEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpItEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpIjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runLoadSplatOpImEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIoLj32EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9runLoadOpIoLj64EEENSt3__19enable_ifIX10IsWasmNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10runStoreOpIoLj128EEENSt3__19enable_ifIX16IsWasmNativeNumVIT_EES5_E4typeERNS3_7Runtime12StackManagerERNSE_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_vTnPNSA_IX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSB_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpIhEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpItEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpIjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runLoadLaneOpImEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runStoreLaneOpIhEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runStoreLaneOpItEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runStoreLaneOpIjEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runStoreLaneOpImEES5_RNS3_7Runtime12StackManagerERNS9_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OSJ_OT0_ Unexecuted instantiation: engine.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor7executeERNS3_7Runtime12StackManagerEPKNS3_3AST11InstructionESE_E3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: executor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14registerModuleERNS3_7Runtime12StoreManagerERKNS8_8Instance14ModuleInstanceEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: executor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor17registerComponentERNS3_7Runtime12StoreManagerERKNS8_8Instance17ComponentInstanceEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: executor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor6invokeEPKNS3_7Runtime8Instance16FunctionInstanceENS_4spanIKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEELm18446744073709551615EEENSD_IKNS3_7ValTypeELm18446744073709551615EEEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSY_IXnt9is_void_vIT3_EEvE4typeELS13_0ES5_EET5_OT_OT0_ Unexecuted instantiation: module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST6ModuleENSt3__18optionalINSF_17basic_string_viewIcNSF_11char_traitsIcEEEEEEENK3$_0clENS3_11ASTNodeAttrEEUlT_E_vTnPNSF_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSO_OT0_ Unexecuted instantiation: module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST6ModuleENSt3__18optionalINSF_17basic_string_viewIcNSF_11char_traitsIcEEEEEEE3$_1vTnPNSF_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OT_OT0_ Unexecuted instantiation: instantiate_component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERNS8_8Instance17ComponentInstanceERKNS3_3AST9Component15InstanceSectionEENK3$_0clIRKNSF_11InstantiateEEES5_OT_ENKUlSP_E_clIRNSF_8SortCaseEEES5_SP_EUlSO_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSW_IXnt9is_void_vIT3_EEvE4typeELS11_0ES5_EET5_SP_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor13runTableSetOpERNS3_7Runtime12StackManagerERNS8_8Instance13TableInstanceERKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runTableInitOpERNS3_7Runtime12StackManagerERNS8_8Instance13TableInstanceERNSB_15ElementInstanceERKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runTableCopyOpERNS3_7Runtime12StackManagerERNS8_8Instance13TableInstanceESD_RKNS3_3AST11InstructionEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor14runTableFillOpERNS3_7Runtime12StackManagerERNS8_8Instance13TableInstanceERKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: memoryInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runMemoryInitOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceERNSB_12DataInstanceERKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES5_EET5_OT_OT0_ Unexecuted instantiation: memoryInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runMemoryCopyOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceESD_RKNS3_3AST11InstructionEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: memoryInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runMemoryFillOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceERKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: global.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StackManagerERNS8_8Instance14ModuleInstanceERKNS3_3AST13GlobalSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: table.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StackManagerERNS8_8Instance14ModuleInstanceERKNS3_3AST12TableSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: elem.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StackManagerERNS8_8Instance14ModuleInstanceERKNS3_3AST14ElementSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: elem.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StackManagerERNS8_8Instance14ModuleInstanceERKNS3_3AST14ElementSectionEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: elem.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor9initTableERNS3_7Runtime12StackManagerERKNS3_3AST14ElementSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ Unexecuted instantiation: data.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StackManagerERNS8_8Instance14ModuleInstanceERKNS3_3AST11DataSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OT_OT0_ Unexecuted instantiation: data.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor10initMemoryERNS3_7Runtime12StackManagerERKNS3_3AST11DataSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES5_EET5_OT_OT0_ |
1200 | | |
1201 | | template <class Exp, class F, class T = typename decay_t<Exp>::value_type, |
1202 | | enable_if_t<is_void_v<T>> * = nullptr, |
1203 | | class Ret = decltype(invoke(declval<F>(), declval<Exp>().error())), |
1204 | | enable_if_t<is_void_v<Ret>> * = nullptr, |
1205 | | class Result = expected<T, monostate>> |
1206 | | constexpr Result expected_map_error_impl(Exp &&exp, F &&f) { |
1207 | | if (exp.has_value()) { |
1208 | | return Result(); |
1209 | | } |
1210 | | invoke(std::forward<F>(f), std::forward<Exp>(exp).error()); |
1211 | | return Result(unexpect); |
1212 | | } |
1213 | | |
1214 | | template <class T, class E, |
1215 | | bool = is_default_constructible_v<T> || is_void_v<T>> |
1216 | | struct expected_default_ctor_base { |
1217 | | constexpr expected_default_ctor_base() noexcept = default; |
1218 | | constexpr expected_default_ctor_base( |
1219 | | expected_default_ctor_base const &) noexcept = default; |
1220 | | constexpr expected_default_ctor_base(expected_default_ctor_base &&) noexcept = |
1221 | | default; |
1222 | | constexpr expected_default_ctor_base & |
1223 | | operator=(expected_default_ctor_base const &) noexcept = default; |
1224 | | constexpr expected_default_ctor_base & |
1225 | | operator=(expected_default_ctor_base &&) noexcept = default; |
1226 | | |
1227 | 37.4M | constexpr explicit expected_default_ctor_base(in_place_t) {} Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned long, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<bool, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 67.1k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 9.30k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<void, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 58.6k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 2.14k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::RefVariant, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned long, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<int, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void, WasmEdge::ErrCode::Value, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<unsigned int, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 1.90M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<signed char, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<short, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<long, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned char, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned short, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned int, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<float, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<double, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge_String, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<unsigned char, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 9.28M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned long, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 838k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 89.3k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 48.6k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 168k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<void, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 406 | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::ValType, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 128k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::ValMut, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 8.56k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 69.5k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::OpCode, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 8.63M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 8.63M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<long, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 534k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<int, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 1.92M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<float, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 35.2k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<double, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 15.4k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 9.30k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 9.30k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 89.3k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) cxx20::detail::expected_default_ctor_base<float, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 35.2k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<double, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 15.4k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<long, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 538k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<int, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 1.92M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 9.83k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 3.97k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 2.38M | constexpr explicit expected_default_ctor_base(in_place_t) {} |
cxx20::detail::expected_default_ctor_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Line | Count | Source | 1227 | 27.1k | constexpr explicit expected_default_ctor_base(in_place_t) {} |
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::AST::SubType const*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Runtime::Instance::GlobalInstance*, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Host::WASI::INode, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_filetype_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_clockid_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_eventtype_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_subclockflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_advice_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_fdflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_rights_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_fstflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_whence_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_lookupflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_oflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<int, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_signal_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_address_family_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_sock_type_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_riflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<unsigned short, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_sdflags_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_sock_opt_level_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<__wasi_sock_opt_so_t, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void* const (**) [38], WasmEdge::LLVM::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error, true>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<void*, WasmEdge::LLVM::Error, true>::expected_default_ctor_base(std::__1::in_place_t) |
1228 | | }; |
1229 | | |
1230 | | template <class T, class E> struct expected_default_ctor_base<T, E, false> { |
1231 | | constexpr expected_default_ctor_base() noexcept = delete; |
1232 | | constexpr expected_default_ctor_base( |
1233 | | expected_default_ctor_base const &) noexcept = default; |
1234 | | constexpr expected_default_ctor_base(expected_default_ctor_base &&) noexcept = |
1235 | | default; |
1236 | | constexpr expected_default_ctor_base & |
1237 | | operator=(expected_default_ctor_base const &) noexcept = default; |
1238 | | constexpr expected_default_ctor_base & |
1239 | | operator=(expected_default_ctor_base &&) noexcept = default; |
1240 | | |
1241 | 0 | constexpr explicit expected_default_ctor_base(in_place_t) {} Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t, false>::expected_default_ctor_base(std::__1::in_place_t) Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t, false>::expected_default_ctor_base(std::__1::in_place_t) |
1242 | | }; |
1243 | | |
1244 | | template <class T, class E, |
1245 | | bool = (is_void_v<T> || |
1246 | | is_copy_constructible_v<T>)&&is_copy_constructible_v<E>, |
1247 | | bool = (is_void_v<T> || |
1248 | | is_move_constructible_v<T>)&&is_move_constructible_v<E>> |
1249 | | struct expected_delete_ctor_base { |
1250 | | constexpr expected_delete_ctor_base() = default; |
1251 | | constexpr expected_delete_ctor_base(const expected_delete_ctor_base &) = |
1252 | | default; |
1253 | | constexpr expected_delete_ctor_base(expected_delete_ctor_base &&) noexcept = |
1254 | | default; |
1255 | | constexpr expected_delete_ctor_base & |
1256 | | operator=(const expected_delete_ctor_base &) = default; |
1257 | | constexpr expected_delete_ctor_base & |
1258 | | operator=(expected_delete_ctor_base &&) noexcept = default; |
1259 | | }; |
1260 | | |
1261 | | template <class T, class E> |
1262 | | struct expected_delete_ctor_base<T, E, true, false> { |
1263 | | constexpr expected_delete_ctor_base() = default; |
1264 | | constexpr expected_delete_ctor_base(const expected_delete_ctor_base &) = |
1265 | | default; |
1266 | | constexpr expected_delete_ctor_base(expected_delete_ctor_base &&) noexcept = |
1267 | | delete; |
1268 | | constexpr expected_delete_ctor_base & |
1269 | | operator=(const expected_delete_ctor_base &) = default; |
1270 | | constexpr expected_delete_ctor_base & |
1271 | | operator=(expected_delete_ctor_base &&) noexcept = default; |
1272 | | }; |
1273 | | |
1274 | | template <class T, class E> |
1275 | | struct expected_delete_ctor_base<T, E, false, true> { |
1276 | | constexpr expected_delete_ctor_base() = default; |
1277 | | constexpr expected_delete_ctor_base(const expected_delete_ctor_base &) = |
1278 | | delete; |
1279 | | constexpr expected_delete_ctor_base(expected_delete_ctor_base &&) noexcept = |
1280 | | default; |
1281 | | constexpr expected_delete_ctor_base & |
1282 | | operator=(const expected_delete_ctor_base &) = default; |
1283 | | constexpr expected_delete_ctor_base & |
1284 | | operator=(expected_delete_ctor_base &&) noexcept = default; |
1285 | | }; |
1286 | | |
1287 | | template <class T, class E> |
1288 | | struct expected_delete_ctor_base<T, E, false, false> { |
1289 | | constexpr expected_delete_ctor_base() = default; |
1290 | | constexpr expected_delete_ctor_base(const expected_delete_ctor_base &) = |
1291 | | delete; |
1292 | | constexpr expected_delete_ctor_base(expected_delete_ctor_base &&) noexcept = |
1293 | | delete; |
1294 | | constexpr expected_delete_ctor_base & |
1295 | | operator=(const expected_delete_ctor_base &) = default; |
1296 | | constexpr expected_delete_ctor_base & |
1297 | | operator=(expected_delete_ctor_base &&) noexcept = default; |
1298 | | }; |
1299 | | |
1300 | | template < |
1301 | | class T, class E, |
1302 | | bool = (is_void_v<T> || |
1303 | | (is_copy_assignable_v<T> && is_copy_constructible_v<T> && |
1304 | | (is_nothrow_move_constructible_v<E> || |
1305 | | is_nothrow_move_constructible_v<T>))) && |
1306 | | is_copy_assignable_v<E> &&is_copy_constructible_v<E>, |
1307 | | bool = (is_void_v<T> || |
1308 | | (is_move_assignable_v<T> && is_move_constructible_v<T>)) && |
1309 | | is_nothrow_move_assignable_v<E> &&is_nothrow_move_constructible_v<E>> |
1310 | | struct expected_delete_assign_base { |
1311 | | constexpr expected_delete_assign_base() = default; |
1312 | | constexpr expected_delete_assign_base(const expected_delete_assign_base &) = |
1313 | | default; |
1314 | | constexpr expected_delete_assign_base( |
1315 | | expected_delete_assign_base &&) noexcept = default; |
1316 | | constexpr expected_delete_assign_base & |
1317 | | operator=(const expected_delete_assign_base &) = default; |
1318 | | constexpr expected_delete_assign_base & |
1319 | | operator=(expected_delete_assign_base &&) noexcept = default; |
1320 | | }; |
1321 | | |
1322 | | template <class T, class E> |
1323 | | struct expected_delete_assign_base<T, E, true, false> { |
1324 | | constexpr expected_delete_assign_base() = default; |
1325 | | constexpr expected_delete_assign_base(const expected_delete_assign_base &) = |
1326 | | default; |
1327 | | constexpr expected_delete_assign_base( |
1328 | | expected_delete_assign_base &&) noexcept = default; |
1329 | | constexpr expected_delete_assign_base & |
1330 | | operator=(const expected_delete_assign_base &) = default; |
1331 | | constexpr expected_delete_assign_base & |
1332 | | operator=(expected_delete_assign_base &&) noexcept = delete; |
1333 | | }; |
1334 | | |
1335 | | template <class T, class E> |
1336 | | struct expected_delete_assign_base<T, E, false, true> { |
1337 | | constexpr expected_delete_assign_base() = default; |
1338 | | constexpr expected_delete_assign_base(const expected_delete_assign_base &) = |
1339 | | default; |
1340 | | constexpr expected_delete_assign_base( |
1341 | | expected_delete_assign_base &&) noexcept = default; |
1342 | | constexpr expected_delete_assign_base & |
1343 | | operator=(const expected_delete_assign_base &) = delete; |
1344 | | constexpr expected_delete_assign_base & |
1345 | | operator=(expected_delete_assign_base &&) noexcept = default; |
1346 | | }; |
1347 | | |
1348 | | template <class T, class E> |
1349 | | struct expected_delete_assign_base<T, E, false, false> { |
1350 | | constexpr expected_delete_assign_base() = default; |
1351 | | constexpr expected_delete_assign_base(const expected_delete_assign_base &) = |
1352 | | default; |
1353 | | constexpr expected_delete_assign_base( |
1354 | | expected_delete_assign_base &&) noexcept = default; |
1355 | | constexpr expected_delete_assign_base & |
1356 | | operator=(const expected_delete_assign_base &) = delete; |
1357 | | constexpr expected_delete_assign_base & |
1358 | | operator=(expected_delete_assign_base &&) noexcept = delete; |
1359 | | }; |
1360 | | |
1361 | | } // namespace detail |
1362 | | |
1363 | | template <class T, class E> |
1364 | | class expected : public detail::expected_move_assign_base<T, E>, |
1365 | | private detail::expected_delete_ctor_base<T, E>, |
1366 | | private detail::expected_delete_assign_base<T, E>, |
1367 | | private detail::expected_default_ctor_base<T, E> { |
1368 | | using traits = detail::expected_traits<T, E>; |
1369 | | using impl_base = detail::expected_move_assign_base<T, E>; |
1370 | | using ctor_base = detail::expected_default_ctor_base<T, E>; |
1371 | | using lvalue_reference_type = add_lvalue_reference_t<T>; |
1372 | | using rvalue_reference_type = add_rvalue_reference_t<T>; |
1373 | | using const_lvalue_reference_type = add_lvalue_reference_t<add_const_t<T>>; |
1374 | | using const_rvalue_reference_type = add_rvalue_reference_t<add_const_t<T>>; |
1375 | | |
1376 | | public: |
1377 | | using value_type = T; |
1378 | | using error_type = E; |
1379 | | using unexpected_type = unexpected<E>; |
1380 | | template <class U> using rebind = expected<U, error_type>; |
1381 | | |
1382 | | // 4.1, constructors |
1383 | 44.0M | constexpr expected() = default; Unexecuted instantiation: cxx20::expected<void, WasmEdge::PO::Error>::expected() cxx20::expected<void, WasmEdge::ErrCode>::expected() Line | Count | Source | 1383 | 41.6M | constexpr expected() = default; |
Unexecuted instantiation: cxx20::expected<void, WasmEdge::ErrCode::Value>::expected() cxx20::expected<void, cxx20::unexpected<WasmEdge::ErrCode> >::expected() Line | Count | Source | 1383 | 2.38M | constexpr expected() = default; |
Unexecuted instantiation: cxx20::expected<unsigned char, WasmEdge::ErrCode>::expected() Unexecuted instantiation: cxx20::expected<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::expected() Unexecuted instantiation: cxx20::expected<void, __wasi_errno_t>::expected() |
1384 | 0 | constexpr expected(const expected &) = default; Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::expected(cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode> const&) Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::expected(cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode> const&) |
1385 | 0 | constexpr expected(expected &&) = default; Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::expected(cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>&&) Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::expected(cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>&&) |
1386 | | |
1387 | | template < |
1388 | | class U, class G, |
1389 | | enable_if_t<traits::template enable_other_copy_constructible_v<U, G> && |
1390 | | !traits::template explicit_other_copy_constructible_v<U, G>> |
1391 | | * = nullptr> |
1392 | | constexpr expected(const expected<U, G> &rhs) noexcept( |
1393 | | traits::template is_nothrow_other_copy_constructible_v<U, G>) |
1394 | | : impl_base(detail::no_init), ctor_base(in_place) { |
1395 | | if (rhs.has_value()) { |
1396 | | this->construct_value(*rhs); |
1397 | | } else { |
1398 | | this->construct_error(rhs.error()); |
1399 | | } |
1400 | | } |
1401 | | template < |
1402 | | class U, class G, |
1403 | | enable_if_t<traits::template enable_other_copy_constructible_v<U, G> && |
1404 | | traits::template explicit_other_copy_constructible_v<U, G>> |
1405 | | * = nullptr> |
1406 | | constexpr explicit expected(const expected<U, G> &rhs) noexcept( |
1407 | | traits::template is_nothrow_other_copy_constructible_v<U, G>) |
1408 | | : impl_base(detail::no_init), ctor_base(in_place) { |
1409 | | if (rhs.has_value()) { |
1410 | | this->construct_value(*rhs); |
1411 | | } else { |
1412 | | this->construct_error(rhs.error()); |
1413 | | } |
1414 | | } |
1415 | | template < |
1416 | | class U, class G, |
1417 | | enable_if_t<traits::template enable_other_move_constructible_v<U, G> && |
1418 | | !traits::template explicit_other_move_constructible_v<U, G>> |
1419 | | * = nullptr> |
1420 | | constexpr expected(expected<U, G> &&rhs) noexcept( |
1421 | | traits::template is_nothrow_other_move_constructible_v<U, G>) |
1422 | | : impl_base(detail::no_init), ctor_base(in_place) { |
1423 | | if (rhs.has_value()) { |
1424 | | this->construct_value(*std::move(rhs)); |
1425 | | } else { |
1426 | | this->construct_error(std::move(rhs).error()); |
1427 | | } |
1428 | | } |
1429 | | template < |
1430 | | class U, class G, |
1431 | | enable_if_t<traits::template enable_other_move_constructible_v<U, G> && |
1432 | | traits::template explicit_other_move_constructible_v<U, G>> |
1433 | | * = nullptr> |
1434 | | constexpr explicit expected(expected<U, G> &&rhs) noexcept( |
1435 | | traits::template is_nothrow_other_move_constructible_v<U, G>) |
1436 | | : impl_base(detail::no_init), ctor_base(in_place) { |
1437 | | if (rhs.has_value()) { |
1438 | | this->construct_value(*std::move(rhs)); |
1439 | | } else { |
1440 | | this->construct_error(std::move(rhs).error()); |
1441 | | } |
1442 | | } |
1443 | | |
1444 | | template <class U = T, |
1445 | | enable_if_t<traits::template enable_in_place_v<U> && |
1446 | | is_convertible_v<U, T>> * = nullptr, |
1447 | | bool NoExcept = is_nothrow_constructible_v<T, U>> |
1448 | | constexpr expected(U &&v) noexcept(NoExcept) |
1449 | 37.4M | : expected(in_place, std::forward<U>(v)) {} Unexecuted instantiation: _ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IbTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_bEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IRKS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S2_EEvE4typeELPv0ELb1EEEOSA_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S2_EEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge2PO5ErrorEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISE_S7_EEvE4typeELPv0ELb1EEEOSE_ Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_mEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_iEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrIN8WasmEdge7ValCompEEENSC_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_7ValTypeEEENS8_ISU_EEEENSC_7ErrCodeEEC2ISW_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS11_SW_EEvE4typeELPv0ELb1EEEOS11_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCode5ValueEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S3_EEvE4typeELPv0ELb1EEEOSA_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCode5ValueEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS4_10RefVariantEEEENS4_7ValTypeEEENS1_9allocatorISJ_EEEENS4_7ErrCodeEEC2ISM_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISR_SM_EEvE4typeELPv0ELb1EEEOSR_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IRKjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_jEEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedIaN8WasmEdge2PO5ErrorEEC2IaTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_aEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIsN8WasmEdge2PO5ErrorEEC2IsTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_sEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIlN8WasmEdge2PO5ErrorEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_lEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIhN8WasmEdge2PO5ErrorEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_hEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedItN8WasmEdge2PO5ErrorEEC2ItTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_tEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge2PO5ErrorEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_jEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIfN8WasmEdge2PO5ErrorEEC2IKfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_fEEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedIdN8WasmEdge2PO5ErrorEEC2IKdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_dEEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedI15WasmEdge_StringN8WasmEdge2PO5ErrorEEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S1_EEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IDnTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_jEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 1.90M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_hEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 145k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_mEEvE4typeELPv0ELb1EEEOS7_ _ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Line | Count | Source | 1449 | 67.0k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_jEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 838k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISF_S7_EEvE4typeELPv0ELb1EEEOSF_ Line | Count | Source | 1449 | 89.0k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S5_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 48.6k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_hEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 168k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_ Line | Count | Source | 1449 | 128k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_ Line | Count | Source | 1449 | 8.55k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS1_9allocatorIS5_EEEENS3_7ErrCodeEEC2IS8_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S8_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 62.0k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_ Line | Count | Source | 1449 | 8.63M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS_10unexpectedINS1_7ErrCodeEEEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S2_EEvE4typeELPv0ELb1EEEOSA_ Line | Count | Source | 1449 | 8.63M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_lEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 534k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S2_EEvE4typeELPv0ELb1EEEOSA_ _ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_iEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 1.92M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_fEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 35.2k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_dEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 15.4k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IRjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_jEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2ISE_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISJ_SE_EEvE4typeELPv0ELb1EEEOSJ_ _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IS8_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S8_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 3.80k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2ISD_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISJ_SE_EEvE4typeELPv0ELb1EEEOSJ_ Line | Count | Source | 1449 | 3.80k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2ISA_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISJ_SE_EEvE4typeELPv0ELb1EEEOSJ_ _ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S7_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 9.19k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S7_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 89.0k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISE_S9_EEvE4typeELPv0ELb1EEEOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISH_S9_EEvE4typeELPv0ELb1EEEOSH_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IS3_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISC_S3_EEvE4typeELPv0ELb1EEEOSC_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2ISC_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISH_SC_EEvE4typeELPv0ELb1EEEOSH_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISK_SC_EEvE4typeELPv0ELb1EEEOSK_ _ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IRKhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_hEEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 9.12M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_fEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 35.2k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_dEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 15.4k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_lEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 537k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_iEEvE4typeELPv0ELb1EEEOS7_ Line | Count | Source | 1449 | 1.92M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES7_EENS4_7ErrCodeEEC2IS8_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S8_EEvE4typeELPv0ELb1EEEOSD_ Line | Count | Source | 1449 | 9.82k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Line | Count | Source | 1449 | 3.96k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb1EEEOSA_ Line | Count | Source | 1449 | 2.21M | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IS4_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb0EEEOSA_ Line | Count | Source | 1449 | 169k | : expected(in_place, std::forward<U>(v)) {} |
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb0EEEOSA_ Line | Count | Source | 1449 | 26.9k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IKS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S2_EEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS2_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IKjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_jEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IDnTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S1_EEvE4typeELS1_0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S1_EEvE4typeELS1_0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS1_10RefVariantEEEENS1_7ErrCodeEEC2ISE_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISK_SE_EEvE4typeELPv0ELb1EEEOSK_ Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST11InstructionENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISE_S9_EEvE4typeELPv0ELb1EEEOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISE_S9_EEvE4typeELPv0ELb1EEEOSE_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISC_S7_EEvE4typeELPv0ELb1EEEOSC_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIcNS1_9allocatorIcEEEE14__wasi_errno_tEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb1EEEOSA_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb1EEEOSA_ Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_mEEvE4typeELPv0ELb1EEEOS6_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_filetype_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IRlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_mEEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2I14__wasi_errno_tTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_jEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb1EEEOSA_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IR14__wasi_errno_tTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_jEEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_clockid_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_eventtype_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI22__wasi_subclockflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_advice_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_fdflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_fstflags_t14__wasi_errno_tEC2IKS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S1_EEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2I14__wasi_errno_tTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_iEEvE4typeELPv0ELb1EEEOS8_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_whence_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IR14__wasi_errno_tTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_iEEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_lookupflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_oflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_iEEvE4typeELPv0ELb1EEEOS6_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2ItTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_tEEvE4typeELPv0ELb1EEEOS6_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_ _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_ Line | Count | Source | 1449 | 2.14k | : expected(in_place, std::forward<U>(v)) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2INS2_INS3_4LLVM10JITLibraryEEETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S5_EEvE4typeELPv0ELb1EEEOSD_ Unexecuted instantiation: _ZN5cxx208expectedIPPA38_KPvN8WasmEdge4LLVM5ErrorEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S5_EEvE4typeELS1_0ELb1EEEOSD_ Unexecuted instantiation: _ZN5cxx208expectedIPFvPvS1_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEEPSF_ENS2_4LLVM5ErrorEEC2ISK_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISR_SK_EEvE4typeELS1_0ELb1EEEOSR_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge4LLVM5ErrorEEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S1_EEvE4typeELS1_0ELb1EEEOS9_ |
1450 | | template <class U = T, |
1451 | | enable_if_t<traits::template enable_in_place_v<U> && |
1452 | | !is_convertible_v<U, T>> * = nullptr, |
1453 | | bool NoExcept = is_nothrow_constructible_v<T, U>> |
1454 | | constexpr explicit expected(U &&v) noexcept(NoExcept) |
1455 | | : expected(in_place, std::forward<U>(v)) {} |
1456 | | |
1457 | | template <class G = E, |
1458 | | enable_if_t<is_constructible_v<E, const G &>> * = nullptr> |
1459 | | constexpr expected(const unexpected<G> &e) : expected(unexpect, e.value()) {} |
1460 | | template <class G = E, enable_if_t<is_constructible_v<E, G &&>> * = nullptr> |
1461 | | constexpr expected(unexpected<G> &&e) |
1462 | 60.9k | : expected(unexpect, std::move(e.value())) {} Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE Unexecuted instantiation: _ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIvN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE _ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 34.9k | : expected(unexpect, std::move(e.value())) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS4_10RefVariantEEEENS4_7ValTypeEEENS1_9allocatorISJ_EEEENS4_7ErrCodeEEC2ISN_TnPNS1_9enable_ifIX18is_constructible_vISN_OT_EEvE4typeELPv0EEEONS_10unexpectedISR_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrIN8WasmEdge7ValCompEEENSC_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_7ValTypeEEENS8_ISU_EEEENSC_7ErrCodeEEC2ISX_TnPNS1_9enable_ifIX18is_constructible_vISX_OT_EEvE4typeELPv0EEEONS_10unexpectedIS11_EE _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 1.06k | : expected(unexpect, std::move(e.value())) {} |
Unexecuted instantiation: _ZN5cxx208expectedIaN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIsN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIlN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIhN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedItN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIfN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIdN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE _ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Line | Count | Source | 1462 | 313 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Line | Count | Source | 1462 | 12 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE Line | Count | Source | 1462 | 2.08k | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS1_9allocatorIS5_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE Line | Count | Source | 1462 | 3.74k | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIX18is_constructible_vIS7_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Line | Count | Source | 1462 | 38 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2ISF_TnPNS1_9enable_ifIX18is_constructible_vISF_OT_EEvE4typeELPv0EEEONS_10unexpectedISJ_EE Line | Count | Source | 1462 | 5.50k | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE Line | Count | Source | 1462 | 5.50k | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE Line | Count | Source | 1462 | 111 | : expected(unexpect, std::move(e.value())) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2ISA_TnPNS1_9enable_ifIX18is_constructible_vISA_OT_EEvE4typeELPv0EEEONS_10unexpectedISE_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IS5_TnPNS1_9enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2ISD_TnPNS1_9enable_ifIX18is_constructible_vISD_OT_EEvE4typeELPv0EEEONS_10unexpectedISH_EE _ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 5.63k | : expected(unexpect, std::move(e.value())) {} |
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE _ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 10 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 11 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE Line | Count | Source | 1462 | 227 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 215 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Line | Count | Source | 1462 | 87 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES7_EENS4_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE Line | Count | Source | 1462 | 11 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Line | Count | Source | 1462 | 13 | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Line | Count | Source | 1462 | 1.20k | : expected(unexpect, std::move(e.value())) {} |
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Line | Count | Source | 1462 | 205 | : expected(unexpect, std::move(e.value())) {} |
Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS2_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELS1_0EEEONS_10unexpectedIS8_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS1_10RefVariantEEEENS1_7ErrCodeEEC2ISF_TnPNSt3__19enable_ifIX18is_constructible_vISF_OT_EEvE4typeELPv0EEEONS_10unexpectedISK_EE Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST11InstructionENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2ISA_TnPNS1_9enable_ifIX18is_constructible_vISA_OT_EEvE4typeELPv0EEEONS_10unexpectedISE_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2ISA_TnPNS1_9enable_ifIX18is_constructible_vISA_OT_EEvE4typeELPv0EEEONS_10unexpectedISE_EE Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IS8_TnPNS1_9enable_ifIX18is_constructible_vIS8_OT_EEvE4typeELPv0EEEONS_10unexpectedISC_EE Unexecuted instantiation: _ZN5cxx208expectedIv14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIcNS1_9allocatorIcEEEE14__wasi_errno_tEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_filetype_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_clockid_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_eventtype_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI22__wasi_subclockflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_advice_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_fdflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_fstflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_whence_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_lookupflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_oflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE Unexecuted instantiation: _ZN5cxx208expectedIPPA38_KPvN8WasmEdge4LLVM5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vIS8_OT_EEvE4typeELS1_0EEEONS_10unexpectedISF_EE Unexecuted instantiation: _ZN5cxx208expectedIPFvPvS1_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEEPSF_ENS2_4LLVM5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vISM_OT_EEvE4typeELS1_0EEEONS_10unexpectedIST_EE Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge4LLVM5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELS1_0EEEONS_10unexpectedISB_EE |
1463 | | |
1464 | | template <class... Args, |
1465 | | enable_if_t<is_constructible_v<T, Args...>> * = nullptr, |
1466 | | bool NoExcept = is_nothrow_constructible_v<T, Args...>> |
1467 | | constexpr explicit expected(in_place_t, Args &&...args) noexcept(NoExcept) |
1468 | 37.4M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} Unexecuted instantiation: _ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IJRKS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge2PO5ErrorEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrIN8WasmEdge7ValCompEEENSC_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_7ValTypeEEENS8_ISU_EEEENSC_7ErrCodeEEC2IJSW_ETnPNS1_9enable_ifIX18is_constructible_vISW_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOS11_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCode5ValueEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCode5ValueEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS4_10RefVariantEEEENS4_7ValTypeEEENS1_9allocatorISJ_EEEENS4_7ErrCodeEEC2IJSM_ETnPNS1_9enable_ifIX18is_constructible_vISM_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSR_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJRKjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedIaN8WasmEdge2PO5ErrorEEC2IJaETnPNSt3__19enable_ifIX18is_constructible_vIaDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIsN8WasmEdge2PO5ErrorEEC2IJsETnPNSt3__19enable_ifIX18is_constructible_vIsDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIlN8WasmEdge2PO5ErrorEEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIhN8WasmEdge2PO5ErrorEEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedItN8WasmEdge2PO5ErrorEEC2IJtETnPNSt3__19enable_ifIX18is_constructible_vItDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge2PO5ErrorEEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIfN8WasmEdge2PO5ErrorEEC2IJKfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedIdN8WasmEdge2PO5ErrorEEC2IJKdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedI15WasmEdge_StringN8WasmEdge2PO5ErrorEEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 1.90M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 145k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ _ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSB_ Line | Count | Source | 1468 | 67.0k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 838k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSF_ Line | Count | Source | 1468 | 89.0k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 48.6k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 168k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 1468 | 128k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 1468 | 8.55k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS1_9allocatorIS5_EEEENS3_7ErrCodeEEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 62.0k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Line | Count | Source | 1468 | 8.63M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 1468 | 8.63M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 534k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ _ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 1.92M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 35.2k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 15.4k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJRjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2IJSE_ETnPNS1_9enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSJ_ _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 3.80k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2IJSD_ETnPNS1_9enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSJ_ Line | Count | Source | 1468 | 3.80k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2IJSA_ETnPNS1_9enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSJ_ _ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 9.19k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 89.0k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSH_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJS3_ETnPNS1_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2IJSC_ETnPNS1_9enable_ifIX18is_constructible_vISC_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSH_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vISC_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSK_ _ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IJRKhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 9.12M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IJfETnPNSt3__19enable_ifIX18is_constructible_vIfDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 35.2k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IJdETnPNSt3__19enable_ifIX18is_constructible_vIdDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 15.4k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IJlETnPNSt3__19enable_ifIX18is_constructible_vIlDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 537k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Line | Count | Source | 1468 | 1.92M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES7_EENS4_7ErrCodeEEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Line | Count | Source | 1468 | 9.82k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Line | Count | Source | 1468 | 3.96k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSA_ Line | Count | Source | 1468 | 2.21M | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IJS4_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb0EEENS1_10in_place_tEDpOSA_ Line | Count | Source | 1468 | 169k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb0EEENS8_10in_place_tEDpOSA_ Line | Count | Source | 1468 | 26.9k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IJKS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS2_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJKjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELS1_0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELS1_0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS1_10RefVariantEEEENS1_7ErrCodeEEC2IJSE_ETnPNSt3__19enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENSI_10in_place_tEDpOSK_ Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST11InstructionENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSC_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIcNS1_9allocatorIcEEEE14__wasi_errno_tEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_filetype_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IJRlETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJ14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJR14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_clockid_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_eventtype_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI22__wasi_subclockflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_advice_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_fdflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_fstflags_t14__wasi_errno_tEC2IJKS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IJ14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_whence_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IJR14__wasi_errno_tETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_lookupflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_oflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2IJtETnPNSt3__19enable_ifIX18is_constructible_vItDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_ _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Line | Count | Source | 1468 | 2.14k | : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IJNS2_INS3_4LLVM10JITLibraryEEEETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_ Unexecuted instantiation: _ZN5cxx208expectedIPPA38_KPvN8WasmEdge4LLVM5ErrorEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELS1_0ELb1EEENSB_10in_place_tEDpOSD_ Unexecuted instantiation: _ZN5cxx208expectedIPFvPvS1_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEEPSF_ENS2_4LLVM5ErrorEEC2IJSK_ETnPNSt3__19enable_ifIX18is_constructible_vISK_DpT_EEvE4typeELS1_0ELb1EEENSP_10in_place_tEDpOSR_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge4LLVM5ErrorEEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELS1_0ELb1EEENS7_10in_place_tEDpOS9_ |
1469 | | template <class U, class... Args, |
1470 | | enable_if_t<is_constructible_v<T, initializer_list<U>, Args...>> * = |
1471 | | nullptr, |
1472 | | bool NoExcept = |
1473 | | is_nothrow_constructible_v<T, initializer_list<U>, Args...>> |
1474 | | constexpr explicit expected(in_place_t, initializer_list<U> il, |
1475 | | Args &&...args) noexcept(NoExcept) |
1476 | | : impl_base(in_place, std::move(il), std::forward<Args>(args)...), |
1477 | | ctor_base(in_place) {} |
1478 | | |
1479 | | template <class... Args, |
1480 | | enable_if_t<is_constructible_v<E, Args...>> * = nullptr, |
1481 | | bool NoExcept = is_nothrow_constructible_v<E, Args...>> |
1482 | | constexpr explicit expected(unexpect_t, Args &&...args) noexcept(NoExcept) |
1483 | 92.2k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIvN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ _ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Line | Count | Source | 1483 | 38 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 5.50k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 58.6k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge10RefVariantENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS4_10RefVariantEEEENS4_7ValTypeEEENS1_9allocatorISJ_EEEENS4_7ErrCodeEEC2IJSN_ETnPNS1_9enable_ifIX18is_constructible_vISN_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSR_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrIN8WasmEdge7ValCompEEENSC_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_7ValTypeEEENS8_ISU_EEEENSC_7ErrCodeEEC2IJSX_ETnPNS1_9enable_ifIX18is_constructible_vISX_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS11_ Unexecuted instantiation: _ZN5cxx208expectedIvN8WasmEdge7ErrCode5ValueEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IJNS4_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCode5ValueEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IJNS6_5ValueEETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCode5ValueEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IJNS2_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ _ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 1.06k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIaN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIsN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIlN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIhN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedItN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIjN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIfN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIdN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ _ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 5.63k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ _ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 712 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJSB_ETnPNS1_9enable_ifIX18is_constructible_vISB_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSF_ Line | Count | Source | 1483 | 227 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 6 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 106 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIvNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 406 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 1483 | 313 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 1483 | 12 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS1_9allocatorIS5_EEEENS3_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 7.49k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_ Line | Count | Source | 1483 | 2.08k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 1483 | 2.08k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 191 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ _ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 87 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 10 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Line | Count | Source | 1483 | 11 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2IJSF_ETnPNS1_9enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSJ_ Line | Count | Source | 1483 | 5.50k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 111 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 227 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJjN8WasmEdge3AST9Component11PrimValTypeEEEEEENS4_7ErrCodeEEC2IJSA_ETnPNS1_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__18optionalINS1_7variantIJN8WasmEdge3AST9Component13DescTypeIndexENS2_IjEENS3_IJjNS6_11PrimValTypeEEEEEEEEENS4_7ErrCodeEEC2IJSD_ETnPNS1_9enable_ifIX18is_constructible_vISD_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSH_ _ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 10 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 11 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 215 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Line | Count | Source | 1483 | 87 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES7_EENS4_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_ Line | Count | Source | 1483 | 11 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Line | Count | Source | 1483 | 13 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 1483 | 1.20k | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Line | Count | Source | 1483 | 205 | : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {} |
Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS2_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELS1_0ELb1EEENS_10unexpect_tEDpOS8_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS1_10RefVariantEEEENS1_7ErrCodeEEC2IJSF_ETnPNSt3__19enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSK_ Unexecuted instantiation: _ZN5cxx208expectedIPKN8WasmEdge3AST11InstructionENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IJSA_ETnPNS1_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS1_14default_deleteIS6_EEEENS3_7ErrCodeEEC2IJSA_ETnPNS1_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_ Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14GlobalInstanceENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_ Unexecuted instantiation: _ZN5cxx208expectedIv14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIcNS1_9allocatorIcEEEE14__wasi_errno_tEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_filetype_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_clockid_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_eventtype_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI22__wasi_subclockflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_advice_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_fdflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI17__wasi_fstflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_whence_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_lookupflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_oflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_ Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_ Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_ Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_ Unexecuted instantiation: _ZN5cxx208expectedIPPA38_KPvN8WasmEdge4LLVM5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELS1_0ELb1EEENS_10unexpect_tEDpOSF_ Unexecuted instantiation: _ZN5cxx208expectedIPFvPvS1_PKN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS2_10RefVariantEEEEPSF_ENS2_4LLVM5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vISM_DpT_EEvE4typeELS1_0ELb1EEENS_10unexpect_tEDpOST_ Unexecuted instantiation: _ZN5cxx208expectedIPvN8WasmEdge4LLVM5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELS1_0ELb1EEENS_10unexpect_tEDpOSB_ |
1484 | | template <class U, class... Args, |
1485 | | enable_if_t<is_constructible_v<E, initializer_list<U>, Args...>> * = |
1486 | | nullptr, |
1487 | | bool NoExcept = |
1488 | | is_nothrow_constructible_v<E, initializer_list<U>, Args...>> |
1489 | | constexpr explicit expected(unexpect_t, initializer_list<U> il, |
1490 | | Args &&...args) noexcept(NoExcept) |
1491 | | : impl_base(unexpect, std::move(il), std::forward<Args>(args)...), |
1492 | | ctor_base(in_place) {} |
1493 | | |
1494 | | // 4.2, destructor |
1495 | | ~expected() = default; |
1496 | | |
1497 | | // 4.3, assignment |
1498 | | constexpr expected &operator=(const expected &rhs) = default; |
1499 | 0 | constexpr expected &operator=(expected &&rhs) = default; |
1500 | | |
1501 | | template <class U = T, |
1502 | | enable_if_t<traits::template enable_assign_value_v<U>> * = nullptr, |
1503 | | bool NoExcept = is_nothrow_constructible_v<T, U> |
1504 | | &&is_nothrow_assignable_v<lvalue_reference_type, U>> |
1505 | | constexpr expected &operator=(U &&v) noexcept(NoExcept) { |
1506 | | impl_base::assign_value(std::forward<U>(v)); |
1507 | | return *this; |
1508 | | } |
1509 | | template <class G = E> |
1510 | | constexpr expected & |
1511 | | operator=(const unexpected<G> &e) noexcept(is_nothrow_destructible_v<T>) { |
1512 | | impl_base::assign_error(e); |
1513 | | return *this; |
1514 | | } |
1515 | | template <class G = E> |
1516 | | constexpr expected & |
1517 | | operator=(unexpected<G> &&e) noexcept(is_nothrow_destructible_v<T>) { |
1518 | | impl_base::assign_error(std::move(e)); |
1519 | | return *this; |
1520 | | } |
1521 | | |
1522 | | // 4.4, modifiers |
1523 | | using impl_base::emplace; |
1524 | | |
1525 | | // 4.5, swap |
1526 | | template < |
1527 | | class U = T, class G = E, |
1528 | | enable_if_t<(is_void_v<U> || (is_swappable_v<U> && |
1529 | | (is_nothrow_move_constructible_v<U> || |
1530 | | is_nothrow_move_constructible_v<G>))) && |
1531 | | is_swappable_v<G>> * = nullptr, |
1532 | | bool NoExcept = is_nothrow_swappable_v<U> &&is_nothrow_swappable_v<G> |
1533 | | &&is_nothrow_move_constructible_v<U> |
1534 | | &&is_nothrow_move_constructible_v<G>> |
1535 | | void swap(expected<U, G> &rhs) noexcept(NoExcept) { |
1536 | | if (this->has_value()) { |
1537 | | if (rhs.has_value()) { |
1538 | | if constexpr (!is_void_v<T>) { |
1539 | | using std::swap; |
1540 | | swap(this->val(), rhs.val()); |
1541 | | } |
1542 | | } else { |
1543 | | rhs.swap(*this); |
1544 | | } |
1545 | | } else { |
1546 | | if (rhs.has_value()) { |
1547 | | if constexpr (is_void_v<T>) { |
1548 | | this->construct_error(std::move(rhs).error()); |
1549 | | rhs.destruct_error(); |
1550 | | rhs.construct_value(); |
1551 | | } else if constexpr (is_nothrow_move_constructible_v<E>) { |
1552 | | E tmp = std::move(rhs).error(); |
1553 | | rhs.destruct_error(); |
1554 | | if constexpr (is_nothrow_move_constructible_v<T>) { |
1555 | | rhs.construct_value(std::move(*this).val()); |
1556 | | } else { |
1557 | | try { |
1558 | | rhs.construct_value(std::move(*this).val()); |
1559 | | } catch (...) { |
1560 | | rhs.construct_error(std::move(tmp)); |
1561 | | throw_exception_again; |
1562 | | } |
1563 | | } |
1564 | | this->destruct_value(); |
1565 | | this->construct_error(std::move(tmp)); |
1566 | | } else { |
1567 | | static_assert(is_nothrow_move_constructible_v<T>); |
1568 | | T tmp = std::move(*this).val(); |
1569 | | this->destruct_value(); |
1570 | | try { |
1571 | | this->construct_error(std::move(rhs).error()); |
1572 | | } catch (...) { |
1573 | | this->construct_value(std::move(tmp)); |
1574 | | throw_exception_again; |
1575 | | } |
1576 | | rhs.destruct_error(); |
1577 | | rhs.construct_value(std::move(tmp)); |
1578 | | } |
1579 | | } else { |
1580 | | using std::swap; |
1581 | | swap(this->error(), rhs.error()); |
1582 | | } |
1583 | | } |
1584 | | } |
1585 | | template < |
1586 | | class U = T, class G = E, |
1587 | | enable_if_t<(!is_void_v<U> && (!is_swappable_v<U> || |
1588 | | (!is_nothrow_move_constructible_v<U> && |
1589 | | !is_nothrow_move_constructible_v<G>))) || |
1590 | | !is_swappable_v<G>> * = nullptr> |
1591 | | void swap(expected<U, G> &rhs) = delete; |
1592 | | |
1593 | | // 4.6, observers |
1594 | | constexpr const T *operator->() const { return addressof(impl_base::val()); } |
1595 | 0 | constexpr T *operator->() { return addressof(impl_base::val()); } Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator->() Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator->() Unexecuted instantiation: cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::operator->() Unexecuted instantiation: cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator->() |
1596 | | constexpr const_lvalue_reference_type operator*() const & { |
1597 | | return impl_base::val(); |
1598 | | } |
1599 | 255k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } Unexecuted instantiation: cxx20::expected<unsigned long, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<bool, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator*() & cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::operator*() & Line | Count | Source | 1599 | 3.80k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } |
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator*() & Line | Count | Source | 1599 | 27.7k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<int, WasmEdge::PO::Error>::operator*() & cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator*() & Line | Count | Source | 1599 | 2.14k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } |
Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<signed char, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<short, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<long, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<unsigned char, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<unsigned short, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<unsigned int, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<float, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<double, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge_String, WasmEdge::PO::Error>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::operator*() & cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() & Line | Count | Source | 1599 | 211k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } |
Unexecuted instantiation: cxx20::expected<unsigned int, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::operator*() & cxx20::expected<long, WasmEdge::ErrCode>::operator*() & Line | Count | Source | 1599 | 10.7k | constexpr lvalue_reference_type operator*() & { return impl_base::val(); } |
Unexecuted instantiation: cxx20::expected<void*, WasmEdge::ErrCode>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_eventtype_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_clockid_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_subclockflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_advice_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_fdflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_rights_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_fstflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_whence_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_lookupflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_oflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<int, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_signal_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_address_family_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_sock_type_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_riflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<unsigned short, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_sdflags_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_sock_opt_level_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<__wasi_sock_opt_so_t, __wasi_errno_t>::operator*() & Unexecuted instantiation: cxx20::expected<void* const (**) [38], WasmEdge::LLVM::Error>::operator*() & Unexecuted instantiation: cxx20::expected<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error>::operator*() & Unexecuted instantiation: cxx20::expected<void*, WasmEdge::LLVM::Error>::operator*() & Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::operator*() & |
1600 | | constexpr const_rvalue_reference_type operator*() const && { |
1601 | | return std::move(impl_base::val()); |
1602 | | } |
1603 | 14.7M | constexpr rvalue_reference_type operator*() && { |
1604 | 14.7M | return std::move(impl_base::val()); |
1605 | 14.7M | } cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 48.6k | constexpr rvalue_reference_type operator*() && { | 1604 | 48.6k | return std::move(impl_base::val()); | 1605 | 48.6k | } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator*() && cxx20::expected<unsigned int, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 838k | constexpr rvalue_reference_type operator*() && { | 1604 | 838k | return std::move(impl_base::val()); | 1605 | 838k | } |
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 170k | constexpr rvalue_reference_type operator*() && { | 1604 | 170k | return std::move(impl_base::val()); | 1605 | 170k | } |
Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::operator*() && cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 89.0k | constexpr rvalue_reference_type operator*() && { | 1604 | 89.0k | return std::move(impl_base::val()); | 1605 | 89.0k | } |
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 44.1k | constexpr rvalue_reference_type operator*() && { | 1604 | 44.1k | return std::move(impl_base::val()); | 1605 | 44.1k | } |
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 67.1k | constexpr rvalue_reference_type operator*() && { | 1604 | 67.1k | return std::move(impl_base::val()); | 1605 | 67.1k | } |
cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 49.1k | constexpr rvalue_reference_type operator*() && { | 1604 | 49.1k | return std::move(impl_base::val()); | 1605 | 49.1k | } |
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 3.75k | constexpr rvalue_reference_type operator*() && { | 1604 | 3.75k | return std::move(impl_base::val()); | 1605 | 3.75k | } |
cxx20::expected<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 62.0k | constexpr rvalue_reference_type operator*() && { | 1604 | 62.0k | return std::move(impl_base::val()); | 1605 | 62.0k | } |
cxx20::expected<WasmEdge::OpCode, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 8.63M | constexpr rvalue_reference_type operator*() && { | 1604 | 8.63M | return std::move(impl_base::val()); | 1605 | 8.63M | } |
cxx20::expected<long, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 534k | constexpr rvalue_reference_type operator*() && { | 1604 | 534k | return std::move(impl_base::val()); | 1605 | 534k | } |
Unexecuted instantiation: cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator*() && cxx20::expected<int, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 1.92M | constexpr rvalue_reference_type operator*() && { | 1604 | 1.92M | return std::move(impl_base::val()); | 1605 | 1.92M | } |
cxx20::expected<int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 1.92M | constexpr rvalue_reference_type operator*() && { | 1604 | 1.92M | return std::move(impl_base::val()); | 1605 | 1.92M | } |
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 244k | constexpr rvalue_reference_type operator*() && { | 1604 | 244k | return std::move(impl_base::val()); | 1605 | 244k | } |
cxx20::expected<float, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 35.2k | constexpr rvalue_reference_type operator*() && { | 1604 | 35.2k | return std::move(impl_base::val()); | 1605 | 35.2k | } |
cxx20::expected<float, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 35.2k | constexpr rvalue_reference_type operator*() && { | 1604 | 35.2k | return std::move(impl_base::val()); | 1605 | 35.2k | } |
cxx20::expected<double, WasmEdge::ErrCode>::operator*() && Line | Count | Source | 1603 | 15.4k | constexpr rvalue_reference_type operator*() && { | 1604 | 15.4k | return std::move(impl_base::val()); | 1605 | 15.4k | } |
cxx20::expected<double, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() && Line | Count | Source | 1603 | 15.4k | constexpr rvalue_reference_type operator*() && { | 1604 | 15.4k | return std::move(impl_base::val()); | 1605 | 15.4k | } |
Unexecuted instantiation: cxx20::expected<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::AST::SubType const*, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::Runtime::Instance::GlobalInstance*, WasmEdge::ErrCode>::operator*() && Unexecuted instantiation: cxx20::expected<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode>::operator*() && |
1606 | 60.8M | constexpr explicit operator bool() const noexcept { return has_value(); } Unexecuted instantiation: cxx20::expected<unsigned long, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<bool, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::Runtime::Instance::MemoryInstance*, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator bool() const cxx20::expected<void, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 35.8M | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 9.30k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 18.5k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<void, __wasi_errno_t>::operator bool() const cxx20::expected<unsigned int, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 1.06M | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<int, WasmEdge::PO::Error>::operator bool() const cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 2.14k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::operator bool() const cxx20::expected<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 9.30k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<signed char, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<short, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<long, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned char, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned short, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned int, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<float, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<double, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge_String, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<void, WasmEdge::PO::Error>::operator bool() const cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 8.98M | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::operator bool() const cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 789k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 45.0k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 44.8k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 101k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<void, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 2.38M | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 128k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<long, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 3.70k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 8.56k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 8.63M | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const Line | Count | Source | 1606 | 290k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const cxx20::expected<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 9.30k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode>::operator bool() const cxx20::expected<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 9.83k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 2.38M | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 27.1k | constexpr explicit operator bool() const noexcept { return has_value(); } |
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::operator bool() const Line | Count | Source | 1606 | 3.97k | constexpr explicit operator bool() const noexcept { return has_value(); } |
Unexecuted instantiation: cxx20::expected<void*, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::INode, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<int, WasmEdge::ErrCode>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::Poller::Timer, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::EVPoller, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_eventtype_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_clockid_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_subclockflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_advice_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_fdflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_rights_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_fstflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_whence_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_lookupflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_oflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<int, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_signal_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_address_family_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_sock_type_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_riflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<unsigned short, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_sdflags_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_sock_opt_level_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<__wasi_sock_opt_so_t, __wasi_errno_t>::operator bool() const Unexecuted instantiation: cxx20::expected<void* const (**) [38], WasmEdge::LLVM::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<void (*)(void*, void*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*), WasmEdge::LLVM::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<void*, WasmEdge::LLVM::Error>::operator bool() const Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::operator bool() const |
1607 | | using impl_base::error; |
1608 | | using impl_base::has_value; |
1609 | | constexpr const_lvalue_reference_type value() const & { |
1610 | | if (!has_value()) { |
1611 | | throw(bad_expected_access<E>(error())); |
1612 | | } |
1613 | | return impl_base::val(); |
1614 | | } |
1615 | | constexpr const_rvalue_reference_type value() const && { |
1616 | | if (!has_value()) { |
1617 | | #if defined(_MSC_VER) |
1618 | | #pragma warning(push) |
1619 | | #pragma warning(disable:5272) |
1620 | | #endif |
1621 | | throw(bad_expected_access<E>(std::move(error()))); |
1622 | | #if defined(_MSC_VER) |
1623 | | #pragma warning(pop) |
1624 | | #endif |
1625 | | } |
1626 | | return std::move(impl_base::val()); |
1627 | | } |
1628 | 20.7M | constexpr lvalue_reference_type value() & { |
1629 | 20.7M | if (!has_value()) { |
1630 | 0 | throw(bad_expected_access<E>(error())); |
1631 | 0 | } |
1632 | 20.7M | return impl_base::val(); |
1633 | 20.7M | } Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::value() & cxx20::expected<unsigned int, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 1.06M | constexpr lvalue_reference_type value() & { | 1629 | 1.06M | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 1.06M | return impl_base::val(); | 1633 | 1.06M | } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::value() & cxx20::expected<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 3.80k | constexpr lvalue_reference_type value() & { | 1629 | 3.80k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 3.80k | return impl_base::val(); | 1633 | 3.80k | } |
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, WasmEdge::ErrCode>::value() & cxx20::expected<unsigned char, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 8.77M | constexpr lvalue_reference_type value() & { | 1629 | 8.77M | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 8.77M | return impl_base::val(); | 1633 | 8.77M | } |
Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::value() & cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 788k | constexpr lvalue_reference_type value() & { | 1629 | 788k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 788k | return impl_base::val(); | 1633 | 788k | } |
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 44.8k | constexpr lvalue_reference_type value() & { | 1629 | 44.8k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 44.8k | return impl_base::val(); | 1633 | 44.8k | } |
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 44.8k | constexpr lvalue_reference_type value() & { | 1629 | 44.8k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 44.8k | return impl_base::val(); | 1633 | 44.8k | } |
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 101k | constexpr lvalue_reference_type value() & { | 1629 | 101k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 101k | return impl_base::val(); | 1633 | 101k | } |
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 128k | constexpr lvalue_reference_type value() & { | 1629 | 128k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 128k | return impl_base::val(); | 1633 | 128k | } |
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 8.55k | constexpr lvalue_reference_type value() & { | 1629 | 8.55k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 8.55k | return impl_base::val(); | 1633 | 8.55k | } |
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 8.63M | constexpr lvalue_reference_type value() & { | 1629 | 8.63M | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 8.63M | return impl_base::val(); | 1633 | 8.63M | } |
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::value() & Line | Count | Source | 1628 | 290k | constexpr lvalue_reference_type value() & { | 1629 | 290k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 290k | return impl_base::val(); | 1633 | 290k | } |
Unexecuted instantiation: cxx20::expected<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::value() & cxx20::expected<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 9.19k | constexpr lvalue_reference_type value() & { | 1629 | 9.19k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 9.19k | return impl_base::val(); | 1633 | 9.19k | } |
Unexecuted instantiation: cxx20::expected<std::__1::optional<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::optional<std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >, WasmEdge::ErrCode>::value() & cxx20::expected<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 9.82k | constexpr lvalue_reference_type value() & { | 1629 | 9.82k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 9.82k | return impl_base::val(); | 1633 | 9.82k | } |
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 26.9k | constexpr lvalue_reference_type value() & { | 1629 | 26.9k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 26.9k | return impl_base::val(); | 1633 | 26.9k | } |
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 3.96k | constexpr lvalue_reference_type value() & { | 1629 | 3.96k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 3.96k | return impl_base::val(); | 1633 | 3.96k | } |
cxx20::expected<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::value() & Line | Count | Source | 1628 | 808k | constexpr lvalue_reference_type value() & { | 1629 | 808k | if (!has_value()) { | 1630 | 0 | throw(bad_expected_access<E>(error())); | 1631 | 0 | } | 1632 | 808k | return impl_base::val(); | 1633 | 808k | } |
Unexecuted instantiation: cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::value() & Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::INode, __wasi_errno_t>::value() & Unexecuted instantiation: cxx20::expected<std::__1::vector<char, std::__1::allocator<char> >, __wasi_errno_t>::value() & Unexecuted instantiation: cxx20::expected<int, WasmEdge::ErrCode>::value() & |
1634 | | constexpr rvalue_reference_type value() && { |
1635 | | if (!has_value()) { |
1636 | | #if defined(_MSC_VER) |
1637 | | #pragma warning(push) |
1638 | | #pragma warning(disable:5272) |
1639 | | #endif |
1640 | | throw(bad_expected_access<E>(std::move(error()))); |
1641 | | #if defined(_MSC_VER) |
1642 | | #pragma warning(pop) |
1643 | | #endif |
1644 | | } |
1645 | | return std::move(impl_base::val()); |
1646 | | } |
1647 | | |
1648 | | template <class U> constexpr T value_or(U &&v) const &noexcept { |
1649 | | static_assert(!is_copy_constructible_v<T> || is_convertible_v<U, T>, |
1650 | | "T must be copy-constructible and convertible to from U"); |
1651 | | return bool(*this) ? **this : static_cast<T>(std::forward<U>(v)); |
1652 | | } |
1653 | | template <class U> constexpr T value_or(U &&v) &&noexcept { |
1654 | | static_assert(!is_move_constructible_v<T> || is_convertible_v<U, T>, |
1655 | | "T must be move-constructible and convertible to from U"); |
1656 | | return bool(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(v)); |
1657 | | } |
1658 | | |
1659 | | // extensions |
1660 | | template <class F> constexpr auto and_then(F &&f) & { |
1661 | | return detail::expected_and_then_impl(*this, std::forward<F>(f)); |
1662 | | } |
1663 | 38.6k | template <class F> constexpr auto and_then(F &&f) && { |
1664 | 38.6k | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); |
1665 | 38.6k | } Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompile::$_0::operator()() const::{lambda()#1}>(WasmEdge_CompilerCompile::$_0::operator()() const::{lambda()#1}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#1}>(WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#2}>(WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#2}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompile::$_0::operator()() const::{lambda()#2}>(WasmEdge_CompilerCompile::$_0::operator()() const::{lambda()#2}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#3}>(WasmEdge_CompilerCompile::$_0::operator()() const::{lambda(auto:1)#3}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda(auto:1)#1}>(WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda()#1}>(WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda()#1}&&) && Unexecuted instantiation: wasmedge.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::and_then<WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda(auto:1)#2}>(WasmEdge_CompilerCompileFromBytes::$_0::operator()() const::{lambda(auto:1)#2}&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<void, WasmEdge::ErrCode::Value>::and_then<WasmEdge::VM::VM::unsafeInstantiate()::$_1>(WasmEdge::VM::VM::unsafeInstantiate()::$_1&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::and_then<WasmEdge::VM::VM::unsafeInstantiate()::$_3>(WasmEdge::VM::VM::unsafeInstantiate()::$_3&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::and_then<WasmEdge::VM::VM::unsafeInstantiate()::$_5>(WasmEdge::VM::VM::unsafeInstantiate()::$_5&&) && segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_0>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_0&&) && Line | Count | Source | 1663 | 926 | template <class F> constexpr auto and_then(F &&f) && { | 1664 | 926 | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); | 1665 | 926 | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_1>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_1&&) && Line | Count | Source | 1663 | 926 | template <class F> constexpr auto and_then(F &&f) && { | 1664 | 926 | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); | 1665 | 926 | } |
segment.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_4>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_4&&) && Line | Count | Source | 1663 | 2.06k | template <class F> constexpr auto and_then(F &&f) && { | 1664 | 2.06k | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); | 1665 | 2.06k | } |
expression.cpp:auto cxx20::expected<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Loader::loadExpression(WasmEdge::AST::Expression&, std::__1::optional<unsigned long>)::$_1>(WasmEdge::Loader::Loader::loadExpression(WasmEdge::AST::Expression&, std::__1::optional<unsigned long>)::$_1&&) && Line | Count | Source | 1663 | 34.7k | template <class F> constexpr auto and_then(F &&f) && { | 1664 | 34.7k | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); | 1665 | 34.7k | } |
Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_1>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_1&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_1>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_1&&) && Unexecuted instantiation: engine.cpp:auto cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::runFunction(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::FunctionInstance const&, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>)::$_0>(WasmEdge::Executor::Executor::runFunction(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::FunctionInstance const&, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>)::$_0&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::runTableGetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_1>(WasmEdge::Executor::Executor::runTableGetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_1&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::runTableCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runTableCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && |
1666 | | template <class F> constexpr auto and_then(F &&f) const & { |
1667 | | return detail::expected_and_then_impl(*this, std::forward<F>(f)); |
1668 | | } |
1669 | | template <class F> constexpr auto and_then(F &&f) const && { |
1670 | | return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f)); |
1671 | | } |
1672 | | |
1673 | | template <class F> constexpr auto or_else(F &&f) & { |
1674 | | return detail::expected_or_else_impl(*this, std::forward<F>(f)); |
1675 | | } |
1676 | | template <class F> constexpr auto or_else(F &&f) && { |
1677 | | return detail::expected_or_else_impl(std::move(*this), std::forward<F>(f)); |
1678 | | } |
1679 | | template <class F> constexpr auto or_else(F &&f) const & { |
1680 | | return detail::expected_or_else_impl(*this, std::forward<F>(f)); |
1681 | | } |
1682 | | template <class F> constexpr auto or_else(F &&f) const && { |
1683 | | return detail::expected_or_else_impl(std::move(*this), std::forward<F>(f)); |
1684 | | } |
1685 | | |
1686 | | template <class F> constexpr auto map(F &&f) & { |
1687 | | return detail::expected_map_impl(*this, std::forward<F>(f)); |
1688 | | } |
1689 | 2.38M | template <class F> constexpr auto map(F &&f) && { |
1690 | 2.38M | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); |
1691 | 2.38M | } description.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_1>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_1&&) && Line | Count | Source | 1689 | 11.2k | template <class F> constexpr auto map(F &&f) && { | 1690 | 11.2k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 11.2k | } |
description.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_2>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_2&&) && Line | Count | Source | 1689 | 11.1k | template <class F> constexpr auto map(F &&f) && { | 1690 | 11.1k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 11.1k | } |
description.cpp:auto cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_3>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_3&&) && Line | Count | Source | 1689 | 11.1k | template <class F> constexpr auto map(F &&f) && { | 1690 | 11.1k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 11.1k | } |
description.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_4>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_4&&) && Line | Count | Source | 1689 | 3.04k | template <class F> constexpr auto map(F &&f) && { | 1690 | 3.04k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 3.04k | } |
description.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_1>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_1&&) && Line | Count | Source | 1689 | 21.8k | template <class F> constexpr auto map(F &&f) && { | 1690 | 21.8k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 21.8k | } |
description.cpp:auto cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_2>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_2&&) && Line | Count | Source | 1689 | 21.8k | template <class F> constexpr auto map(F &&f) && { | 1690 | 21.8k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 21.8k | } |
description.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_3>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_3&&) && Line | Count | Source | 1689 | 21.8k | template <class F> constexpr auto map(F &&f) && { | 1690 | 21.8k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 21.8k | } |
Unexecuted instantiation: segment.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_1>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_1&&) && segment.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_2>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_2&&) && Line | Count | Source | 1689 | 1.09k | template <class F> constexpr auto map(F &&f) && { | 1690 | 1.09k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 1.09k | } |
segment.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_1>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_1&&) && Line | Count | Source | 1689 | 22.4k | template <class F> constexpr auto map(F &&f) && { | 1690 | 22.4k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 22.4k | } |
segment.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_1>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_1&&) && Line | Count | Source | 1689 | 829 | template <class F> constexpr auto map(F &&f) && { | 1690 | 829 | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 829 | } |
segment.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_3>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_3&&) && Line | Count | Source | 1689 | 3.76k | template <class F> constexpr auto map(F &&f) && { | 1690 | 3.76k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 3.76k | } |
instruction.cpp:auto cxx20::expected<int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_1>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_1&&) && Line | Count | Source | 1689 | 1.92M | template <class F> constexpr auto map(F &&f) && { | 1690 | 1.92M | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 1.92M | } |
instruction.cpp:auto cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_2>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_2&&) && Line | Count | Source | 1689 | 244k | template <class F> constexpr auto map(F &&f) && { | 1690 | 244k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 244k | } |
instruction.cpp:auto cxx20::expected<float, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_3>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_3&&) && Line | Count | Source | 1689 | 35.2k | template <class F> constexpr auto map(F &&f) && { | 1690 | 35.2k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 35.2k | } |
instruction.cpp:auto cxx20::expected<double, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_4>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_4&&) && Line | Count | Source | 1689 | 15.4k | template <class F> constexpr auto map(F &&f) && { | 1690 | 15.4k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 15.4k | } |
instruction.cpp:auto cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_5>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_5&&) && Line | Count | Source | 1689 | 34.1k | template <class F> constexpr auto map(F &&f) && { | 1690 | 34.1k | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); | 1691 | 34.1k | } |
Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<signed char, short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<signed char, short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned char, unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned char, unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<short, int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<short, int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned short, unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned short, unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<int, long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<int, long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned int, unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned int, unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda()#1}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runAtomicWaitOp<int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#2}>(WasmEdge::Executor::Executor::runAtomicWaitOp<int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map<WasmEdge::Executor::Executor::runAtomicWaitOp<long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#2}>(WasmEdge::Executor::Executor::runAtomicWaitOp<long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#2}&&) && |
1692 | | template <class F> constexpr auto map(F &&f) const & { |
1693 | | return detail::expected_map_impl(*this, std::forward<F>(f)); |
1694 | | } |
1695 | | template <class F> constexpr auto map(F &&f) const && { |
1696 | | return detail::expected_map_impl(std::move(*this), std::forward<F>(f)); |
1697 | | } |
1698 | | |
1699 | | template <class F> constexpr auto map_error(F &&f) & { |
1700 | | return detail::expected_map_error_impl(*this, std::forward<F>(f)); |
1701 | | } |
1702 | 14.5M | template <class F> constexpr auto map_error(F &&f) && { |
1703 | 14.5M | return detail::expected_map_error_impl(std::move(*this), |
1704 | 14.5M | std::forward<F>(f)); |
1705 | 14.5M | } Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::vector<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ValType> > >, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeExecute(WasmEdge::Runtime::Instance::ComponentInstance const*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, cxx20::span<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> > const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0>(WasmEdge::VM::VM::unsafeExecute(WasmEdge::Runtime::Instance::ComponentInstance const*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, cxx20::span<std::__1::variant<unsigned char, unsigned short, unsigned int, unsigned long, signed char, short, int, long, float, double, bool, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::shared_ptr<WasmEdge::ValComp>, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> > const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeInstantiate()::$_0>(WasmEdge::VM::VM::unsafeInstantiate()::$_0&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeInstantiate()::$_2>(WasmEdge::VM::VM::unsafeInstantiate()::$_2&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeInstantiate()::$_4>(WasmEdge::VM::VM::unsafeInstantiate()::$_4&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeInstantiate()::$_6>(WasmEdge::VM::VM::unsafeInstantiate()::$_6&&) && Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeExecute(WasmEdge::Runtime::Instance::ModuleInstance const*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0>(WasmEdge::VM::VM::unsafeExecute(WasmEdge::Runtime::Instance::ModuleInstance const*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0&&) && module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadModule(WasmEdge::AST::Module&, std::__1::optional<unsigned long>)::$_0&>(WasmEdge::Loader::Loader::loadModule(WasmEdge::AST::Module&, std::__1::optional<unsigned long>)::$_0&) && Line | Count | Source | 1702 | 65.9k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 65.9k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 65.9k | std::forward<F>(f)); | 1705 | 65.9k | } |
Unexecuted instantiation: module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadUniversalWASM(WasmEdge::AST::Module&)::$_0>(WasmEdge::Loader::Loader::loadUniversalWASM(WasmEdge::AST::Module&)::$_0&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_0>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_0&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_1>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_1&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_2>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_2&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_3>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_3&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_4>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_4&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_5>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_5&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_6>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_6&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_7>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_7&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_8>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_8&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_9>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_9&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_10>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_10&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_11>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_11&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_12>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_12&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_13>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_13&&) && Unexecuted instantiation: section.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_14>(WasmEdge::Loader::Loader::loadSection(WasmEdge::FileMgr&, WasmEdge::AST::AOTSection&)::$_14&&) && section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::CustomSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0>(WasmEdge::AST::CustomSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::CustomSection&&) && Line | Count | Source | 1702 | 45.0k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 45.0k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 45.0k | std::forward<F>(f)); | 1705 | 45.0k | } |
section.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Line | Count | Source | 1702 | 45.0k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 45.0k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 45.0k | std::forward<F>(f)); | 1705 | 45.0k | } |
section.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CustomSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Line | Count | Source | 1702 | 44.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 44.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 44.8k | std::forward<F>(f)); | 1705 | 44.8k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::TypeSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0>(WasmEdge::AST::TypeSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::TypeSection&&) && Line | Count | Source | 1702 | 4.55k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.55k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.55k | std::forward<F>(f)); | 1705 | 4.55k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Line | Count | Source | 1702 | 4.53k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.53k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.53k | std::forward<F>(f)); | 1705 | 4.53k | } |
section.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Line | Count | Source | 1702 | 8.48k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.48k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.48k | std::forward<F>(f)); | 1705 | 8.48k | } |
Unexecuted instantiation: section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#2}&&) && section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#3}>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TypeSection&)::$_0::operator()() const::{lambda(auto:1)#3}&&) && Line | Count | Source | 1702 | 8.46k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.46k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.46k | std::forward<F>(f)); | 1705 | 8.46k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::ImportSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ImportSection&)::$_0>(WasmEdge::AST::ImportSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ImportSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::ImportSection&&) && Line | Count | Source | 1702 | 279 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 279 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 279 | std::forward<F>(f)); | 1705 | 279 | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ImportSectionENS8_10ImportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 258 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 258 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 258 | std::forward<F>(f)); | 1705 | 258 | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ImportSectionENS8_10ImportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 11.2k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 11.2k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 11.2k | std::forward<F>(f)); | 1705 | 11.2k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::FunctionSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::FunctionSection&)::$_0>(WasmEdge::AST::FunctionSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::FunctionSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::FunctionSection&&) && Line | Count | Source | 1702 | 4.36k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.36k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.36k | std::forward<F>(f)); | 1705 | 4.36k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EENS0_IvS2_EERNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E_EEDaOSO_ Line | Count | Source | 1702 | 4.34k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.34k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.34k | std::forward<F>(f)); | 1705 | 4.34k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::FunctionSection&)::$_0::operator()() const::{lambda(unsigned int&)#1}::operator()(unsigned int&) const::{lambda(auto:1)#1}>({lambda(unsigned int&)#1}&&) && Line | Count | Source | 1702 | 36.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 36.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 36.4k | std::forward<F>(f)); | 1705 | 36.4k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EES3_RNSt3__16vectorIT0_NSE_9allocatorISG_EEEEOT1_EUlT_E0_EEDaOSN_ Line | Count | Source | 1702 | 36.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 36.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 36.4k | std::forward<F>(f)); | 1705 | 36.4k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::TableSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TableSection&)::$_0>(WasmEdge::AST::TableSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TableSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::TableSection&&) && Line | Count | Source | 1702 | 443 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 443 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 443 | std::forward<F>(f)); | 1705 | 443 | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST12TableSectionENS8_12TableSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 427 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 427 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 427 | std::forward<F>(f)); | 1705 | 427 | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST12TableSectionENS8_12TableSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 580 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 580 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 580 | std::forward<F>(f)); | 1705 | 580 | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::MemorySection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::MemorySection&)::$_0>(WasmEdge::AST::MemorySection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::MemorySection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::MemorySection&&) && Line | Count | Source | 1702 | 1.53k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.53k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.53k | std::forward<F>(f)); | 1705 | 1.53k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13MemorySectionENS8_10MemoryTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 1.51k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.51k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.51k | std::forward<F>(f)); | 1705 | 1.51k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13MemorySectionENS8_10MemoryTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 2.88k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 2.88k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 2.88k | std::forward<F>(f)); | 1705 | 2.88k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::GlobalSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::GlobalSection&)::$_0>(WasmEdge::AST::GlobalSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::GlobalSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::GlobalSection&&) && Line | Count | Source | 1702 | 683 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 683 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 683 | std::forward<F>(f)); | 1705 | 683 | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13GlobalSectionENS8_13GlobalSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 666 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 666 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 666 | std::forward<F>(f)); | 1705 | 666 | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13GlobalSectionENS8_13GlobalSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 926 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 926 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 926 | std::forward<F>(f)); | 1705 | 926 | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::ExportSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ExportSection&)::$_0>(WasmEdge::AST::ExportSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ExportSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::ExportSection&&) && Line | Count | Source | 1702 | 1.25k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.25k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.25k | std::forward<F>(f)); | 1705 | 1.25k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ExportSectionENS8_10ExportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 1.23k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.23k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.23k | std::forward<F>(f)); | 1705 | 1.23k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ExportSectionENS8_10ExportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 21.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 21.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 21.8k | std::forward<F>(f)); | 1705 | 21.8k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::StartSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0>(WasmEdge::AST::StartSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::StartSection&&) && Line | Count | Source | 1702 | 46 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 46 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 46 | std::forward<F>(f)); | 1705 | 46 | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0::operator()() const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0::operator()() const::{lambda(auto:1)#1}&&) && Line | Count | Source | 1702 | 28 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 28 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 28 | std::forward<F>(f)); | 1705 | 28 | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::ElementSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ElementSection&)::$_0>(WasmEdge::AST::ElementSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::ElementSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::ElementSection&&) && Line | Count | Source | 1702 | 1.43k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.43k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.43k | std::forward<F>(f)); | 1705 | 1.43k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST14ElementSectionENS8_14ElementSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 1.41k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.41k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.41k | std::forward<F>(f)); | 1705 | 1.41k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST14ElementSectionENS8_14ElementSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 6.27k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 6.27k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 6.27k | std::forward<F>(f)); | 1705 | 6.27k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::CodeSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CodeSection&)::$_0>(WasmEdge::AST::CodeSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::CodeSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::CodeSection&&) && Line | Count | Source | 1702 | 4.58k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.58k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.58k | std::forward<F>(f)); | 1705 | 4.58k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11CodeSectionENS8_11CodeSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 4.57k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.57k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.57k | std::forward<F>(f)); | 1705 | 4.57k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11CodeSectionENS8_11CodeSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 22.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 22.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 22.4k | std::forward<F>(f)); | 1705 | 22.4k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::DataSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataSection&)::$_0>(WasmEdge::AST::DataSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::DataSection&&) && Line | Count | Source | 1702 | 1.59k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.59k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.59k | std::forward<F>(f)); | 1705 | 1.59k | } |
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11DataSectionENS8_11DataSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Line | Count | Source | 1702 | 1.56k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.56k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.56k | std::forward<F>(f)); | 1705 | 1.56k | } |
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11DataSectionENS8_11DataSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ Line | Count | Source | 1702 | 5.12k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 5.12k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 5.12k | std::forward<F>(f)); | 1705 | 5.12k | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::DataCountSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataCountSection&)::$_0>(WasmEdge::AST::DataCountSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataCountSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::DataCountSection&&) && Line | Count | Source | 1702 | 99 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 99 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 99 | std::forward<F>(f)); | 1705 | 99 | } |
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataCountSection&)::$_0::operator()() const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::DataCountSection&)::$_0::operator()() const::{lambda(auto:1)#1}&&) && Line | Count | Source | 1702 | 85 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 85 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 85 | std::forward<F>(f)); | 1705 | 85 | } |
Unexecuted instantiation: section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::TagSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TagSection&)::$_0>(WasmEdge::AST::TagSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::TagSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::TagSection&&) && Unexecuted instantiation: section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST10TagSectionENS8_7TagTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_ Unexecuted instantiation: section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST10TagSectionENS8_7TagTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_ description.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&) && Line | Count | Source | 1702 | 22.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 22.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 22.4k | std::forward<F>(f)); | 1705 | 22.4k | } |
description.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&) && Line | Count | Source | 1702 | 11.1k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 11.1k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 11.1k | std::forward<F>(f)); | 1705 | 11.1k | } |
description.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ImportDesc&)::$_0&) && Line | Count | Source | 1702 | 3.04k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.04k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.04k | std::forward<F>(f)); | 1705 | 3.04k | } |
description.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&) && Line | Count | Source | 1702 | 21.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 21.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 21.8k | std::forward<F>(f)); | 1705 | 21.8k | } |
description.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&) && Line | Count | Source | 1702 | 21.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 21.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 21.8k | std::forward<F>(f)); | 1705 | 21.8k | } |
description.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&) && Line | Count | Source | 1702 | 21.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 21.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 21.8k | std::forward<F>(f)); | 1705 | 21.8k | } |
segment.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_0>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_0&&) && Line | Count | Source | 1702 | 580 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 580 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 580 | std::forward<F>(f)); | 1705 | 580 | } |
Unexecuted instantiation: segment.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_1>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_1&&) && Unexecuted instantiation: segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_2>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_2&&) && Unexecuted instantiation: segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_3>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_3&&) && segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_4>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::TableSegment&)::$_4&&) && Line | Count | Source | 1702 | 571 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 571 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 571 | std::forward<F>(f)); | 1705 | 571 | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_2>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::GlobalSegment&)::$_2&&) && Line | Count | Source | 1702 | 926 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 926 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 926 | std::forward<F>(f)); | 1705 | 926 | } |
segment.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_0&>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_0&) && Line | Count | Source | 1702 | 11.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 11.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 11.4k | std::forward<F>(f)); | 1705 | 11.4k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_3>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_3&&) && Line | Count | Source | 1702 | 4.87k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 4.87k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 4.87k | std::forward<F>(f)); | 1705 | 4.87k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_0&>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_0&) && Line | Count | Source | 1702 | 2.06k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 2.06k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 2.06k | std::forward<F>(f)); | 1705 | 2.06k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_5>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_5&&) && Line | Count | Source | 1702 | 10.6k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 10.6k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 10.6k | std::forward<F>(f)); | 1705 | 10.6k | } |
segment.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_0&>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_0&) && Line | Count | Source | 1702 | 48.2k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 48.2k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 48.2k | std::forward<F>(f)); | 1705 | 48.2k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_2>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::CodeSegment&)::$_2&&) && Line | Count | Source | 1702 | 22.3k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 22.3k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 22.3k | std::forward<F>(f)); | 1705 | 22.3k | } |
segment.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_0&>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_0&) && Line | Count | Source | 1702 | 9.72k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 9.72k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 9.72k | std::forward<F>(f)); | 1705 | 9.72k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_2>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_2&&) && Line | Count | Source | 1702 | 3.08k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.08k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.08k | std::forward<F>(f)); | 1705 | 3.08k | } |
segment.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_0&>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::DataSegment&)::$_0&) && Line | Count | Source | 1702 | 3.76k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.76k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.76k | std::forward<F>(f)); | 1705 | 3.76k | } |
segment.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::ElementSegment, WasmEdge::AST::Expression, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6>(std::__1::vector<WasmEdge::AST::Expression, std::__1::allocator<WasmEdge::AST::Expression> >&, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::ElementSegment, WasmEdge::AST::Expression, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6>(std::__1::vector<WasmEdge::AST::Expression, std::__1::allocator<WasmEdge::AST::Expression> >&, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6&&)::{lambda(auto:1)#1}&&) && Line | Count | Source | 1702 | 1.18k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.18k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.18k | std::forward<F>(f)); | 1705 | 1.18k | } |
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::ElementSegment, WasmEdge::AST::Expression, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6>(std::__1::vector<WasmEdge::AST::Expression, std::__1::allocator<WasmEdge::AST::Expression> >&, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::ElementSegment, WasmEdge::AST::Expression, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6>(std::__1::vector<WasmEdge::AST::Expression, std::__1::allocator<WasmEdge::AST::Expression> >&, WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_6&&)::{lambda(auto:1)#2}&&) && Line | Count | Source | 1702 | 3.57k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.57k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.57k | std::forward<F>(f)); | 1705 | 3.57k | } |
type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_0>(WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_0&&) && Line | Count | Source | 1702 | 8.46k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.46k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.46k | std::forward<F>(f)); | 1705 | 8.46k | } |
type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_0>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_0&&) && Line | Count | Source | 1702 | 3.81k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.81k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.81k | std::forward<F>(f)); | 1705 | 3.81k | } |
type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_1>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_1&&) && Line | Count | Source | 1702 | 3.77k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.77k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.77k | std::forward<F>(f)); | 1705 | 3.77k | } |
type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_2>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_2&&) && Line | Count | Source | 1702 | 1.39k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.39k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.39k | std::forward<F>(f)); | 1705 | 1.39k | } |
type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_0&&) && Line | Count | Source | 1702 | 8.46k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.46k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.46k | std::forward<F>(f)); | 1705 | 8.46k | } |
type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::MemoryType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::MemoryType&)::$_0&&) && Line | Count | Source | 1702 | 3.14k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.14k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.14k | std::forward<F>(f)); | 1705 | 3.14k | } |
type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TableType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TableType&)::$_0&&) && Line | Count | Source | 1702 | 674 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 674 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 674 | std::forward<F>(f)); | 1705 | 674 | } |
Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TagType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TagType&)::$_0&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TagType&)::$_1>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::TagType&)::$_1&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, WasmEdge::AST::FieldType, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1>(std::__1::vector<WasmEdge::AST::FieldType, std::__1::allocator<WasmEdge::AST::FieldType> >&, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, WasmEdge::AST::FieldType, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1>(std::__1::vector<WasmEdge::AST::FieldType, std::__1::allocator<WasmEdge::AST::FieldType> >&, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, WasmEdge::AST::FieldType, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1>(std::__1::vector<WasmEdge::AST::FieldType, std::__1::allocator<WasmEdge::AST::FieldType> >&, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, WasmEdge::AST::FieldType, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1>(std::__1::vector<WasmEdge::AST::FieldType, std::__1::allocator<WasmEdge::AST::FieldType> >&, WasmEdge::Loader::Loader::loadCompositeType(WasmEdge::AST::CompositeType&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, unsigned int, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, unsigned int, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1::operator()(unsigned int&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1::operator()(unsigned int&) const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, unsigned int, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::SubType, unsigned int, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::SubType&)::$_1&)::{lambda(auto:1)#2}&&) && type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::FunctionType, WasmEdge::ValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&>(std::__1::vector<WasmEdge::ValType, std::__1::allocator<WasmEdge::ValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::FunctionType, WasmEdge::ValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&>(std::__1::vector<WasmEdge::ValType, std::__1::allocator<WasmEdge::ValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&)::{lambda(auto:1)#1}&&) && Line | Count | Source | 1702 | 16.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 16.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 16.8k | std::forward<F>(f)); | 1705 | 16.8k | } |
type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::FunctionType, WasmEdge::ValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&>(std::__1::vector<WasmEdge::ValType, std::__1::allocator<WasmEdge::ValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::FunctionType, WasmEdge::ValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&>(std::__1::vector<WasmEdge::ValType, std::__1::allocator<WasmEdge::ValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::FunctionType&)::$_0&)::{lambda(auto:1)#2}&&) && Line | Count | Source | 1702 | 16.8k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 16.8k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 16.8k | std::forward<F>(f)); | 1705 | 16.8k | } |
expression.cpp:auto cxx20::expected<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExpression(WasmEdge::AST::Expression&, std::__1::optional<unsigned long>)::$_0>(WasmEdge::Loader::Loader::loadExpression(WasmEdge::AST::Expression&, std::__1::optional<unsigned long>)::$_0&&) && Line | Count | Source | 1702 | 34.7k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 34.7k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 34.7k | std::forward<F>(f)); | 1705 | 34.7k | } |
instruction.cpp:auto cxx20::expected<WasmEdge::OpCode, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstrSeq(std::__1::optional<unsigned long>)::$_0>(WasmEdge::Loader::Loader::loadInstrSeq(std::__1::optional<unsigned long>)::$_0&&) && Line | Count | Source | 1702 | 8.63M | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.63M | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.63M | std::forward<F>(f)); | 1705 | 8.63M | } |
instruction.cpp:auto cxx20::expected<long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&) && Line | Count | Source | 1702 | 290k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 290k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 290k | std::forward<F>(f)); | 1705 | 290k | } |
instruction.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 8.51k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 8.51k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 8.51k | std::forward<F>(f)); | 1705 | 8.51k | } |
instruction.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 34.1k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 34.1k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 34.1k | std::forward<F>(f)); | 1705 | 34.1k | } |
instruction.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&) && Line | Count | Source | 1702 | 589k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 589k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 589k | std::forward<F>(f)); | 1705 | 589k | } |
instruction.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0 const&) && Line | Count | Source | 1702 | 71.9k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 71.9k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 71.9k | std::forward<F>(f)); | 1705 | 71.9k | } |
Unexecuted instantiation: instruction.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Unexecuted instantiation: instruction.cpp:auto cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && instruction.cpp:auto cxx20::expected<int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 1.92M | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.92M | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.92M | std::forward<F>(f)); | 1705 | 1.92M | } |
instruction.cpp:auto cxx20::expected<long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 244k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 244k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 244k | std::forward<F>(f)); | 1705 | 244k | } |
instruction.cpp:auto cxx20::expected<float, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 35.2k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 35.2k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 35.2k | std::forward<F>(f)); | 1705 | 35.2k | } |
instruction.cpp:auto cxx20::expected<double, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&>(WasmEdge::Loader::Loader::loadInstruction(WasmEdge::AST::Instruction&)::$_0&) && Line | Count | Source | 1702 | 15.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 15.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 15.4k | std::forward<F>(f)); | 1705 | 15.4k | } |
Unexecuted instantiation: loader.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_0>(WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_0&&) && Unexecuted instantiation: loader.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&>(WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&) && Unexecuted instantiation: loader.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&>(WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&) && Unexecuted instantiation: loader.cpp:auto cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&>(WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&) && Unexecuted instantiation: loader.cpp:auto cxx20::expected<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&>(WasmEdge::Loader::Loader::parseWasmUnit(std::__1::__fs::filesystem::path const&)::$_1&) && Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadComponent(WasmEdge::AST::Component::Component&, std::__1::optional<unsigned long>)::$_0&>(WasmEdge::Loader::Loader::loadComponent(WasmEdge::AST::Component::Component&, std::__1::optional<unsigned long>)::$_0&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::CoreModuleSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0>(WasmEdge::AST::Component::CoreModuleSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreModuleSection&&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreModuleSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::CoreInstanceSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreInstanceSection&)::$_0>(WasmEdge::AST::Component::CoreInstanceSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreInstanceSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreInstanceSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component19CoreInstanceSectionENSt3__17variantIJNS9_15CoreInstantiateENS9_19InlineExportImplVecINS9_8CoreSortEEEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSH_E_EENS0_IvS2_EERNSB_6vectorIT0_NSB_9allocatorISO_EEEEOT1_EUlT_E_EEDaOSV_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component19CoreInstanceSectionENSt3__17variantIJNS9_15CoreInstantiateENS9_19InlineExportImplVecINS9_8CoreSortEEEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSH_E_EES3_RNSB_6vectorIT0_NSB_9allocatorISN_EEEEOT1_EUlT_E0_EEDaOSU_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::CoreTypeSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreTypeSection&)::$_0>(WasmEdge::AST::Component::CoreTypeSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CoreTypeSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreTypeSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15CoreTypeSectionENSt3__17variantIJNS8_12FunctionTypeENS9_14CoreModuleTypeEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSF_E_EENS0_IvS2_EERNSB_6vectorIT0_NSB_9allocatorISM_EEEEOT1_EUlT_E_EEDaOST_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15CoreTypeSectionENSt3__17variantIJNS8_12FunctionTypeENS9_14CoreModuleTypeEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSF_E_EES3_RNSB_6vectorIT0_NSB_9allocatorISL_EEEEOT1_EUlT_E0_EEDaOSS_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::ComponentSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0>(WasmEdge::AST::Component::ComponentSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ComponentSection&&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<std::__1::pair<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0::operator()() const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ComponentSection&)::$_0::operator()() const::{lambda(auto:1)#1}&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::InstanceSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::InstanceSection&)::$_0>(WasmEdge::AST::Component::InstanceSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::InstanceSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::InstanceSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15InstanceSectionENSt3__17variantIJNS9_11InstantiateENS9_19InlineExportImplVecINSC_IJNS9_8CoreSortENS9_8SortCaseEEEEEEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSJ_E_EENS0_IvS2_EERNSB_6vectorIT0_NSB_9allocatorISQ_EEEEOT1_EUlT_E_EEDaOSX_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15InstanceSectionENSt3__17variantIJNS9_11InstantiateENS9_19InlineExportImplVecINSC_IJNS9_8CoreSortENS9_8SortCaseEEEEEEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSJ_E_EES3_RNSB_6vectorIT0_NSB_9allocatorISP_EEEEOT1_EUlT_E0_EEDaOSW_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::AliasSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::AliasSection&)::$_0>(WasmEdge::AST::Component::AliasSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::AliasSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::AliasSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12AliasSectionENS9_5AliasEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12AliasSectionENS9_5AliasEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::TypeSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::TypeSection&)::$_0>(WasmEdge::AST::Component::TypeSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::TypeSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::TypeSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component11TypeSectionENSt3__17variantIJNSC_IJNS9_11PrimValTypeENS9_8RecordTyENS9_9VariantTyENS9_6ListTyENS9_7TupleTyENS9_7FlagsTyENS9_6EnumTyENS9_8OptionTyENS9_8ResultTyENS9_5OwnTyENS9_8BorrowTyEEEENS9_8FuncTypeENS9_13ComponentTypeENS9_12InstanceTypeENS9_12ResourceTypeEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRST_E_EENS0_IvS2_EERNSB_6vectorIT0_NSB_9allocatorIS10_EEEEOT1_EUlT_E_EEDaOS17_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component11TypeSectionENSt3__17variantIJNSC_IJNS9_11PrimValTypeENS9_8RecordTyENS9_9VariantTyENS9_6ListTyENS9_7TupleTyENS9_7FlagsTyENS9_6EnumTyENS9_8OptionTyENS9_8ResultTyENS9_5OwnTyENS9_8BorrowTyEEEENS9_8FuncTypeENS9_13ComponentTypeENS9_12InstanceTypeENS9_12ResourceTypeEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRST_E_EES3_RNSB_6vectorIT0_NSB_9allocatorISZ_EEEEOT1_EUlT_E0_EEDaOS16_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::CanonSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CanonSection&)::$_0>(WasmEdge::AST::Component::CanonSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::CanonSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CanonSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12CanonSectionENSt3__17variantIJNS9_4LiftENS9_5LowerENS9_11ResourceNewENS9_12ResourceDropENS9_11ResourceRepEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSI_E_EENS0_IvS2_EERNSB_6vectorIT0_NSB_9allocatorISP_EEEEOT1_EUlT_E_EEDaOSW_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12CanonSectionENSt3__17variantIJNS9_4LiftENS9_5LowerENS9_11ResourceNewENS9_12ResourceDropENS9_11ResourceRepEEEEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSI_E_EES3_RNSB_6vectorIT0_NSB_9allocatorISO_EEEEOT1_EUlT_E0_EEDaOSV_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::StartSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::StartSection&)::$_0>(WasmEdge::AST::Component::StartSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::StartSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::StartSection&&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::StartSection&)::$_0::operator()() const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::StartSection&)::$_0::operator()() const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::ImportSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ImportSection&)::$_0>(WasmEdge::AST::Component::ImportSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ImportSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ImportSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ImportSectionENS9_6ImportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ImportSectionENS9_6ImportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_ Unexecuted instantiation: component_section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::Component::ExportSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ExportSection&)::$_0>(WasmEdge::AST::Component::ExportSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::Component::ExportSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ExportSection&&) && Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ExportSectionENS9_6ExportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_ Unexecuted instantiation: component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ExportSectionENS9_6ExportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_ Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_0&>(WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_0&>(WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&>(WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&>(WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&>(WasmEdge::Loader::Loader::loadCoreInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInlineExport(WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>&)::$_0>(WasmEdge::Loader::Loader::loadCoreInlineExport(WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>&)::$_0&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInlineExport(WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>&)::$_1>(WasmEdge::Loader::Loader::loadCoreInlineExport(WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>&)::$_1&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0&>(WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0&>(WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0>(WasmEdge::Loader::Loader::loadInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_0&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1>(WasmEdge::Loader::Loader::loadInstantiateArg(WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInlineExport(WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_0>(WasmEdge::Loader::Loader::loadInlineExport(WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_0&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInlineExport(WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_1>(WasmEdge::Loader::Loader::loadInlineExport(WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_1&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >, WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort>, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<WasmEdge::AST::Component::CoreSort> > >&, WasmEdge::Loader::Loader::loadCoreInstance(std::__1::variant<WasmEdge::AST::Component::CoreInstantiate, WasmEdge::AST::Component::InlineExportImplVec<WasmEdge::AST::Component::CoreSort> >&)::$_2&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, std::__1::allocator<WasmEdge::AST::Component::InstantiateArgImpl<WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >, WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2>(std::__1::vector<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >, std::__1::allocator<WasmEdge::AST::Component::InlineExportImpl<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > > >&, WasmEdge::Loader::Loader::loadInstance(std::__1::variant<WasmEdge::AST::Component::Instantiate, WasmEdge::AST::Component::InlineExportImplVec<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> > >&)::$_2&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_sort.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreSortIndex(WasmEdge::AST::Component::SortIndex<WasmEdge::AST::Component::CoreSort>&)::$_0>(WasmEdge::Loader::Loader::loadCoreSortIndex(WasmEdge::AST::Component::SortIndex<WasmEdge::AST::Component::CoreSort>&)::$_0&&) && Unexecuted instantiation: component_sort.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreSort(WasmEdge::AST::Component::CoreSort&)::$_0>(WasmEdge::Loader::Loader::loadCoreSort(WasmEdge::AST::Component::CoreSort&)::$_0&&) && Unexecuted instantiation: component_sort.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSortIndex(WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_0>(WasmEdge::Loader::Loader::loadSortIndex(WasmEdge::AST::Component::SortIndex<std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase> >&)::$_0&&) && Unexecuted instantiation: component_sort.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSort(std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase>&)::$_0>(WasmEdge::Loader::Loader::loadSort(std::__1::variant<WasmEdge::AST::Component::CoreSort, WasmEdge::AST::Component::SortCase>&)::$_0&&) && Unexecuted instantiation: component_alias.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&>(WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&) && Unexecuted instantiation: component_alias.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&>(WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&) && Unexecuted instantiation: component_alias.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&>(WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&) && Unexecuted instantiation: component_alias.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&>(WasmEdge::Loader::Loader::loadAliasTarget(std::__1::variant<WasmEdge::AST::Component::AliasTargetExport, WasmEdge::AST::Component::AliasTargetOuter>&)::$_0&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_0>(WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_0&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_1&>(WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_1&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_1&>(WasmEdge::Loader::Loader::loadCanonical(std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>&)::$_1&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_0>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_0&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_1>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_1&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_0>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_0&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonicalOption(std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>&)::$_0&>(WasmEdge::Loader::Loader::loadCanonicalOption(std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>&)::$_0&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonicalOption(std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>&)::$_0&>(WasmEdge::Loader::Loader::loadCanonicalOption(std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>&)::$_0&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lift&)::$_2&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_canonical.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<WasmEdge::AST::Component::Lift, WasmEdge::AST::Component::Lower, WasmEdge::AST::Component::ResourceNew, WasmEdge::AST::Component::ResourceDrop, WasmEdge::AST::Component::ResourceRep>, std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::StringEncoding, WasmEdge::AST::Component::Memory, WasmEdge::AST::Component::Realloc, WasmEdge::AST::Component::PostReturn> > >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Lower&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_start.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_0&>(WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_0&) && Unexecuted instantiation: component_start.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Start, unsigned int, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Start, unsigned int, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_start.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_0 const&>(WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_0 const&) && Unexecuted instantiation: component_start.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Start, unsigned int, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Start, unsigned int, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&>(std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, WasmEdge::Loader::Loader::loadStart(WasmEdge::AST::Component::Start&)::$_1&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::FunctionType, WasmEdge::AST::Component::CoreModuleType>&)::$_0>(WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::FunctionType, WasmEdge::AST::Component::CoreModuleType>&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::FunctionType, WasmEdge::AST::Component::CoreModuleType>&)::$_1&>(WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::FunctionType, WasmEdge::AST::Component::CoreModuleType>&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadModuleDecl(std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>&)::$_0>(WasmEdge::Loader::Loader::loadModuleDecl(std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadModuleDecl(std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>&)::$_1&>(WasmEdge::Loader::Loader::loadModuleDecl(std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_0>(WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_1>(WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_1&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>, WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::ResourceType>&)::$_0>(WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>, WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::ResourceType>&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>, WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::ResourceType>&)::$_1&>(WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>, WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::ResourceType>&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>&, unsigned char)::$_0&>(WasmEdge::Loader::Loader::loadType(std::__1::variant<WasmEdge::AST::Component::PrimValType, WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::ListTy, WasmEdge::AST::Component::TupleTy, WasmEdge::AST::Component::FlagsTy, WasmEdge::AST::Component::EnumTy, WasmEdge::AST::Component::OptionTy, WasmEdge::AST::Component::ResultTy, WasmEdge::AST::Component::OwnTy, WasmEdge::AST::Component::BorrowTy>&, unsigned char)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::OptionTy&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::OptionTy&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::OwnTy&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::OwnTy&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::BorrowTy&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::BorrowTy&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::LabelValType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::LabelValType&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::LabelValType&)::$_1>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::LabelValType&)::$_1&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)::$_0>(WasmEdge::Loader::Loader::loadType(std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCase(WasmEdge::AST::Component::Case&)::$_0&>(WasmEdge::Loader::Loader::loadCase(WasmEdge::AST::Component::Case&)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCase(WasmEdge::AST::Component::Case&)::$_0&>(WasmEdge::Loader::Loader::loadCase(WasmEdge::AST::Component::Case&)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_0>(WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadComponentDecl(std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >&)::$_0>(WasmEdge::Loader::Loader::loadComponentDecl(std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadComponentDecl(std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >&)::$_1&>(WasmEdge::Loader::Loader::loadComponentDecl(std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadImportDecl(WasmEdge::AST::Component::ImportDecl&)::$_0>(WasmEdge::Loader::Loader::loadImportDecl(WasmEdge::AST::Component::ImportDecl&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadImportDecl(WasmEdge::AST::Component::ImportDecl&)::$_1>(WasmEdge::Loader::Loader::loadImportDecl(WasmEdge::AST::Component::ImportDecl&)::$_1&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstanceDecl(std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>&)::$_0>(WasmEdge::Loader::Loader::loadInstanceDecl(std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstanceDecl(std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>&)::$_1&>(WasmEdge::Loader::Loader::loadInstanceDecl(std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::ExportDecl&)::$_0>(WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::ExportDecl&)::$_0&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::ExportDecl&)::$_1>(WasmEdge::Loader::Loader::loadExportDecl(WasmEdge::AST::Component::ExportDecl&)::$_1&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_1&>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_1&>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_1&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&>(WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&>(WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&>(WasmEdge::Loader::Loader::loadExternDesc(std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)::$_0&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreModuleType, std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreModuleType, std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreModuleType, std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreModuleType, std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1>(std::__1::vector<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::ImportDesc, std::__1::shared_ptr<WasmEdge::AST::Component::CoreType>, WasmEdge::AST::Component::Alias, WasmEdge::AST::Component::CoreExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreModuleType&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::RecordTy, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::RecordTy&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::Case, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::Case, std::__1::allocator<WasmEdge::AST::Component::Case> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::Case, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::Case, std::__1::allocator<WasmEdge::AST::Component::Case> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::Case, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::Case, std::__1::allocator<WasmEdge::AST::Component::Case> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, WasmEdge::AST::Component::Case, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0>(std::__1::vector<WasmEdge::AST::Component::Case, std::__1::allocator<WasmEdge::AST::Component::Case> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::allocator<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::allocator<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::allocator<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::allocator<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FlagsTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FlagsTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_0::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_0::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FlagsTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FlagsTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FlagsTy&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::EnumTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::EnumTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_0::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_0::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::EnumTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::EnumTy, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::EnumTy&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Case, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Case, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Case, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Case, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>&)>)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(std::__1::variant<std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType>, std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> > >&)::$_1&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> >, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::ImportDecl, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl>, std::__1::allocator<std::__1::variant<WasmEdge::AST::Component::CoreType, WasmEdge::AST::Component::Alias, std::__1::shared_ptr<WasmEdge::AST::Component::Type>, WasmEdge::AST::Component::ExportDecl> > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResourceType, unsigned int>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (unsigned int&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResourceType, unsigned int>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (unsigned int&)>)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResourceType, unsigned int>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (unsigned int&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResourceType, unsigned int>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (unsigned int&)>)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_0::operator()(unsigned int&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ResourceType&)::$_0::operator()(unsigned int&) const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: component_import.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadImport(WasmEdge::AST::Component::Import&)::$_0>(WasmEdge::Loader::Loader::loadImport(WasmEdge::AST::Component::Import&)::$_0&&) && Unexecuted instantiation: component_import.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadImport(WasmEdge::AST::Component::Import&)::$_1>(WasmEdge::Loader::Loader::loadImport(WasmEdge::AST::Component::Import&)::$_1&&) && Unexecuted instantiation: component_export.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExport(WasmEdge::AST::Component::Export&)::$_0>(WasmEdge::Loader::Loader::loadExport(WasmEdge::AST::Component::Export&)::$_0&&) && Unexecuted instantiation: component_export.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadExport(WasmEdge::AST::Component::Export&)::$_1>(WasmEdge::Loader::Loader::loadExport(WasmEdge::AST::Component::Export&)::$_1&&) && Unexecuted instantiation: auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)>)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> > >(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (std::__1::variant<WasmEdge::AST::Component::DescTypeIndex, std::__1::optional<unsigned int>, std::__1::variant<unsigned int, WasmEdge::AST::Component::PrimValType> >&)>)::{lambda(auto:1)#2}&&) && Unexecuted instantiation: serial_module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeModule(WasmEdge::AST::Module const&) const::$_1>(WasmEdge::Loader::Serializer::serializeModule(WasmEdge::AST::Module const&) const::$_1&&) && Unexecuted instantiation: serial_section.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSection(WasmEdge::AST::TypeSection const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeSection(WasmEdge::AST::TypeSection const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_2>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::TableSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_2&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_2>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::GlobalSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_2&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::ElementSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::ElementSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::CodeSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::CodeSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::DataSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeSegment(WasmEdge::AST::DataSegment const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeType(WasmEdge::AST::TableType const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeType(WasmEdge::AST::TableType const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeType(WasmEdge::AST::MemoryType const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeType(WasmEdge::AST::MemoryType const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && Unexecuted instantiation: serial_expression.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Serializer::serializeExpression(WasmEdge::AST::Expression const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0>(WasmEdge::Loader::Serializer::serializeExpression(WasmEdge::AST::Expression const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&) const::$_0&&) && validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_0&&) && Line | Count | Source | 1702 | 3.80k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.80k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.80k | std::forward<F>(f)); | 1705 | 3.80k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_1&&) && Line | Count | Source | 1702 | 3.80k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.80k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.80k | std::forward<F>(f)); | 1705 | 3.80k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_2>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_2&&) && Line | Count | Source | 1702 | 3.79k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.79k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.79k | std::forward<F>(f)); | 1705 | 3.79k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_3>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_3&&) && Line | Count | Source | 1702 | 3.78k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.78k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.78k | std::forward<F>(f)); | 1705 | 3.78k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_4>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_4&&) && Line | Count | Source | 1702 | 3.78k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.78k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.78k | std::forward<F>(f)); | 1705 | 3.78k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_5>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_5&&) && Line | Count | Source | 1702 | 3.75k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.75k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.75k | std::forward<F>(f)); | 1705 | 3.75k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_6>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_6&&) && Line | Count | Source | 1702 | 3.69k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.69k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.69k | std::forward<F>(f)); | 1705 | 3.69k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_7>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_7&&) && Line | Count | Source | 1702 | 3.69k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.69k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.69k | std::forward<F>(f)); | 1705 | 3.69k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_8>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_8&&) && Line | Count | Source | 1702 | 3.63k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.63k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.63k | std::forward<F>(f)); | 1705 | 3.63k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_9>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_9&&) && Line | Count | Source | 1702 | 3.61k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.61k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.61k | std::forward<F>(f)); | 1705 | 3.61k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_10>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_10&&) && Line | Count | Source | 1702 | 3.57k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.57k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.57k | std::forward<F>(f)); | 1705 | 3.57k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_11>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Module const&)::$_11&&) && Line | Count | Source | 1702 | 3.54k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 3.54k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 3.54k | std::forward<F>(f)); | 1705 | 3.54k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&)::$_0&&) && Line | Count | Source | 1702 | 6.74k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 6.74k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 6.74k | std::forward<F>(f)); | 1705 | 6.74k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&)::$_1&&) && Line | Count | Source | 1702 | 5.55k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 5.55k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 5.55k | std::forward<F>(f)); | 1705 | 5.55k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableType const&)::$_0&&) && Line | Count | Source | 1702 | 333 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 333 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 333 | std::forward<F>(f)); | 1705 | 333 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::MemoryType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::MemoryType const&)::$_0&&) && Line | Count | Source | 1702 | 1.45k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.45k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.45k | std::forward<F>(f)); | 1705 | 1.45k | } |
Unexecuted instantiation: validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSegment const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSegment const&)::$_0&&) && validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSegment const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSegment const&)::$_1&&) && Line | Count | Source | 1702 | 303 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 303 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 303 | std::forward<F>(f)); | 1705 | 303 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSegment const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSegment const&)::$_0&&) && Line | Count | Source | 1702 | 248 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 248 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 248 | std::forward<F>(f)); | 1705 | 248 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSegment const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSegment const&)::$_1&&) && Line | Count | Source | 1702 | 186 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 186 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 186 | std::forward<F>(f)); | 1705 | 186 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSegment const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSegment const&)::$_0&&) && Line | Count | Source | 1702 | 1.21k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.21k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.21k | std::forward<F>(f)); | 1705 | 1.21k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSegment const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSegment const&)::$_1&&) && Line | Count | Source | 1702 | 306 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 306 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 306 | std::forward<F>(f)); | 1705 | 306 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::CodeSegment const&, unsigned int)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::CodeSegment const&, unsigned int)::$_0&&) && Line | Count | Source | 1702 | 15.2k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 15.2k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 15.2k | std::forward<F>(f)); | 1705 | 15.2k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::DataSegment const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::DataSegment const&)::$_0&&) && Line | Count | Source | 1702 | 186 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 186 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 186 | std::forward<F>(f)); | 1705 | 186 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_0&&) && Line | Count | Source | 1702 | 30 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 30 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 30 | std::forward<F>(f)); | 1705 | 30 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_1&&) && Line | Count | Source | 1702 | 32 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 32 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 32 | std::forward<F>(f)); | 1705 | 32 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_2>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportDesc const&)::$_2&&) && Line | Count | Source | 1702 | 48 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 48 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 48 | std::forward<F>(f)); | 1705 | 48 | } |
Unexecuted instantiation: validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::TypeSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::TypeSection const&)::$_0&&) && validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ImportSection const&)::$_0&&) && Line | Count | Source | 1702 | 381 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 381 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 381 | std::forward<F>(f)); | 1705 | 381 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::TableSection const&)::$_0&&) && Line | Count | Source | 1702 | 303 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 303 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 303 | std::forward<F>(f)); | 1705 | 303 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::MemorySection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::MemorySection const&)::$_0&&) && Line | Count | Source | 1702 | 1.42k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.42k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.42k | std::forward<F>(f)); | 1705 | 1.42k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::GlobalSection const&)::$_0&&) && Line | Count | Source | 1702 | 248 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 248 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 248 | std::forward<F>(f)); | 1705 | 248 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ElementSection const&)::$_0&&) && Line | Count | Source | 1702 | 602 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 602 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 602 | std::forward<F>(f)); | 1705 | 602 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::CodeSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::CodeSection const&)::$_0&&) && Line | Count | Source | 1702 | 15.2k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 15.2k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 15.2k | std::forward<F>(f)); | 1705 | 15.2k | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::DataSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::DataSection const&)::$_0&&) && Line | Count | Source | 1702 | 367 | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 367 | return detail::expected_map_error_impl(std::move(*this), | 1704 | 367 | std::forward<F>(f)); | 1705 | 367 | } |
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::ExportSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::ExportSection const&)::$_0&&) && Line | Count | Source | 1702 | 14.4k | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 14.4k | return detail::expected_map_error_impl(std::move(*this), | 1704 | 14.4k | std::forward<F>(f)); | 1705 | 14.4k | } |
formchecker.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::FormChecker::checkInstrs(cxx20::span<WasmEdge::AST::Instruction const, 18446744073709551615ul>)::$_0>(WasmEdge::Validator::FormChecker::checkInstrs(cxx20::span<WasmEdge::AST::Instruction const, 18446744073709551615ul>)::$_0&&) && Line | Count | Source | 1702 | 1.83M | template <class F> constexpr auto map_error(F &&f) && { | 1703 | 1.83M | return detail::expected_map_error_impl(std::move(*this), | 1704 | 1.83M | std::forward<F>(f)); | 1705 | 1.83M | } |
Unexecuted instantiation: threadInstr.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runAtomicNotifyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runAtomicNotifyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStructGetOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&, bool) const::$_0>(WasmEdge::Executor::Executor::runStructGetOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&, bool) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStructSetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runStructSetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayNewDataOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayNewDataOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayNewElemOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayNewElemOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayGetOp(WasmEdge::Runtime::StackManager&, unsigned int, WasmEdge::AST::Instruction const&, bool) const::$_0>(WasmEdge::Executor::Executor::runArrayGetOp(WasmEdge::Runtime::StackManager&, unsigned int, WasmEdge::AST::Instruction const&, bool) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArraySetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArraySetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayFillOp(WasmEdge::Runtime::StackManager&, unsigned int, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayFillOp(WasmEdge::Runtime::StackManager&, unsigned int, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const&, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayCopyOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayCopyOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayInitDataOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayInitDataOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: refInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runArrayInitElemOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0>(WasmEdge::Executor::Executor::runArrayInitElemOp(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, unsigned int, WasmEdge::AST::Instruction const&) const::$_0&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned int, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned int, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned long, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned long, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<float, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<float, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<double, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<double, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned int, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned int, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned long, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned long, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<float, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<float, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<double, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<double, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned int, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned int, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned long, 8u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned long, 16u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned long, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 128u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 128u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<signed char, short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<signed char, short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned char, unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned char, unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<short, int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<short, int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned short, unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned short, unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<int, long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<int, long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadExpandOp<unsigned int, unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadExpandOp<unsigned int, unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadSplatOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadSplatOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 32u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadOp<unsigned __int128, 64u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreOp<unsigned __int128, 128u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreOp<unsigned __int128, 128u>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runLoadLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runLoadLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreLaneOp<unsigned char>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreLaneOp<unsigned short>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreLaneOp<unsigned int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runStoreLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runStoreLaneOp<unsigned long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runAtomicWaitOp<int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runAtomicWaitOp<int>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runAtomicWaitOp<long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::runAtomicWaitOp<long>(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::{lambda(auto:1)#1}&&) && Unexecuted instantiation: engine.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::execute(WasmEdge::Runtime::StackManager&, WasmEdge::AST::Instruction const*, WasmEdge::AST::Instruction const*)::$_0>(WasmEdge::Executor::Executor::execute(WasmEdge::Runtime::StackManager&, WasmEdge::AST::Instruction const*, WasmEdge::AST::Instruction const*)::$_0&&) && Unexecuted instantiation: executor.cpp:auto cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiateModule(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&)::$_0>(WasmEdge::Executor::Executor::instantiateModule(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&)::$_0&&) && Unexecuted instantiation: executor.cpp:auto cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::basic_string_view<char, std::__1::char_traits<char> >)::$_0>(WasmEdge::Executor::Executor::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::basic_string_view<char, std::__1::char_traits<char> >)::$_0&&) && Unexecuted instantiation: executor.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ModuleInstance const&)::$_0>(WasmEdge::Executor::Executor::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ModuleInstance const&)::$_0&&) && Unexecuted instantiation: executor.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::registerComponent(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ComponentInstance const&)::$_0>(WasmEdge::Executor::Executor::registerComponent(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ComponentInstance const&)::$_0&&) && Unexecuted instantiation: executor.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::invoke(WasmEdge::Runtime::Instance::FunctionInstance const*, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0>(WasmEdge::Executor::Executor::invoke(WasmEdge::Runtime::Instance::FunctionInstance const*, cxx20::span<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>)::$_0&&) && Unexecuted instantiation: module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()(WasmEdge::ASTNodeAttr) const::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()(WasmEdge::ASTNodeAttr) const::{lambda(auto:1)#1}&&) && Unexecuted instantiation: module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_1&>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Module const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_1&) && Unexecuted instantiation: instantiate_component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ComponentInstance&, WasmEdge::AST::Component::InstanceSection const&)::$_0::operator()<WasmEdge::AST::Component::Instantiate const&>(WasmEdge::AST::Component::Instantiate const&) const::{lambda(auto:1&&)#1}::operator()<WasmEdge::AST::Component::SortCase&>(WasmEdge::AST::Component::Instantiate const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::Instantiate const&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<WasmEdge::RefVariant, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runTableGetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runTableGetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runTableSetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runTableSetOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runTableInitOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::ElementInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runTableInitOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::ElementInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runTableCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_1>(WasmEdge::Executor::Executor::runTableCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_1&&) && Unexecuted instantiation: tableInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runTableFillOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runTableFillOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: memoryInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runMemoryInitOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::DataInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runMemoryInitOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::DataInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: memoryInstr.cpp:auto cxx20::expected<cxx20::span<unsigned char, 18446744073709551615ul>, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runMemoryCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runMemoryCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: memoryInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runMemoryCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_1>(WasmEdge::Executor::Executor::runMemoryCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_1&&) && Unexecuted instantiation: memoryInstr.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::runMemoryFillOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0>(WasmEdge::Executor::Executor::runMemoryFillOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::MemoryInstance&, WasmEdge::AST::Instruction const&)::$_0&&) && Unexecuted instantiation: global.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::GlobalSection const&)::$_0>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::GlobalSection const&)::$_0&&) && Unexecuted instantiation: table.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::TableSection const&)::$_0>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::TableSection const&)::$_0&&) && Unexecuted instantiation: elem.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::ElementSection const&)::$_0>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::ElementSection const&)::$_0&&) && Unexecuted instantiation: elem.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::ElementSection const&)::$_1>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::ElementSection const&)::$_1&&) && Unexecuted instantiation: elem.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::initTable(WasmEdge::Runtime::StackManager&, WasmEdge::AST::ElementSection const&)::$_0>(WasmEdge::Executor::Executor::initTable(WasmEdge::Runtime::StackManager&, WasmEdge::AST::ElementSection const&)::$_0&&) && Unexecuted instantiation: data.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::DataSection const&)::$_0>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::ModuleInstance&, WasmEdge::AST::DataSection const&)::$_0&&) && Unexecuted instantiation: data.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::initMemory(WasmEdge::Runtime::StackManager&, WasmEdge::AST::DataSection const&)::$_0>(WasmEdge::Executor::Executor::initMemory(WasmEdge::Runtime::StackManager&, WasmEdge::AST::DataSection const&)::$_0&&) && |
1706 | | template <class F> constexpr auto map_error(F &&f) const & { |
1707 | | return detail::expected_map_error_impl(*this, std::forward<F>(f)); |
1708 | | } |
1709 | | template <class F> constexpr auto map_error(F &&f) const && { |
1710 | | return detail::expected_map_error_impl(std::move(*this), |
1711 | | std::forward<F>(f)); |
1712 | | } |
1713 | | }; |
1714 | | |
1715 | | // 4.7, Expected equality operators |
1716 | | template <class T1, class E1, class T2, class E2> |
1717 | | constexpr bool operator==(const expected<T1, E1> &x, |
1718 | | const expected<T2, E2> &y) { |
1719 | | if (bool(x) != bool(y)) { |
1720 | | return false; |
1721 | | } |
1722 | | if (!bool(x)) { |
1723 | | return x.error() == y.error(); |
1724 | | } |
1725 | | if constexpr (is_void_v<T1> && is_void_v<T2>) { |
1726 | | return true; |
1727 | | } else { |
1728 | | return *x == *y; |
1729 | | } |
1730 | | } |
1731 | | template <class T1, class E1, class T2, class E2> |
1732 | | constexpr bool operator!=(const expected<T1, E1> &x, |
1733 | | const expected<T2, E2> &y) { |
1734 | | if (bool(x) != bool(y)) { |
1735 | | return true; |
1736 | | } |
1737 | | if (!bool(x)) { |
1738 | | return x.error() != y.error(); |
1739 | | } |
1740 | | if constexpr (is_void_v<T1> && is_void_v<T2>) { |
1741 | | return true; |
1742 | | } else { |
1743 | | return *x != *y; |
1744 | | } |
1745 | | } |
1746 | | |
1747 | | // 4.8, Comparison with T |
1748 | | template <class T1, class E1, class T2> |
1749 | | constexpr enable_if_t<!is_void_v<T1> && !is_void_v<T2>, bool> |
1750 | | operator==(const expected<T1, E1> &x, const T2 &v) { |
1751 | | return bool(x) ? *x == v : false; |
1752 | | } |
1753 | | template <class T1, class E1, class T2> |
1754 | | constexpr enable_if_t<!is_void_v<T1> && !is_void_v<T2>, bool> |
1755 | | operator==(const T2 &v, const expected<T1, E1> &x) { |
1756 | | return bool(x) ? *x == v : false; |
1757 | | } |
1758 | | template <class T1, class E1, class T2> |
1759 | | constexpr enable_if_t<!is_void_v<T1> && !is_void_v<T2>, bool> |
1760 | | operator!=(const expected<T1, E1> &x, const T2 &v) { |
1761 | | return bool(x) ? *x != v : false; |
1762 | | } |
1763 | | template <class T1, class E1, class T2> |
1764 | | constexpr enable_if_t<!is_void_v<T1> && !is_void_v<T2>, bool> |
1765 | | operator!=(const T2 &v, const expected<T1, E1> &x) { |
1766 | | return bool(x) ? *x != v : false; |
1767 | | } |
1768 | | |
1769 | | // 4.9, Comparison with unexpected<E> |
1770 | | template <class T1, class E1, class E2> |
1771 | | constexpr bool operator==(const expected<T1, E1> &x, const unexpected<E2> &e) { |
1772 | | return bool(x) ? false : x.error() == e.value(); |
1773 | | } |
1774 | | template <class T1, class E1, class E2> |
1775 | | constexpr bool operator==(const unexpected<E2> &e, const expected<T1, E1> &x) { |
1776 | | return bool(x) ? false : x.error() == e.value(); |
1777 | | } |
1778 | | template <class T1, class E1, class E2> |
1779 | | constexpr bool operator!=(const expected<T1, E1> &x, const unexpected<E2> &e) { |
1780 | | return bool(x) ? true : x.error() != e.value(); |
1781 | | } |
1782 | | template <class T1, class E1, class E2> |
1783 | | constexpr bool operator!=(const unexpected<E2> &e, const expected<T1, E1> &x) { |
1784 | | return bool(x) ? true : x.error() != e.value(); |
1785 | | } |
1786 | | |
1787 | | // 4.10, Specialized algorithms |
1788 | | template < |
1789 | | class T1, class E1, |
1790 | | enable_if_t<(is_void_v<T1> || (is_swappable_v<T1> && |
1791 | | (is_nothrow_move_constructible_v<T1> || |
1792 | | is_nothrow_move_constructible_v<E1>))) && |
1793 | | is_swappable_v<E1>> * = nullptr, |
1794 | | bool NoExcept = is_nothrow_swappable_v<T1> &&is_nothrow_swappable_v<E1> |
1795 | | &&is_nothrow_move_constructible_v<T1> |
1796 | | &&is_nothrow_move_constructible_v<E1>> |
1797 | | void swap(expected<T1, E1> &x, expected<T1, E1> &y) noexcept(NoExcept) { |
1798 | | x.swap(y); |
1799 | | } |
1800 | | template < |
1801 | | class T1, class E1, |
1802 | | enable_if_t<(!is_void_v<T1> && (!is_swappable_v<T1> || |
1803 | | (!is_nothrow_move_constructible_v<T1> && |
1804 | | !is_nothrow_move_constructible_v<E1>))) || |
1805 | | !is_swappable_v<E1>> * = nullptr> |
1806 | | void swap(expected<T1, E1> &x, expected<T1, E1> &y) = delete; |
1807 | | |
1808 | | template <class E1, enable_if_t<is_swappable_v<E1>> * = nullptr, |
1809 | | bool NoExcept = is_nothrow_swappable_v<E1>> |
1810 | | void swap(unexpected<E1> &x, unexpected<E1> &y) noexcept(NoExcept) { |
1811 | | x.swap(y); |
1812 | | } |
1813 | | template <class E1, enable_if_t<!is_swappable_v<E1>> * = nullptr> |
1814 | | void swap(unexpected<E1> &x, unexpected<E1> &y) = delete; |
1815 | | |
1816 | | } // namespace cxx20 |
1817 | | |
1818 | | #undef try |
1819 | | #undef catch |
1820 | | #undef throw |
1821 | | #undef throw_exception_again |
1822 | | #undef M_ENABLE_EXCEPTIONS |