Coverage Report

Created: 2025-07-23 06:30

/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
107M
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
17.3k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
fuzzPO.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
2.98M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
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.14M
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
189k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: func.cpp:cxx20::detail::likely(bool)
argument_parser.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
7.67M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
section.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
9.68M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
description.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
271k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
segment.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
321k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
type.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
267k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
expression.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
58.8k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
instruction.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
50.3M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
loader.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
39.6k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
15.8k
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
13.9M
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
12.3M
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.58M
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
3.94k
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.05k
  constexpr unexpected(const unexpected &) = default;
122
3.39k
  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
35.8k
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IJNS2_7ErrCodeENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEETnPNS7_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOSF_
Line
Count
Source
129
2.45k
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
129
5.00k
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Line
Count
Source
129
25.3k
      : 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.04k
      : 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
109k
      : m_val(std::forward<Err>(e)) {}
_ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IRS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS7_9is_same_vIS3_NS7_10in_place_tEEEEntL_ZNSA_IS3_S4_EEEEvE4typeELPv0ELb0EEEOS9_
Line
Count
Source
145
4.62k
      : m_val(std::forward<Err>(e)) {}
_ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS3_T_EntL_ZNS6_9is_same_vIS3_NS6_10in_place_tEEEEntL_ZNS9_IS3_S4_EEEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
145
2.07k
      : m_val(std::forward<Err>(e)) {}
_ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaaaa18is_constructible_vIS2_T_EntL_ZNS5_9is_same_vIS2_NS5_10in_place_tEEEEntL_ZNS8_IS2_S3_EEEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
145
57.8k
      : 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
4.73k
      : 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
39.5k
      : 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
350
      : 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
116k
  constexpr E &value() &noexcept { return m_val; }
Unexecuted instantiation: cxx20::unexpected<__wasi_errno_t>::value() &
cxx20::unexpected<WasmEdge::PO::Error>::value() &
Line
Count
Source
178
12.0k
  constexpr E &value() &noexcept { return m_val; }
cxx20::unexpected<WasmEdge::ErrCode>::value() &
Line
Count
Source
178
101k
  constexpr E &value() &noexcept { return m_val; }
cxx20::unexpected<cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
178
3.05k
  constexpr E &value() &noexcept { return m_val; }
Unexecuted instantiation: cxx20::unexpected<LLVMOpaqueError*>::value() &
Unexecuted instantiation: cxx20::unexpected<WasmEdge::LLVM::Error>::value() &
179
26.4k
  constexpr E &&value() &&noexcept { return std::move(m_val); }
cxx20::unexpected<WasmEdge::ErrCode>::value() &&
Line
Count
Source
179
26.1k
  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
338
  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
1.96M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge2PO5ErrorELb0ELb0EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_
Line
Count
Source
294
1.96M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
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
1.96M
      is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E>) {
321
1.96M
    if (m_has_val) {
322
1.96M
      destruct_value();
323
1.96M
    } else {
324
0
      destruct_error();
325
0
    }
326
1.96M
  }
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()
Line
Count
Source
320
1.96M
      is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E>) {
321
1.96M
    if (m_has_val) {
322
1.96M
      destruct_value();
323
1.96M
    } else {
324
0
      destruct_error();
325
0
    }
326
1.96M
  }
Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, false, false>::~expected_storage_base()
327
328
protected:
329
1.96M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
330
1.96M
    m_val.~T();
331
1.96M
  }
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()
Line
Count
Source
329
1.96M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
330
1.96M
    m_val.~T();
331
1.96M
  }
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
34.8M
      : 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.85M
      : 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
97.7k
      : 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
716k
      : 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
159k
      : 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
82.7k
      : 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
9.39k
      : 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
7.98M
      : 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
7.98M
      : 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
496k
      : 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
2.01M
      : 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
39.1k
      : 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
16.0k
      : 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
8.37M
      : 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
39.1k
      : 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
16.0k
      : 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
500k
      : 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
2.01M
      : 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
8.57k
      : 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
4.02k
      : 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.25M
      : 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
168k
      : 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
12.4k
      : 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
970
      : 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.14k
      : 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
626
      : 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
104
      : 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
237
      : 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
9
      : 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
1.87k
      : 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
1.87k
      : 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
152
      : 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
73
      : 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
8
      : 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
8
      : 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
161
      : 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
73
      : 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.06k
      : 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
6.05M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIbN8WasmEdge2PO5ErrorELb1ELb0EEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
411
1.58k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImN8WasmEdge2PO5ErrorELb1ELb0EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
411
66.1k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIiN8WasmEdge2PO5ErrorELb1ELb0EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
411
950k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
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_
_ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_
Line
Count
Source
411
3.27M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_
Line
Count
Source
411
1.75M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
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
5.00k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIbN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
425
383
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
425
756
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIiN8WasmEdge2PO5ErrorELb1ELb0EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
425
1.32k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
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_
_ZN5cxx206detail21expected_storage_baseIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS3_5ErrorELb1ELb0EEC2IJS7_ETnPNSt3__19enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_
Line
Count
Source
425
2.54k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
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
6.05M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
6.05M
    if (!m_has_val) {
438
5.00k
      destruct_error();
439
5.00k
    }
440
6.05M
  }
cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
1.96k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
1.96k
    if (!m_has_val) {
438
383
      destruct_error();
439
383
    }
440
1.96k
  }
cxx20::detail::expected_storage_base<unsigned long, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
66.9k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
66.9k
    if (!m_has_val) {
438
756
      destruct_error();
439
756
    }
440
66.9k
  }
cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
952k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
952k
    if (!m_has_val) {
438
1.32k
      destruct_error();
439
1.32k
    }
440
952k
  }
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()
cxx20::detail::expected_storage_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
5.03M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
5.03M
    if (!m_has_val) {
438
2.54k
      destruct_error();
439
2.54k
    }
440
5.03M
  }
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
5.00k
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
5.00k
    m_unex.~unexpected<E>();
446
5.00k
  }
cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
383
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
383
    m_unex.~unexpected<E>();
446
383
  }
cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
1.32k
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
1.32k
    m_unex.~unexpected<E>();
446
1.32k
  }
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()
cxx20::detail::expected_storage_base<unsigned long, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
756
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
756
    m_unex.~unexpected<E>();
446
756
  }
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()
cxx20::detail::expected_storage_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
2.54k
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
2.54k
    m_unex.~unexpected<E>();
446
2.54k
  }
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
369k
      : 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
62.5k
      : 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
84.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
46.7k
      : 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
52.6k
      : 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.44k
      : 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.44k
      : 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
7.88k
      : 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
84.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
23.2k
      : 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
1.97k
      : 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
15.9k
      : 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
28
      : 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
4.51k
      : 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
193
      : 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
5
      : 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
6.24k
      : 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
4.51k
      : 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
72
      : 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
193
      : 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
162
      : 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
385k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
385k
    if (m_has_val) {
497
369k
      destruct_value();
498
369k
    }
499
385k
  }
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
1.97k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
1.97k
    if (m_has_val) {
497
1.97k
      destruct_value();
498
1.97k
    }
499
1.97k
  }
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
7.96k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
7.96k
    if (m_has_val) {
497
3.44k
      destruct_value();
498
3.44k
    }
499
7.96k
  }
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
62.5k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
62.5k
    if (m_has_val) {
497
62.5k
      destruct_value();
498
62.5k
    }
499
62.5k
  }
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
7.96k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
7.96k
    if (m_has_val) {
497
3.44k
      destruct_value();
498
3.44k
    }
499
7.96k
  }
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
84.2k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
84.2k
    if (m_has_val) {
497
84.0k
      destruct_value();
498
84.0k
    }
499
84.2k
  }
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
46.7k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
46.7k
    if (m_has_val) {
497
46.7k
      destruct_value();
498
46.7k
    }
499
46.7k
  }
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
84.2k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
84.2k
    if (m_has_val) {
497
84.0k
      destruct_value();
498
84.0k
    }
499
84.2k
  }
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
58.8k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
58.8k
    if (m_has_val) {
497
52.6k
      destruct_value();
498
52.6k
    }
499
58.8k
  }
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
7.95k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
7.95k
    if (m_has_val) {
497
7.88k
      destruct_value();
498
7.88k
    }
499
7.95k
  }
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::~expected_storage_base()
Line
Count
Source
495
23.3k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
23.3k
    if (m_has_val) {
497
23.2k
      destruct_value();
498
23.2k
    }
499
23.3k
  }
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
369k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
369k
    m_val.~T();
504
369k
  }
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
1.97k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
1.97k
    m_val.~T();
504
1.97k
  }
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.44k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
3.44k
    m_val.~T();
504
3.44k
  }
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
62.5k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
62.5k
    m_val.~T();
504
62.5k
  }
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.44k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
3.44k
    m_val.~T();
504
3.44k
  }
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
84.0k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
84.0k
    m_val.~T();
504
84.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
46.7k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
46.7k
    m_val.~T();
504
46.7k
  }
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
84.0k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
84.0k
    m_val.~T();
504
84.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
52.6k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
52.6k
    m_val.~T();
504
52.6k
  }
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
7.88k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
7.88k
    m_val.~T();
504
7.88k
  }
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::destruct_value()
Line
Count
Source
502
23.2k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
23.2k
    m_val.~T();
504
23.2k
  }
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
2.98M
  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
2.07k
      : 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
2.98M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
540
2.98M
    if (!m_has_val) {
541
2.07k
      destruct_error();
542
2.07k
    }
543
2.98M
  }
544
545
protected:
546
  constexpr void destruct_value() noexcept {}
547
2.07k
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
548
2.07k
    m_unex.~unexpected<E>();
549
2.07k
  }
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
46.2M
  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
43.7M
  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.49M
  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
50.3k
      : 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
49.9k
      : 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
350
      : 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
62.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
cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::has_value() const
Line
Count
Source
600
1.96k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
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
62.5k
  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
7.96k
  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
1.97k
  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.99M
  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::PO::Error>::has_value() const
Line
Count
Source
600
1.96M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::has_value() const
Line
Count
Source
600
66.9k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::has_value() const
Line
Count
Source
600
952k
  constexpr bool has_value() const noexcept { return likely(base::m_has_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>::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
11.4k
  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
cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::has_value() const
Line
Count
Source
600
4.68M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
16.4M
  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
84.2k
  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.39M
  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
128k
  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
90.6k
  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
259k
  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
165k
  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
501k
  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
18.7k
  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
58.8k
  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
7.98M
  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
15.9M
  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
713k
  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
2.01M
  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
2.01M
  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
39.1k
  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
39.1k
  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
16.0k
  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
16.0k
  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
15.8k
  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
17.1k
  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.23M
  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
46.5k
  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
8.05k
  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.6k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
383
  constexpr E &error() &noexcept { return base::m_unex.value(); }
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
4.51k
  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
23
  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
344
  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() &
cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
756
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
1.32k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
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
4.51k
  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() &
cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
471
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
5.03k
  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
607
  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
98
  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
64
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
237
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
9
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
9
  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
1.87k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
65
  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
72
  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.06k
  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
162
  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
9.63k
  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
5
  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
626
  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
112
  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
193
  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
95
  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
40
  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
19
  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
5
  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
6.24k
  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
1.87k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
152
  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
73
  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
73
  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
87
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
8
  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
8
  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
41.2M
  constexpr T &val() &noexcept { return base::m_val; }
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, __wasi_errno_t>::val() &
cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
1.58k
  constexpr T &val() &noexcept { return base::m_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
70.4k
  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.44k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
1.97k
  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.85M
  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::PO::Error>::val() &
Line
Count
Source
712
1.96M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
66.1k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
950k
  constexpr T &val() &noexcept { return base::m_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.44k
  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() &
cxx20::detail::expected_view_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
4.68M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
8.40M
  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
84.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
716k
  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
84.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
46.7k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
159k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
82.7k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
508k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
9.39k
  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
52.6k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::OpCode, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
7.98M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
7.98M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
496k
  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
2.01M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<int, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
2.01M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
39.1k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<float, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
39.1k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
16.0k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<double, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
16.0k
  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
7.88k
  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
8.57k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
23.2k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
4.02k
  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
805k
  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
45.8M
  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
40.3M
  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
cxx20::detail::expected_view_base<void, WasmEdge::PO::Error>::has_value() const
Line
Count
Source
735
2.98M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<void, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const
Line
Count
Source
735
2.49M
  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
35.5k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() &
Line
Count
Source
740
33.0k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<void, WasmEdge::PO::Error>::error() &
Line
Count
Source
740
2.07k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<void, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
740
350
  constexpr E &error() &noexcept { return base::m_unex.value(); }
Unexecuted instantiation: cxx20::detail::expected_view_base<void, __wasi_errno_t>::error() &
741
16.8k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() &&
Line
Count
Source
741
16.8k
  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
49.1M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, WasmEdge::PO::Error, false>::expected_copy_base()
Line
Count
Source
946
2.98M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, WasmEdge::ErrCode, false>::expected_copy_base()
Line
Count
Source
946
43.7M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_copy_base()
Line
Count
Source
946
2.49M
  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
49.1M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, WasmEdge::PO::Error, false>::expected_move_base()
Line
Count
Source
978
2.98M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, WasmEdge::ErrCode, false>::expected_move_base()
Line
Count
Source
978
43.7M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_move_base()
Line
Count
Source
978
2.49M
  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
49.1M
  constexpr expected_copy_assign_base() = default;
cxx20::detail::expected_copy_assign_base<void, WasmEdge::PO::Error, false>::expected_copy_assign_base()
Line
Count
Source
1014
2.98M
  constexpr expected_copy_assign_base() = default;
cxx20::detail::expected_copy_assign_base<void, WasmEdge::ErrCode, false>::expected_copy_assign_base()
Line
Count
Source
1014
43.7M
  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.49M
  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
49.1M
  constexpr expected_move_assign_base() = default;
cxx20::detail::expected_move_assign_base<void, WasmEdge::PO::Error, false>::expected_move_assign_base()
Line
Count
Source
1046
2.98M
  constexpr expected_move_assign_base() = default;
cxx20::detail::expected_move_assign_base<void, WasmEdge::ErrCode, false>::expected_move_assign_base()
Line
Count
Source
1046
43.7M
  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.49M
  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
31.3k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
31.3k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
31.3k
  if (exp.has_value()) {
1070
28.2k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
28.2k
  }
1072
3.13k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
31.3k
}
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
1.93k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
1.93k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
1.93k
  if (exp.has_value()) {
1070
1.93k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
1.93k
  }
1072
8
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
1.93k
}
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
29.4k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
29.4k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
29.4k
  if (exp.has_value()) {
1070
26.3k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
26.3k
  }
1072
3.12k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
29.4k
}
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.48k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
1.48k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
1.48k
  if (exp.has_value()) {
1082
1.45k
    return invoke(std::forward<F>(f));
1083
1.45k
  }
1084
29
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
1.48k
}
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
741
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
741
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
741
  if (exp.has_value()) {
1082
741
    return invoke(std::forward<F>(f));
1083
741
  }
1084
0
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
741
}
segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_
Line
Count
Source
1078
741
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
741
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
741
  if (exp.has_value()) {
1082
712
    return invoke(std::forward<F>(f));
1083
712
  }
1084
29
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
741
}
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.49M
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
2.49M
  if (exp.has_value()) {
1129
2.49M
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.49M
    return Result();
1131
2.49M
  }
1132
338
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
2.49M
}
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.8k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
11.8k
  if (exp.has_value()) {
1129
11.8k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
11.8k
    return Result();
1131
11.8k
  }
1132
32
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
11.8k
}
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.8k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
11.8k
  if (exp.has_value()) {
1129
11.8k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
11.8k
    return Result();
1131
11.8k
  }
1132
29
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
11.8k
}
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.8k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
11.8k
  if (exp.has_value()) {
1129
11.8k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
11.8k
    return Result();
1131
11.8k
  }
1132
13
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
11.8k
}
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
2.60k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
2.60k
  if (exp.has_value()) {
1129
2.60k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.60k
    return Result();
1131
2.60k
  }
1132
5
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
2.60k
}
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
16.4k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
16.4k
  if (exp.has_value()) {
1129
16.4k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
16.4k
    return Result();
1131
16.4k
  }
1132
34
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
16.4k
}
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
16.4k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
16.4k
  if (exp.has_value()) {
1129
16.4k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
16.4k
    return Result();
1131
16.4k
  }
1132
5
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
16.4k
}
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
16.4k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
16.4k
  if (exp.has_value()) {
1129
16.4k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
16.4k
    return Result();
1131
16.4k
  }
1132
3
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
16.4k
}
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.10k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
1.10k
  if (exp.has_value()) {
1129
1.10k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
1.10k
    return Result();
1131
1.10k
  }
1132
4
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
1.10k
}
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
18.2k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
18.2k
  if (exp.has_value()) {
1129
18.2k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
18.2k
    return Result();
1131
18.2k
  }
1132
5
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
18.2k
}
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
841
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
841
  if (exp.has_value()) {
1129
839
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
839
    return Result();
1131
839
  }
1132
2
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
841
}
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
2.86k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
2.86k
  if (exp.has_value()) {
1129
2.86k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.86k
    return Result();
1131
2.86k
  }
1132
5
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
2.86k
}
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
2.01M
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
2.01M
  if (exp.has_value()) {
1129
2.01M
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.01M
    return Result();
1131
2.01M
  }
1132
73
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
2.01M
}
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
280k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
280k
  if (exp.has_value()) {
1129
279k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
279k
    return Result();
1131
279k
  }
1132
87
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
280k
}
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
39.1k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
39.1k
  if (exp.has_value()) {
1129
39.1k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
39.1k
    return Result();
1131
39.1k
  }
1132
8
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
39.1k
}
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
16.0k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
16.0k
  if (exp.has_value()) {
1129
16.0k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
16.0k
    return Result();
1131
16.0k
  }
1132
11
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
16.0k
}
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
31.7k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
31.7k
  if (exp.has_value()) {
1129
31.7k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
31.7k
    return Result();
1131
31.7k
  }
1132
22
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
31.7k
}
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
11.5M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
11.5M
  if (exp.has_value()) {
1169
11.5M
    return Result(*std::forward<Exp>(exp));
1170
11.5M
  }
1171
6.16k
  return Result(unexpect,
1172
6.16k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
11.5M
}
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
44.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
44.0k
  if (exp.has_value()) {
1169
44.0k
    return Result(*std::forward<Exp>(exp));
1170
44.0k
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
44.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
43.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
43.9k
  if (exp.has_value()) {
1169
43.8k
    return Result(*std::forward<Exp>(exp));
1170
43.8k
  }
1171
98
  return Result(unexpect,
1172
98
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
43.9k
}
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
43.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
43.8k
  if (exp.has_value()) {
1169
43.8k
    return Result(*std::forward<Exp>(exp));
1170
43.8k
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
43.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
3.88k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.88k
  if (exp.has_value()) {
1169
3.88k
    return Result(*std::forward<Exp>(exp));
1170
3.88k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.88k
}
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
3.86k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.86k
  if (exp.has_value()) {
1169
3.85k
    return Result(*std::forward<Exp>(exp));
1170
3.85k
  }
1171
17
  return Result(unexpect,
1172
17
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.86k
}
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
7.46k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.46k
  if (exp.has_value()) {
1169
7.46k
    return Result(*std::forward<Exp>(exp));
1170
7.46k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.46k
}
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
267
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
267
  if (exp.has_value()) {
1169
265
    return Result(*std::forward<Exp>(exp));
1170
265
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
267
}
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
249
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
249
  if (exp.has_value()) {
1169
238
    return Result(*std::forward<Exp>(exp));
1170
238
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
249
}
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
3.69k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.69k
  if (exp.has_value()) {
1169
3.68k
    return Result(*std::forward<Exp>(exp));
1170
3.68k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.69k
}
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
3.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.67k
  if (exp.has_value()) {
1169
3.66k
    return Result(*std::forward<Exp>(exp));
1170
3.66k
  }
1171
12
  return Result(unexpect,
1172
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.67k
}
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
30.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
30.5k
  if (exp.has_value()) {
1169
30.5k
    return Result(*std::forward<Exp>(exp));
1170
30.5k
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
30.5k
}
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
367
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
367
  if (exp.has_value()) {
1169
365
    return Result(*std::forward<Exp>(exp));
1170
365
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
367
}
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
352
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
352
  if (exp.has_value()) {
1169
336
    return Result(*std::forward<Exp>(exp));
1170
336
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
352
}
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.39k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.39k
  if (exp.has_value()) {
1169
1.38k
    return Result(*std::forward<Exp>(exp));
1170
1.38k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.39k
}
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.37k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.37k
  if (exp.has_value()) {
1169
1.35k
    return Result(*std::forward<Exp>(exp));
1170
1.35k
  }
1171
17
  return Result(unexpect,
1172
17
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.37k
}
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
492
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
492
  if (exp.has_value()) {
1169
489
    return Result(*std::forward<Exp>(exp));
1170
489
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
492
}
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
477
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
477
  if (exp.has_value()) {
1169
464
    return Result(*std::forward<Exp>(exp));
1170
464
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
477
}
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.00k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.00k
  if (exp.has_value()) {
1169
1.00k
    return Result(*std::forward<Exp>(exp));
1170
1.00k
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.00k
}
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
988
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
988
  if (exp.has_value()) {
1169
973
    return Result(*std::forward<Exp>(exp));
1170
973
  }
1171
15
  return Result(unexpect,
1172
15
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
988
}
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
35
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
35
  if (exp.has_value()) {
1169
32
    return Result(*std::forward<Exp>(exp));
1170
32
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
35
}
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
21
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
21
  if (exp.has_value()) {
1169
19
    return Result(*std::forward<Exp>(exp));
1170
19
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
21
}
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.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.29k
  if (exp.has_value()) {
1169
1.29k
    return Result(*std::forward<Exp>(exp));
1170
1.29k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.29k
}
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.28k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.28k
  if (exp.has_value()) {
1169
1.26k
    return Result(*std::forward<Exp>(exp));
1170
1.26k
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.28k
}
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
3.87k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.87k
  if (exp.has_value()) {
1169
3.87k
    return Result(*std::forward<Exp>(exp));
1170
3.87k
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.87k
}
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
3.87k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.87k
  if (exp.has_value()) {
1169
3.85k
    return Result(*std::forward<Exp>(exp));
1170
3.85k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.87k
}
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.47k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.47k
  if (exp.has_value()) {
1169
1.46k
    return Result(*std::forward<Exp>(exp));
1170
1.46k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.47k
}
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.45k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.45k
  if (exp.has_value()) {
1169
1.43k
    return Result(*std::forward<Exp>(exp));
1170
1.43k
  }
1171
14
  return Result(unexpect,
1172
14
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.45k
}
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
89
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
89
  if (exp.has_value()) {
1169
86
    return Result(*std::forward<Exp>(exp));
1170
86
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
89
}
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
76
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
76
  if (exp.has_value()) {
1169
74
    return Result(*std::forward<Exp>(exp));
1170
74
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
76
}
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
23.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
23.7k
  if (exp.has_value()) {
1169
23.6k
    return Result(*std::forward<Exp>(exp));
1170
23.6k
  }
1171
61
  return Result(unexpect,
1172
61
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
23.7k
}
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.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
11.8k
  if (exp.has_value()) {
1169
11.8k
    return Result(*std::forward<Exp>(exp));
1170
11.8k
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
11.8k
}
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
2.60k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.60k
  if (exp.has_value()) {
1169
2.60k
    return Result(*std::forward<Exp>(exp));
1170
2.60k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.60k
}
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
16.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
16.4k
  if (exp.has_value()) {
1169
16.4k
    return Result(*std::forward<Exp>(exp));
1170
16.4k
  }
1171
34
  return Result(unexpect,
1172
34
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
16.4k
}
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
16.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
16.4k
  if (exp.has_value()) {
1169
16.4k
    return Result(*std::forward<Exp>(exp));
1170
16.4k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
16.4k
}
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
16.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
16.4k
  if (exp.has_value()) {
1169
16.4k
    return Result(*std::forward<Exp>(exp));
1170
16.4k
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
16.4k
}
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
504
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
504
  if (exp.has_value()) {
1169
497
    return Result(*std::forward<Exp>(exp));
1170
497
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
504
}
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
10.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
10.6k
  if (exp.has_value()) {
1169
10.5k
    return Result(*std::forward<Exp>(exp));
1170
10.5k
  }
1171
59
  return Result(unexpect,
1172
59
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
10.6k
}
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
38.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
38.9k
  if (exp.has_value()) {
1169
38.8k
    return Result(*std::forward<Exp>(exp));
1170
38.8k
  }
1171
26
  return Result(unexpect,
1172
26
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
38.9k
}
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
7.87k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.87k
  if (exp.has_value()) {
1169
7.85k
    return Result(*std::forward<Exp>(exp));
1170
7.85k
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.87k
}
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
2.86k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.86k
  if (exp.has_value()) {
1169
2.86k
    return Result(*std::forward<Exp>(exp));
1170
2.86k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.86k
}
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.11k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.11k
  if (exp.has_value()) {
1169
1.09k
    return Result(*std::forward<Exp>(exp));
1170
1.09k
  }
1171
19
  return Result(unexpect,
1172
19
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.11k
}
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
7.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.44k
  if (exp.has_value()) {
1169
7.44k
    return Result(*std::forward<Exp>(exp));
1170
7.44k
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.44k
}
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.87k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.87k
  if (exp.has_value()) {
1169
3.86k
    return Result(*std::forward<Exp>(exp));
1170
3.86k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.87k
}
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.84k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.84k
  if (exp.has_value()) {
1169
3.83k
    return Result(*std::forward<Exp>(exp));
1170
3.83k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.84k
}
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.78k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.78k
  if (exp.has_value()) {
1169
1.78k
    return Result(*std::forward<Exp>(exp));
1170
1.78k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.78k
}
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
7.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.44k
  if (exp.has_value()) {
1169
7.44k
    return Result(*std::forward<Exp>(exp));
1170
7.44k
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.44k
}
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
14.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
14.8k
  if (exp.has_value()) {
1169
14.8k
    return Result(*std::forward<Exp>(exp));
1170
14.8k
  }
1171
19
  return Result(unexpect,
1172
19
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
14.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
29.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
29.4k
  if (exp.has_value()) {
1169
26.3k
    return Result(*std::forward<Exp>(exp));
1170
26.3k
  }
1171
3.12k
  return Result(unexpect,
1172
3.12k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
29.4k
}
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
7.98M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.98M
  if (exp.has_value()) {
1169
7.98M
    return Result(*std::forward<Exp>(exp));
1170
7.98M
  }
1171
1.87k
  return Result(unexpect,
1172
1.87k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.98M
}
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
216k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
216k
  if (exp.has_value()) {
1169
216k
    return Result(*std::forward<Exp>(exp));
1170
216k
  }
1171
65
  return Result(unexpect,
1172
65
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
216k
}
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.81k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
8.81k
  if (exp.has_value()) {
1169
8.77k
    return Result(*std::forward<Exp>(exp));
1170
8.77k
  }
1171
37
  return Result(unexpect,
1172
37
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
8.81k
}
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
31.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
31.7k
  if (exp.has_value()) {
1169
31.7k
    return Result(*std::forward<Exp>(exp));
1170
31.7k
  }
1171
22
  return Result(unexpect,
1172
22
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
31.7k
}
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
499k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
499k
  if (exp.has_value()) {
1169
499k
    return Result(*std::forward<Exp>(exp));
1170
499k
  }
1171
218
  return Result(unexpect,
1172
218
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
499k
}
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
72.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
72.8k
  if (exp.has_value()) {
1169
72.7k
    return Result(*std::forward<Exp>(exp));
1170
72.7k
  }
1171
46
  return Result(unexpect,
1172
46
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
72.8k
}
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
2.01M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.01M
  if (exp.has_value()) {
1169
2.01M
    return Result(*std::forward<Exp>(exp));
1170
2.01M
  }
1171
73
  return Result(unexpect,
1172
73
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.01M
}
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
280k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
280k
  if (exp.has_value()) {
1169
279k
    return Result(*std::forward<Exp>(exp));
1170
279k
  }
1171
87
  return Result(unexpect,
1172
87
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
280k
}
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
39.1k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
39.1k
  if (exp.has_value()) {
1169
39.1k
    return Result(*std::forward<Exp>(exp));
1170
39.1k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
39.1k
}
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
16.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
16.0k
  if (exp.has_value()) {
1169
16.0k
    return Result(*std::forward<Exp>(exp));
1170
16.0k
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
16.0k
}
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.16M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.16M
  if (exp.has_value()) {
1195
2.14M
    return Result();
1196
2.14M
  }
1197
16.7k
  return Result(unexpect,
1198
16.7k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.16M
}
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
61.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
61.9k
  if (exp.has_value()) {
1195
57.5k
    return Result();
1196
57.5k
  }
1197
4.36k
  return Result(unexpect,
1198
4.36k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
61.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
7.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
7.44k
  if (exp.has_value()) {
1195
7.38k
    return Result();
1196
7.38k
  }
1197
62
  return Result(unexpect,
1198
62
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
7.44k
}
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.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
11.8k
  if (exp.has_value()) {
1195
11.7k
    return Result();
1196
11.7k
  }
1197
101
  return Result(unexpect,
1198
101
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.8k
}
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
30.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
30.5k
  if (exp.has_value()) {
1195
30.5k
    return Result();
1196
30.5k
  }
1197
23
  return Result(unexpect,
1198
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
30.5k
}
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
504
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
504
  if (exp.has_value()) {
1195
462
    return Result();
1196
462
  }
1197
42
  return Result(unexpect,
1198
42
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
504
}
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.89k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.89k
  if (exp.has_value()) {
1195
2.86k
    return Result();
1196
2.86k
  }
1197
35
  return Result(unexpect,
1198
35
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.89k
}
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
741
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
741
  if (exp.has_value()) {
1195
459
    return Result();
1196
459
  }
1197
282
  return Result(unexpect,
1198
282
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
741
}
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
16.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
16.4k
  if (exp.has_value()) {
1195
16.4k
    return Result();
1196
16.4k
  }
1197
53
  return Result(unexpect,
1198
53
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
16.4k
}
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
5.78k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.78k
  if (exp.has_value()) {
1195
4.70k
    return Result();
1196
4.70k
  }
1197
1.07k
  return Result(unexpect,
1198
1.07k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.78k
}
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
18.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
18.2k
  if (exp.has_value()) {
1195
17.5k
    return Result();
1196
17.5k
  }
1197
775
  return Result(unexpect,
1198
775
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
18.2k
}
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
4.15k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.15k
  if (exp.has_value()) {
1195
2.86k
    return Result();
1196
2.86k
  }
1197
1.29k
  return Result(unexpect,
1198
1.29k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.15k
}
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
496
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
496
  if (exp.has_value()) {
1195
462
    return Result();
1196
462
  }
1197
34
  return Result(unexpect,
1198
34
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
496
}
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
741
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
741
  if (exp.has_value()) {
1195
459
    return Result();
1196
459
  }
1197
282
  return Result(unexpect,
1198
282
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
741
}
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.54k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.54k
  if (exp.has_value()) {
1195
3.71k
    return Result();
1196
3.71k
  }
1197
837
  return Result(unexpect,
1198
837
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.54k
}
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
1.93k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.93k
  if (exp.has_value()) {
1195
1.92k
    return Result();
1196
1.92k
  }
1197
12
  return Result(unexpect,
1198
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.93k
}
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
11.3k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
11.3k
  if (exp.has_value()) {
1195
11.3k
    return Result();
1196
11.3k
  }
1197
14
  return Result(unexpect,
1198
14
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.3k
}
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
18.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
18.2k
  if (exp.has_value()) {
1195
17.5k
    return Result();
1196
17.5k
  }
1197
709
  return Result(unexpect,
1198
709
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
18.2k
}
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
2.96k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.96k
  if (exp.has_value()) {
1195
1.73k
    return Result();
1196
1.73k
  }
1197
1.23k
  return Result(unexpect,
1198
1.23k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.96k
}
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.00k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.00k
  if (exp.has_value()) {
1195
2.91k
    return Result();
1196
2.91k
  }
1197
89
  return Result(unexpect,
1198
89
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.00k
}
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.23k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.23k
  if (exp.has_value()) {
1195
3.19k
    return Result();
1196
3.19k
  }
1197
38
  return Result(unexpect,
1198
38
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.23k
}
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
644
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
644
  if (exp.has_value()) {
1195
638
    return Result();
1196
638
  }
1197
6
  return Result(unexpect,
1198
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
644
}
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
12.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.7k
  if (exp.has_value()) {
1195
12.7k
    return Result();
1196
12.7k
  }
1197
43
  return Result(unexpect,
1198
43
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.7k
}
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.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.44k
  if (exp.has_value()) {
1195
3.44k
    return Result();
1196
3.44k
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.44k
}
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.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.44k
  if (exp.has_value()) {
1195
3.43k
    return Result();
1196
3.43k
  }
1197
8
  return Result(unexpect,
1198
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.44k
}
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.43k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.43k
  if (exp.has_value()) {
1195
3.43k
    return Result();
1196
3.43k
  }
1197
9
  return Result(unexpect,
1198
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.43k
}
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.43k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.43k
  if (exp.has_value()) {
1195
3.42k
    return Result();
1196
3.42k
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.43k
}
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.42k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.42k
  if (exp.has_value()) {
1195
3.39k
    return Result();
1196
3.39k
  }
1197
32
  return Result(unexpect,
1198
32
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.42k
}
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.39k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.39k
  if (exp.has_value()) {
1195
3.33k
    return Result();
1196
3.33k
  }
1197
57
  return Result(unexpect,
1198
57
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.39k
}
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.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.33k
  if (exp.has_value()) {
1195
3.33k
    return Result();
1196
3.33k
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.33k
}
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.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.33k
  if (exp.has_value()) {
1195
3.28k
    return Result();
1196
3.28k
  }
1197
56
  return Result(unexpect,
1198
56
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.33k
}
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.28k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.28k
  if (exp.has_value()) {
1195
3.27k
    return Result();
1196
3.27k
  }
1197
12
  return Result(unexpect,
1198
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.28k
}
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.27k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.27k
  if (exp.has_value()) {
1195
3.23k
    return Result();
1196
3.23k
  }
1197
37
  return Result(unexpect,
1198
37
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.27k
}
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.23k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.23k
  if (exp.has_value()) {
1195
3.20k
    return Result();
1196
3.20k
  }
1197
28
  return Result(unexpect,
1198
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.23k
}
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.20k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.20k
  if (exp.has_value()) {
1195
2.00k
    return Result();
1196
2.00k
  }
1197
1.19k
  return Result(unexpect,
1198
1.19k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.20k
}
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
5.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.33k
  if (exp.has_value()) {
1195
5.33k
    return Result();
1196
5.33k
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.33k
}
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
4.31k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.31k
  if (exp.has_value()) {
1195
4.31k
    return Result();
1196
4.31k
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.31k
}
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
332
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
332
  if (exp.has_value()) {
1195
329
    return Result();
1196
329
  }
1197
3
  return Result(unexpect,
1198
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
332
}
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.38k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.38k
  if (exp.has_value()) {
1195
1.37k
    return Result();
1196
1.37k
  }
1197
10
  return Result(unexpect,
1198
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.38k
}
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
275
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
275
  if (exp.has_value()) {
1195
273
    return Result();
1196
273
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
275
}
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
251
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
251
  if (exp.has_value()) {
1195
194
    return Result();
1196
194
  }
1197
57
  return Result(unexpect,
1198
57
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
251
}
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
194
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
194
  if (exp.has_value()) {
1195
194
    return Result();
1196
194
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
194
}
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.12k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.12k
  if (exp.has_value()) {
1195
1.10k
    return Result();
1196
1.10k
  }
1197
21
  return Result(unexpect,
1198
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.12k
}
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
280
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
280
  if (exp.has_value()) {
1195
277
    return Result();
1196
277
  }
1197
3
  return Result(unexpect,
1198
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
280
}
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
12.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.7k
  if (exp.has_value()) {
1195
11.5k
    return Result();
1196
11.5k
  }
1197
1.19k
  return Result(unexpect,
1198
1.19k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.7k
}
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
160
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
160
  if (exp.has_value()) {
1195
154
    return Result();
1196
154
  }
1197
6
  return Result(unexpect,
1198
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
160
}
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
57
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
57
  if (exp.has_value()) {
1195
56
    return Result();
1196
56
  }
1197
1
  return Result(unexpect,
1198
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
57
}
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
36
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
36
  if (exp.has_value()) {
1195
34
    return Result();
1196
34
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
36
}
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
54
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
54
  if (exp.has_value()) {
1195
54
    return Result();
1196
54
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
54
}
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
473
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
473
  if (exp.has_value()) {
1195
465
    return Result();
1196
465
  }
1197
8
  return Result(unexpect,
1198
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
473
}
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
275
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
275
  if (exp.has_value()) {
1195
273
    return Result();
1196
273
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
275
}
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.34k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.34k
  if (exp.has_value()) {
1195
1.31k
    return Result();
1196
1.31k
  }
1197
32
  return Result(unexpect,
1198
32
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.34k
}
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
251
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
251
  if (exp.has_value()) {
1195
194
    return Result();
1196
194
  }
1197
57
  return Result(unexpect,
1198
57
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
251
}
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
552
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
552
  if (exp.has_value()) {
1195
515
    return Result();
1196
515
  }
1197
37
  return Result(unexpect,
1198
37
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
552
}
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
12.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.7k
  if (exp.has_value()) {
1195
11.5k
    return Result();
1196
11.5k
  }
1197
1.19k
  return Result(unexpect,
1198
1.19k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.7k
}
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
334
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
334
  if (exp.has_value()) {
1195
306
    return Result();
1196
306
  }
1197
28
  return Result(unexpect,
1198
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
334
}
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
11.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
11.5k
  if (exp.has_value()) {
1195
11.5k
    return Result();
1196
11.5k
  }
1197
49
  return Result(unexpect,
1198
49
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.5k
}
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.85M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.85M
  if (exp.has_value()) {
1195
1.84M
    return Result();
1196
1.84M
  }
1197
1.22k
  return Result(unexpect,
1198
1.22k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.85M
}
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
43.3M
  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)
cxx20::detail::expected_default_ctor_base<bool, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
1.96k
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<void, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
2.07k
  constexpr explicit expected_default_ctor_base(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<void, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
49.9k
  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> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
62.5k
  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
7.96k
  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
1.97k
  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)
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)
Line
Count
Source
1227
1.96M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<unsigned long, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
66.9k
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<int, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
952k
  constexpr explicit expected_default_ctor_base(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.85M
  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)
cxx20::detail::expected_default_ctor_base<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
5.03M
  constexpr explicit expected_default_ctor_base(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
8.47M
  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
716k
  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
84.2k
  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
46.7k
  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
159k
  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
350
  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
82.9k
  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
9.39k
  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
58.8k
  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
7.98M
  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
7.98M
  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
496k
  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
2.01M
  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
39.1k
  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
16.0k
  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
7.96k
  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
7.95k
  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
84.2k
  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
39.1k
  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
16.0k
  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
501k
  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
2.01M
  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
8.58k
  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
4.03k
  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.42M
  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
23.3k
  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
49.1M
  constexpr expected() = default;
cxx20::expected<void, WasmEdge::PO::Error>::expected()
Line
Count
Source
1383
2.98M
  constexpr expected() = default;
cxx20::expected<void, WasmEdge::ErrCode>::expected()
Line
Count
Source
1383
43.7M
  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.49M
  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
43.2M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IbTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_bEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
1.58k
      : expected(in_place, std::forward<U>(v)) {}
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_
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge2PO5ErrorEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISE_S7_EEvE4typeELPv0ELb1EEEOSE_
Line
Count
Source
1449
1.96M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_mEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
66.1k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_iEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
950k
      : expected(in_place, std::forward<U>(v)) {}
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_
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
3.27M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IDnTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
1.75M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_jEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
1.85M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_hEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
97.7k
      : 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
62.5k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_jEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
716k
      : 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
84.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
46.7k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_hEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
159k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
82.7k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
9.39k
      : 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
52.6k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
7.98M
      : 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
7.98M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_lEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
496k
      : 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
2.01M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_fEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
39.1k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_dEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
16.0k
      : 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.44k
      : 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.44k
      : 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
7.88k
      : 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
84.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
8.37M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_fEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
39.1k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_dEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
16.0k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_lEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
500k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_iEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
2.01M
      : 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
8.57k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
4.02k
      : 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.25M
      : 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
168k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb0EEEOSA_
Line
Count
Source
1449
23.2k
      : 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
1.97k
      : 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
59.2k
      : expected(unexpect, std::move(e.value())) {}
Unexecuted instantiation: _ZN5cxx208expectedIm14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE
_ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
383
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIvN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
2.07k
      : expected(unexpect, std::move(e.value())) {}
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
30.0k
      : 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
_ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
756
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
1.32k
      : expected(unexpect, std::move(e.value())) {}
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
970
      : 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
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
Line
Count
Source
1462
2.54k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
237
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
9
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
1.87k
      : 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.12k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIX18is_constructible_vIS7_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
Line
Count
Source
1462
28
      : 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
4.51k
      : 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
4.51k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE
Line
Count
Source
1462
72
      : 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.14k
      : 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
8
      : 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
193
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
161
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
73
      : 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.06k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Line
Count
Source
1462
162
      : 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
43.2M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
1468
1.58k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
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_
_ZN5cxx208expectedINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge2PO5ErrorEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSE_
Line
Count
Source
1468
1.96M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
1468
66.1k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
1468
950k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
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_
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
Line
Count
Source
1468
3.27M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJDnETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
Line
Count
Source
1468
1.75M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Line
Count
Source
1468
1.85M
      : 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
97.7k
      : 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
62.5k
      : 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
716k
      : 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
84.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
46.7k
      : 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
159k
      : 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
82.7k
      : 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
9.39k
      : 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
52.6k
      : 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
7.98M
      : 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
7.98M
      : 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
496k
      : 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
2.01M
      : 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
39.1k
      : 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
16.0k
      : 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.44k
      : 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.44k
      : 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
7.88k
      : 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
84.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
8.37M
      : 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
39.1k
      : 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
16.0k
      : 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
500k
      : 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
2.01M
      : 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
8.57k
      : 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
4.02k
      : 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.25M
      : 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
168k
      : 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
23.2k
      : 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
1.97k
      : 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
85.7k
      : 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_
_ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
1483
383
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIvN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
1483
2.07k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
_ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
49.9k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Line
Count
Source
1483
28
      : 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
4.51k
      : 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_
_ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
1483
756
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
1483
1.32k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
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
970
      : 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_
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Line
Count
Source
1483
2.54k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
5.14k
      : 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
626
      : 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
193
      : 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
5
      : 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
104
      : 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
350
      : 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
237
      : 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
9
      : 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
6.24k
      : 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
1.87k
      : 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
1.87k
      : 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
152
      : 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
73
      : 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
8
      : 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
4.51k
      : 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
72
      : 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
193
      : 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
8
      : 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
161
      : 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
73
      : 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.06k
      : 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
162
      : 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
7.87M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
Unexecuted instantiation: cxx20::expected<unsigned long, __wasi_errno_t>::operator*() &
cxx20::expected<bool, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
1.58k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
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.44k
  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
23.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*() &
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
1.96M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
66.1k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<int, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
950k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator*() &
Line
Count
Source
1599
1.97k
  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*() &
cxx20::expected<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
4.68M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() &
Line
Count
Source
1599
163k
  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
12.1k
  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.1M
  constexpr rvalue_reference_type operator*() && {
1604
14.1M
    return std::move(impl_base::val());
1605
14.1M
  }
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
46.7k
  constexpr rvalue_reference_type operator*() && {
1604
46.7k
    return std::move(impl_base::val());
1605
46.7k
  }
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
716k
  constexpr rvalue_reference_type operator*() && {
1604
716k
    return std::move(impl_base::val());
1605
716k
  }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
161k
  constexpr rvalue_reference_type operator*() && {
1604
161k
    return std::move(impl_base::val());
1605
161k
  }
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
84.0k
  constexpr rvalue_reference_type operator*() && {
1604
84.0k
    return std::move(impl_base::val());
1605
84.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
40.1k
  constexpr rvalue_reference_type operator*() && {
1604
40.1k
    return std::move(impl_base::val());
1605
40.1k
  }
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
59.9k
  constexpr rvalue_reference_type operator*() && {
1604
59.9k
    return std::move(impl_base::val());
1605
59.9k
  }
cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
39.2k
  constexpr rvalue_reference_type operator*() && {
1604
39.2k
    return std::move(impl_base::val());
1605
39.2k
  }
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
2.86k
  constexpr rvalue_reference_type operator*() && {
1604
2.86k
    return std::move(impl_base::val());
1605
2.86k
  }
cxx20::expected<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
52.6k
  constexpr rvalue_reference_type operator*() && {
1604
52.6k
    return std::move(impl_base::val());
1605
52.6k
  }
cxx20::expected<WasmEdge::OpCode, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
7.98M
  constexpr rvalue_reference_type operator*() && {
1604
7.98M
    return std::move(impl_base::val());
1605
7.98M
  }
cxx20::expected<long, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
496k
  constexpr rvalue_reference_type operator*() && {
1604
496k
    return std::move(impl_base::val());
1605
496k
  }
Unexecuted instantiation: cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator*() &&
cxx20::expected<int, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
2.01M
  constexpr rvalue_reference_type operator*() && {
1604
2.01M
    return std::move(impl_base::val());
1605
2.01M
  }
cxx20::expected<int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
2.01M
  constexpr rvalue_reference_type operator*() && {
1604
2.01M
    return std::move(impl_base::val());
1605
2.01M
  }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
279k
  constexpr rvalue_reference_type operator*() && {
1604
279k
    return std::move(impl_base::val());
1605
279k
  }
cxx20::expected<float, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
39.1k
  constexpr rvalue_reference_type operator*() && {
1604
39.1k
    return std::move(impl_base::val());
1605
39.1k
  }
cxx20::expected<float, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
39.1k
  constexpr rvalue_reference_type operator*() && {
1604
39.1k
    return std::move(impl_base::val());
1605
39.1k
  }
cxx20::expected<double, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
16.0k
  constexpr rvalue_reference_type operator*() && {
1604
16.0k
    return std::move(impl_base::val());
1605
16.0k
  }
cxx20::expected<double, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
16.0k
  constexpr rvalue_reference_type operator*() && {
1604
16.0k
    return std::move(impl_base::val());
1605
16.0k
  }
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
72.3M
  constexpr explicit operator bool() const noexcept { return has_value(); }
Unexecuted instantiation: cxx20::expected<unsigned long, __wasi_errno_t>::operator bool() const
cxx20::expected<bool, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
1.96k
  constexpr explicit operator bool() const noexcept { return has_value(); }
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
38.1M
  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
7.96k
  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
15.8k
  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.14M
  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> >, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
1.96M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
66.9k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<int, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
952k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
1.97k
  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
7.96k
  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
cxx20::expected<WasmEdge::PO::ArgumentParser::ArgumentDescriptor*, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
4.68M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<void, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
2.98M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
8.23M
  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
677k
  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
43.9k
  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
43.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
99.5k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<void, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
2.49M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
82.9k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<long, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
4.11k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
9.39k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
7.98M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
216k
  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
7.95k
  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
8.58k
  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.42M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
23.3k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
4.03k
  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
19.2M
  constexpr lvalue_reference_type value() & {
1629
19.2M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
19.2M
    return impl_base::val();
1633
19.2M
  }
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.13M
  constexpr lvalue_reference_type value() & {
1629
1.13M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
1.13M
    return impl_base::val();
1633
1.13M
  }
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.44k
  constexpr lvalue_reference_type value() & {
1629
3.44k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
3.44k
    return impl_base::val();
1633
3.44k
  }
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.08M
  constexpr lvalue_reference_type value() & {
1629
8.08M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
8.08M
    return impl_base::val();
1633
8.08M
  }
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
676k
  constexpr lvalue_reference_type value() & {
1629
676k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
676k
    return impl_base::val();
1633
676k
  }
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
43.8k
  constexpr lvalue_reference_type value() & {
1629
43.8k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
43.8k
    return impl_base::val();
1633
43.8k
  }
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
43.8k
  constexpr lvalue_reference_type value() & {
1629
43.8k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
43.8k
    return impl_base::val();
1633
43.8k
  }
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
99.4k
  constexpr lvalue_reference_type value() & {
1629
99.4k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
99.4k
    return impl_base::val();
1633
99.4k
  }
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
82.7k
  constexpr lvalue_reference_type value() & {
1629
82.7k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
82.7k
    return impl_base::val();
1633
82.7k
  }
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
9.39k
  constexpr lvalue_reference_type value() & {
1629
9.39k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
9.39k
    return impl_base::val();
1633
9.39k
  }
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
7.98M
  constexpr lvalue_reference_type value() & {
1629
7.98M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
7.98M
    return impl_base::val();
1633
7.98M
  }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
216k
  constexpr lvalue_reference_type value() & {
1629
216k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
216k
    return impl_base::val();
1633
216k
  }
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
7.88k
  constexpr lvalue_reference_type value() & {
1629
7.88k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
7.88k
    return impl_base::val();
1633
7.88k
  }
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
8.57k
  constexpr lvalue_reference_type value() & {
1629
8.57k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
8.57k
    return impl_base::val();
1633
8.57k
  }
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
23.2k
  constexpr lvalue_reference_type value() & {
1629
23.2k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
23.2k
    return impl_base::val();
1633
23.2k
  }
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
4.02k
  constexpr lvalue_reference_type value() & {
1629
4.02k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
4.02k
    return impl_base::val();
1633
4.02k
  }
cxx20::expected<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
805k
  constexpr lvalue_reference_type value() & {
1629
805k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
805k
    return impl_base::val();
1633
805k
  }
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
32.8k
  template <class F> constexpr auto and_then(F &&f) && {
1664
32.8k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
32.8k
  }
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
741
  template <class F> constexpr auto and_then(F &&f) && {
1664
741
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
741
  }
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
741
  template <class F> constexpr auto and_then(F &&f) && {
1664
741
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
741
  }
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
1.93k
  template <class F> constexpr auto and_then(F &&f) && {
1664
1.93k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
1.93k
  }
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
29.4k
  template <class F> constexpr auto and_then(F &&f) && {
1664
29.4k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
29.4k
  }
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.49M
  template <class F> constexpr auto map(F &&f) && {
1690
2.49M
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
2.49M
  }
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.8k
  template <class F> constexpr auto map(F &&f) && {
1690
11.8k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
11.8k
  }
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.8k
  template <class F> constexpr auto map(F &&f) && {
1690
11.8k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
11.8k
  }
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.8k
  template <class F> constexpr auto map(F &&f) && {
1690
11.8k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
11.8k
  }
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
2.60k
  template <class F> constexpr auto map(F &&f) && {
1690
2.60k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
2.60k
  }
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
16.4k
  template <class F> constexpr auto map(F &&f) && {
1690
16.4k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
16.4k
  }
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
16.4k
  template <class F> constexpr auto map(F &&f) && {
1690
16.4k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
16.4k
  }
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
16.4k
  template <class F> constexpr auto map(F &&f) && {
1690
16.4k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
16.4k
  }
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.10k
  template <class F> constexpr auto map(F &&f) && {
1690
1.10k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
1.10k
  }
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
18.2k
  template <class F> constexpr auto map(F &&f) && {
1690
18.2k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
18.2k
  }
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
841
  template <class F> constexpr auto map(F &&f) && {
1690
841
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
841
  }
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
2.86k
  template <class F> constexpr auto map(F &&f) && {
1690
2.86k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
2.86k
  }
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
2.01M
  template <class F> constexpr auto map(F &&f) && {
1690
2.01M
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
2.01M
  }
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
280k
  template <class F> constexpr auto map(F &&f) && {
1690
280k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
280k
  }
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
39.1k
  template <class F> constexpr auto map(F &&f) && {
1690
39.1k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
39.1k
  }
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
16.0k
  template <class F> constexpr auto map(F &&f) && {
1690
16.0k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
16.0k
  }
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
31.7k
  template <class F> constexpr auto map(F &&f) && {
1690
31.7k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
31.7k
  }
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
13.7M
  template <class F> constexpr auto map_error(F &&f) && {
1703
13.7M
    return detail::expected_map_error_impl(std::move(*this),
1704
13.7M
                                           std::forward<F>(f));
1705
13.7M
  }
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
61.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
61.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
61.9k
                                           std::forward<F>(f));
1705
61.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
44.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
44.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
44.0k
                                           std::forward<F>(f));
1705
44.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
43.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
43.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
43.9k
                                           std::forward<F>(f));
1705
43.9k
  }
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
43.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
43.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
43.8k
                                           std::forward<F>(f));
1705
43.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
3.88k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.88k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.88k
                                           std::forward<F>(f));
1705
3.88k
  }
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
3.86k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.86k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.86k
                                           std::forward<F>(f));
1705
3.86k
  }
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
7.46k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.46k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.46k
                                           std::forward<F>(f));
1705
7.46k
  }
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
7.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.44k
                                           std::forward<F>(f));
1705
7.44k
  }
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
267
  template <class F> constexpr auto map_error(F &&f) && {
1703
267
    return detail::expected_map_error_impl(std::move(*this),
1704
267
                                           std::forward<F>(f));
1705
267
  }
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
249
  template <class F> constexpr auto map_error(F &&f) && {
1703
249
    return detail::expected_map_error_impl(std::move(*this),
1704
249
                                           std::forward<F>(f));
1705
249
  }
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.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.8k
                                           std::forward<F>(f));
1705
11.8k
  }
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
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
  }
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EENS0_IvS2_EERNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E_EEDaOSO_
Line
Count
Source
1702
3.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.67k
                                           std::forward<F>(f));
1705
3.67k
  }
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
30.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
30.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
30.5k
                                           std::forward<F>(f));
1705
30.5k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EES3_RNSt3__16vectorIT0_NSE_9allocatorISG_EEEEOT1_EUlT_E0_EEDaOSN_
Line
Count
Source
1702
30.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
30.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
30.5k
                                           std::forward<F>(f));
1705
30.5k
  }
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
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
  }
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
352
  template <class F> constexpr auto map_error(F &&f) && {
1703
352
    return detail::expected_map_error_impl(std::move(*this),
1704
352
                                           std::forward<F>(f));
1705
352
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST12TableSectionENS8_12TableSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
504
  template <class F> constexpr auto map_error(F &&f) && {
1703
504
    return detail::expected_map_error_impl(std::move(*this),
1704
504
                                           std::forward<F>(f));
1705
504
  }
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.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
  }
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.37k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.37k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.37k
                                           std::forward<F>(f));
1705
1.37k
  }
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.89k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.89k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.89k
                                           std::forward<F>(f));
1705
2.89k
  }
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
492
  template <class F> constexpr auto map_error(F &&f) && {
1703
492
    return detail::expected_map_error_impl(std::move(*this),
1704
492
                                           std::forward<F>(f));
1705
492
  }
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
477
  template <class F> constexpr auto map_error(F &&f) && {
1703
477
    return detail::expected_map_error_impl(std::move(*this),
1704
477
                                           std::forward<F>(f));
1705
477
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13GlobalSectionENS8_13GlobalSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
741
  template <class F> constexpr auto map_error(F &&f) && {
1703
741
    return detail::expected_map_error_impl(std::move(*this),
1704
741
                                           std::forward<F>(f));
1705
741
  }
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.00k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.00k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.00k
                                           std::forward<F>(f));
1705
1.00k
  }
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
988
  template <class F> constexpr auto map_error(F &&f) && {
1703
988
    return detail::expected_map_error_impl(std::move(*this),
1704
988
                                           std::forward<F>(f));
1705
988
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ExportSectionENS8_10ExportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
16.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
16.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
16.4k
                                           std::forward<F>(f));
1705
16.4k
  }
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
35
  template <class F> constexpr auto map_error(F &&f) && {
1703
35
    return detail::expected_map_error_impl(std::move(*this),
1704
35
                                           std::forward<F>(f));
1705
35
  }
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
21
  template <class F> constexpr auto map_error(F &&f) && {
1703
21
    return detail::expected_map_error_impl(std::move(*this),
1704
21
                                           std::forward<F>(f));
1705
21
  }
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.29k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.29k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.29k
                                           std::forward<F>(f));
1705
1.29k
  }
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.28k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.28k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.28k
                                           std::forward<F>(f));
1705
1.28k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST14ElementSectionENS8_14ElementSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
5.78k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.78k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.78k
                                           std::forward<F>(f));
1705
5.78k
  }
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
3.87k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.87k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.87k
                                           std::forward<F>(f));
1705
3.87k
  }
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
3.87k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.87k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.87k
                                           std::forward<F>(f));
1705
3.87k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11CodeSectionENS8_11CodeSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
18.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
18.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
18.2k
                                           std::forward<F>(f));
1705
18.2k
  }
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.47k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.47k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.47k
                                           std::forward<F>(f));
1705
1.47k
  }
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.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
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11DataSectionENS8_11DataSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
4.15k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.15k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.15k
                                           std::forward<F>(f));
1705
4.15k
  }
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
89
  template <class F> constexpr auto map_error(F &&f) && {
1703
89
    return detail::expected_map_error_impl(std::move(*this),
1704
89
                                           std::forward<F>(f));
1705
89
  }
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
76
  template <class F> constexpr auto map_error(F &&f) && {
1703
76
    return detail::expected_map_error_impl(std::move(*this),
1704
76
                                           std::forward<F>(f));
1705
76
  }
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
23.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
23.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
23.7k
                                           std::forward<F>(f));
1705
23.7k
  }
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.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.8k
                                           std::forward<F>(f));
1705
11.8k
  }
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
2.60k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.60k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.60k
                                           std::forward<F>(f));
1705
2.60k
  }
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
16.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
16.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
16.4k
                                           std::forward<F>(f));
1705
16.4k
  }
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
16.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
16.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
16.4k
                                           std::forward<F>(f));
1705
16.4k
  }
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
16.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
16.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
16.4k
                                           std::forward<F>(f));
1705
16.4k
  }
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
504
  template <class F> constexpr auto map_error(F &&f) && {
1703
504
    return detail::expected_map_error_impl(std::move(*this),
1704
504
                                           std::forward<F>(f));
1705
504
  }
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
496
  template <class F> constexpr auto map_error(F &&f) && {
1703
496
    return detail::expected_map_error_impl(std::move(*this),
1704
496
                                           std::forward<F>(f));
1705
496
  }
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
741
  template <class F> constexpr auto map_error(F &&f) && {
1703
741
    return detail::expected_map_error_impl(std::move(*this),
1704
741
                                           std::forward<F>(f));
1705
741
  }
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
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<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.54k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.54k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.54k
                                           std::forward<F>(f));
1705
4.54k
  }
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
1.93k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.93k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.93k
                                           std::forward<F>(f));
1705
1.93k
  }
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
11.3k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.3k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.3k
                                           std::forward<F>(f));
1705
11.3k
  }
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
38.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
38.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
38.9k
                                           std::forward<F>(f));
1705
38.9k
  }
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
18.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
18.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
18.2k
                                           std::forward<F>(f));
1705
18.2k
  }
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
7.87k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.87k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.87k
                                           std::forward<F>(f));
1705
7.87k
  }
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
2.96k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.96k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.96k
                                           std::forward<F>(f));
1705
2.96k
  }
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
2.86k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.86k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.86k
                                           std::forward<F>(f));
1705
2.86k
  }
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.11k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.11k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.11k
                                           std::forward<F>(f));
1705
1.11k
  }
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.00k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.00k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.00k
                                           std::forward<F>(f));
1705
3.00k
  }
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
7.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.44k
                                           std::forward<F>(f));
1705
7.44k
  }
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.87k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.87k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.87k
                                           std::forward<F>(f));
1705
3.87k
  }
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.84k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.84k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.84k
                                           std::forward<F>(f));
1705
3.84k
  }
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.78k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.78k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.78k
                                           std::forward<F>(f));
1705
1.78k
  }
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
7.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.44k
                                           std::forward<F>(f));
1705
7.44k
  }
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.23k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.23k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.23k
                                           std::forward<F>(f));
1705
3.23k
  }
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
644
  template <class F> constexpr auto map_error(F &&f) && {
1703
644
    return detail::expected_map_error_impl(std::move(*this),
1704
644
                                           std::forward<F>(f));
1705
644
  }
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
14.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
14.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
14.8k
                                           std::forward<F>(f));
1705
14.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
12.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.7k
                                           std::forward<F>(f));
1705
12.7k
  }
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
29.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
29.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
29.4k
                                           std::forward<F>(f));
1705
29.4k
  }
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
7.98M
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.98M
    return detail::expected_map_error_impl(std::move(*this),
1704
7.98M
                                           std::forward<F>(f));
1705
7.98M
  }
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
216k
  template <class F> constexpr auto map_error(F &&f) && {
1703
216k
    return detail::expected_map_error_impl(std::move(*this),
1704
216k
                                           std::forward<F>(f));
1705
216k
  }
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.81k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.81k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.81k
                                           std::forward<F>(f));
1705
8.81k
  }
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
31.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
31.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
31.7k
                                           std::forward<F>(f));
1705
31.7k
  }
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
499k
  template <class F> constexpr auto map_error(F &&f) && {
1703
499k
    return detail::expected_map_error_impl(std::move(*this),
1704
499k
                                           std::forward<F>(f));
1705
499k
  }
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
72.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
72.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
72.8k
                                           std::forward<F>(f));
1705
72.8k
  }
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
2.01M
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.01M
    return detail::expected_map_error_impl(std::move(*this),
1704
2.01M
                                           std::forward<F>(f));
1705
2.01M
  }
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
280k
  template <class F> constexpr auto map_error(F &&f) && {
1703
280k
    return detail::expected_map_error_impl(std::move(*this),
1704
280k
                                           std::forward<F>(f));
1705
280k
  }
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
39.1k
  template <class F> constexpr auto map_error(F &&f) && {
1703
39.1k
    return detail::expected_map_error_impl(std::move(*this),
1704
39.1k
                                           std::forward<F>(f));
1705
39.1k
  }
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
16.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
16.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
16.0k
                                           std::forward<F>(f));
1705
16.0k
  }
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.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.44k
                                           std::forward<F>(f));
1705
3.44k
  }
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.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.44k
                                           std::forward<F>(f));
1705
3.44k
  }
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.43k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.43k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.43k
                                           std::forward<F>(f));
1705
3.43k
  }
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.43k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.43k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.43k
                                           std::forward<F>(f));
1705
3.43k
  }
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.42k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.42k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.42k
                                           std::forward<F>(f));
1705
3.42k
  }
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.39k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.39k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.39k
                                           std::forward<F>(f));
1705
3.39k
  }
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.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.33k
                                           std::forward<F>(f));
1705
3.33k
  }
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.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.33k
                                           std::forward<F>(f));
1705
3.33k
  }
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.28k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.28k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.28k
                                           std::forward<F>(f));
1705
3.28k
  }
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.27k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.27k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.27k
                                           std::forward<F>(f));
1705
3.27k
  }
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.23k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.23k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.23k
                                           std::forward<F>(f));
1705
3.23k
  }
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.20k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.20k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.20k
                                           std::forward<F>(f));
1705
3.20k
  }
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
5.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.33k
                                           std::forward<F>(f));
1705
5.33k
  }
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
4.31k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.31k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.31k
                                           std::forward<F>(f));
1705
4.31k
  }
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
332
  template <class F> constexpr auto map_error(F &&f) && {
1703
332
    return detail::expected_map_error_impl(std::move(*this),
1704
332
                                           std::forward<F>(f));
1705
332
  }
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.38k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.38k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.38k
                                           std::forward<F>(f));
1705
1.38k
  }
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
275
  template <class F> constexpr auto map_error(F &&f) && {
1703
275
    return detail::expected_map_error_impl(std::move(*this),
1704
275
                                           std::forward<F>(f));
1705
275
  }
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
251
  template <class F> constexpr auto map_error(F &&f) && {
1703
251
    return detail::expected_map_error_impl(std::move(*this),
1704
251
                                           std::forward<F>(f));
1705
251
  }
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
194
  template <class F> constexpr auto map_error(F &&f) && {
1703
194
    return detail::expected_map_error_impl(std::move(*this),
1704
194
                                           std::forward<F>(f));
1705
194
  }
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.12k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.12k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.12k
                                           std::forward<F>(f));
1705
1.12k
  }
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
280
  template <class F> constexpr auto map_error(F &&f) && {
1703
280
    return detail::expected_map_error_impl(std::move(*this),
1704
280
                                           std::forward<F>(f));
1705
280
  }
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
12.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.7k
                                           std::forward<F>(f));
1705
12.7k
  }
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
160
  template <class F> constexpr auto map_error(F &&f) && {
1703
160
    return detail::expected_map_error_impl(std::move(*this),
1704
160
                                           std::forward<F>(f));
1705
160
  }
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
57
  template <class F> constexpr auto map_error(F &&f) && {
1703
57
    return detail::expected_map_error_impl(std::move(*this),
1704
57
                                           std::forward<F>(f));
1705
57
  }
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
36
  template <class F> constexpr auto map_error(F &&f) && {
1703
36
    return detail::expected_map_error_impl(std::move(*this),
1704
36
                                           std::forward<F>(f));
1705
36
  }
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
54
  template <class F> constexpr auto map_error(F &&f) && {
1703
54
    return detail::expected_map_error_impl(std::move(*this),
1704
54
                                           std::forward<F>(f));
1705
54
  }
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
473
  template <class F> constexpr auto map_error(F &&f) && {
1703
473
    return detail::expected_map_error_impl(std::move(*this),
1704
473
                                           std::forward<F>(f));
1705
473
  }
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
275
  template <class F> constexpr auto map_error(F &&f) && {
1703
275
    return detail::expected_map_error_impl(std::move(*this),
1704
275
                                           std::forward<F>(f));
1705
275
  }
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.34k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.34k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.34k
                                           std::forward<F>(f));
1705
1.34k
  }
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
251
  template <class F> constexpr auto map_error(F &&f) && {
1703
251
    return detail::expected_map_error_impl(std::move(*this),
1704
251
                                           std::forward<F>(f));
1705
251
  }
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
552
  template <class F> constexpr auto map_error(F &&f) && {
1703
552
    return detail::expected_map_error_impl(std::move(*this),
1704
552
                                           std::forward<F>(f));
1705
552
  }
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
12.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.7k
                                           std::forward<F>(f));
1705
12.7k
  }
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
334
  template <class F> constexpr auto map_error(F &&f) && {
1703
334
    return detail::expected_map_error_impl(std::move(*this),
1704
334
                                           std::forward<F>(f));
1705
334
  }
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
11.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.5k
                                           std::forward<F>(f));
1705
11.5k
  }
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.85M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.85M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.85M
                                           std::forward<F>(f));
1705
1.85M
  }
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