Coverage Report

Created: 2026-08-13 06:09

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/WasmEdge/include/experimental/expected.hpp
Line
Count
Source
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
0
#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<WasmEdge::ErrCode>::what() const
Unexecuted instantiation: cxx20::bad_expected_access<cxx20::unexpected<WasmEdge::ErrCode> >::what() const
Unexecuted instantiation: cxx20::bad_expected_access<__wasi_errno_t>::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
497M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
24.3M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
loader.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
5.52M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_section.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
22.6M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_instance.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
4.15M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_sort.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
104k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_alias.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
71.3k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_canonical.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
201k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_start.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
487k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_type.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
27.0M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_import.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
27.5k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_export.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
12.4k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_declarator.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
144k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_descriptor.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
69.9k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_valtype.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
1.10M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
module.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
283k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
section.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
24.7M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
description.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
366k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
segment.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
1.10M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
type.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
2.80M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
expression.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
95.8k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
instruction.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
158M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
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
60.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
132M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_validator.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
11.7M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
component_name.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
109
static inline bool likely(bool V) { return __builtin_expect(V, true); }
formchecker.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
9.66M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: component_context.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: allocator.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: wasmedge.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: wasmedge_compat.cpp:cxx20::detail::likely(bool)
fuzzTool.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
20.5k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
fuzzPO.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
1.80M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: uniTool.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: validateTool.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: parseTool.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: instantiateTool.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: toolConfig.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
4.24k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
plugin_modules.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
1.23M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: plugin.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: func.cpp:cxx20::detail::likely(bool)
argument_parser.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
4.59M
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: component_canon.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: component_module.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: tag.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)
compiler.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
23.3k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: context.cpp:cxx20::detail::likely(bool)
function_compiler.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
1.59M
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: numericInstr.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: vectorInstr.cpp:cxx20::detail::likely(bool)
codegen.cpp:cxx20::detail::likely(bool)
Line
Count
Source
113
4.63k
static inline bool likely(bool V) { return __builtin_expect(V, true); }
Unexecuted instantiation: jit.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: lazyjit.cpp:cxx20::detail::likely(bool)
Unexecuted instantiation: llvm.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)
114
115
} // namespace detail
116
117
template <class E> class unexpected {
118
  E m_val;
119
120
public:
121
10.4k
  constexpr unexpected(const unexpected &) = default;
122
11.2k
  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
76.8k
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Line
Count
Source
129
64.3k
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedINS0_IN8WasmEdge7ErrCodeEEEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
129
10.2k
      : 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
550
      : m_val(std::forward<Args>(args)...) {}
_ZN5cxx2010unexpectedIN8WasmEdge2PO5ErrorEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
129
1.68k
      : m_val(std::forward<Args>(args)...) {}
Unexecuted instantiation: _ZN5cxx2010unexpectedIN8WasmEdge7ErrCodeEEC2IJNS2_5ValueEETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
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
410k
      : 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
245k
      : 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
147k
      : 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
15.0k
      : m_val(std::forward<Err>(e)) {}
_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
1.00k
      : 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
1.40k
      : 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
270
      : 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_
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
361k
  constexpr E &value() &noexcept { return m_val; }
cxx20::unexpected<WasmEdge::ErrCode>::value() &
Line
Count
Source
178
346k
  constexpr E &value() &noexcept { return m_val; }
cxx20::unexpected<cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
178
10.4k
  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
3.91k
  constexpr E &value() &noexcept { return m_val; }
Unexecuted instantiation: cxx20::unexpected<LLVMOpaqueError*>::value() &
Unexecuted instantiation: cxx20::unexpected<WasmEdge::LLVM::Error>::value() &
179
110k
  constexpr E &&value() &&noexcept { return std::move(m_val); }
cxx20::unexpected<WasmEdge::ErrCode>::value() &&
Line
Count
Source
179
109k
  constexpr E &&value() &&noexcept { return std::move(m_val); }
cxx20::unexpected<cxx20::unexpected<WasmEdge::ErrCode> >::value() &&
Line
Count
Source
179
756
  constexpr E &&value() &&noexcept { return std::move(m_val); }
Unexecuted instantiation: cxx20::unexpected<WasmEdge::ErrCode::Value>::value() &&
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.47M
      : 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.47M
      : 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.47M
      is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E>) {
321
1.47M
    if (m_has_val) {
322
1.47M
      destruct_value();
323
1.47M
    } else {
324
0
      destruct_error();
325
0
    }
326
1.47M
  }
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.47M
      is_nothrow_destructible_v<T> &&is_nothrow_destructible_v<E>) {
321
1.47M
    if (m_has_val) {
322
1.47M
      destruct_value();
323
1.47M
    } else {
324
0
      destruct_error();
325
0
    }
326
1.47M
  }
Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error, false, false>::~expected_storage_base()
327
328
protected:
329
1.47M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
330
1.47M
    m_val.~T();
331
1.47M
  }
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.47M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
330
1.47M
    m_val.~T();
331
1.47M
  }
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
11.8k
      : 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
130M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJRjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
358
1
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
358
14.9M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIjNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
358
8.32M
      : 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
2.50M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS4_ETnPNS2_9enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSA_
Line
Count
Source
358
748
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSD_
Line
Count
Source
358
16.8k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_
Line
Count
Source
358
5.00k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_
Line
Count
Source
358
5.63k
      : 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
1.20M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS4_7ErrCodeELb1ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSD_
Line
Count
Source
358
175
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS4_7ErrCodeELb1ELb1EEC2IJRKNS2_9nullopt_tEETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSG_
Line
Count
Source
358
1.31k
      : 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
2.16M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
358
472k
      : 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
698k
      : 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
16.1k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
358
472k
      : 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
27.3M
      : 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
27.3M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
Line
Count
Source
358
440
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIiNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
358
2.38M
      : 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
45.7k
      : 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
22.0k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIhN8WasmEdge7ErrCodeELb1ELb1EEC2IJRKhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
358
34.4M
      : 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
45.7k
      : 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
22.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
2.29M
      : 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.38M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator13ComponentNameENS2_7ErrCodeELb1ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
358
12.8k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
component_name.cpp:_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS2_7ErrCodeELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
Line
Count
Source
358
36
      : 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
10.2k
      : 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
7.96k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge7ValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_
Line
Count
Source
358
2.52M
      : 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
193k
      : 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_
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_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJKmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
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_baseIPKN8WasmEdge3AST7SubTypeENS2_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_baseIb14__wasi_errno_tLb1ELb1EEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIi14__wasi_errno_tLb1ELb1EEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
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_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_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_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
36.8k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIjN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
372
3.75k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIjNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
372
2.86k
      : 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
828
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIjEEN8WasmEdge7ErrCodeELb1ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
372
4
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS4_7ErrCodeELb1ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Line
Count
Source
372
51
      : 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
13.9k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS4_7ErrCodeELb1ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_
Line
Count
Source
372
6
      : 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
392
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
372
155
      : 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
516
      : 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
100
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseImNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
372
155
      : 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
5.19k
      : 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
5.19k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge7ValTypeENS_10unexpectedINS2_7ErrCodeEEELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Line
Count
Source
372
7
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIiNS_10unexpectedIN8WasmEdge7ErrCodeEEELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
372
145
      : 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
19
      : 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
26
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIfN8WasmEdge7ErrCodeELb1ELb1EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS8_
Line
Count
Source
372
19
      : 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
26
      : 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
506
      : 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
145
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator13ComponentNameENS2_7ErrCodeELb1ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
372
1.31k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
component_name.cpp:_ZN5cxx206detail21expected_storage_baseIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS2_7ErrCodeELb1ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Line
Count
Source
372
11
      : 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
16
      : 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
81
      : 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.36k
      : 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_
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_baseIPKN8WasmEdge3AST7SubTypeENS2_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_baseIb14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIi14__wasi_errno_tLb1ELb1EEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
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_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_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_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
3.59k
  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
3.11M
      : 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.03k
      : 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
68.2k
      : 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
264k
      : 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
1.95M
      : 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
825k
      : 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_baseIPPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELS2_0ELb1EEENS9_10in_place_tEDpOSB_
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
1.68k
      : 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
550
      : 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
52
      : 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
218
      : 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
869
      : 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_baseIPPvN8WasmEdge4LLVM5ErrorELb1ELb0EEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELS2_0ELb1EEENS_10unexpect_tEDpOSD_
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
3.11M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
3.11M
    if (!m_has_val) {
438
1.68k
      destruct_error();
439
1.68k
    }
440
3.11M
  }
cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
1.58k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
1.58k
    if (!m_has_val) {
438
550
      destruct_error();
439
550
    }
440
1.58k
  }
cxx20::detail::expected_storage_base<unsigned long, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
68.3k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
68.3k
    if (!m_has_val) {
438
52
      destruct_error();
439
52
    }
440
68.3k
  }
cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::~expected_storage_base()
Line
Count
Source
436
264k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
264k
    if (!m_has_val) {
438
218
      destruct_error();
439
218
    }
440
264k
  }
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
2.78M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
437
2.78M
    if (!m_has_val) {
438
869
      destruct_error();
439
869
    }
440
2.78M
  }
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
1.68k
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
1.68k
    m_unex.~unexpected<E>();
446
1.68k
  }
cxx20::detail::expected_storage_base<bool, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
550
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
550
    m_unex.~unexpected<E>();
446
550
  }
cxx20::detail::expected_storage_base<int, WasmEdge::PO::Error, true, false>::destruct_error()
Line
Count
Source
444
218
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
218
    m_unex.~unexpected<E>();
446
218
  }
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
52
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
52
    m_unex.~unexpected<E>();
446
52
  }
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
869
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
445
869
    m_unex.~unexpected<E>();
446
869
  }
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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
6.16M
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__16vectorIhNS2_9allocatorIhEEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSC_
Line
Count
Source
470
1.46M
      : 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
4.24k
      : 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
5.11k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__17variantIJNS2_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS2_14default_deleteIS8_EEEENS4_INS6_6ModuleENS9_ISC_EEEEEEENS5_7ErrCodeELb0ELb1EEC2IJSB_ETnPNS2_9enable_ifIX18is_constructible_vISF_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSK_
Line
Count
Source
470
3.59k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__14pairINS2_6vectorIhNS2_9allocatorIhEEEES7_EEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_
Line
Count
Source
470
43.9k
      : 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
1.55M
      : 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
1.58M
      : 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
1.39M
      : 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
79.9k
      : 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
25.2k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
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_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeELb0ELb1EEC2IJSU_ETnPNS2_9enable_ifIX18is_constructible_vISU_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSZ_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance14ModuleInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge7Runtime8Instance17ComponentInstanceENS2_14default_deleteIS7_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSF_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tLb0ELb1EEC2IJS8_ETnPNS2_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSD_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIcNS2_9allocatorIcEEEE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI5INodeE14__wasi_errno_tLb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI6Poller5TimerE14__wasi_errno_tLb0ELb1EEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENSA_10in_place_tEDpOSC_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4Host4WASI8EVPollerE14__wasi_errno_tLb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
_ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM4DataENS2_7ErrCodeELb0ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
470
2.31k
      : m_has_val(true), m_val(std::forward<Args>(args)...) {}
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseIN8WasmEdge4LLVM8OrcLLJITENS2_7ErrCodeELb0ELb1EEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJNS3_INS4_4LLVM10JITLibraryEEEETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSE_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIPvNS2_9allocatorIS4_EEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELS4_0ELb1EEENS2_10in_place_tEDpOSD_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJS6_ETnPNS2_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS2_10in_place_tEDpOSB_
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
37.6k
      : 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
100
      : 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
14.7k
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS2_14default_deleteIS6_EEEENS4_7ErrCodeELb0ELb1EEC2IJSA_ETnPNS2_9enable_ifIX18is_constructible_vISA_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSE_
Line
Count
Source
484
5.14k
      : 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
246
      : m_has_val(false), m_unex(in_place, std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJSC_ETnPNS2_9enable_ifIX18is_constructible_vISC_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSG_
Line
Count
Source
484
564
      : 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
790
      : 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
10
      : 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
15.8k
      : 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
284
      : 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_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_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorINS2_4pairINS2_7variantIJhtjmasilfdbNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeELb0ELb1EEC2IJSV_ETnPNS2_9enable_ifIX18is_constructible_vISV_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSZ_
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_baseIN8WasmEdge4LLVM8OrcLLJITENS2_7ErrCodeELb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS4_7ErrCodeELb0ELb1EEC2IJS7_ETnPNS2_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Unexecuted instantiation: _ZN5cxx206detail21expected_storage_baseINSt3__16vectorIPvNS2_9allocatorIS4_EEEEN8WasmEdge7ErrCodeELb0ELb1EEC2IJS9_ETnPNS2_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELS4_0ELb1EEENS_10unexpect_tEDpOSD_
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
6.20M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
6.20M
    if (m_has_val) {
497
6.16M
      destruct_value();
498
6.16M
    }
499
6.20M
  }
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
23.4k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
23.4k
    if (m_has_val) {
497
8.70k
      destruct_value();
498
8.70k
    }
499
23.4k
  }
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
1.46M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
1.46M
    if (m_has_val) {
497
1.46M
      destruct_value();
498
1.46M
    }
499
1.46M
  }
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
44.1k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
44.1k
    if (m_has_val) {
497
43.9k
      destruct_value();
498
43.9k
    }
499
44.1k
  }
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
1.58M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
1.58M
    if (m_has_val) {
497
1.58M
      destruct_value();
498
1.58M
    }
499
1.58M
  }
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
1.55M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
1.55M
    if (m_has_val) {
497
1.55M
      destruct_value();
498
1.55M
    }
499
1.55M
  }
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
1.39M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
1.39M
    if (m_has_val) {
497
1.39M
      destruct_value();
498
1.39M
    }
499
1.39M
  }
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
95.8k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
95.8k
    if (m_has_val) {
497
79.9k
      destruct_value();
498
79.9k
    }
499
95.8k
  }
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::~expected_storage_base()
Line
Count
Source
495
25.5k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
25.5k
    if (m_has_val) {
497
25.2k
      destruct_value();
498
25.2k
    }
499
25.5k
  }
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::~expected_storage_base()
cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode, false, true>::~expected_storage_base()
Line
Count
Source
495
2.31k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
2.31k
    if (m_has_val) {
497
2.31k
      destruct_value();
498
2.31k
    }
499
2.31k
  }
cxx20::detail::expected_storage_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode, false, true>::~expected_storage_base()
Line
Count
Source
495
9.39k
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<T>) {
496
9.39k
    if (m_has_val) {
497
4.24k
      destruct_value();
498
4.24k
    }
499
9.39k
  }
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, 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<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value, 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()
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()
Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::ErrCode, false, true>::~expected_storage_base()
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode, false, true>::~expected_storage_base()
500
501
protected:
502
6.16M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
6.16M
    m_val.~T();
504
6.16M
  }
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
8.70k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
8.70k
    m_val.~T();
504
8.70k
  }
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
1.46M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
1.46M
    m_val.~T();
504
1.46M
  }
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
43.9k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
43.9k
    m_val.~T();
504
43.9k
  }
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
1.58M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
1.58M
    m_val.~T();
504
1.58M
  }
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
1.55M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
1.55M
    m_val.~T();
504
1.55M
  }
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
1.39M
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
1.39M
    m_val.~T();
504
1.39M
  }
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
79.9k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
79.9k
    m_val.~T();
504
79.9k
  }
cxx20::detail::expected_storage_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode, false, true>::destruct_value()
Line
Count
Source
502
25.2k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
25.2k
    m_val.~T();
504
25.2k
  }
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType>, std::__1::allocator<std::__1::pair<WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>, WasmEdge::ValType> > >, WasmEdge::ErrCode, false, true>::destruct_value()
cxx20::detail::expected_storage_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode, false, true>::destruct_value()
Line
Count
Source
502
2.31k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
2.31k
    m_val.~T();
504
2.31k
  }
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
4.24k
  constexpr void destruct_value() noexcept(is_nothrow_destructible_v<T>) {
503
4.24k
    m_val.~T();
504
4.24k
  }
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, 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<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value, 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()
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()
Unexecuted instantiation: cxx20::detail::expected_storage_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::ErrCode, false, true>::destruct_value()
Unexecuted instantiation: cxx20::detail::expected_storage_base<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode, 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
1.80M
  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
270
      : 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
1.80M
  ~expected_storage_base() noexcept(is_nothrow_destructible_v<E>) {
540
1.80M
    if (!m_has_val) {
541
270
      destruct_error();
542
270
    }
543
1.80M
  }
544
545
protected:
546
  constexpr void destruct_value() noexcept {}
547
270
  constexpr void destruct_error() noexcept(is_nothrow_destructible_v<E>) {
548
270
    m_unex.~unexpected<E>();
549
270
  }
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
264M
  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
260M
  constexpr expected_storage_base() noexcept : m_has_val(true), m_no_init() {}
cxx20::detail::expected_storage_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false, true>::expected_storage_base()
Line
Count
Source
559
3.80M
  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()
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
0
      : 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
219k
      : 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
218k
      : m_has_val(false), m_unex(std::forward<Args>(args)...) {}
_ZN5cxx206detail21expected_storage_baseIvNS_10unexpectedIN8WasmEdge7ErrCodeEEELb0ELb1EEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
572
1.00k
      : 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_
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
0
  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
235M
  constexpr bool has_value() const noexcept { return likely(base::m_has_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>::has_value() const
Line
Count
Source
600
27.6k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
21.6M
  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> >, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
1.46M
  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
77.7k
  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
78.8M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const
Line
Count
Source
600
16.6M
  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
4.71M
  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
1.60M
  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
3.06M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
35.1k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
21.3k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
2.99k
  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
2.30M
  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
3.49M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
472k
  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
2.78M
  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
1.39M
  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
32.4k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<unsigned long, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const
Line
Count
Source
600
945k
  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
95.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
27.3M
  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
54.7M
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::has_value() const
Line
Count
Source
600
887
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
2.38M
  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.38M
  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
45.7k
  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
45.7k
  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
22.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
22.0k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
21.0k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
component_name.cpp:cxx20::detail::expected_view_base<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
83
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
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
20.5k
  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.63M
  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
50.7k
  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
16.0k
  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.58k
  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::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
9.39k
  constexpr bool has_value() const noexcept { return likely(base::m_has_val); }
cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::has_value() const
Line
Count
Source
600
2.31k
  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<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.47M
  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
264k
  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
68.3k
  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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::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<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::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
2.78M
  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<int, __wasi_errno_t>::has_value() const
Unexecuted instantiation: cxx20::detail::expected_view_base<bool, __wasi_errno_t>::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<__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::ErrCode>::has_value() const
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::has_value() const
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::error() const &
602
  constexpr const E &&error() const &&noexcept {
603
    return std::move(base::m_unex).value();
604
  }
605
35.4k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
886
  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
90
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<std::__1::variant<std::__1::unique_ptr<WasmEdge::AST::Component::Component, std::__1::default_delete<WasmEdge::AST::Component::Component> >, std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> > >, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
5.14k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
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
208
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
9.52k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
2.81k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
746
  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
349
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
4
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
51
  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> >, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
124
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
6
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
185
  constexpr E &error() &noexcept { return base::m_unex.value(); }
Unexecuted instantiation: cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::error() &
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<WasmEdge::ValType, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
509
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
114
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
100
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned long, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
155
  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
5.19k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
605
7
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
691
  constexpr E &error() &noexcept { return base::m_unex.value(); }
component_name.cpp:cxx20::detail::expected_view_base<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode>::error() &
Line
Count
Source
605
11
  constexpr E &error() &noexcept { return base::m_unex.value(); }
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
16
  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.36k
  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
284
  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
81
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<bool, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
550
  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
5.14k
  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() &
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<int, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
218
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::error() &
Line
Count
Source
605
52
  constexpr E &error() &noexcept { return base::m_unex.value(); }
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::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::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
869
  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::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::error() &
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::error() &
Unexecuted instantiation: cxx20::detail::expected_view_base<int, __wasi_errno_t>::error() &
Unexecuted instantiation: cxx20::detail::expected_view_base<bool, __wasi_errno_t>::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<__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::ErrCode>::error() &
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::error() &
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::error() &
606
31.1k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
2.86k
  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
10
  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() &&
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
4.45k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
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
606
38
  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> >, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
666
  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
52
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
392
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
155
  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
215
  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
82
  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
10
  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
15.8k
  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
5.19k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
7
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
145
  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
145
  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
207
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
19
  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
19
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
26
  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
26
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::error() &&
Line
Count
Source
606
628
  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<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() &&
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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<WasmEdge::RefVariant, 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() &&
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<void*, std::__1::allocator<void*> >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::val() const &
711
  constexpr const T &&val() const &&noexcept { return std::move(base::m_val); }
712
141M
  constexpr T &val() &noexcept { return base::m_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
8.70k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned int, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
14.9M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
1.49M
  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
43.9k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
38.0M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
8.32M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
2.50M
  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
1.58M
  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
1.55M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
17.5k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
10.6k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
1.49k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<long, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
2.47M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<long, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
2.16M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
472k
  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
1.39M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::ValType, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
698k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::ValMut, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
16.1k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned long, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
472k
  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
79.9k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::OpCode, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
27.3M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
27.3M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
440
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<int, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
2.38M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<int, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
2.38M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<float, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
45.7k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<float, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
45.7k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<double, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
22.0k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<double, cxx20::unexpected<WasmEdge::ErrCode> >::val() &
Line
Count
Source
712
22.0k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
12.8k
  constexpr T &val() &noexcept { return base::m_val; }
component_name.cpp:cxx20::detail::expected_view_base<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
36
  constexpr T &val() &noexcept { return base::m_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
10.2k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
25.1k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
7.96k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
912k
  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.03k
  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::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
4.24k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::val() &
Line
Count
Source
712
2.31k
  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<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
1.47M
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<int, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
264k
  constexpr T &val() &noexcept { return base::m_val; }
cxx20::detail::expected_view_base<unsigned long, WasmEdge::PO::Error>::val() &
Line
Count
Source
712
68.2k
  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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::val() &
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::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::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
2.57M
  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::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), 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::AST::SubType const*, WasmEdge::ErrCode>::val() &
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::Runtime::Instance::GlobalInstance*, WasmEdge::ErrCode>::val() &
Unexecuted instantiation: cxx20::detail::expected_view_base<int, __wasi_errno_t>::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<__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::ErrCode>::val() &
Unexecuted instantiation: cxx20::detail::expected_view_base<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::val() &
Unexecuted instantiation: cxx20::detail::expected_view_base<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::val() &
713
3.03M
  constexpr T &&val() &&noexcept { return std::move(base::m_val); }
cxx20::detail::expected_view_base<unsigned char, WasmEdge::ErrCode>::val() &&
Line
Count
Source
713
3.03M
  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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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_baseIhN8WasmEdge7ErrCodeEE15construct_valueIJhETnPNSt3__19enable_ifIX18is_constructible_vIhDpOT_EEvE4typeELPv0ELb1EEEvSA_
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_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeEE15construct_valueIJRKSU_ETnPNS2_9enable_ifIX18is_constructible_vISU_DpOT_EEvE4typeELPv0ELb0EEEvS13_
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_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeEE15construct_valueIJSU_ETnPNS2_9enable_ifIX18is_constructible_vISU_DpOT_EEvE4typeELPv0ELb1EEEvS11_
721
  template <class... Args,
722
            enable_if_t<is_constructible_v<E, Args &&...>> * = nullptr,
723
            bool NoExcept = is_nothrow_constructible_v<E, Args &&...>>
724
3.59k
  void construct_error(Args &&...args) noexcept(NoExcept) {
725
3.59k
    new (addressof(base::m_unex)) unexpected<E>(std::forward<Args>(args)...);
726
3.59k
    base::m_has_val = false;
727
3.59k
  }
_ZN5cxx206detail18expected_view_baseIhN8WasmEdge7ErrCodeEE15construct_errorIJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpOT_EEvE4typeELPv0ELb1EEEvSA_
Line
Count
Source
724
3.59k
  void construct_error(Args &&...args) noexcept(NoExcept) {
725
3.59k
    new (addressof(base::m_unex)) unexpected<E>(std::forward<Args>(args)...);
726
3.59k
    base::m_has_val = false;
727
3.59k
  }
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_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeEE15construct_errorIJRKSV_ETnPNS2_9enable_ifIX18is_constructible_vISV_DpOT_EEvE4typeELPv0ELb1EEEvS13_
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_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSC_10RefVariantEEEEEEENSC_16ComponentValTypeEEENS9_ISS_EEEENSC_7ErrCodeEE15construct_errorIJSV_ETnPNS2_9enable_ifIX18is_constructible_vISV_DpOT_EEvE4typeELPv0ELb1EEEvS11_
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
262M
  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
257M
  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
3.81M
  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
1.80M
  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
137k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() &
Line
Count
Source
740
135k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
cxx20::detail::expected_view_base<void, cxx20::unexpected<WasmEdge::ErrCode> >::error() &
Line
Count
Source
740
1.00k
  constexpr E &error() &noexcept { return base::m_unex.value(); }
Unexecuted instantiation: cxx20::detail::expected_view_base<void, __wasi_errno_t>::error() &
cxx20::detail::expected_view_base<void, WasmEdge::PO::Error>::error() &
Line
Count
Source
740
270
  constexpr E &error() &noexcept { return base::m_unex.value(); }
741
79.3k
  constexpr E &&error() &&noexcept { return std::move(base::m_unex).value(); }
cxx20::detail::expected_view_base<void, WasmEdge::ErrCode>::error() &&
Line
Count
Source
741
79.3k
  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
0
  void assign_error(unexpected<G> &&rhs) noexcept(NoExcept) {
806
0
    static_assert(is_nothrow_constructible_v<E, G &&>,
807
0
                  "E must nothrow move constructible");
808
0
    static_assert(is_nothrow_assignable_v<E &, G &&>, "E must move assignable");
809
0
    if (this->has_value()) {
810
0
      this->destruct_value();
811
0
      this->construct_error(std::move(rhs).value());
812
0
    } else {
813
0
      this->error() = std::move(rhs).value();
814
0
    }
815
0
  }
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
3.03M
              &&is_nothrow_move_assignable_v<E>) {
885
3.03M
    static_assert(is_nothrow_move_constructible_v<E>,
886
3.03M
                  "E must nothrow move constructible");
887
3.03M
    static_assert(disjunction_v<is_void<T>, is_move_constructible<T>>,
888
3.03M
                  "T must move constructible");
889
3.03M
    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
3.03M
    } else if (this->has_value() && !rhs.has_value()) {
907
      if constexpr (is_void_v<T>) {
908
        this->construct_error(std::move(rhs).error());
909
3.59k
      } else if constexpr (is_nothrow_move_constructible_v<T>) {
910
3.59k
        this->destruct_value();
911
3.59k
        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
3.03M
    } else {
923
3.03M
      if (this->has_value()) {
924
3.03M
        if constexpr (!is_void_v<T>) {
925
3.03M
          this->val() = std::move(rhs).val();
926
3.03M
        }
927
3.03M
      } else {
928
0
        this->error() = std::move(rhs).error();
929
0
      }
930
3.03M
    }
931
3.03M
  }
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
265M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, WasmEdge::ErrCode, false>::expected_copy_base()
Line
Count
Source
946
260M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<unsigned char, WasmEdge::ErrCode, false>::expected_copy_base()
Line
Count
Source
946
11.8k
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_copy_base()
Line
Count
Source
946
3.80M
  constexpr expected_copy_base() = default;
cxx20::detail::expected_copy_base<void, WasmEdge::PO::Error, false>::expected_copy_base()
Line
Count
Source
946
1.80M
  constexpr expected_copy_base() = default;
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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
265M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, WasmEdge::ErrCode, false>::expected_move_base()
Line
Count
Source
978
260M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<unsigned char, WasmEdge::ErrCode, false>::expected_move_base()
Line
Count
Source
978
11.8k
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, cxx20::unexpected<WasmEdge::ErrCode>, false>::expected_move_base()
Line
Count
Source
978
3.80M
  constexpr expected_move_base() = default;
cxx20::detail::expected_move_base<void, WasmEdge::PO::Error, false>::expected_move_base()
Line
Count
Source
978
1.80M
  constexpr expected_move_base() = default;
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
0
      if constexpr (is_void_v<T>) {
984
0
        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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, false>&&)
Unexecuted instantiation: cxx20::detail::expected_move_base<void, WasmEdge::ErrCode, false>::expected_move_base(cxx20::detail::expected_move_base<void, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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
265M
  constexpr expected_copy_assign_base() = default;
cxx20::detail::expected_copy_assign_base<void, WasmEdge::ErrCode, false>::expected_copy_assign_base()
Line
Count
Source
1014
260M
  constexpr expected_copy_assign_base() = default;
cxx20::detail::expected_copy_assign_base<unsigned char, WasmEdge::ErrCode, false>::expected_copy_assign_base()
Line
Count
Source
1014
11.8k
  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
3.80M
  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
1.80M
  constexpr expected_copy_assign_base() = default;
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, false>&&)
Unexecuted instantiation: cxx20::detail::expected_copy_assign_base<void, WasmEdge::ErrCode, false>::expected_copy_assign_base(cxx20::detail::expected_copy_assign_base<void, 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
265M
  constexpr expected_move_assign_base() = default;
cxx20::detail::expected_move_assign_base<void, WasmEdge::ErrCode, false>::expected_move_assign_base()
Line
Count
Source
1046
260M
  constexpr expected_move_assign_base() = default;
cxx20::detail::expected_move_assign_base<unsigned char, WasmEdge::ErrCode, false>::expected_move_assign_base()
Line
Count
Source
1046
11.8k
  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
3.80M
  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
1.80M
  constexpr expected_move_assign_base() = default;
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, false>&&)
Unexecuted instantiation: cxx20::detail::expected_move_assign_base<void, WasmEdge::ErrCode, false>::expected_move_assign_base(cxx20::detail::expected_move_assign_base<void, 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
3.03M
              &&is_nothrow_move_assignable_v<E>) {
1058
3.03M
    this->assign(std::move(rhs));
1059
3.03M
    return *this;
1060
3.03M
  }
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
52.4k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
52.4k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
52.4k
  if (exp.has_value()) {
1070
44.5k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
44.5k
  }
1072
7.93k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
52.4k
}
segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST14ElementSegmentEE3$_4hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS4_EEEEDaOT_OT0_
Line
Count
Source
1066
4.52k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
4.52k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
4.52k
  if (exp.has_value()) {
1070
4.50k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
4.50k
  }
1072
19
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
4.52k
}
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
47.9k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1067
47.9k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1068
1069
47.9k
  if (exp.has_value()) {
1070
39.9k
    return invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1071
39.9k
  }
1072
7.92k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1073
47.9k
}
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_2VM2VM23unsafeLoadJITExecutableEvE3$_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_2VM2VM23unsafeLoadJITExecutableEvE3$_5S7_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_
Unexecuted instantiation: proxy.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIPKN8WasmEdge3AST11InstructionENS3_7ErrCodeEEEZNS3_8Executor8Executor9proxyCallERNS3_7Runtime12StackManagerEjPKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEPSR_E3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_
Unexecuted instantiation: proxy.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIPKN8WasmEdge3AST11InstructionENS3_7ErrCodeEEEZNS3_8Executor8Executor17proxyCallIndirectERNS3_7Runtime12StackManagerEjjjPKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNS3_10RefVariantEEEEPSR_E3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_
Unexecuted instantiation: proxy.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIPKN8WasmEdge3AST11InstructionENS3_7ErrCodeEEEZNS3_8Executor8Executor12proxyCallRefERNS3_7Runtime12StackManagerENS3_10RefVariantEPKNS3_7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dSF_EEEPSR_E3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS2_IvS8_EEEEDaOT_OT0_
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_
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
8.77k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
8.77k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
8.77k
  if (exp.has_value()) {
1082
6.85k
    return invoke(std::forward<F>(f));
1083
6.85k
  }
1084
1.92k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
8.77k
}
segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_
Line
Count
Source
1078
2.59k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
2.59k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
2.59k
  if (exp.has_value()) {
1082
2.59k
    return invoke(std::forward<F>(f));
1083
2.59k
  }
1084
0
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
2.59k
}
segment.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST13GlobalSegmentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_
Line
Count
Source
1078
2.59k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
2.59k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
2.59k
  if (exp.has_value()) {
1082
2.48k
    return invoke(std::forward<F>(f));
1083
2.48k
  }
1084
111
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
2.59k
}
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_
component_validator.cpp:_ZN5cxx206detail22expected_and_then_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component9ComponentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES5_EEDaOT_OT0_
Line
Count
Source
1078
3.59k
constexpr auto expected_and_then_impl(Exp &&exp, F &&f) {
1079
3.59k
  static_assert(is_expected_v<Ret>, "F must return an expected");
1080
1081
3.59k
  if (exp.has_value()) {
1082
1.78k
    return invoke(std::forward<F>(f));
1083
1.78k
  }
1084
1.80k
  return Ret(unexpect, std::forward<Exp>(exp).error());
1085
3.59k
}
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_2VM2VM23unsafeLoadJITExecutableEvE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS2_INS3_4LLVM4DataES4_EEEEDaOT_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
3.69M
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
3.69M
  if (exp.has_value()) {
1129
3.69M
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
3.69M
    return Result();
1131
3.69M
  }
1132
756
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
3.69M
}
component_descriptor.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST9Component14CoreImportDescEE3$_1jS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSG_IX9is_void_vIT4_EEvE4typeELSL_0ENS2_IvS6_EEEET6_OT_OT0_
Line
Count
Source
1127
4.01k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
4.01k
  if (exp.has_value()) {
1129
4.01k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
4.01k
    return Result();
1131
4.01k
  }
1132
2
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
4.01k
}
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
18.3k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
18.3k
  if (exp.has_value()) {
1129
18.3k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
18.3k
    return Result();
1131
18.3k
  }
1132
66
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
18.3k
}
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
18.3k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
18.3k
  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
69
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
18.3k
}
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
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
26
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
18.2k
}
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
4.11k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
4.11k
  if (exp.has_value()) {
1129
4.10k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
4.10k
    return Result();
1131
4.10k
  }
1132
8
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
4.11k
}
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
19.8k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
19.8k
  if (exp.has_value()) {
1129
19.7k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
19.7k
    return Result();
1131
19.7k
  }
1132
80
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
19.8k
}
description.cpp:_ZN5cxx206detail17expected_map_implINS_8expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEEZNS4_6Loader6Loader8loadDescERNS4_3AST10ExportDescEE3$_2hS6_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSF_IX9is_void_vIT4_EEvE4typeELSK_0ENS2_IvS6_EEEET6_OT_OT0_
Line
Count
Source
1127
19.7k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
19.7k
  if (exp.has_value()) {
1129
19.7k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
19.7k
    return Result();
1131
19.7k
  }
1132
18
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
19.7k
}
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
19.7k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
19.7k
  if (exp.has_value()) {
1129
19.7k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
19.7k
    return Result();
1131
19.7k
  }
1132
22
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
19.7k
}
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
3.00k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
3.00k
  if (exp.has_value()) {
1129
2.99k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.99k
    return Result();
1131
2.99k
  }
1132
8
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
3.00k
}
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
21.1k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
21.1k
  if (exp.has_value()) {
1129
21.1k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
21.1k
    return Result();
1131
21.1k
  }
1132
10
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
21.1k
}
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
1.22k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
1.22k
  if (exp.has_value()) {
1129
1.22k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
1.22k
    return Result();
1131
1.22k
  }
1132
2
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
1.22k
}
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
5.37k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
5.37k
  if (exp.has_value()) {
1129
5.36k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
5.36k
    return Result();
1131
5.36k
  }
1132
10
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
5.37k
}
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.38M
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
2.38M
  if (exp.has_value()) {
1129
2.38M
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
2.38M
    return Result();
1131
2.38M
  }
1132
145
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
2.38M
}
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
833k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
833k
  if (exp.has_value()) {
1129
833k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
833k
    return Result();
1131
833k
  }
1132
207
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
833k
}
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
45.7k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
45.7k
  if (exp.has_value()) {
1129
45.7k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
45.7k
    return Result();
1131
45.7k
  }
1132
19
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
45.7k
}
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
22.0k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
22.0k
  if (exp.has_value()) {
1129
22.0k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
22.0k
    return Result();
1131
22.0k
  }
1132
26
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
22.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
249k
constexpr Result expected_map_impl(Exp &&exp, F &&f) {
1128
249k
  if (exp.has_value()) {
1129
249k
    invoke(std::forward<F>(f), *std::forward<Exp>(exp));
1130
249k
    return Result();
1131
249k
  }
1132
38
  return Result(unexpect, std::forward<Exp>(exp).error());
1133
249k
}
Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIiEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E0_mS4_TnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0EvTnPNSA_IX9is_void_vIT4_EEvE4typeELSU_0ESC_EET6_OSB_OT0_
Unexecuted instantiation: _ZN5cxx206detail17expected_map_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIlEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E0_mS4_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
46.3M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
46.3M
  if (exp.has_value()) {
1169
46.3M
    return Result(*std::forward<Exp>(exp));
1170
46.3M
  }
1171
18.9k
  return Result(unexpect,
1172
18.9k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
46.3M
}
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_
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_
Line
Count
Source
1167
5.14k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.14k
  if (exp.has_value()) {
1169
5.13k
    return Result(*std::forward<Exp>(exp));
1170
5.13k
  }
1171
10
  return Result(unexpect,
1172
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.14k
}
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_
Line
Count
Source
1167
5.11k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.11k
  if (exp.has_value()) {
1169
5.09k
    return Result(*std::forward<Exp>(exp));
1170
5.09k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.11k
}
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_
Line
Count
Source
1167
7.37k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.37k
  if (exp.has_value()) {
1169
7.36k
    return Result(*std::forward<Exp>(exp));
1170
7.36k
  }
1171
10
  return Result(unexpect,
1172
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.37k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component19CoreInstanceSectionENSA_12CoreInstanceEZZNS7_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_
Line
Count
Source
1167
7.34k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.34k
  if (exp.has_value()) {
1169
7.32k
    return Result(*std::forward<Exp>(exp));
1170
7.32k
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.34k
}
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_
Line
Count
Source
1167
320k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
320k
  if (exp.has_value()) {
1169
320k
    return Result(*std::forward<Exp>(exp));
1170
320k
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
320k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15CoreTypeSectionENSA_11CoreDefTypeEZZNS7_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_
Line
Count
Source
1167
320k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
320k
  if (exp.has_value()) {
1169
320k
    return Result(*std::forward<Exp>(exp));
1170
320k
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
320k
}
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_
Line
Count
Source
1167
5.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.29k
  if (exp.has_value()) {
1169
5.29k
    return Result(*std::forward<Exp>(exp));
1170
5.29k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.29k
}
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_
Line
Count
Source
1167
5.26k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.26k
  if (exp.has_value()) {
1169
5.24k
    return Result(*std::forward<Exp>(exp));
1170
5.24k
  }
1171
20
  return Result(unexpect,
1172
20
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.26k
}
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_
Line
Count
Source
1167
85.3k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
85.3k
  if (exp.has_value()) {
1169
85.2k
    return Result(*std::forward<Exp>(exp));
1170
85.2k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
85.3k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15InstanceSectionENSA_8InstanceEZZNS7_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_
Line
Count
Source
1167
85.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
85.2k
  if (exp.has_value()) {
1169
85.2k
    return Result(*std::forward<Exp>(exp));
1170
85.2k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
85.2k
}
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_
Line
Count
Source
1167
6.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.67k
  if (exp.has_value()) {
1169
6.67k
    return Result(*std::forward<Exp>(exp));
1170
6.67k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.67k
}
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_
Line
Count
Source
1167
6.66k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.66k
  if (exp.has_value()) {
1169
6.64k
    return Result(*std::forward<Exp>(exp));
1170
6.64k
  }
1171
15
  return Result(unexpect,
1172
15
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.66k
}
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_
Line
Count
Source
1167
1.21M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.21M
  if (exp.has_value()) {
1169
1.21M
    return Result(*std::forward<Exp>(exp));
1170
1.21M
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.21M
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11TypeSectionENSA_7DefTypeEZZNS7_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_
Line
Count
Source
1167
1.21M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.21M
  if (exp.has_value()) {
1169
1.21M
    return Result(*std::forward<Exp>(exp));
1170
1.21M
  }
1171
14
  return Result(unexpect,
1172
14
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.21M
}
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_
Line
Count
Source
1167
26.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
26.8k
  if (exp.has_value()) {
1169
26.8k
    return Result(*std::forward<Exp>(exp));
1170
26.8k
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
26.8k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CanonSectionENSA_9CanonicalEZZNS7_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_
Line
Count
Source
1167
26.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
26.8k
  if (exp.has_value()) {
1169
26.8k
    return Result(*std::forward<Exp>(exp));
1170
26.8k
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
26.8k
}
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_
Line
Count
Source
1167
1.63k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.63k
  if (exp.has_value()) {
1169
1.62k
    return Result(*std::forward<Exp>(exp));
1170
1.62k
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.63k
}
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_
Line
Count
Source
1167
17.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
17.0k
  if (exp.has_value()) {
1169
17.0k
    return Result(*std::forward<Exp>(exp));
1170
17.0k
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
17.0k
}
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_
Line
Count
Source
1167
17.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
17.0k
  if (exp.has_value()) {
1169
17.0k
    return Result(*std::forward<Exp>(exp));
1170
17.0k
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
17.0k
}
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_
Line
Count
Source
1167
5.68k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.68k
  if (exp.has_value()) {
1169
5.68k
    return Result(*std::forward<Exp>(exp));
1170
5.68k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.68k
}
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_
Line
Count
Source
1167
5.66k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.66k
  if (exp.has_value()) {
1169
5.65k
    return Result(*std::forward<Exp>(exp));
1170
5.65k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.66k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader16loadCoreInstanceERNS3_3AST9Component12CoreInstanceEE3$_2hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
52.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
52.6k
  if (exp.has_value()) {
1169
52.5k
    return Result(*std::forward<Exp>(exp));
1170
52.5k
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
52.6k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader16loadCoreInstanceERNS3_3AST9Component12CoreInstanceEE3$_2jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
46.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
46.0k
  if (exp.has_value()) {
1169
46.0k
    return Result(*std::forward<Exp>(exp));
1170
46.0k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
46.0k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader12loadInstanceERNS3_3AST9Component8InstanceEE3$_2hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
30.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
30.2k
  if (exp.has_value()) {
1169
30.2k
    return Result(*std::forward<Exp>(exp));
1170
30.2k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
30.2k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader12loadInstanceERNS3_3AST9Component8InstanceEE3$_2jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
4.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.67k
  if (exp.has_value()) {
1169
4.67k
    return Result(*std::forward<Exp>(exp));
1170
4.67k
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.67k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CoreInstanceENSA_14InstantiateArgIjEERZNS7_16loadCoreInstanceERSB_E3$_0EENS2_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_
Line
Count
Source
1167
46.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
46.0k
  if (exp.has_value()) {
1169
46.0k
    return Result(*std::forward<Exp>(exp));
1170
46.0k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
46.0k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZZNSA_6Loader6Loader16loadCoreInstanceERNSA_3AST9Component12CoreInstanceEENK3$_0clERNSG_14InstantiateArgIjEEEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IS9_SX_EEEET5_OSN_OT0_
Line
Count
Source
1167
199
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
199
  if (exp.has_value()) {
1169
178
    return Result(*std::forward<Exp>(exp));
1170
178
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
199
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader16loadCoreInstanceERNS3_3AST9Component12CoreInstanceEENK3$_0clERNS9_14InstantiateArgIjEEEUlT_E_hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IhSR_EEEET5_OSG_OT0_
Line
Count
Source
1167
178
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
178
  if (exp.has_value()) {
1169
174
    return Result(*std::forward<Exp>(exp));
1170
174
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
178
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZZNS3_6Loader6Loader16loadCoreInstanceERNS3_3AST9Component12CoreInstanceEENK3$_0clERNS9_14InstantiateArgIjEEEUlT_E_jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IjSR_EEEET5_OSG_OT0_
Line
Count
Source
1167
150
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
150
  if (exp.has_value()) {
1169
149
    return Result(*std::forward<Exp>(exp));
1170
149
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
150
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CoreInstanceENSA_12InlineExportERZNS7_16loadCoreInstanceERSB_E3$_1EENS2_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
6.52k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.52k
  if (exp.has_value()) {
1169
6.50k
    return Result(*std::forward<Exp>(exp));
1170
6.50k
  }
1171
20
  return Result(unexpect,
1172
20
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.52k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZZNSA_6Loader6Loader16loadCoreInstanceERNSA_3AST9Component12CoreInstanceEENK3$_1clERNSG_12InlineExportEEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ENS2_IS9_SV_EEEET5_OSM_OT0_
Line
Count
Source
1167
5.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.29k
  if (exp.has_value()) {
1169
5.26k
    return Result(*std::forward<Exp>(exp));
1170
5.26k
  }
1171
29
  return Result(unexpect,
1172
29
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.29k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8InstanceENSA_14InstantiateArgINSA_9SortIndexEEERZNS7_12loadInstanceERSB_E3$_0EENS2_IvS4_EERNSt3__16vectorIT0_NSJ_9allocatorISL_EEEEOT1_EUlT_E_jTnPNSJ_9enable_ifIXnt9is_void_vISQ_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSU_IXnt9is_void_vIT3_EEvE4typeELSY_0ENS2_IjS10_EEEET5_OSS_OSL_
Line
Count
Source
1167
4.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.67k
  if (exp.has_value()) {
1169
4.65k
    return Result(*std::forward<Exp>(exp));
1170
4.65k
  }
1171
20
  return Result(unexpect,
1172
20
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.67k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZZNSA_6Loader6Loader12loadInstanceERNSA_3AST9Component8InstanceEENK3$_0clERNSG_14InstantiateArgINSG_9SortIndexEEEEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ENS2_IS9_SX_EEEET5_OSO_OT0_
Line
Count
Source
1167
6.02k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.02k
  if (exp.has_value()) {
1169
6.00k
    return Result(*std::forward<Exp>(exp));
1170
6.00k
  }
1171
20
  return Result(unexpect,
1172
20
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.02k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8InstanceENSA_12InlineExportERZNS7_12loadInstanceERSB_E3$_1EENS2_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
25.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
25.5k
  if (exp.has_value()) {
1169
25.5k
    return Result(*std::forward<Exp>(exp));
1170
25.5k
  }
1171
19
  return Result(unexpect,
1172
19
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
25.5k
}
component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadSortIndexERNS3_3AST9Component9SortIndexEbE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_
Line
Count
Source
1167
15.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
15.5k
  if (exp.has_value()) {
1169
15.5k
    return Result(*std::forward<Exp>(exp));
1170
15.5k
  }
1171
25
  return Result(unexpect,
1172
25
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
15.5k
}
component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadSortERNS3_3AST9Component4SortEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
18.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
18.9k
  if (exp.has_value()) {
1169
18.9k
    return Result(*std::forward<Exp>(exp));
1170
18.9k
  }
1171
35
  return Result(unexpect,
1172
35
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
18.9k
}
component_sort.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader12loadCoreSortERNS3_3AST9Component4SortEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
9.73k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
9.73k
  if (exp.has_value()) {
1169
9.72k
    return Result(*std::forward<Exp>(exp));
1170
9.72k
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
9.73k
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCoreAliasERNS3_3AST9Component9CoreAliasEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
318
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
318
  if (exp.has_value()) {
1169
315
    return Result(*std::forward<Exp>(exp));
1170
315
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
318
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCoreAliasERNS3_3AST9Component9CoreAliasEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
625
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
625
  if (exp.has_value()) {
1169
623
    return Result(*std::forward<Exp>(exp));
1170
623
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
625
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader9loadAliasERNS3_3AST9Component5AliasEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
8.60k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
8.60k
  if (exp.has_value()) {
1169
8.59k
    return Result(*std::forward<Exp>(exp));
1170
8.59k
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
8.60k
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader9loadAliasERNS3_3AST9Component5AliasEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
14.1k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
14.1k
  if (exp.has_value()) {
1169
14.1k
    return Result(*std::forward<Exp>(exp));
1170
14.1k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
14.1k
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEERZNSA_6Loader6Loader9loadAliasERNSA_3AST9Component5AliasEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ENS2_IS9_SS_EEEET5_OT_OT0_
Line
Count
Source
1167
3.03k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.03k
  if (exp.has_value()) {
1169
3.02k
    return Result(*std::forward<Exp>(exp));
1170
3.02k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.03k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component9CanonicalEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
29.3k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
29.3k
  if (exp.has_value()) {
1169
29.2k
    return Result(*std::forward<Exp>(exp));
1170
29.2k
  }
1171
111
  return Result(unexpect,
1172
111
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
29.3k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component9CanonicalEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
19.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
19.4k
  if (exp.has_value()) {
1169
19.3k
    return Result(*std::forward<Exp>(exp));
1170
19.3k
  }
1171
76
  return Result(unexpect,
1172
76
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
19.4k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9CanonicalENSA_8CanonOptEZZNS7_13loadCanonicalERSB_ENK3$_3clEvEUlRSC_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_
Line
Count
Source
1167
8.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
8.67k
  if (exp.has_value()) {
1169
8.62k
    return Result(*std::forward<Exp>(exp));
1170
8.62k
  }
1171
49
  return Result(unexpect,
1172
49
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
8.67k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader19loadCanonicalOptionERNS3_3AST9Component8CanonOptEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
9.64k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
9.64k
  if (exp.has_value()) {
1169
9.61k
    return Result(*std::forward<Exp>(exp));
1170
9.61k
  }
1171
29
  return Result(unexpect,
1172
29
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
9.64k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader19loadCanonicalOptionERNS3_3AST9Component8CanonOptEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
1.05k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.05k
  if (exp.has_value()) {
1169
1.03k
    return Result(*std::forward<Exp>(exp));
1170
1.03k
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.05k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9CanonicalENSA_12LabelValTypeEZNS7_13loadCanonicalERSB_E3$_4EENS2_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
1.07k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.07k
  if (exp.has_value()) {
1169
1.04k
    return Result(*std::forward<Exp>(exp));
1170
1.04k
  }
1171
22
  return Result(unexpect,
1172
22
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.07k
}
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_
Line
Count
Source
1167
3.15k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.15k
  if (exp.has_value()) {
1169
3.15k
    return Result(*std::forward<Exp>(exp));
1170
3.15k
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.15k
}
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_
Line
Count
Source
1167
1.59k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.59k
  if (exp.has_value()) {
1169
1.57k
    return Result(*std::forward<Exp>(exp));
1170
1.57k
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.59k
}
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_
Line
Count
Source
1167
119k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
119k
  if (exp.has_value()) {
1169
119k
    return Result(*std::forward<Exp>(exp));
1170
119k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
119k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component11CoreDefTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
257k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
257k
  if (exp.has_value()) {
1169
257k
    return Result(*std::forward<Exp>(exp));
1170
257k
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
257k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component11CoreDefTypeEE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_
Line
Count
Source
1167
664
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
664
  if (exp.has_value()) {
1169
646
    return Result(*std::forward<Exp>(exp));
1170
646
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
664
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component7DefTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
1.24M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.24M
  if (exp.has_value()) {
1169
1.24M
    return Result(*std::forward<Exp>(exp));
1170
1.24M
  }
1171
116
  return Result(unexpect,
1172
116
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.24M
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component8FuncTypeEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
12.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
12.7k
  if (exp.has_value()) {
1169
12.7k
    return Result(*std::forward<Exp>(exp));
1170
12.7k
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
12.7k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component8FuncTypeEE3$_2hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
904
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
904
  if (exp.has_value()) {
1169
903
    return Result(*std::forward<Exp>(exp));
1170
903
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
904
}
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_
Line
Count
Source
1167
17.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
17.5k
  if (exp.has_value()) {
1169
17.5k
    return Result(*std::forward<Exp>(exp));
1170
17.5k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
17.5k
}
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_
Line
Count
Source
1167
388
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
388
  if (exp.has_value()) {
1169
386
    return Result(*std::forward<Exp>(exp));
1170
386
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
388
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component6ListTyEbE3$_1jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_
Line
Count
Source
1167
2.21k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.21k
  if (exp.has_value()) {
1169
2.21k
    return Result(*std::forward<Exp>(exp));
1170
2.21k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.21k
}
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_
Line
Count
Source
1167
657
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
657
  if (exp.has_value()) {
1169
655
    return Result(*std::forward<Exp>(exp));
1170
655
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
657
}
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_
Line
Count
Source
1167
1.12k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.12k
  if (exp.has_value()) {
1169
1.12k
    return Result(*std::forward<Exp>(exp));
1170
1.12k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.12k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11CoreDefTypeENSA_14CoreModuleDeclEZNS7_8loadTypeERSB_E3$_3EENS2_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
114k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
114k
  if (exp.has_value()) {
1169
114k
    return Result(*std::forward<Exp>(exp));
1170
114k
  }
1171
20
  return Result(unexpect,
1172
20
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
114k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8FuncTypeENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_3EENS2_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
12.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
12.7k
  if (exp.has_value()) {
1169
12.7k
    return Result(*std::forward<Exp>(exp));
1170
12.7k
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
12.7k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ComponentTypeENSA_13ComponentDeclEZNS7_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_
Line
Count
Source
1167
775k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
775k
  if (exp.has_value()) {
1169
775k
    return Result(*std::forward<Exp>(exp));
1170
775k
  }
1171
22
  return Result(unexpect,
1172
22
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
775k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12InstanceTypeENSA_12InstanceDeclEZNS7_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_
Line
Count
Source
1167
357k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
357k
  if (exp.has_value()) {
1169
357k
    return Result(*std::forward<Exp>(exp));
1170
357k
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
357k
}
_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_
Line
Count
Source
1167
17.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
17.5k
  if (exp.has_value()) {
1169
17.5k
    return Result(*std::forward<Exp>(exp));
1170
17.5k
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
17.5k
}
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_
Line
Count
Source
1167
749
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
749
  if (exp.has_value()) {
1169
748
    return Result(*std::forward<Exp>(exp));
1170
748
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
749
}
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_
Line
Count
Source
1167
889
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
889
  if (exp.has_value()) {
1169
868
    return Result(*std::forward<Exp>(exp));
1170
868
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
889
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9VariantTyENSt3__14pairINSC_12basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEENSC_8optionalINS3_16ComponentValTypeEEEEEZNS7_8loadTypeERSB_E3$_1EENS2_IvS4_EERNSC_6vectorIT0_NSH_ISS_EEEEOT1_EUlT_E_jTnPNSC_9enable_ifIXnt9is_void_vISW_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNS10_IXnt9is_void_vIT3_EEvE4typeELS14_0ENS2_IjS16_EEEET5_OSY_OSS_
Line
Count
Source
1167
1.01k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.01k
  if (exp.has_value()) {
1169
999
    return Result(*std::forward<Exp>(exp));
1170
999
  }
1171
19
  return Result(unexpect,
1172
19
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.01k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZZNSA_6Loader6Loader8loadTypeERNSA_3AST9Component9VariantTyEENK3$_0clERNS3_4pairIS9_NS3_8optionalINSA_16ComponentValTypeEEEEEEUlT_E_S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESB_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSX_0ESC_EET5_OSQ_OT0_
Line
Count
Source
1167
1.26k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.26k
  if (exp.has_value()) {
1169
1.24k
    return Result(*std::forward<Exp>(exp));
1170
1.24k
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.26k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component9VariantTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFNS2_IvS4_EERSF_EEEEUlT_E_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IhSW_EEEET5_OSN_OSF_
Line
Count
Source
1167
1.24k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.24k
  if (exp.has_value()) {
1169
1.24k
    return Result(*std::forward<Exp>(exp));
1170
1.24k
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.24k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component9VariantTyEENK3$_0clERNSt3__14pairINSD_12basic_stringIcNSD_11char_traitsIcEENSD_9allocatorIcEEEENSD_8optionalINS3_16ComponentValTypeEEEEEEUlT_E0_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSX_0ES5_EET5_OSQ_OT0_
Line
Count
Source
1167
1.22k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.22k
  if (exp.has_value()) {
1169
1.21k
    return Result(*std::forward<Exp>(exp));
1170
1.21k
  }
1171
10
  return Result(unexpect,
1172
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.22k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7TupleTyENS3_16ComponentValTypeEZNS7_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_
Line
Count
Source
1167
1.01k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.01k
  if (exp.has_value()) {
1169
989
    return Result(*std::forward<Exp>(exp));
1170
989
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.01k
}
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_
Line
Count
Source
1167
384
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
384
  if (exp.has_value()) {
1169
366
    return Result(*std::forward<Exp>(exp));
1170
366
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
384
}
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_
Line
Count
Source
1167
882
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
882
  if (exp.has_value()) {
1169
861
    return Result(*std::forward<Exp>(exp));
1170
861
  }
1171
21
  return Result(unexpect,
1172
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
882
}
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_
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
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.28k
}
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_
Line
Count
Source
1167
4.17k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.17k
  if (exp.has_value()) {
1169
4.11k
    return Result(*std::forward<Exp>(exp));
1170
4.11k
  }
1171
60
  return Result(unexpect,
1172
60
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.17k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8ResultTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFNS2_IvS4_EERSF_EEEEUlT_E_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IhSW_EEEET5_OSN_OSF_
Line
Count
Source
1167
7.20k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
7.20k
  if (exp.has_value()) {
1169
7.20k
    return Result(*std::forward<Exp>(exp));
1170
7.20k
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
7.20k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8StreamTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFNS2_IvS4_EERSF_EEEEUlT_E_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IhSW_EEEET5_OSN_OSF_
Line
Count
Source
1167
1.32k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.32k
  if (exp.has_value()) {
1169
1.32k
    return Result(*std::forward<Exp>(exp));
1170
1.32k
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.32k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8FutureTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFNS2_IvS4_EERSF_EEEEUlT_E_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IhSW_EEEET5_OSN_OSF_
Line
Count
Source
1167
915
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
915
  if (exp.has_value()) {
1169
912
    return Result(*std::forward<Exp>(exp));
1170
912
  }
1171
3
  return Result(unexpect,
1172
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
915
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component6ExportENSA_10ExternDescEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFNS2_IvS4_EERSF_EEEEUlT_E_hTnPNSD_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ENS2_IhSW_EEEET5_OSN_OSF_
Line
Count
Source
1167
1.49k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.49k
  if (exp.has_value()) {
1169
1.49k
    return Result(*std::forward<Exp>(exp));
1170
1.49k
  }
1171
1
  return Result(unexpect,
1172
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.49k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader8loadDeclERNSA_3AST9Component14CoreImportDeclEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_
Line
Count
Source
1167
4.76k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.76k
  if (exp.has_value()) {
1169
4.75k
    return Result(*std::forward<Exp>(exp));
1170
4.75k
  }
1171
10
  return Result(unexpect,
1172
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.76k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader8loadDeclERNSA_3AST9Component14CoreImportDeclEE3$_1S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_
Line
Count
Source
1167
4.75k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.75k
  if (exp.has_value()) {
1169
4.74k
    return Result(*std::forward<Exp>(exp));
1170
4.74k
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.75k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7ErrCodeEEEZNSA_6Loader6Loader8loadDeclERNSA_3AST9Component14CoreExportDeclEE3$_0S9_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedISB_EETnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ENS2_IS9_SR_EEEET5_OT_OT0_
Line
Count
Source
1167
1.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.33k
  if (exp.has_value()) {
1169
1.33k
    return Result(*std::forward<Exp>(exp));
1170
1.33k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.33k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component14CoreModuleDeclEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
8.37k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
8.37k
  if (exp.has_value()) {
1169
8.35k
    return Result(*std::forward<Exp>(exp));
1170
8.35k
  }
1171
23
  return Result(unexpect,
1172
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
8.37k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component12InstanceDeclEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
10.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
10.0k
  if (exp.has_value()) {
1169
10.0k
    return Result(*std::forward<Exp>(exp));
1170
10.0k
  }
1171
16
  return Result(unexpect,
1172
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
10.0k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component13ComponentDeclEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
9.70k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
9.70k
  if (exp.has_value()) {
1169
9.67k
    return Result(*std::forward<Exp>(exp));
1170
9.67k
  }
1171
32
  return Result(unexpect,
1172
32
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
9.70k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component14CoreImportDescEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
6.07k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.07k
  if (exp.has_value()) {
1169
6.06k
    return Result(*std::forward<Exp>(exp));
1170
6.06k
  }
1171
9
  return Result(unexpect,
1172
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.07k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component14CoreImportDescEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
4.01k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.01k
  if (exp.has_value()) {
1169
4.01k
    return Result(*std::forward<Exp>(exp));
1170
4.01k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.01k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component10ExternDescEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IhSM_EEEET5_OT_OT0_
Line
Count
Source
1167
14.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
14.9k
  if (exp.has_value()) {
1169
14.9k
    return Result(*std::forward<Exp>(exp));
1170
14.9k
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
14.9k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component10ExternDescEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IjSM_EEEET5_OT_OT0_
Line
Count
Source
1167
3.89k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.89k
  if (exp.has_value()) {
1169
3.89k
    return Result(*std::forward<Exp>(exp));
1170
3.89k
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.89k
}
component_valtype.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIlN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_16ComponentValTypeEE3$_0lTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSC_IXnt9is_void_vIT3_EEvE4typeELSH_0ENS2_IlSJ_EEEET5_OT_OT0_
Line
Count
Source
1167
111k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
111k
  if (exp.has_value()) {
1169
111k
    return Result(*std::forward<Exp>(exp));
1170
111k
  }
1171
38
  return Result(unexpect,
1172
38
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
111k
}
component_valtype.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_
Line
Count
Source
1167
86.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
86.0k
  if (exp.has_value()) {
1169
85.9k
    return Result(*std::forward<Exp>(exp));
1170
85.9k
  }
1171
58
  return Result(unexpect,
1172
58
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
86.0k
}
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
1.39M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.39M
  if (exp.has_value()) {
1169
1.39M
    return Result(*std::forward<Exp>(exp));
1170
1.39M
  }
1171
29
  return Result(unexpect,
1172
29
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.39M
}
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
1.39M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.39M
  if (exp.has_value()) {
1169
1.39M
    return Result(*std::forward<Exp>(exp));
1170
1.39M
  }
1171
187
  return Result(unexpect,
1172
187
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.39M
}
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
1.39M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.39M
  if (exp.has_value()) {
1169
1.39M
    return Result(*std::forward<Exp>(exp));
1170
1.39M
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.39M
}
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
6.43k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.43k
  if (exp.has_value()) {
1169
6.42k
    return Result(*std::forward<Exp>(exp));
1170
6.42k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.43k
}
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
6.93k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
6.93k
  if (exp.has_value()) {
1169
6.85k
    return Result(*std::forward<Exp>(exp));
1170
6.85k
  }
1171
73
  return Result(unexpect,
1172
73
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
6.93k
}
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
13.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
13.0k
  if (exp.has_value()) {
1169
13.0k
    return Result(*std::forward<Exp>(exp));
1170
13.0k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
13.0k
}
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
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
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.39k
}
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
1.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.33k
  if (exp.has_value()) {
1169
1.29k
    return Result(*std::forward<Exp>(exp));
1170
1.29k
  }
1171
39
  return Result(unexpect,
1172
39
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.33k
}
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
5.30k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.30k
  if (exp.has_value()) {
1169
5.29k
    return Result(*std::forward<Exp>(exp));
1170
5.29k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.30k
}
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
5.25k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.25k
  if (exp.has_value()) {
1169
5.21k
    return Result(*std::forward<Exp>(exp));
1170
5.21k
  }
1171
45
  return Result(unexpect,
1172
45
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.25k
}
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
158k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
158k
  if (exp.has_value()) {
1169
158k
    return Result(*std::forward<Exp>(exp));
1170
158k
  }
1171
48
  return Result(unexpect,
1172
48
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
158k
}
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
1.26k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.26k
  if (exp.has_value()) {
1169
1.25k
    return Result(*std::forward<Exp>(exp));
1170
1.25k
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.26k
}
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
1.22k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.22k
  if (exp.has_value()) {
1169
1.18k
    return Result(*std::forward<Exp>(exp));
1170
1.18k
  }
1171
44
  return Result(unexpect,
1172
44
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.22k
}
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.71k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.71k
  if (exp.has_value()) {
1169
1.71k
    return Result(*std::forward<Exp>(exp));
1170
1.71k
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.71k
}
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.68k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.68k
  if (exp.has_value()) {
1169
1.65k
    return Result(*std::forward<Exp>(exp));
1170
1.65k
  }
1171
31
  return Result(unexpect,
1172
31
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.68k
}
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
2.31k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.31k
  if (exp.has_value()) {
1169
2.30k
    return Result(*std::forward<Exp>(exp));
1170
2.30k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.31k
}
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
2.27k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.27k
  if (exp.has_value()) {
1169
2.24k
    return Result(*std::forward<Exp>(exp));
1170
2.24k
  }
1171
38
  return Result(unexpect,
1172
38
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.27k
}
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.48k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.48k
  if (exp.has_value()) {
1169
1.48k
    return Result(*std::forward<Exp>(exp));
1170
1.48k
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.48k
}
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST13ExportSectionENS9_10ExportDescEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS2_IvS4_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_jTnPNSH_9enable_ifIXnt9is_void_vISO_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ENS2_IjSY_EEEET5_OSQ_OSJ_
Line
Count
Source
1167
1.43k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.43k
  if (exp.has_value()) {
1169
1.39k
    return Result(*std::forward<Exp>(exp));
1170
1.39k
  }
1171
44
  return Result(unexpect,
1172
44
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.43k
}
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
205
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
205
  if (exp.has_value()) {
1169
199
    return Result(*std::forward<Exp>(exp));
1170
199
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
205
}
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
165
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
165
  if (exp.has_value()) {
1169
158
    return Result(*std::forward<Exp>(exp));
1170
158
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
165
}
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
3.85k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.85k
  if (exp.has_value()) {
1169
3.85k
    return Result(*std::forward<Exp>(exp));
1170
3.85k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.85k
}
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
3.82k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.82k
  if (exp.has_value()) {
1169
3.78k
    return Result(*std::forward<Exp>(exp));
1170
3.78k
  }
1171
37
  return Result(unexpect,
1172
37
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.82k
}
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
5.66k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.66k
  if (exp.has_value()) {
1169
5.65k
    return Result(*std::forward<Exp>(exp));
1170
5.65k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.66k
}
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
5.62k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.62k
  if (exp.has_value()) {
1169
5.58k
    return Result(*std::forward<Exp>(exp));
1170
5.58k
  }
1171
42
  return Result(unexpect,
1172
42
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.62k
}
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
3.20k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.20k
  if (exp.has_value()) {
1169
3.19k
    return Result(*std::forward<Exp>(exp));
1170
3.19k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.20k
}
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
3.15k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
3.15k
  if (exp.has_value()) {
1169
3.11k
    return Result(*std::forward<Exp>(exp));
1170
3.11k
  }
1171
37
  return Result(unexpect,
1172
37
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.15k
}
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
392
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
392
  if (exp.has_value()) {
1169
387
    return Result(*std::forward<Exp>(exp));
1170
387
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
392
}
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
347
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
347
  if (exp.has_value()) {
1169
342
    return Result(*std::forward<Exp>(exp));
1170
342
  }
1171
5
  return Result(unexpect,
1172
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
347
}
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_
Line
Count
Source
1167
247
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
247
  if (exp.has_value()) {
1169
245
    return Result(*std::forward<Exp>(exp));
1170
245
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
247
}
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_
Line
Count
Source
1167
207
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
207
  if (exp.has_value()) {
1169
174
    return Result(*std::forward<Exp>(exp));
1170
174
  }
1171
33
  return Result(unexpect,
1172
33
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
207
}
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
36.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
36.6k
  if (exp.has_value()) {
1169
36.5k
    return Result(*std::forward<Exp>(exp));
1170
36.5k
  }
1171
135
  return Result(unexpect,
1172
135
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
36.6k
}
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
18.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
18.2k
  if (exp.has_value()) {
1169
18.2k
    return Result(*std::forward<Exp>(exp));
1170
18.2k
  }
1171
26
  return Result(unexpect,
1172
26
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
18.2k
}
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
4.11k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.11k
  if (exp.has_value()) {
1169
4.10k
    return Result(*std::forward<Exp>(exp));
1170
4.10k
  }
1171
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.11k
}
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
19.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
19.8k
  if (exp.has_value()) {
1169
19.7k
    return Result(*std::forward<Exp>(exp));
1170
19.7k
  }
1171
80
  return Result(unexpect,
1172
80
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
19.8k
}
description.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIhN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST10ExportDescEE3$_0hTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IhSL_EEEET5_OT_OT0_
Line
Count
Source
1167
19.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
19.7k
  if (exp.has_value()) {
1169
19.7k
    return Result(*std::forward<Exp>(exp));
1170
19.7k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
19.7k
}
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
19.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
19.7k
  if (exp.has_value()) {
1169
19.7k
    return Result(*std::forward<Exp>(exp));
1170
19.7k
  }
1171
22
  return Result(unexpect,
1172
22
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
19.7k
}
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
2.50k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.50k
  if (exp.has_value()) {
1169
2.48k
    return Result(*std::forward<Exp>(exp));
1170
2.48k
  }
1171
15
  return Result(unexpect,
1172
15
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.50k
}
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_
Line
Count
Source
1167
247
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
247
  if (exp.has_value()) {
1169
243
    return Result(*std::forward<Exp>(exp));
1170
243
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
247
}
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
27.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
27.4k
  if (exp.has_value()) {
1169
27.3k
    return Result(*std::forward<Exp>(exp));
1170
27.3k
  }
1171
116
  return Result(unexpect,
1172
116
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
27.4k
}
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader11loadSegmentERNS3_3AST11CodeSegmentEE3$_0jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IjSL_EEEET5_OT_OT0_
Line
Count
Source
1167
51.1k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
51.1k
  if (exp.has_value()) {
1169
51.0k
    return Result(*std::forward<Exp>(exp));
1170
51.0k
  }
1171
96
  return Result(unexpect,
1172
96
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
51.1k
}
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
14.3k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
14.3k
  if (exp.has_value()) {
1169
14.2k
    return Result(*std::forward<Exp>(exp));
1170
14.2k
  }
1171
90
  return Result(unexpect,
1172
90
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
14.3k
}
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
5.37k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.37k
  if (exp.has_value()) {
1169
5.36k
    return Result(*std::forward<Exp>(exp));
1170
5.36k
  }
1171
10
  return Result(unexpect,
1172
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.37k
}
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
2.65k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.65k
  if (exp.has_value()) {
1169
2.60k
    return Result(*std::forward<Exp>(exp));
1170
2.60k
  }
1171
55
  return Result(unexpect,
1172
55
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.65k
}
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
158k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
158k
  if (exp.has_value()) {
1169
158k
    return Result(*std::forward<Exp>(exp));
1170
158k
  }
1171
11
  return Result(unexpect,
1172
11
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
158k
}
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
9.77k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
9.77k
  if (exp.has_value()) {
1169
9.72k
    return Result(*std::forward<Exp>(exp));
1170
9.72k
  }
1171
55
  return Result(unexpect,
1172
55
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
9.77k
}
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_1mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_ImSK_EEEET5_OT_OT0_
Line
Count
Source
1167
9.63k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
9.63k
  if (exp.has_value()) {
1169
9.60k
    return Result(*std::forward<Exp>(exp));
1170
9.60k
  }
1171
24
  return Result(unexpect,
1172
24
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
9.63k
}
type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_2mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_ImSK_EEEET5_OT_OT0_
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
8
  return Result(unexpect,
1172
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
3.67k
}
Unexecuted instantiation: type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_3jTnPNSt3__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_6Loader6Loader9loadLimitERNS3_3AST5LimitEE3$_4jTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ENS2_IjSK_EEEET5_OT_OT0_
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
158k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
158k
  if (exp.has_value()) {
1169
158k
    return Result(*std::forward<Exp>(exp));
1170
158k
  }
1171
18
  return Result(unexpect,
1172
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
158k
}
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_
Line
Count
Source
1167
4.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.44k
  if (exp.has_value()) {
1169
4.42k
    return Result(*std::forward<Exp>(exp));
1170
4.42k
  }
1171
13
  return Result(unexpect,
1172
13
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.44k
}
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_
Line
Count
Source
1167
4.40k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
4.40k
  if (exp.has_value()) {
1169
4.39k
    return Result(*std::forward<Exp>(exp));
1170
4.39k
  }
1171
6
  return Result(unexpect,
1172
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
4.40k
}
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_
Line
Count
Source
1167
144k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
144k
  if (exp.has_value()) {
1169
144k
    return Result(*std::forward<Exp>(exp));
1170
144k
  }
1171
34
  return Result(unexpect,
1172
34
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
144k
}
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_
Line
Count
Source
1167
1.40k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.40k
  if (exp.has_value()) {
1169
1.38k
    return Result(*std::forward<Exp>(exp));
1170
1.38k
  }
1171
27
  return Result(unexpect,
1172
27
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.40k
}
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_
Line
Count
Source
1167
13.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
13.2k
  if (exp.has_value()) {
1169
13.2k
    return Result(*std::forward<Exp>(exp));
1170
13.2k
  }
1171
28
  return Result(unexpect,
1172
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
13.2k
}
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
25.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
25.5k
  if (exp.has_value()) {
1169
25.4k
    return Result(*std::forward<Exp>(exp));
1170
25.4k
  }
1171
49
  return Result(unexpect,
1172
49
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
25.5k
}
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
47.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
47.9k
  if (exp.has_value()) {
1169
39.9k
    return Result(*std::forward<Exp>(exp));
1170
39.9k
  }
1171
7.92k
  return Result(unexpect,
1172
7.92k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
47.9k
}
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
27.3M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
27.3M
  if (exp.has_value()) {
1169
27.3M
    return Result(*std::forward<Exp>(exp));
1170
27.3M
  }
1171
5.19k
  return Result(unexpect,
1172
5.19k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
27.3M
}
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
1.21M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.21M
  if (exp.has_value()) {
1169
1.21M
    return Result(*std::forward<Exp>(exp));
1170
1.21M
  }
1171
147
  return Result(unexpect,
1172
147
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.21M
}
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
64.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
64.5k
  if (exp.has_value()) {
1169
64.4k
    return Result(*std::forward<Exp>(exp));
1170
64.4k
  }
1171
92
  return Result(unexpect,
1172
92
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
64.5k
}
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
259k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
259k
  if (exp.has_value()) {
1169
259k
    return Result(*std::forward<Exp>(exp));
1170
259k
  }
1171
44
  return Result(unexpect,
1172
44
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
259k
}
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
1.35M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1.35M
  if (exp.has_value()) {
1169
1.35M
    return Result(*std::forward<Exp>(exp));
1170
1.35M
  }
1171
901
  return Result(unexpect,
1172
901
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1.35M
}
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
82.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
82.4k
  if (exp.has_value()) {
1169
82.3k
    return Result(*std::forward<Exp>(exp));
1170
82.3k
  }
1171
107
  return Result(unexpect,
1172
107
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
82.4k
}
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_
Line
Count
Source
1167
447
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
447
  if (exp.has_value()) {
1169
440
    return Result(*std::forward<Exp>(exp));
1170
440
  }
1171
7
  return Result(unexpect,
1172
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
447
}
instruction.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEERKZNS3_6Loader6Loader15loadInstructionERNS3_3AST11InstructionEE3$_0mTnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_ImSM_EEEET5_OT_OT0_
Line
Count
Source
1167
459k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
459k
  if (exp.has_value()) {
1169
459k
    return Result(*std::forward<Exp>(exp));
1170
459k
  }
1171
123
  return Result(unexpect,
1172
123
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
459k
}
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.38M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
2.38M
  if (exp.has_value()) {
1169
2.38M
    return Result(*std::forward<Exp>(exp));
1170
2.38M
  }
1171
145
  return Result(unexpect,
1172
145
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
2.38M
}
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
833k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
833k
  if (exp.has_value()) {
1169
833k
    return Result(*std::forward<Exp>(exp));
1170
833k
  }
1171
207
  return Result(unexpect,
1172
207
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
833k
}
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
45.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
45.7k
  if (exp.has_value()) {
1169
45.7k
    return Result(*std::forward<Exp>(exp));
1170
45.7k
  }
1171
19
  return Result(unexpect,
1172
19
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
45.7k
}
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
22.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
22.0k
  if (exp.has_value()) {
1169
22.0k
    return Result(*std::forward<Exp>(exp));
1170
22.0k
  }
1171
26
  return Result(unexpect,
1172
26
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
22.0k
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_9Validator12_GLOBAL__N_117checkSubtypeDepthEjjjRNSt3__16vectorIjNS8_9allocatorIjEEEERKNS9_IPKNS3_3AST7SubTypeENSA_ISH_EEEEE3$_0jTnPNS8_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ES5_EET5_OT_OT0_
Line
Count
Source
1167
1
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
1
  if (exp.has_value()) {
1169
1
    return Result(*std::forward<Exp>(exp));
1170
1
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
1
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIjN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST7SubTypeEjRNSt3__16vectorIjNSC_9allocatorIjEEEEE3$_2jTnPNSC_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_
Line
Count
Source
1167
33
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
33
  if (exp.has_value()) {
1169
33
    return Result(*std::forward<Exp>(exp));
1170
33
  }
1171
0
  return Result(unexpect,
1172
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
33
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge9Validator13ComponentNameENS3_7ErrCodeEEEZNS4_9Validator8validateERKNS3_3AST9Component6ImportEE3$_1S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES7_EET5_OT_OT0_
Line
Count
Source
1167
5.34k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
5.34k
  if (exp.has_value()) {
1169
4.79k
    return Result(*std::forward<Exp>(exp));
1170
4.79k
  }
1171
557
  return Result(unexpect,
1172
557
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
5.34k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge9Validator13ComponentNameENS3_7ErrCodeEEEZNS4_9Validator8validateERKNS3_3AST9Component6ExportEE3$_0S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES7_EET5_OT_OT0_
Line
Count
Source
1167
690
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
690
  if (exp.has_value()) {
1169
625
    return Result(*std::forward<Exp>(exp));
1170
625
  }
1171
65
  return Result(unexpect,
1172
65
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
690
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge9Validator13ComponentNameENS3_7ErrCodeEEERZNS4_9Validator8validateERKNS3_3AST9Component10ImportDeclEE3$_0S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSH_IXnt9is_void_vIT3_EEvE4typeELSM_0ES7_EET5_OT_OT0_
Line
Count
Source
1167
334
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
334
  if (exp.has_value()) {
1169
330
    return Result(*std::forward<Exp>(exp));
1170
330
  }
1171
4
  return Result(unexpect,
1172
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
334
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge9Validator13ComponentNameENS3_7ErrCodeEEEZNS4_9Validator8validateERKNS3_3AST9Component10ExportDeclEE3$_0S5_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES7_EET5_OT_OT0_
Line
Count
Source
1167
255
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1168
255
  if (exp.has_value()) {
1169
253
    return Result(*std::forward<Exp>(exp));
1170
253
  }
1171
2
  return Result(unexpect,
1172
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1173
255
}
Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCodeEEEZNS3_2VM2VM23unsafeLoadJITExecutableEvE3$_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_2VM2VM23unsafeLoadJITExecutableEvE3$_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: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorINS3_4pairINS3_7variantIJhtjmasilfdbNS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSD_10RefVariantEEEEEEENSD_16ComponentValTypeEEENSA_IST_EEEENSD_7ErrCodeEEEZNSD_2VM2VM22unsafeExecuteComponentEPKNSD_7Runtime8Instance17ComponentInstanceENS3_17basic_string_viewIcS9_EENS_4spanIKSR_Lm18446744073709551615EEENS17_IKSS_Lm18446744073709551615EEEE3$_0SV_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ESW_TnPNS1D_IXnt9is_void_vIT3_EEvE4typeELS1I_0ESX_EET5_OT_OT0_
Unexecuted instantiation: threadInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor17runAtomicNotifyOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceERKNS3_3AST11InstructionEE3$_0mTnPNSt3__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_8expectedImN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIiEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_mTnPNSA_IXnt9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSA_IXnt9is_void_vIT3_EEvE4typeELSU_0ES5_EET5_OSB_OT0_
Unexecuted instantiation: _ZN5cxx206detail23expected_map_error_implINS_8expectedImN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor15runAtomicWaitOpIlEENSt3__19enable_ifIX10IsWasmNumVIT_EENS2_IvS4_EEE4typeERNS3_7Runtime12StackManagerERNSF_8Instance14MemoryInstanceERKNS3_3AST11InstructionEEUlSB_E_mTnPNSA_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: tableInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINS_4spanIKN8WasmEdge10RefVariantELm18446744073709551615EEENS4_7ErrCodeEEERZNS4_8Executor8Executor14runTableCopyOpERNS4_7Runtime12StackManagerERNSC_8Instance13TableInstanceESH_RKNS4_3AST11InstructionEE3$_0S7_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES8_TnPNSP_IXnt9is_void_vIT3_EEvE4typeELSU_0ES9_EET5_OT_OT0_
Unexecuted instantiation: memoryInstr.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINS_4spanIhLm18446744073709551615EEEN8WasmEdge7ErrCodeEEERZNS5_8Executor8Executor15runMemoryCopyOpERNS5_7Runtime12StackManagerERNSA_8Instance14MemoryInstanceESF_RKNS5_3AST11InstructionEE3$_0S4_TnPNSt3__19enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSN_IXnt9is_void_vIT3_EEvE4typeELSS_0ES7_EET5_OT_OT0_
Unexecuted instantiation: lazyjit.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIN8WasmEdge4LLVM4DataENS3_7ErrCodeEEEZZNS4_13LazyJITEngine15compileOnDemandEPKNS3_7Runtime8Instance16FunctionInstanceEENK3$_0clENSt3__117basic_string_viewIcNSF_11char_traitsIcEEEEEUlT_E_S5_TnPNSF_9enable_ifIXnt9is_void_vIT1_EEvE4typeELPv0ES6_TnPNSM_IXnt9is_void_vIT3_EEvE4typeELSR_0ES7_EET5_OSK_OT0_
Unexecuted instantiation: lazyjit.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedINSt3__16vectorIPvNS3_9allocatorIS5_EEEEN8WasmEdge7ErrCodeEEEZZNS9_4LLVM13LazyJITEngine15compileOnDemandEPKNS9_7Runtime8Instance16FunctionInstanceEENK3$_0clENS3_17basic_string_viewIcNS3_11char_traitsIcEEEEEUlT_E_S8_TnPNS3_9enable_ifIXnt9is_void_vIT1_EEvE4typeELS5_0ESA_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELS5_0ESB_EET5_OSO_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
13.5M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
13.5M
  if (exp.has_value()) {
1195
13.4M
    return Result();
1196
13.4M
  }
1197
77.4k
  return Result(unexpect,
1198
77.4k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
13.5M
}
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_
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_
Line
Count
Source
1193
3.03M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.03M
  if (exp.has_value()) {
1195
3.02M
    return Result();
1196
3.02M
  }
1197
3.93k
  return Result(unexpect,
1198
3.93k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.03M
}
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_
Line
Count
Source
1193
5.08k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.08k
  if (exp.has_value()) {
1195
5.03k
    return Result();
1196
5.03k
  }
1197
52
  return Result(unexpect,
1198
52
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.08k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component19CoreInstanceSectionENSA_12CoreInstanceEZZNS7_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_
Line
Count
Source
1193
52.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
52.6k
  if (exp.has_value()) {
1195
52.4k
    return Result();
1196
52.4k
  }
1197
176
  return Result(unexpect,
1198
176
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
52.6k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15CoreTypeSectionENSA_11CoreDefTypeEZZNS7_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_
Line
Count
Source
1193
254k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
254k
  if (exp.has_value()) {
1195
254k
    return Result();
1196
254k
  }
1197
338
  return Result(unexpect,
1198
338
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
254k
}
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_
Line
Count
Source
1193
5.23k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.23k
  if (exp.has_value()) {
1195
4.30k
    return Result();
1196
4.30k
  }
1197
931
  return Result(unexpect,
1198
931
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.23k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component15InstanceSectionENSA_8InstanceEZZNS7_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_
Line
Count
Source
1193
30.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
30.2k
  if (exp.has_value()) {
1195
30.1k
    return Result();
1196
30.1k
  }
1197
141
  return Result(unexpect,
1198
141
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
30.2k
}
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_
Line
Count
Source
1193
7.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
7.29k
  if (exp.has_value()) {
1195
7.21k
    return Result();
1196
7.21k
  }
1197
78
  return Result(unexpect,
1198
78
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
7.29k
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11TypeSectionENSA_7DefTypeEZZNS7_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_
Line
Count
Source
1193
1.24M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.24M
  if (exp.has_value()) {
1195
1.23M
    return Result();
1196
1.23M
  }
1197
853
  return Result(unexpect,
1198
853
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.24M
}
component_section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CanonSectionENSA_9CanonicalEZZNS7_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_
Line
Count
Source
1193
20.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
20.4k
  if (exp.has_value()) {
1195
19.9k
    return Result();
1196
19.9k
  }
1197
474
  return Result(unexpect,
1198
474
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
20.4k
}
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_
Line
Count
Source
1193
1.60k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.60k
  if (exp.has_value()) {
1195
1.55k
    return Result();
1196
1.55k
  }
1197
45
  return Result(unexpect,
1198
45
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.60k
}
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_
Line
Count
Source
1193
6.91k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.91k
  if (exp.has_value()) {
1195
6.84k
    return Result();
1196
6.84k
  }
1197
74
  return Result(unexpect,
1198
74
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.91k
}
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_
Line
Count
Source
1193
1.53k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.53k
  if (exp.has_value()) {
1195
1.49k
    return Result();
1196
1.49k
  }
1197
44
  return Result(unexpect,
1198
44
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.53k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CoreInstanceENSA_14InstantiateArgIjEERZNS7_16loadCoreInstanceERSB_E3$_0EES5_RNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSH_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_
Line
Count
Source
1193
199
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
199
  if (exp.has_value()) {
1195
149
    return Result();
1196
149
  }
1197
50
  return Result(unexpect,
1198
50
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
199
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader16loadCoreInstanceERNS3_3AST9Component12CoreInstanceEENK3$_1clERNS9_12InlineExportEEUlT_E0_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES5_EET5_OSF_OT0_
Line
Count
Source
1193
5.26k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.26k
  if (exp.has_value()) {
1195
5.23k
    return Result();
1196
5.23k
  }
1197
32
  return Result(unexpect,
1198
32
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.26k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12CoreInstanceENSA_12InlineExportERZNS7_16loadCoreInstanceERSB_E3$_1EES5_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.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.29k
  if (exp.has_value()) {
1195
5.23k
    return Result();
1196
5.23k
  }
1197
61
  return Result(unexpect,
1198
61
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.29k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader12loadInstanceERNS3_3AST9Component8InstanceEENK3$_0clERNS9_14InstantiateArgINS9_9SortIndexEEEEUlT_E0_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSK_IXnt9is_void_vIT3_EEvE4typeELSP_0ES5_EET5_OSH_OT0_
Line
Count
Source
1193
6.00k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.00k
  if (exp.has_value()) {
1195
5.98k
    return Result();
1196
5.98k
  }
1197
25
  return Result(unexpect,
1198
25
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.00k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8InstanceENSA_14InstantiateArgINSA_9SortIndexEEERZNS7_12loadInstanceERSB_E3$_0EES5_RNSt3__16vectorIT0_NSI_9allocatorISK_EEEEOT1_EUlT_E0_vTnPNSI_9enable_ifIX9is_void_vISP_EEvE4typeELPv0ES4_TnPNST_IXnt9is_void_vIT3_EEvE4typeELSX_0ES5_EET5_OSR_OSK_
Line
Count
Source
1193
6.02k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.02k
  if (exp.has_value()) {
1195
5.98k
    return Result();
1196
5.98k
  }
1197
45
  return Result(unexpect,
1198
45
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.02k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader12loadInstanceERNS3_3AST9Component8InstanceEENK3$_1clERNS9_12InlineExportEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ENS2_IvSP_EEEET5_OSF_OT0_
Line
Count
Source
1193
2.81k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.81k
  if (exp.has_value()) {
1195
2.79k
    return Result();
1196
2.79k
  }
1197
15
  return Result(unexpect,
1198
15
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.81k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_6Loader6Loader12loadInstanceERNS3_3AST9Component8InstanceEENK3$_1clERNS9_12InlineExportEEUlT_E0_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES5_EET5_OSF_OT0_
Line
Count
Source
1193
2.79k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.79k
  if (exp.has_value()) {
1195
2.78k
    return Result();
1196
2.78k
  }
1197
7
  return Result(unexpect,
1198
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.79k
}
component_instance.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8InstanceENSA_12InlineExportERZNS7_12loadInstanceERSB_E3$_1EES5_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.81k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.81k
  if (exp.has_value()) {
1195
2.78k
    return Result();
1196
2.78k
  }
1197
22
  return Result(unexpect,
1198
22
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.81k
}
component_alias.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader13loadCoreAliasERNS3_3AST9Component9CoreAliasEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IvSM_EEEET5_OT_OT0_
Line
Count
Source
1193
321
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
321
  if (exp.has_value()) {
1195
318
    return Result();
1196
318
  }
1197
3
  return Result(unexpect,
1198
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
321
}
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_
Line
Count
Source
1193
8.65k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
8.65k
  if (exp.has_value()) {
1195
8.60k
    return Result();
1196
8.60k
  }
1197
53
  return Result(unexpect,
1198
53
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
8.65k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9CanonicalENSA_8CanonOptEZZNS7_13loadCanonicalERSB_ENK3$_3clEvEUlRSC_E_EES5_RNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E0_vTnPNSH_9enable_ifIX9is_void_vISO_EEvE4typeELPv0ES4_TnPNSS_IXnt9is_void_vIT3_EEvE4typeELSW_0ES5_EET5_OSQ_OSJ_
Line
Count
Source
1193
9.64k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
9.64k
  if (exp.has_value()) {
1195
9.55k
    return Result();
1196
9.55k
  }
1197
87
  return Result(unexpect,
1198
87
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
9.64k
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader13loadCanonicalERNS3_3AST9Component9CanonicalEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
313
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
313
  if (exp.has_value()) {
1195
307
    return Result();
1196
307
  }
1197
6
  return Result(unexpect,
1198
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
313
}
component_canonical.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9CanonicalENSA_12LabelValTypeEZNS7_13loadCanonicalERSB_E3$_4EES5_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
11.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
11.7k
  if (exp.has_value()) {
1195
11.7k
    return Result();
1196
11.7k
  }
1197
14
  return Result(unexpect,
1198
14
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.7k
}
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_
Line
Count
Source
1193
119k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
119k
  if (exp.has_value()) {
1195
119k
    return Result();
1196
119k
  }
1197
18
  return Result(unexpect,
1198
18
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
119k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component11CoreDefTypeEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
143k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
143k
  if (exp.has_value()) {
1195
143k
    return Result();
1196
143k
  }
1197
196
  return Result(unexpect,
1198
196
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
143k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component7DefTypeEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.24M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.24M
  if (exp.has_value()) {
1195
1.24M
    return Result();
1196
1.24M
  }
1197
6.15k
  return Result(unexpect,
1198
6.15k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.24M
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component10DefValTypeEhE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
15.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
15.6k
  if (exp.has_value()) {
1195
15.2k
    return Result();
1196
15.2k
  }
1197
365
  return Result(unexpect,
1198
365
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
15.6k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component8FuncTypeEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
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.8k
    return Result();
1196
11.8k
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.8k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component6ListTyEbE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
2.61k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.61k
  if (exp.has_value()) {
1195
2.61k
    return Result();
1196
2.61k
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.61k
}
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_
Line
Count
Source
1193
778
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
778
  if (exp.has_value()) {
1195
766
    return Result();
1196
766
  }
1197
12
  return Result(unexpect,
1198
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
778
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component11CoreDefTypeENSA_14CoreModuleDeclEZNS7_8loadTypeERSB_E3$_3EES5_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
8.37k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
8.37k
  if (exp.has_value()) {
1195
6.65k
    return Result();
1196
6.65k
  }
1197
1.72k
  return Result(unexpect,
1198
1.72k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
8.37k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component8FuncTypeENSA_12LabelValTypeEZNS7_8loadTypeERSB_E3$_3EES5_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
71.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
71.4k
  if (exp.has_value()) {
1195
71.4k
    return Result();
1196
71.4k
  }
1197
42
  return Result(unexpect,
1198
42
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
71.4k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component13ComponentTypeENSA_13ComponentDeclEZNS7_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_
Line
Count
Source
1193
9.70k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
9.70k
  if (exp.has_value()) {
1195
4.68k
    return Result();
1196
4.68k
  }
1197
5.02k
  return Result(unexpect,
1198
5.02k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
9.70k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component12InstanceTypeENSA_12InstanceDeclEZNS7_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_
Line
Count
Source
1193
1.50k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.50k
  if (exp.has_value()) {
1195
947
    return Result();
1196
947
  }
1197
555
  return Result(unexpect,
1198
555
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.50k
}
_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_
Line
Count
Source
1193
749
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
749
  if (exp.has_value()) {
1195
748
    return Result();
1196
748
  }
1197
1
  return Result(unexpect,
1198
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
749
}
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_
Line
Count
Source
1193
2.77k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.77k
  if (exp.has_value()) {
1195
2.74k
    return Result();
1196
2.74k
  }
1197
29
  return Result(unexpect,
1198
29
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.77k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component9VariantTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFS5_RSF_EEEEUlT_E0_vTnPNSD_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSM_OSF_
Line
Count
Source
1193
693
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
693
  if (exp.has_value()) {
1195
692
    return Result();
1196
692
  }
1197
1
  return Result(unexpect,
1198
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
693
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component9VariantTyENSt3__14pairINSC_12basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEENSC_8optionalINS3_16ComponentValTypeEEEEEZNS7_8loadTypeERSB_E3$_1EES5_RNSC_6vectorIT0_NSH_ISR_EEEEOT1_EUlT_E0_vTnPNSC_9enable_ifIX9is_void_vISV_EEvE4typeELPv0ES4_TnPNSZ_IXnt9is_void_vIT3_EEvE4typeELS13_0ES5_EET5_OSX_OSR_
Line
Count
Source
1193
1.26k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.26k
  if (exp.has_value()) {
1195
1.21k
    return Result();
1196
1.21k
  }
1197
52
  return Result(unexpect,
1198
52
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.26k
}
component_type.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST9Component7TupleTyENS3_16ComponentValTypeEZNS7_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_
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.38k
    return Result();
1196
3.38k
  }
1197
36
  return Result(unexpect,
1198
36
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.42k
}
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_
Line
Count
Source
1193
882
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
882
  if (exp.has_value()) {
1195
861
    return Result();
1196
861
  }
1197
21
  return Result(unexpect,
1198
21
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
882
}
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_
Line
Count
Source
1193
4.17k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.17k
  if (exp.has_value()) {
1195
4.11k
    return Result();
1196
4.11k
  }
1197
60
  return Result(unexpect,
1198
60
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.17k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8ResultTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFS5_RSF_EEEEUlT_E0_vTnPNSD_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSM_OSF_
Line
Count
Source
1193
3.55k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.55k
  if (exp.has_value()) {
1195
3.54k
    return Result();
1196
3.54k
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.55k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8StreamTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFS5_RSF_EEEEUlT_E0_vTnPNSD_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSM_OSF_
Line
Count
Source
1193
626
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
626
  if (exp.has_value()) {
1195
622
    return Result();
1196
622
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
626
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component8FutureTyENS3_16ComponentValTypeEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFS5_RSF_EEEEUlT_E0_vTnPNSD_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSM_OSF_
Line
Count
Source
1193
153
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
153
  if (exp.has_value()) {
1195
144
    return Result();
1196
144
  }
1197
9
  return Result(unexpect,
1198
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
153
}
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_
Line
Count
Source
1193
6.91k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.91k
  if (exp.has_value()) {
1195
6.86k
    return Result();
1196
6.86k
  }
1197
46
  return Result(unexpect,
1198
46
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.91k
}
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_
Line
Count
Source
1193
6.86k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.86k
  if (exp.has_value()) {
1195
6.84k
    return Result();
1196
6.84k
  }
1197
28
  return Result(unexpect,
1198
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.86k
}
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_
Line
Count
Source
1193
1.53k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.53k
  if (exp.has_value()) {
1195
1.50k
    return Result();
1196
1.50k
  }
1197
28
  return Result(unexpect,
1198
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.53k
}
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_
Line
Count
Source
1193
1.50k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.50k
  if (exp.has_value()) {
1195
1.49k
    return Result();
1196
1.49k
  }
1197
10
  return Result(unexpect,
1198
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.50k
}
_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader10loadOptionINS3_3AST9Component6ExportENSA_10ExternDescEEENS2_INSt3__18optionalIT0_EES4_EENSD_8functionIFS5_RSF_EEEEUlT_E0_vTnPNSD_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OSM_OSF_
Line
Count
Source
1193
176
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
176
  if (exp.has_value()) {
1195
175
    return Result();
1196
175
  }
1197
1
  return Result(unexpect,
1198
1
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
176
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component14CoreImportDeclEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
4.74k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.74k
  if (exp.has_value()) {
1195
4.72k
    return Result();
1196
4.72k
  }
1197
16
  return Result(unexpect,
1198
16
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.74k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component14CoreExportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.33k
  if (exp.has_value()) {
1195
1.32k
    return Result();
1196
1.32k
  }
1197
9
  return Result(unexpect,
1198
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.33k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component14CoreModuleDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
8.33k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
8.33k
  if (exp.has_value()) {
1195
6.65k
    return Result();
1196
6.65k
  }
1197
1.68k
  return Result(unexpect,
1198
1.68k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
8.33k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component10ImportDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_
Line
Count
Source
1193
1.13k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.13k
  if (exp.has_value()) {
1195
1.12k
    return Result();
1196
1.12k
  }
1197
10
  return Result(unexpect,
1198
10
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.13k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component10ImportDeclEE3$_1vTnPNSt3__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.11k
    return Result();
1196
1.11k
  }
1197
5
  return Result(unexpect,
1198
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.12k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component10ExportDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_
Line
Count
Source
1193
445
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
445
  if (exp.has_value()) {
1195
438
    return Result();
1196
438
  }
1197
7
  return Result(unexpect,
1198
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
445
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component10ExportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
438
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
438
  if (exp.has_value()) {
1195
431
    return Result();
1196
431
  }
1197
7
  return Result(unexpect,
1198
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
438
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component12InstanceDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
9.98k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
9.98k
  if (exp.has_value()) {
1195
4.51k
    return Result();
1196
4.51k
  }
1197
5.47k
  return Result(unexpect,
1198
5.47k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
9.98k
}
component_declarator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDeclERNS3_3AST9Component13ComponentDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
9.67k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
9.67k
  if (exp.has_value()) {
1195
4.68k
    return Result();
1196
4.68k
  }
1197
4.98k
  return Result(unexpect,
1198
4.98k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
9.67k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component14CoreImportDescEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IvSM_EEEET5_OT_OT0_
Line
Count
Source
1193
2.04k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.04k
  if (exp.has_value()) {
1195
2.04k
    return Result();
1196
2.04k
  }
1197
9
  return Result(unexpect,
1198
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.04k
}
component_descriptor.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_6Loader6Loader8loadDescERNS3_3AST9Component10ExternDescEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ENS2_IvSM_EEEET5_OT_OT0_
Line
Count
Source
1193
1.95k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.95k
  if (exp.has_value()) {
1195
1.95k
    return Result();
1196
1.95k
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.95k
}
component_valtype.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader8loadTypeERNS3_3AST9Component12LabelValTypeEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS_10unexpectedIS4_EETnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ENS2_IvSL_EEEET5_OT_OT0_
Line
Count
Source
1193
85.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
85.9k
  if (exp.has_value()) {
1195
85.9k
    return Result();
1196
85.9k
  }
1197
27
  return Result(unexpect,
1198
27
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
85.9k
}
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
92.7k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
92.7k
  if (exp.has_value()) {
1195
81.3k
    return Result();
1196
81.3k
  }
1197
11.4k
  return Result(unexpect,
1198
11.4k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
92.7k
}
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_
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_
Line
Count
Source
1193
2.57k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.57k
  if (exp.has_value()) {
1195
2.50k
    return Result();
1196
2.50k
  }
1197
62
  return Result(unexpect,
1198
62
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.57k
}
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
12.5k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.5k
  if (exp.has_value()) {
1195
12.2k
    return Result();
1196
12.2k
  }
1197
246
  return Result(unexpect,
1198
246
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.5k
}
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
18.3k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
18.3k
  if (exp.has_value()) {
1195
18.1k
    return Result();
1196
18.1k
  }
1197
217
  return Result(unexpect,
1198
217
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
18.3k
}
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
158k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
158k
  if (exp.has_value()) {
1195
158k
    return Result();
1196
158k
  }
1197
48
  return Result(unexpect,
1198
48
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
158k
}
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
2.50k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.50k
  if (exp.has_value()) {
1195
2.29k
    return Result();
1196
2.29k
  }
1197
205
  return Result(unexpect,
1198
205
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.50k
}
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
3.80k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.80k
  if (exp.has_value()) {
1195
3.72k
    return Result();
1196
3.72k
  }
1197
82
  return Result(unexpect,
1198
82
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.80k
}
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
2.59k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.59k
  if (exp.has_value()) {
1195
1.37k
    return Result();
1196
1.37k
  }
1197
1.21k
  return Result(unexpect,
1198
1.21k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.59k
}
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
19.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
19.8k
  if (exp.has_value()) {
1195
19.7k
    return Result();
1196
19.7k
  }
1197
147
  return Result(unexpect,
1198
147
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
19.8k
}
section.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader7loadVecINS3_3AST14ElementSectionENS9_14ElementSegmentEZZNS7_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES5_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_vTnPNSG_9enable_ifIX9is_void_vISN_EEvE4typeELPv0ES4_TnPNSR_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_OSP_OSI_
Line
Count
Source
1193
15.0k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
15.0k
  if (exp.has_value()) {
1195
11.6k
    return Result();
1196
11.6k
  }
1197
3.41k
  return Result(unexpect,
1198
3.41k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
15.0k
}
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
21.1k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
21.1k
  if (exp.has_value()) {
1195
19.3k
    return Result();
1196
19.3k
  }
1197
1.76k
  return Result(unexpect,
1198
1.76k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
21.1k
}
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
7.68k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
7.68k
  if (exp.has_value()) {
1195
5.36k
    return Result();
1196
5.36k
  }
1197
2.32k
  return Result(unexpect,
1198
2.32k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
7.68k
}
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_
Line
Count
Source
1193
3.34k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.34k
  if (exp.has_value()) {
1195
3.31k
    return Result();
1196
3.31k
  }
1197
35
  return Result(unexpect,
1198
35
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.34k
}
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
232
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
232
  if (exp.has_value()) {
1195
225
    return Result();
1196
225
  }
1197
7
  return Result(unexpect,
1198
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
232
}
segment.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_6Loader6Loader11loadSegmentERNS3_3AST12TableSegmentEE3$_3vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSD_IXnt9is_void_vIT3_EEvE4typeELSI_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
225
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
225
  if (exp.has_value()) {
1195
171
    return Result();
1196
171
  }
1197
54
  return Result(unexpect,
1198
54
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
225
}
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
2.23k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.23k
  if (exp.has_value()) {
1195
2.12k
    return Result();
1196
2.12k
  }
1197
114
  return Result(unexpect,
1198
114
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.23k
}
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
2.59k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.59k
  if (exp.has_value()) {
1195
1.37k
    return Result();
1196
1.37k
  }
1197
1.21k
  return Result(unexpect,
1198
1.21k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.59k
}
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
12.6k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.6k
  if (exp.has_value()) {
1195
9.76k
    return Result();
1196
9.76k
  }
1197
2.87k
  return Result(unexpect,
1198
2.87k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.6k
}
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
4.52k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.52k
  if (exp.has_value()) {
1195
4.48k
    return Result();
1196
4.48k
  }
1197
38
  return Result(unexpect,
1198
38
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.52k
}
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
22.1k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
22.1k
  if (exp.has_value()) {
1195
22.1k
    return Result();
1196
22.1k
  }
1197
41
  return Result(unexpect,
1198
41
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
22.1k
}
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
20.9k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
20.9k
  if (exp.has_value()) {
1195
19.3k
    return Result();
1196
19.3k
  }
1197
1.55k
  return Result(unexpect,
1198
1.55k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
20.9k
}
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
4.76k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.76k
  if (exp.has_value()) {
1195
2.62k
    return Result();
1196
2.62k
  }
1197
2.13k
  return Result(unexpect,
1198
2.13k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.76k
}
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
6.85k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.85k
  if (exp.has_value()) {
1195
6.66k
    return Result();
1196
6.66k
  }
1197
196
  return Result(unexpect,
1198
196
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.85k
}
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
5.64k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.64k
  if (exp.has_value()) {
1195
5.55k
    return Result();
1196
5.55k
  }
1197
89
  return Result(unexpect,
1198
89
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.64k
}
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
4.13k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
4.13k
  if (exp.has_value()) {
1195
4.04k
    return Result();
1196
4.04k
  }
1197
92
  return Result(unexpect,
1198
92
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
4.13k
}
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_
Line
Count
Source
1193
1.32k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.32k
  if (exp.has_value()) {
1195
1.27k
    return Result();
1196
1.27k
  }
1197
49
  return Result(unexpect,
1198
49
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.32k
}
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_
Line
Count
Source
1193
13.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
13.2k
  if (exp.has_value()) {
1195
13.2k
    return Result();
1196
13.2k
  }
1197
28
  return Result(unexpect,
1198
28
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
13.2k
}
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
24.4k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
24.4k
  if (exp.has_value()) {
1195
24.3k
    return Result();
1196
24.3k
  }
1197
114
  return Result(unexpect,
1198
114
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
24.4k
}
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_
Line
Count
Source
1193
546
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
546
  if (exp.has_value()) {
1195
537
    return Result();
1196
537
  }
1197
9
  return Result(unexpect,
1198
9
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
546
}
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
6.62k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.62k
  if (exp.has_value()) {
1195
6.56k
    return Result();
1196
6.56k
  }
1197
58
  return Result(unexpect,
1198
58
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.62k
}
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
6.56k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.56k
  if (exp.has_value()) {
1195
6.51k
    return Result();
1196
6.51k
  }
1197
52
  return Result(unexpect,
1198
52
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.56k
}
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
6.51k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.51k
  if (exp.has_value()) {
1195
6.49k
    return Result();
1196
6.49k
  }
1197
17
  return Result(unexpect,
1198
17
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.51k
}
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
6.49k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.49k
  if (exp.has_value()) {
1195
6.34k
    return Result();
1196
6.34k
  }
1197
154
  return Result(unexpect,
1198
154
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.49k
}
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
6.34k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.34k
  if (exp.has_value()) {
1195
6.15k
    return Result();
1196
6.15k
  }
1197
190
  return Result(unexpect,
1198
190
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.34k
}
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
6.15k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.15k
  if (exp.has_value()) {
1195
5.83k
    return Result();
1196
5.83k
  }
1197
316
  return Result(unexpect,
1198
316
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.15k
}
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
5.83k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.83k
  if (exp.has_value()) {
1195
5.79k
    return Result();
1196
5.79k
  }
1197
48
  return Result(unexpect,
1198
48
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.83k
}
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
5.79k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.79k
  if (exp.has_value()) {
1195
5.66k
    return Result();
1196
5.66k
  }
1197
122
  return Result(unexpect,
1198
122
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.79k
}
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
5.66k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.66k
  if (exp.has_value()) {
1195
5.62k
    return Result();
1196
5.62k
  }
1197
44
  return Result(unexpect,
1198
44
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.66k
}
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
5.62k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.62k
  if (exp.has_value()) {
1195
5.53k
    return Result();
1196
5.53k
  }
1197
95
  return Result(unexpect,
1198
95
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.62k
}
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
5.53k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.53k
  if (exp.has_value()) {
1195
5.50k
    return Result();
1196
5.50k
  }
1197
30
  return Result(unexpect,
1198
30
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.53k
}
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
5.50k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.50k
  if (exp.has_value()) {
1195
3.96k
    return Result();
1196
3.96k
  }
1197
1.53k
  return Result(unexpect,
1198
1.53k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.50k
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST7SubTypeEjRNSt3__16vectorIjNSC_9allocatorIjEEEEE3$_0vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
6.71k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.71k
  if (exp.has_value()) {
1195
6.71k
    return Result();
1196
6.71k
  }
1197
8
  return Result(unexpect,
1198
8
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.71k
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST7SubTypeEjRNSt3__16vectorIjNSC_9allocatorIjEEEEE3$_1vTnPNSC_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSJ_IXnt9is_void_vIT3_EEvE4typeELSO_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
6.02k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.02k
  if (exp.has_value()) {
1195
6.01k
    return Result();
1196
6.01k
  }
1197
12
  return Result(unexpect,
1198
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.02k
}
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
1.01k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.01k
  if (exp.has_value()) {
1195
989
    return Result();
1196
989
  }
1197
23
  return Result(unexpect,
1198
23
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.01k
}
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
2.22k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.22k
  if (exp.has_value()) {
1195
2.18k
    return Result();
1196
2.18k
  }
1197
45
  return Result(unexpect,
1198
45
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.22k
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST12TableSegmentEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
8
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
8
  if (exp.has_value()) {
1195
4
    return Result();
1196
4
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
8
}
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
934
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
934
  if (exp.has_value()) {
1195
788
    return Result();
1196
788
  }
1197
146
  return Result(unexpect,
1198
146
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
934
}
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
614
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
614
  if (exp.has_value()) {
1195
298
    return Result();
1196
298
  }
1197
316
  return Result(unexpect,
1198
316
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
614
}
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
298
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
298
  if (exp.has_value()) {
1195
298
    return Result();
1196
298
  }
1197
0
  return Result(unexpect,
1198
0
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
298
}
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.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.44k
  if (exp.has_value()) {
1195
1.38k
    return Result();
1196
1.38k
  }
1197
60
  return Result(unexpect,
1198
60
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.44k
}
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
269
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
269
  if (exp.has_value()) {
1195
265
    return Result();
1196
265
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
269
}
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.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.8k
  if (exp.has_value()) {
1195
11.3k
    return Result();
1196
11.3k
  }
1197
1.53k
  return Result(unexpect,
1198
1.53k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.8k
}
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
190
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
190
  if (exp.has_value()) {
1195
184
    return Result();
1196
184
  }
1197
6
  return Result(unexpect,
1198
6
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
190
}
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
105
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
105
  if (exp.has_value()) {
1195
100
    return Result();
1196
100
  }
1197
5
  return Result(unexpect,
1198
5
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
105
}
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
225
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
225
  if (exp.has_value()) {
1195
222
    return Result();
1196
222
  }
1197
3
  return Result(unexpect,
1198
3
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
225
}
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
92
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
92
  if (exp.has_value()) {
1195
88
    return Result();
1196
88
  }
1197
4
  return Result(unexpect,
1198
4
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
92
}
validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST11TypeSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSE_IXnt9is_void_vIT3_EEvE4typeELSJ_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
8.56k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
8.56k
  if (exp.has_value()) {
1195
8.50k
    return Result();
1196
8.50k
  }
1197
58
  return Result(unexpect,
1198
58
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
8.56k
}
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
1.27k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.27k
  if (exp.has_value()) {
1195
1.21k
    return Result();
1196
1.21k
  }
1197
52
  return Result(unexpect,
1198
52
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.27k
}
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
942
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
942
  if (exp.has_value()) {
1195
788
    return Result();
1196
788
  }
1197
154
  return Result(unexpect,
1198
154
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
942
}
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
2.00k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.00k
  if (exp.has_value()) {
1195
1.81k
    return Result();
1196
1.81k
  }
1197
190
  return Result(unexpect,
1198
190
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.00k
}
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
614
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
614
  if (exp.has_value()) {
1195
298
    return Result();
1196
298
  }
1197
316
  return Result(unexpect,
1198
316
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
614
}
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
593
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
593
  if (exp.has_value()) {
1195
498
    return Result();
1196
498
  }
1197
95
  return Result(unexpect,
1198
95
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
593
}
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.8k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
12.8k
  if (exp.has_value()) {
1195
11.3k
    return Result();
1196
11.3k
  }
1197
1.53k
  return Result(unexpect,
1198
1.53k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
12.8k
}
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
1.09k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.09k
  if (exp.has_value()) {
1195
1.06k
    return Result();
1196
1.06k
  }
1197
30
  return Result(unexpect,
1198
30
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.09k
}
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.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
11.2k
  if (exp.has_value()) {
1195
11.0k
    return Result();
1196
11.0k
  }
1197
114
  return Result(unexpect,
1198
114
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
11.2k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator17validateComponentERKNS3_3AST9Component9ComponentEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.64M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.64M
  if (exp.has_value()) {
1195
1.64M
    return Result();
1196
1.64M
  }
1197
1.82k
  return Result(unexpect,
1198
1.82k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.64M
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component17CoreModuleSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.51k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.51k
  if (exp.has_value()) {
1195
1.49k
    return Result();
1196
1.49k
  }
1197
17
  return Result(unexpect,
1198
17
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.51k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component19CoreInstanceSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
6.10k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
6.10k
  if (exp.has_value()) {
1195
6.03k
    return Result();
1196
6.03k
  }
1197
70
  return Result(unexpect,
1198
70
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
6.10k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component15CoreTypeSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
252k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
252k
  if (exp.has_value()) {
1195
252k
    return Result();
1196
252k
  }
1197
60
  return Result(unexpect,
1198
60
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
252k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component16ComponentSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
3.84k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
3.84k
  if (exp.has_value()) {
1195
3.83k
    return Result();
1196
3.83k
  }
1197
12
  return Result(unexpect,
1198
12
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
3.84k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component15InstanceSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
26.2k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
26.2k
  if (exp.has_value()) {
1195
26.1k
    return Result();
1196
26.1k
  }
1197
160
  return Result(unexpect,
1198
160
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
26.2k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component12AliasSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
5.56k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.56k
  if (exp.has_value()) {
1195
5.41k
    return Result();
1196
5.41k
  }
1197
143
  return Result(unexpect,
1198
143
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.56k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component11TypeSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.19M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.19M
  if (exp.has_value()) {
1195
1.19M
    return Result();
1196
1.19M
  }
1197
298
  return Result(unexpect,
1198
298
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.19M
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component12CanonSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_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.23k
    return Result();
1196
7.23k
  }
1197
215
  return Result(unexpect,
1198
215
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
7.44k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component13ImportSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
5.40k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.40k
  if (exp.has_value()) {
1195
4.70k
    return Result();
1196
4.70k
  }
1197
696
  return Result(unexpect,
1198
696
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.40k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component13ExportSectionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
705
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
705
  if (exp.has_value()) {
1195
609
    return Result();
1196
609
  }
1197
96
  return Result(unexpect,
1198
96
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
705
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component11CoreDefTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.44k
  if (exp.has_value()) {
1195
1.38k
    return Result();
1196
1.38k
  }
1197
64
  return Result(unexpect,
1198
64
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.44k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator8validateERKNS3_3AST9Component7DefTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.19M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.19M
  if (exp.has_value()) {
1195
1.19M
    return Result();
1196
1.19M
  }
1197
358
  return Result(unexpect,
1198
358
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.19M
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component6ImportEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
5.40k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
5.40k
  if (exp.has_value()) {
1195
5.34k
    return Result();
1196
5.34k
  }
1197
51
  return Result(unexpect,
1198
51
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
5.40k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator8validateERKNS3_3AST9Component14CoreModuleDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.44k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.44k
  if (exp.has_value()) {
1195
1.38k
    return Result();
1196
1.38k
  }
1197
64
  return Result(unexpect,
1198
64
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.44k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator8validateERKNS3_3AST9Component10ImportDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
341
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
341
  if (exp.has_value()) {
1195
334
    return Result();
1196
334
  }
1197
7
  return Result(unexpect,
1198
7
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
341
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component10ExportDeclEE3$_1vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
253
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
253
  if (exp.has_value()) {
1195
251
    return Result();
1196
251
  }
1197
2
  return Result(unexpect,
1198
2
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
253
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator8validateERKNS3_3AST9Component12InstanceDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.29k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.29k
  if (exp.has_value()) {
1195
1.21k
    return Result();
1196
1.21k
  }
1197
82
  return Result(unexpect,
1198
82
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.29k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_9Validator9Validator8validateERKNS3_3AST9Component13ComponentDeclEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSG_IXnt9is_void_vIT3_EEvE4typeELSL_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.14k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.14k
  if (exp.has_value()) {
1195
1.10k
    return Result();
1196
1.10k
  }
1197
47
  return Result(unexpect,
1198
47
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.14k
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component12InstanceTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
485
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
485
  if (exp.has_value()) {
1195
439
    return Result();
1196
439
  }
1197
46
  return Result(unexpect,
1198
46
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
485
}
component_validator.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_9Validator9Validator8validateERKNS3_3AST9Component13ComponentTypeEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSF_IXnt9is_void_vIT3_EEvE4typeELSK_0ES5_EET5_OT_OT0_
Line
Count
Source
1193
1.14k
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
1.14k
  if (exp.has_value()) {
1195
1.10k
    return Result();
1196
1.10k
  }
1197
47
  return Result(unexpect,
1198
47
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
1.14k
}
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
2.06M
constexpr Result expected_map_error_impl(Exp &&exp, F &&f) {
1194
2.06M
  if (exp.has_value()) {
1195
2.05M
    return Result();
1196
2.05M
  }
1197
1.74k
  return Result(unexpect,
1198
1.74k
                invoke(std::forward<F>(f), std::forward<Exp>(exp).error()));
1199
2.06M
}
Unexecuted instantiation: vm.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_2VM2VM23unsafeLoadJITExecutableEvE3$_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_2VM2VM23unsafeLoadJITExecutableEvE3$_6vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ENS4_5ValueETnPNSA_IXnt9is_void_vIT3_EEvE4typeELSF_0ENS2_IvSG_EEEET5_OT_OT0_
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_8Executor8Executor14registerModuleERNS3_7Runtime12StoreManagerERKNS8_8Instance14ModuleInstanceENSt3__117basic_string_viewIcNSF_11char_traitsIcEEEEE3$_0vTnPNSF_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_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$_1clENS3_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$_2vTnPNSF_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSO_IXnt9is_void_vIT3_EEvE4typeELST_0ES5_EET5_OT_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_17CoreModuleSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_19CoreInstanceSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_15CoreTypeSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_16ComponentSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_15InstanceSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_12AliasSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_11TypeSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_12CanonSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_12StartSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_13ImportSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime12StoreManagerERKNS3_3AST9Component9ComponentENSt3__18optionalINSG_17basic_string_viewIcNSG_11char_traitsIcEEEEEEENK3$_0clIRKNSC_13ExportSectionEEES5_OT_EUlSS_E_vTnPNSG_9enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSV_IXnt9is_void_vIT3_EEvE4typeELS10_0ES5_EET5_ST_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_17CoreModuleSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_19CoreInstanceSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_15CoreTypeSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_16ComponentSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_15InstanceSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_12AliasSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_11TypeSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_12CanonSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_12StartSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_13ImportSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST9Component9ComponentEENK3$_0clIRKNSD_13ExportSectionEEES5_OT_EUlSM_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSQ_IXnt9is_void_vIT3_EEvE4typeELSV_0ES5_EET5_SN_OT0_
Unexecuted instantiation: component_module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST6ModuleEENK3$_1clENS3_11ASTNodeAttrEEUlT_E_vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_0ES5_EET5_OSI_OT0_
Unexecuted instantiation: component_module.cpp:_ZN5cxx206detail23expected_map_error_implINS_8expectedIvN8WasmEdge7ErrCodeEEEZNS3_8Executor8Executor11instantiateERNS3_7Runtime8Instance22ComponentImportManagerERKNS3_3AST6ModuleEE3$_2vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSI_IXnt9is_void_vIT3_EEvE4typeELSN_0ES5_EET5_OT_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_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_8Executor8Executor14runTableCopyOpERNS3_7Runtime12StackManagerERNS8_8Instance13TableInstanceESD_RKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_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_8expectedIvN8WasmEdge7ErrCodeEEERZNS3_8Executor8Executor15runMemoryCopyOpERNS3_7Runtime12StackManagerERNS8_8Instance14MemoryInstanceESD_RKNS3_3AST11InstructionEE3$_0vTnPNSt3__19enable_ifIX9is_void_vIT1_EEvE4typeELPv0ES4_TnPNSL_IXnt9is_void_vIT3_EEvE4typeELSQ_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
141M
  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
1.46M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<void, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
218k
  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
23.4k
  constexpr explicit expected_default_ctor_base(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
14.9M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
9.39k
  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
44.1k
  constexpr explicit expected_default_ctor_base(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
8.33M
  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
2.50M
  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
1.55M
  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
1.00k
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<std::__1::optional<unsigned int>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
17.5k
  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
1.58M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
10.6k
  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
35.7M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
1.49k
  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
2.16M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<unsigned long, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
472k
  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
1.39M
  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
698k
  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
16.2k
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<unsigned long, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
472k
  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
95.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
27.3M
  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
27.3M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode>, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
447
  constexpr explicit expected_default_ctor_base(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.38M
  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
45.7k
  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
22.0k
  constexpr explicit expected_default_ctor_base(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
45.7k
  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
22.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
2.30M
  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.38M
  constexpr explicit expected_default_ctor_base(in_place_t) {}
component_name.cpp:cxx20::detail::expected_default_ctor_base<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
47
  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
10.3k
  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
8.04k
  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.72M
  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
25.5k
  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.58k
  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
270
  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<WasmEdge::LLVM::Data, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1227
2.31k
  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.47M
  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
68.3k
  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
264k
  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<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)
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode, true>::expected_default_ctor_base(std::__1::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
2.78M
  constexpr explicit expected_default_ctor_base(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<WasmEdge::AST::SubType 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::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<void, __wasi_errno_t, true>::expected_default_ctor_base(std::__1::in_place_t)
Unexecuted instantiation: cxx20::detail::expected_default_ctor_base<bool, __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_rights_t, __wasi_errno_t, 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<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_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<__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::ErrCode, 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<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode, 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
14.2k
  constexpr explicit expected_default_ctor_base(in_place_t) {}
cxx20::detail::expected_default_ctor_base<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode, false>::expected_default_ctor_base(std::__1::in_place_t)
Line
Count
Source
1241
14.2k
  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
265M
  constexpr expected() = default;
cxx20::expected<void, WasmEdge::ErrCode>::expected()
Line
Count
Source
1383
260M
  constexpr expected() = default;
cxx20::expected<unsigned char, WasmEdge::ErrCode>::expected()
Line
Count
Source
1383
11.8k
  constexpr expected() = default;
cxx20::expected<void, cxx20::unexpected<WasmEdge::ErrCode> >::expected()
Line
Count
Source
1383
3.80M
  constexpr expected() = default;
cxx20::expected<void, WasmEdge::PO::Error>::expected()
Line
Count
Source
1383
1.80M
  constexpr expected() = default;
Unexecuted instantiation: cxx20::expected<void, WasmEdge::ErrCode::Value>::expected()
Unexecuted instantiation: cxx20::expected<void, __wasi_errno_t>::expected()
Unexecuted instantiation: cxx20::expected<std::__1::vector<char, std::__1::allocator<char> >, __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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>&&)
Unexecuted instantiation: cxx20::expected<void, WasmEdge::ErrCode>::expected(cxx20::expected<void, 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
140M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
1.46M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IRjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_jEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
1
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_jEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
14.9M
      : expected(in_place, std::forward<U>(v)) {}
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
4.24k
      : 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
5.11k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2ISA_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISJ_SE_EEvE4typeELPv0ELb1EEEOSJ_
Line
Count
Source
1449
3.59k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S7_EEvE4typeELPv0ELb1EEEOSD_
Line
Count
Source
1449
43.9k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_jEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
8.32M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIhNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_hEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
2.50M
      : 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
1.55M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IS3_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
748
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISC_S3_EEvE4typeELPv0ELb1EEEOSC_
Line
Count
Source
1449
16.8k
      : 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
1.58M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb1EEEOSA_
Line
Count
Source
1449
5.00k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISD_S5_EEvE4typeELPv0ELb1EEEOSD_
Line
Count
Source
1449
5.63k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_hEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
1.20M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IS7_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISC_S7_EEvE4typeELPv0ELb1EEEOSC_
Line
Count
Source
1449
175
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IRKNS1_9nullopt_tETnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISF_S7_EEvE4typeELPv0ELb1EEEOSF_
Line
Count
Source
1449
1.31k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIlNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_lEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
2.16M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_mEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
472k
      : 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
1.39M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
698k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
16.1k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedImNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_mEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
472k
      : 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
79.9k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_S2_EEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
27.3M
      : 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
27.3M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S2_EEvE4typeELPv0ELb1EEEOSA_
Line
Count
Source
1449
440
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_iEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
2.38M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIfNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_fEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
45.7k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIdNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_dEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
22.0k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IRKhTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_hEEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
34.4M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IfTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_fEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
45.7k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IdTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_dEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
22.0k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IlTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_lEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
2.29M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_iEEvE4typeELPv0ELb1EEEOS7_
Line
Count
Source
1449
2.38M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge9Validator13ComponentNameENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
12.8k
      : expected(in_place, std::forward<U>(v)) {}
component_name.cpp:_ZN5cxx208expectedIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb1EEEOSA_
Line
Count
Source
1449
36
      : 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
10.2k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
7.96k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb1EEEOSA_
Line
Count
Source
1449
2.52M
      : 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
193k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S4_EEvE4typeELPv0ELb0EEEOSA_
Line
Count
Source
1449
25.2k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIbN8WasmEdge2PO5ErrorEEC2IbTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_bEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
1.03k
      : 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.47M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedImN8WasmEdge2PO5ErrorEEC2ImTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_mEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
68.2k
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_iEEvE4typeELPv0ELb1EEEOS8_
Line
Count
Source
1449
264k
      : expected(in_place, std::forward<U>(v)) {}
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: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSB_10RefVariantEEEEEEENSB_16ComponentValTypeEEENS8_ISR_EEEENSB_7ErrCodeEEC2IST_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISY_ST_EEvE4typeELPv0ELb1EEEOSY_
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
1.95M
      : expected(in_place, std::forward<U>(v)) {}
_ZN5cxx208expectedIPN8WasmEdge2PO14ArgumentParser18ArgumentDescriptorENS2_5ErrorEEC2IDnTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
Line
Count
Source
1449
825k
      : expected(in_place, std::forward<U>(v)) {}
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: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IKmTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS8_mEEvE4typeELPv0ELb1EEEOS8_
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IjTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_mEEvE4typeELPv0ELb1EEEOS7_
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: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISB_S5_EEvE4typeELPv0ELb1EEEOSB_
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: _ZN5cxx208expectedIb14__wasi_errno_tEC2IbTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_bEEvE4typeELPv0ELb1EEEOS6_
Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IiTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_iEEvE4typeELPv0ELb1EEEOS6_
Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
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: _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: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2ItTnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS6_tEEvE4typeELPv0ELb1EEEOS6_
Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS7_S1_EEvE4typeELPv0ELb1EEEOS7_
_ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_
Line
Count
Source
1449
2.31k
      : expected(in_place, std::forward<U>(v)) {}
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vIS9_S3_EEvE4typeELPv0ELb1EEEOS9_
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: _ZN5cxx208expectedINSt3__16vectorIPvNS1_9allocatorIS3_EEEEN8WasmEdge7ErrCodeEEC2IS6_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISC_S6_EEvE4typeELS3_0ELb1EEEOSC_
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: _ZN5cxx208expectedIPPvN8WasmEdge4LLVM5ErrorEEC2IS2_TnPNSt3__19enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S2_EEvE4typeELS1_0ELb1EEEOSA_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IS5_TnPNS1_9enable_ifIXaasr6traitsE17enable_in_place_vIT_E16is_convertible_vISA_S5_EEvE4typeELPv0ELb1EEEOSA_
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
188k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IS7_TnPNS1_9enable_ifIX18is_constructible_vIS7_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
Line
Count
Source
1462
100
      : 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
14.7k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
3.74k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE
Line
Count
Source
1462
5.14k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE
Line
Count
Source
1462
208
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
130k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IS5_TnPNS1_9enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE
Line
Count
Source
1462
4
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Line
Count
Source
1462
51
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IS8_TnPNS1_9enable_ifIX18is_constructible_vIS8_OT_EEvE4typeELPv0EEEONS_10unexpectedISC_EE
Line
Count
Source
1462
6
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
516
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge6ValMutENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
100
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge6OpCodeENS1_7ErrCodeEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
5.19k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__16vectorIN8WasmEdge3AST11InstructionENS1_9allocatorIS5_EEEENS3_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE
Line
Count
Source
1462
7.92k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
13.9k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
155
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
19
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIdN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
26
      : 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
688
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIlN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
506
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIiN8WasmEdge7ErrCodeEEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Line
Count
Source
1462
145
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge9Validator13ComponentNameENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE
Line
Count
Source
1462
691
      : expected(unexpect, std::move(e.value())) {}
component_name.cpp:_ZN5cxx208expectedIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Line
Count
Source
1462
11
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__14pairINS_4spanIKN8WasmEdge7ValTypeELm18446744073709551615EEES7_EENS4_7ErrCodeEEC2IS9_TnPNS1_9enable_ifIX18is_constructible_vIS9_OT_EEvE4typeELPv0EEEONS_10unexpectedISD_EE
Line
Count
Source
1462
16
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIPKN8WasmEdge3AST13CompositeTypeENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
Line
Count
Source
1462
81
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Line
Count
Source
1462
1.36k
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIN8WasmEdge9Validator11FormChecker9CtrlFrameENS1_7ErrCodeEEC2IS5_TnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Line
Count
Source
1462
284
      : 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
550
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIvN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
270
      : expected(unexpect, std::move(e.value())) {}
Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IS6_TnPNSt3__19enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
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
52
      : expected(unexpect, std::move(e.value())) {}
_ZN5cxx208expectedIiN8WasmEdge2PO5ErrorEEC2IS3_TnPNSt3__19enable_ifIX18is_constructible_vIS3_OT_EEvE4typeELPv0EEEONS_10unexpectedIS8_EE
Line
Count
Source
1462
218
      : 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_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSB_10RefVariantEEEEEEENSB_16ComponentValTypeEEENS8_ISR_EEEENSB_7ErrCodeEEC2ISU_TnPNS1_9enable_ifIX18is_constructible_vISU_OT_EEvE4typeELPv0EEEONS_10unexpectedISY_EE
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
869
      : expected(unexpect, std::move(e.value())) {}
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: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_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: _ZN5cxx208expectedIv14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE
Unexecuted instantiation: _ZN5cxx208expectedIb14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE
Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IS1_TnPNSt3__19enable_ifIX18is_constructible_vIS1_OT_EEvE4typeELPv0EEEONS_10unexpectedIS6_EE
Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IS2_TnPNSt3__19enable_ifIX18is_constructible_vIS2_OT_EEvE4typeELPv0EEEONS_10unexpectedIS7_EE
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IS8_TnPNS1_9enable_ifIX18is_constructible_vIS8_OT_EEvE4typeELPv0EEEONS_10unexpectedISC_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: _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: _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: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS1_7ErrCodeEEC2IS4_TnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedIS9_EE
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IS6_TnPNS1_9enable_ifIX18is_constructible_vIS6_OT_EEvE4typeELPv0EEEONS_10unexpectedISA_EE
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vIS4_OT_EEvE4typeELPv0EEEONS_10unexpectedISB_EE
Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIPvNS1_9allocatorIS3_EEEEN8WasmEdge7ErrCodeEEC2IS8_TnPNS1_9enable_ifIX18is_constructible_vIS8_OT_EEvE4typeELS3_0EEEONS_10unexpectedISC_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: _ZN5cxx208expectedIPPvN8WasmEdge4LLVM5ErrorEEC2IP15LLVMOpaqueErrorTnPNSt3__19enable_ifIX18is_constructible_vIS5_OT_EEvE4typeELS1_0EEEONS_10unexpectedISC_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
140M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__16vectorIhNS1_9allocatorIhEEEEN8WasmEdge7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSB_
Line
Count
Source
1468
1.46M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJRjETnPNSt3__19enable_ifIX18is_constructible_vIjDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Line
Count
Source
1468
1
      : 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
14.9M
      : 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_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
4.24k
      : 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
5.11k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__17variantIJNS1_10unique_ptrIN8WasmEdge3AST9Component9ComponentENS1_14default_deleteIS7_EEEENS3_INS5_6ModuleENS8_ISB_EEEEEEENS4_7ErrCodeEEC2IJSA_ETnPNS1_9enable_ifIX18is_constructible_vISE_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSJ_
Line
Count
Source
1468
3.59k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__14pairINS1_6vectorIhNS1_9allocatorIhEEEES6_EEN8WasmEdge7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_
Line
Count
Source
1468
43.9k
      : 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
8.32M
      : 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
2.50M
      : 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
1.55M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJS3_ETnPNS1_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOS9_
Line
Count
Source
1468
748
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSC_
Line
Count
Source
1468
16.8k
      : 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
1.58M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSA_
Line
Count
Source
1468
5.00k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSD_
Line
Count
Source
1468
5.63k
      : 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
1.20M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IJS7_ETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSC_
Line
Count
Source
1468
175
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IJRKNS1_9nullopt_tEETnPNS1_9enable_ifIX18is_constructible_vIS7_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSF_
Line
Count
Source
1468
1.31k
      : 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
2.16M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Line
Count
Source
1468
472k
      : 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
1.39M
      : 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
698k
      : 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
16.1k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedImNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
1468
472k
      : 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
79.9k
      : 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
27.3M
      : 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
27.3M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
1468
440
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
1468
2.38M
      : 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
45.7k
      : 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
22.0k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIhN8WasmEdge7ErrCodeEEC2IJRKhETnPNSt3__19enable_ifIX18is_constructible_vIhDpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
1468
34.4M
      : 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
45.7k
      : 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
22.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
2.29M
      : 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.38M
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIN8WasmEdge9Validator13ComponentNameENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
1468
12.8k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
component_name.cpp:_ZN5cxx208expectedIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS1_7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS8_10in_place_tEDpOSA_
Line
Count
Source
1468
36
      : 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
10.2k
      : 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
7.96k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge7ValTypeEEENS3_7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSA_
Line
Count
Source
1468
2.52M
      : 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
193k
      : 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
25.2k
      : 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.03k
      : 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.47M
      : 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
68.2k
      : 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
264k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
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: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSB_10RefVariantEEEEEEENSB_16ComponentValTypeEEENS8_ISR_EEEENSB_7ErrCodeEEC2IJST_ETnPNS1_9enable_ifIX18is_constructible_vIST_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSY_
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
1.95M
      : 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
825k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
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: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJKmETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS6_10in_place_tEDpOS8_
Unexecuted instantiation: _ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJjETnPNSt3__19enable_ifIX18is_constructible_vImDpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
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: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS9_10in_place_tEDpOSB_
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: _ZN5cxx208expectedIb14__wasi_errno_tEC2IJbETnPNSt3__19enable_ifIX18is_constructible_vIbDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IJiETnPNSt3__19enable_ifIX18is_constructible_vIiDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
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: _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: _ZN5cxx208expectedI15__wasi_signal_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_address_family_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedI18__wasi_sock_type_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_riflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedIt14__wasi_errno_tEC2IJtETnPNSt3__19enable_ifIX18is_constructible_vItDpT_EEvE4typeELPv0ELb1EEENS4_10in_place_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedI16__wasi_sdflags_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedI23__wasi_sock_opt_level_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedI20__wasi_sock_opt_so_t14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS5_10in_place_tEDpOS7_
_ZN5cxx208expectedIN8WasmEdge4LLVM4DataENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
Line
Count
Source
1468
2.31k
      : impl_base(in_place, std::forward<Args>(args)...), ctor_base(in_place) {}
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS1_7ErrCodeEEC2IJS3_ETnPNSt3__19enable_ifIX18is_constructible_vIS3_DpT_EEvE4typeELPv0ELb1EEENS7_10in_place_tEDpOS9_
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: _ZN5cxx208expectedINSt3__16vectorIPvNS1_9allocatorIS3_EEEEN8WasmEdge7ErrCodeEEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELS3_0ELb1EEENS1_10in_place_tEDpOSC_
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: _ZN5cxx208expectedIPPvN8WasmEdge4LLVM5ErrorEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELS1_0ELb1EEENS8_10in_place_tEDpOSA_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS1_10in_place_tEDpOSA_
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
295k
      : 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
100
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIvN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
218k
      : 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
14.7k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIjN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
3.75k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__110unique_ptrIN8WasmEdge3AST6ModuleENS1_14default_deleteIS5_EEEENS3_7ErrCodeEEC2IJS9_ETnPNS1_9enable_ifIX18is_constructible_vIS9_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSD_
Line
Count
Source
1483
5.14k
      : 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
246
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIjNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
1483
2.86k
      : 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
828
      : 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
564
      : 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
1.00k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIjEEN8WasmEdge7ErrCodeEEC2IJS5_ETnPNS1_9enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
1483
4
      : 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
790
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge16ComponentValTypeEEENS3_7ErrCodeEEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
1483
51
      : 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
13.9k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedINSt3__18optionalIN8WasmEdge3AST9Component10ExternDescEEENS3_7ErrCodeEEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_
Line
Count
Source
1483
6
      : 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
392
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedImN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
155
      : 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
10
      : 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
516
      : 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
100
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedImNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
1483
155
      : 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
15.8k
      : 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
5.19k
      : 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
5.19k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIN8WasmEdge7ValTypeENS_10unexpectedINS1_7ErrCodeEEEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
1483
7
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIiNS_10unexpectedIN8WasmEdge7ErrCodeEEEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
1483
145
      : 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
19
      : 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
26
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIfN8WasmEdge7ErrCodeEEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Line
Count
Source
1483
19
      : 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
26
      : 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
506
      : 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
145
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
_ZN5cxx208expectedIN8WasmEdge9Validator13ComponentNameENS1_7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Line
Count
Source
1483
1.31k
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
component_name.cpp:_ZN5cxx208expectedIN8WasmEdge9Validator12_GLOBAL__N_17PkgPathENS1_7ErrCodeEEC2IJS5_ETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Line
Count
Source
1483
11
      : 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
16
      : 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
81
      : 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.36k
      : 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
284
      : 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
550
      : 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
270
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
Unexecuted instantiation: _ZN5cxx208expectedIPN8WasmEdge7Runtime8Instance14MemoryInstanceENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
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
52
      : 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
218
      : 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: _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_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorINS1_4pairINS1_7variantIJhtjmasilfdbNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEN8WasmEdge7VariantIJjimlfdonDv2_mDv2_lDv4_jDv4_iDv8_tDv8_sDv16_hDv16_aDv4_fDv2_dNSB_10RefVariantEEEEEEENSB_16ComponentValTypeEEENS8_ISR_EEEENSB_7ErrCodeEEC2IJSU_ETnPNS1_9enable_ifIX18is_constructible_vISU_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSY_
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
869
      : impl_base(unexpect, std::forward<Args>(args)...), ctor_base(in_place) {}
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: _ZN5cxx208expectedIPKN8WasmEdge3AST7SubTypeENS1_7ErrCodeEEC2IJS6_ETnPNSt3__19enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
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: _ZN5cxx208expectedIv14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedIb14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedIi14__wasi_errno_tEC2IJS1_ETnPNSt3__19enable_ifIX18is_constructible_vIS1_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS6_
Unexecuted instantiation: _ZN5cxx208expectedI15__wasi_rights_t14__wasi_errno_tEC2IJS2_ETnPNSt3__19enable_ifIX18is_constructible_vIS2_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS7_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge4Host4WASI6VINodeEEE14__wasi_errno_tEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSC_
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: _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: _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: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS1_7ErrCodeEEC2IJS4_ETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOS9_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__110shared_ptrIN8WasmEdge10ExecutableEEENS3_7ErrCodeEEC2IJS6_ETnPNS1_9enable_ifIX18is_constructible_vIS6_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSA_
Unexecuted instantiation: _ZN5cxx208expectedIN8WasmEdge4LLVM8OrcLLJITENS2_5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS4_DpT_EEvE4typeELPv0ELb1EEENS_10unexpect_tEDpOSB_
Unexecuted instantiation: _ZN5cxx208expectedINSt3__16vectorIPvNS1_9allocatorIS3_EEEEN8WasmEdge7ErrCodeEEC2IJS8_ETnPNS1_9enable_ifIX18is_constructible_vIS8_DpT_EEvE4typeELS3_0ELb1EEENS_10unexpect_tEDpOSC_
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: _ZN5cxx208expectedIPPvN8WasmEdge4LLVM5ErrorEEC2IJP15LLVMOpaqueErrorETnPNSt3__19enable_ifIX18is_constructible_vIS5_DpT_EEvE4typeELS1_0ELb1EEENS_10unexpect_tEDpOSC_
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
3.03M
  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
0
  operator=(unexpected<G> &&e) noexcept(is_nothrow_destructible_v<T>) {
1518
0
    impl_base::assign_error(std::move(e));
1519
0
    return *this;
1520
0
  }
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<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
8.72M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
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*() &
Line
Count
Source
1599
4.45k
  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
100k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() &
Line
Count
Source
1599
3.91M
  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
308k
  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.03k
  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
4.24k
  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.47M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<int, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
264k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator*() &
Line
Count
Source
1599
68.2k
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator*() &
Line
Count
Source
1599
2.31k
  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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, 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
2.57M
  constexpr lvalue_reference_type operator*() & { return impl_base::val(); }
Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::operator*() &
Unexecuted instantiation: cxx20::expected<void*, WasmEdge::ErrCode>::operator*() &
Unexecuted instantiation: cxx20::expected<int, __wasi_errno_t>::operator*() &
Unexecuted instantiation: cxx20::expected<WasmEdge::Host::WASI::INode, __wasi_errno_t>::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<__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::ErrCode>::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
50.0M
  constexpr rvalue_reference_type operator*() && {
1604
50.0M
    return std::move(impl_base::val());
1605
50.0M
  }
cxx20::expected<unsigned int, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
8.33M
  constexpr rvalue_reference_type operator*() && {
1604
8.33M
    return std::move(impl_base::val());
1605
8.33M
  }
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
1.39M
  constexpr rvalue_reference_type operator*() && {
1604
1.39M
    return std::move(impl_base::val());
1605
1.39M
  }
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*() &&
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*() &&
Line
Count
Source
1603
10.3k
  constexpr rvalue_reference_type operator*() && {
1604
10.3k
    return std::move(impl_base::val());
1605
10.3k
  }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
2.50M
  constexpr rvalue_reference_type operator*() && {
1604
2.50M
    return std::move(impl_base::val());
1605
2.50M
  }
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
1.56M
  constexpr rvalue_reference_type operator*() && {
1604
1.56M
    return std::move(impl_base::val());
1605
1.56M
  }
cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
53.1k
  constexpr rvalue_reference_type operator*() && {
1604
53.1k
    return std::move(impl_base::val());
1605
53.1k
  }
cxx20::expected<long, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
2.16M
  constexpr rvalue_reference_type operator*() && {
1604
2.16M
    return std::move(impl_base::val());
1605
2.16M
  }
cxx20::expected<unsigned long, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
472k
  constexpr rvalue_reference_type operator*() && {
1604
472k
    return std::move(impl_base::val());
1605
472k
  }
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
56.3k
  constexpr rvalue_reference_type operator*() && {
1604
56.3k
    return std::move(impl_base::val());
1605
56.3k
  }
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
287k
  constexpr rvalue_reference_type operator*() && {
1604
287k
    return std::move(impl_base::val());
1605
287k
  }
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
5.36k
  constexpr rvalue_reference_type operator*() && {
1604
5.36k
    return std::move(impl_base::val());
1605
5.36k
  }
cxx20::expected<std::__1::vector<WasmEdge::AST::Instruction, std::__1::allocator<WasmEdge::AST::Instruction> >, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
79.9k
  constexpr rvalue_reference_type operator*() && {
1604
79.9k
    return std::move(impl_base::val());
1605
79.9k
  }
cxx20::expected<WasmEdge::OpCode, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
27.3M
  constexpr rvalue_reference_type operator*() && {
1604
27.3M
    return std::move(impl_base::val());
1605
27.3M
  }
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
440
  constexpr rvalue_reference_type operator*() && {
1604
440
    return std::move(impl_base::val());
1605
440
  }
cxx20::expected<int, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
2.38M
  constexpr rvalue_reference_type operator*() && {
1604
2.38M
    return std::move(impl_base::val());
1605
2.38M
  }
cxx20::expected<int, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
2.38M
  constexpr rvalue_reference_type operator*() && {
1604
2.38M
    return std::move(impl_base::val());
1605
2.38M
  }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
833k
  constexpr rvalue_reference_type operator*() && {
1604
833k
    return std::move(impl_base::val());
1605
833k
  }
cxx20::expected<float, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
45.7k
  constexpr rvalue_reference_type operator*() && {
1604
45.7k
    return std::move(impl_base::val());
1605
45.7k
  }
cxx20::expected<float, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
45.7k
  constexpr rvalue_reference_type operator*() && {
1604
45.7k
    return std::move(impl_base::val());
1605
45.7k
  }
cxx20::expected<double, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
22.0k
  constexpr rvalue_reference_type operator*() && {
1604
22.0k
    return std::move(impl_base::val());
1605
22.0k
  }
cxx20::expected<double, cxx20::unexpected<WasmEdge::ErrCode> >::operator*() &&
Line
Count
Source
1603
22.0k
  constexpr rvalue_reference_type operator*() && {
1604
22.0k
    return std::move(impl_base::val());
1605
22.0k
  }
cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::operator*() &&
Line
Count
Source
1603
6.00k
  constexpr rvalue_reference_type operator*() && {
1604
6.00k
    return std::move(impl_base::val());
1605
6.00k
  }
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<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*() &&
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::operator*() &&
Unexecuted instantiation: cxx20::expected<WasmEdge::AST::Instruction 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<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ModuleInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ModuleInstance> >, WasmEdge::ErrCode>::operator*() &&
Unexecuted instantiation: cxx20::expected<WasmEdge::AST::SubType const*, 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*() &&
Unexecuted instantiation: cxx20::expected<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::operator*() &&
1606
342M
  constexpr explicit operator bool() const noexcept { return has_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>::operator bool() const
Line
Count
Source
1606
23.4k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned int, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
6.64M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<void, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
243M
  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
67.3k
  constexpr explicit operator bool() const noexcept { return has_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>::operator bool() const
Line
Count
Source
1606
33.7k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
35.5M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
8.27M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
2.21M
  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
1.50M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<void, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
3.81M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
17.5k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
10.6k
  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::ErrCode>::operator bool() const
Line
Count
Source
1606
19.0k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
1.49k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
1.32M
  constexpr explicit operator bool() const noexcept { return has_value(); }
Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::operator bool() const
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
1.39M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
698k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<long, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
137k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
16.2k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned long, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
472k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
27.3M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::operator bool() const
Line
Count
Source
1606
447
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
7.57k
  constexpr explicit operator bool() const noexcept { return has_value(); }
component_name.cpp:cxx20::expected<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
47
  constexpr explicit operator bool() const noexcept { return has_value(); }
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
10.3k
  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.72M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
25.5k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
8.04k
  constexpr explicit operator bool() const noexcept { return has_value(); }
Unexecuted instantiation: cxx20::expected<void, __wasi_errno_t>::operator bool() const
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.58k
  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<std::__1::unique_ptr<WasmEdge::AST::Module, std::__1::default_delete<WasmEdge::AST::Module> >, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
9.39k
  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
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.47M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<int, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
264k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<unsigned long, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
68.3k
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::operator bool() const
Line
Count
Source
1606
2.31k
  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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::operator bool() const
Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::operator bool() const
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
2.78M
  constexpr explicit operator bool() const noexcept { return has_value(); }
cxx20::expected<void, WasmEdge::PO::Error>::operator bool() const
Line
Count
Source
1606
1.80M
  constexpr explicit operator bool() const noexcept { return has_value(); }
Unexecuted instantiation: cxx20::expected<void*, 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::AST::Instruction const*, WasmEdge::ErrCode>::operator bool() const
Unexecuted instantiation: cxx20::expected<int, __wasi_errno_t>::operator bool() const
Unexecuted instantiation: cxx20::expected<bool, __wasi_errno_t>::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<__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::ErrCode>::operator bool() const
Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::OrcLLJIT, WasmEdge::LLVM::Error>::operator bool() const
Unexecuted instantiation: cxx20::expected<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::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
79.5M
  constexpr lvalue_reference_type value() & {
1629
79.5M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
79.5M
    return impl_base::val();
1633
79.5M
  }
cxx20::expected<unsigned int, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
6.64M
  constexpr lvalue_reference_type value() & {
1629
6.64M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
6.64M
    return impl_base::val();
1633
6.64M
  }
Unexecuted instantiation: cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, 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
4.24k
  constexpr lvalue_reference_type value() & {
1629
4.24k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
4.24k
    return impl_base::val();
1633
4.24k
  }
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
33.5k
  constexpr lvalue_reference_type value() & {
1629
33.5k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
33.5k
    return impl_base::val();
1633
33.5k
  }
cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
8.27M
  constexpr lvalue_reference_type value() & {
1629
8.27M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
8.27M
    return impl_base::val();
1633
8.27M
  }
cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
2.21M
  constexpr lvalue_reference_type value() & {
1629
2.21M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
2.21M
    return impl_base::val();
1633
2.21M
  }
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
1.50M
  constexpr lvalue_reference_type value() & {
1629
1.50M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
1.50M
    return impl_base::val();
1633
1.50M
  }
cxx20::expected<std::__1::optional<unsigned int>, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
17.5k
  constexpr lvalue_reference_type value() & {
1629
17.5k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
17.5k
    return impl_base::val();
1633
17.5k
  }
cxx20::expected<std::__1::optional<WasmEdge::ComponentValType>, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
10.6k
  constexpr lvalue_reference_type value() & {
1629
10.6k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
10.6k
    return impl_base::val();
1633
10.6k
  }
cxx20::expected<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
18.9k
  constexpr lvalue_reference_type value() & {
1629
18.9k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
18.9k
    return impl_base::val();
1633
18.9k
  }
cxx20::expected<unsigned char, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
28.6M
  constexpr lvalue_reference_type value() & {
1629
28.6M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
28.6M
    return impl_base::val();
1633
28.6M
  }
cxx20::expected<std::__1::optional<WasmEdge::AST::Component::ExternDesc>, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
1.49k
  constexpr lvalue_reference_type value() & {
1629
1.49k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
1.49k
    return impl_base::val();
1633
1.49k
  }
cxx20::expected<long, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
1.32M
  constexpr lvalue_reference_type value() & {
1629
1.32M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
1.32M
    return impl_base::val();
1633
1.32M
  }
Unexecuted instantiation: cxx20::expected<unsigned long, WasmEdge::ErrCode>::value() &
cxx20::expected<std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
1.39M
  constexpr lvalue_reference_type value() & {
1629
1.39M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
1.39M
    return impl_base::val();
1633
1.39M
  }
cxx20::expected<WasmEdge::ValType, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
697k
  constexpr lvalue_reference_type value() & {
1629
697k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
697k
    return impl_base::val();
1633
697k
  }
cxx20::expected<WasmEdge::ValMut, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
16.1k
  constexpr lvalue_reference_type value() & {
1629
16.1k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
16.1k
    return impl_base::val();
1633
16.1k
  }
cxx20::expected<unsigned long, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
472k
  constexpr lvalue_reference_type value() & {
1629
472k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
472k
    return impl_base::val();
1633
472k
  }
cxx20::expected<WasmEdge::OpCode, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
27.3M
  constexpr lvalue_reference_type value() & {
1629
27.3M
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
27.3M
    return impl_base::val();
1633
27.3M
  }
cxx20::expected<WasmEdge::ValType, cxx20::unexpected<WasmEdge::ErrCode> >::value() &
Line
Count
Source
1628
440
  constexpr lvalue_reference_type value() & {
1629
440
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
440
    return impl_base::val();
1633
440
  }
cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
6.88k
  constexpr lvalue_reference_type value() & {
1629
6.88k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
6.88k
    return impl_base::val();
1633
6.88k
  }
component_name.cpp:cxx20::expected<WasmEdge::Validator::(anonymous namespace)::PkgPath, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
36
  constexpr lvalue_reference_type value() & {
1629
36
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
36
    return impl_base::val();
1633
36
  }
cxx20::expected<std::__1::pair<cxx20::span<WasmEdge::ValType const, 18446744073709551615ul>, cxx20::span<WasmEdge::ValType const, 18446744073709551615ul> >, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
10.2k
  constexpr lvalue_reference_type value() & {
1629
10.2k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
10.2k
    return impl_base::val();
1633
10.2k
  }
cxx20::expected<WasmEdge::Validator::FormChecker::CtrlFrame, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
25.1k
  constexpr lvalue_reference_type value() & {
1629
25.1k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
25.1k
    return impl_base::val();
1633
25.1k
  }
cxx20::expected<WasmEdge::AST::CompositeType const*, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
7.96k
  constexpr lvalue_reference_type value() & {
1629
7.96k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
7.96k
    return impl_base::val();
1633
7.96k
  }
cxx20::expected<std::__1::optional<WasmEdge::ValType>, WasmEdge::ErrCode>::value() &
Line
Count
Source
1628
912k
  constexpr lvalue_reference_type value() & {
1629
912k
    if (!has_value()) {
1630
0
      throw(bad_expected_access<E>(error()));
1631
0
    }
1632
912k
    return impl_base::val();
1633
912k
  }
Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Host::WASI::VINode>, __wasi_errno_t>::value() &
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() &
Unexecuted instantiation: cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::value() &
Unexecuted instantiation: cxx20::expected<std::__1::unique_ptr<WasmEdge::Runtime::Instance::ComponentInstance, std::__1::default_delete<WasmEdge::Runtime::Instance::ComponentInstance> >, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::value() &
Unexecuted instantiation: cxx20::expected<WasmEdge::AST::Instruction const*, 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() &
Unexecuted instantiation: cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::value() &
Unexecuted instantiation: cxx20::expected<std::__1::vector<void*, std::__1::allocator<void*> >, 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
61.2k
  template <class F> constexpr auto and_then(F &&f) && {
1664
61.2k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
61.2k
  }
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
2.59k
  template <class F> constexpr auto and_then(F &&f) && {
1664
2.59k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
2.59k
  }
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
2.59k
  template <class F> constexpr auto and_then(F &&f) && {
1664
2.59k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
2.59k
  }
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
4.52k
  template <class F> constexpr auto and_then(F &&f) && {
1664
4.52k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
4.52k
  }
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
47.9k
  template <class F> constexpr auto and_then(F &&f) && {
1664
47.9k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
47.9k
  }
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&&) &&
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::and_then<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Component const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Component const&)::$_0&&) &&
Line
Count
Source
1663
3.59k
  template <class F> constexpr auto and_then(F &&f) && {
1664
3.59k
    return detail::expected_and_then_impl(std::move(*this), std::forward<F>(f));
1665
3.59k
  }
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::unsafeLoadJITExecutable()::$_1>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_1&&) &&
Unexecuted instantiation: vm.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode::Value>::and_then<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_3>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_3&&) &&
Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode::Value>::and_then<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_5>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_5&&) &&
Unexecuted instantiation: proxy.cpp:auto cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::proxyCall(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*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*)::$_0>(WasmEdge::Executor::Executor::proxyCall(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*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*)::$_0&&) &&
Unexecuted instantiation: proxy.cpp:auto cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::proxyCallIndirect(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, 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*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*)::$_0>(WasmEdge::Executor::Executor::proxyCallIndirect(WasmEdge::Runtime::StackManager&, unsigned int, unsigned int, 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*, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant>*)::$_0&&) &&
Unexecuted instantiation: proxy.cpp:auto cxx20::expected<WasmEdge::AST::Instruction const*, WasmEdge::ErrCode>::and_then<WasmEdge::Executor::Executor::proxyCallRef(WasmEdge::Runtime::StackManager&, WasmEdge::RefVariant, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(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>*)::$_0>(WasmEdge::Executor::Executor::proxyCallRef(WasmEdge::Runtime::StackManager&, WasmEdge::RefVariant, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(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>*)::$_0&&) &&
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&&) &&
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
3.69M
  template <class F> constexpr auto map(F &&f) && {
1690
3.69M
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
3.69M
  }
component_descriptor.cpp:auto cxx20::expected<unsigned int, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_1>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_1&&) &&
Line
Count
Source
1689
4.01k
  template <class F> constexpr auto map(F &&f) && {
1690
4.01k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
4.01k
  }
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
18.3k
  template <class F> constexpr auto map(F &&f) && {
1690
18.3k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
18.3k
  }
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
18.3k
  template <class F> constexpr auto map(F &&f) && {
1690
18.3k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
18.3k
  }
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
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
  }
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
4.11k
  template <class F> constexpr auto map(F &&f) && {
1690
4.11k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
4.11k
  }
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
19.8k
  template <class F> constexpr auto map(F &&f) && {
1690
19.8k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
19.8k
  }
description.cpp:auto cxx20::expected<unsigned char, cxx20::unexpected<WasmEdge::ErrCode> >::map<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_2>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_2&&) &&
Line
Count
Source
1689
19.7k
  template <class F> constexpr auto map(F &&f) && {
1690
19.7k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
19.7k
  }
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
19.7k
  template <class F> constexpr auto map(F &&f) && {
1690
19.7k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
19.7k
  }
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
3.00k
  template <class F> constexpr auto map(F &&f) && {
1690
3.00k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
3.00k
  }
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
21.1k
  template <class F> constexpr auto map(F &&f) && {
1690
21.1k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
21.1k
  }
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
1.22k
  template <class F> constexpr auto map(F &&f) && {
1690
1.22k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
1.22k
  }
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
5.37k
  template <class F> constexpr auto map(F &&f) && {
1690
5.37k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
5.37k
  }
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.38M
  template <class F> constexpr auto map(F &&f) && {
1690
2.38M
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
2.38M
  }
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
833k
  template <class F> constexpr auto map(F &&f) && {
1690
833k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
833k
  }
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
45.7k
  template <class F> constexpr auto map(F &&f) && {
1690
45.7k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
45.7k
  }
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
22.0k
  template <class F> constexpr auto map(F &&f) && {
1690
22.0k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
22.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
249k
  template <class F> constexpr auto map(F &&f) && {
1690
249k
    return detail::expected_map_impl(std::move(*this), std::forward<F>(f));
1691
249k
  }
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 long, 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 long, 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
59.9M
  template <class F> constexpr auto map_error(F &&f) && {
1703
59.9M
    return detail::expected_map_error_impl(std::move(*this),
1704
59.9M
                                           std::forward<F>(f));
1705
59.9M
  }
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&) &&
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&) &&
Line
Count
Source
1702
3.03M
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.03M
    return detail::expected_map_error_impl(std::move(*this),
1704
3.03M
                                           std::forward<F>(f));
1705
3.03M
  }
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&&) &&
Line
Count
Source
1702
5.14k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.14k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.14k
                                           std::forward<F>(f));
1705
5.14k
  }
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}&) &&
Line
Count
Source
1702
5.11k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.11k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.11k
                                           std::forward<F>(f));
1705
5.11k
  }
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}&) &&
Line
Count
Source
1702
5.08k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.08k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.08k
                                           std::forward<F>(f));
1705
5.08k
  }
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&&) &&
Line
Count
Source
1702
7.37k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.37k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.37k
                                           std::forward<F>(f));
1705
7.37k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component19CoreInstanceSectionENS9_12CoreInstanceEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
7.34k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.34k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.34k
                                           std::forward<F>(f));
1705
7.34k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component19CoreInstanceSectionENS9_12CoreInstanceEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
52.6k
  template <class F> constexpr auto map_error(F &&f) && {
1703
52.6k
    return detail::expected_map_error_impl(std::move(*this),
1704
52.6k
                                           std::forward<F>(f));
1705
52.6k
  }
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&&) &&
Line
Count
Source
1702
320k
  template <class F> constexpr auto map_error(F &&f) && {
1703
320k
    return detail::expected_map_error_impl(std::move(*this),
1704
320k
                                           std::forward<F>(f));
1705
320k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15CoreTypeSectionENS9_11CoreDefTypeEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
320k
  template <class F> constexpr auto map_error(F &&f) && {
1703
320k
    return detail::expected_map_error_impl(std::move(*this),
1704
320k
                                           std::forward<F>(f));
1705
320k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15CoreTypeSectionENS9_11CoreDefTypeEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
254k
  template <class F> constexpr auto map_error(F &&f) && {
1703
254k
    return detail::expected_map_error_impl(std::move(*this),
1704
254k
                                           std::forward<F>(f));
1705
254k
  }
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&&) &&
Line
Count
Source
1702
5.29k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.29k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.29k
                                           std::forward<F>(f));
1705
5.29k
  }
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}&) &&
Line
Count
Source
1702
5.26k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.26k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.26k
                                           std::forward<F>(f));
1705
5.26k
  }
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}&) &&
Line
Count
Source
1702
5.23k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.23k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.23k
                                           std::forward<F>(f));
1705
5.23k
  }
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&&) &&
Line
Count
Source
1702
85.3k
  template <class F> constexpr auto map_error(F &&f) && {
1703
85.3k
    return detail::expected_map_error_impl(std::move(*this),
1704
85.3k
                                           std::forward<F>(f));
1705
85.3k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15InstanceSectionENS9_8InstanceEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
85.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
85.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
85.2k
                                           std::forward<F>(f));
1705
85.2k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component15InstanceSectionENS9_8InstanceEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
30.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
30.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
30.2k
                                           std::forward<F>(f));
1705
30.2k
  }
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&&) &&
Line
Count
Source
1702
6.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.67k
                                           std::forward<F>(f));
1705
6.67k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12AliasSectionENS9_5AliasEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
6.66k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.66k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.66k
                                           std::forward<F>(f));
1705
6.66k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12AliasSectionENS9_5AliasEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
7.29k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.29k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.29k
                                           std::forward<F>(f));
1705
7.29k
  }
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&&) &&
Line
Count
Source
1702
1.21M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.21M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.21M
                                           std::forward<F>(f));
1705
1.21M
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component11TypeSectionENS9_7DefTypeEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
1.21M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.21M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.21M
                                           std::forward<F>(f));
1705
1.21M
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component11TypeSectionENS9_7DefTypeEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
1.24M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.24M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.24M
                                           std::forward<F>(f));
1705
1.24M
  }
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&&) &&
Line
Count
Source
1702
26.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
26.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
26.8k
                                           std::forward<F>(f));
1705
26.8k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12CanonSectionENS9_9CanonicalEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
26.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
26.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
26.8k
                                           std::forward<F>(f));
1705
26.8k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component12CanonSectionENS9_9CanonicalEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
20.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
20.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
20.4k
                                           std::forward<F>(f));
1705
20.4k
  }
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&&) &&
Line
Count
Source
1702
1.63k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.63k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.63k
                                           std::forward<F>(f));
1705
1.63k
  }
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}&&) &&
Line
Count
Source
1702
1.60k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.60k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.60k
                                           std::forward<F>(f));
1705
1.60k
  }
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&&) &&
Line
Count
Source
1702
17.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
17.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
17.0k
                                           std::forward<F>(f));
1705
17.0k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ImportSectionENS9_6ImportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
17.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
17.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
17.0k
                                           std::forward<F>(f));
1705
17.0k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ImportSectionENS9_6ImportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
6.91k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.91k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.91k
                                           std::forward<F>(f));
1705
6.91k
  }
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&&) &&
Line
Count
Source
1702
5.68k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.68k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.68k
                                           std::forward<F>(f));
1705
5.68k
  }
component_section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ExportSectionENS9_6ExportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
5.66k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.66k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.66k
                                           std::forward<F>(f));
1705
5.66k
  }
component_section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component13ExportSectionENS9_6ExportEZZNS6_11loadSectionERSA_ENK3$_0clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
1.53k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.53k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.53k
                                           std::forward<F>(f));
1705
1.53k
  }
component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_2&>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_2&) &&
Line
Count
Source
1702
52.6k
  template <class F> constexpr auto map_error(F &&f) && {
1703
52.6k
    return detail::expected_map_error_impl(std::move(*this),
1704
52.6k
                                           std::forward<F>(f));
1705
52.6k
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_2&>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_2&) &&
Line
Count
Source
1702
46.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
46.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
46.0k
                                           std::forward<F>(f));
1705
46.0k
  }
component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_2&>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_2&) &&
Line
Count
Source
1702
30.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
30.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
30.2k
                                           std::forward<F>(f));
1705
30.2k
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_2&>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_2&) &&
Line
Count
Source
1702
4.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.67k
                                           std::forward<F>(f));
1705
4.67k
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InstantiateArg<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InstantiateArg<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
46.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
46.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
46.0k
                                           std::forward<F>(f));
1705
46.0k
  }
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::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&) &&
Line
Count
Source
1702
199
  template <class F> constexpr auto map_error(F &&f) && {
1703
199
    return detail::expected_map_error_impl(std::move(*this),
1704
199
                                           std::forward<F>(f));
1705
199
  }
component_instance.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&) &&
Line
Count
Source
1702
178
  template <class F> constexpr auto map_error(F &&f) && {
1703
178
    return detail::expected_map_error_impl(std::move(*this),
1704
178
                                           std::forward<F>(f));
1705
178
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<unsigned int>&) const::{lambda(auto:1)#1}&) &&
Line
Count
Source
1702
150
  template <class F> constexpr auto map_error(F &&f) && {
1703
150
    return detail::expected_map_error_impl(std::move(*this),
1704
150
                                           std::forward<F>(f));
1705
150
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InstantiateArg<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InstantiateArg<unsigned int>, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<unsigned int>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<unsigned int> > >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_0&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
199
  template <class F> constexpr auto map_error(F &&f) && {
1703
199
    return detail::expected_map_error_impl(std::move(*this),
1704
199
                                           std::forward<F>(f));
1705
199
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
6.52k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.52k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.52k
                                           std::forward<F>(f));
1705
6.52k
  }
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::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
5.29k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.29k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.29k
                                           std::forward<F>(f));
1705
5.29k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
5.26k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.26k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.26k
                                           std::forward<F>(f));
1705
5.26k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreInstance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadCoreInstance(WasmEdge::AST::Component::CoreInstance&)::$_1&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
5.29k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.29k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.29k
                                           std::forward<F>(f));
1705
5.29k
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex> > >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex> > >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
4.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.67k
                                           std::forward<F>(f));
1705
4.67k
  }
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::loadInstance(WasmEdge::AST::Component::Instance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>&) const::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
6.02k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.02k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.02k
                                           std::forward<F>(f));
1705
6.02k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>&) const::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0::operator()(WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>&) const::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
6.00k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.00k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.00k
                                           std::forward<F>(f));
1705
6.00k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex> > >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&>(std::__1::vector<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex>, std::__1::allocator<WasmEdge::AST::Component::InstantiateArg<WasmEdge::AST::Component::SortIndex> > >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_0&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
6.02k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.02k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.02k
                                           std::forward<F>(f));
1705
6.02k
  }
component_instance.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
25.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
25.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
25.5k
                                           std::forward<F>(f));
1705
25.5k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
2.81k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.81k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.81k
                                           std::forward<F>(f));
1705
2.81k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1::operator()(WasmEdge::AST::Component::InlineExport&) const::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
2.79k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.79k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.79k
                                           std::forward<F>(f));
1705
2.79k
  }
component_instance.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Instance, WasmEdge::AST::Component::InlineExport, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&>(std::__1::vector<WasmEdge::AST::Component::InlineExport, std::__1::allocator<WasmEdge::AST::Component::InlineExport> >&, WasmEdge::Loader::Loader::loadInstance(WasmEdge::AST::Component::Instance&)::$_1&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
2.81k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.81k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.81k
                                           std::forward<F>(f));
1705
2.81k
  }
component_sort.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSortIndex(WasmEdge::AST::Component::SortIndex&, bool)::$_0>(WasmEdge::Loader::Loader::loadSortIndex(WasmEdge::AST::Component::SortIndex&, bool)::$_0&&) &&
Line
Count
Source
1702
15.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
15.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
15.5k
                                           std::forward<F>(f));
1705
15.5k
  }
component_sort.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSort(WasmEdge::AST::Component::Sort&)::$_0>(WasmEdge::Loader::Loader::loadSort(WasmEdge::AST::Component::Sort&)::$_0&&) &&
Line
Count
Source
1702
18.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
18.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
18.9k
                                           std::forward<F>(f));
1705
18.9k
  }
component_sort.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreSort(WasmEdge::AST::Component::Sort&)::$_0>(WasmEdge::Loader::Loader::loadCoreSort(WasmEdge::AST::Component::Sort&)::$_0&&) &&
Line
Count
Source
1702
9.73k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.73k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.73k
                                           std::forward<F>(f));
1705
9.73k
  }
component_alias.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&>(WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&) &&
Line
Count
Source
1702
321
  template <class F> constexpr auto map_error(F &&f) && {
1703
321
    return detail::expected_map_error_impl(std::move(*this),
1704
321
                                           std::forward<F>(f));
1705
321
  }
component_alias.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&>(WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&) &&
Line
Count
Source
1702
318
  template <class F> constexpr auto map_error(F &&f) && {
1703
318
    return detail::expected_map_error_impl(std::move(*this),
1704
318
                                           std::forward<F>(f));
1705
318
  }
component_alias.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&>(WasmEdge::Loader::Loader::loadCoreAlias(WasmEdge::AST::Component::CoreAlias&)::$_0&) &&
Line
Count
Source
1702
625
  template <class F> constexpr auto map_error(F &&f) && {
1703
625
    return detail::expected_map_error_impl(std::move(*this),
1704
625
                                           std::forward<F>(f));
1705
625
  }
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&) &&
Line
Count
Source
1702
8.65k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.65k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.65k
                                           std::forward<F>(f));
1705
8.65k
  }
component_alias.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&>(WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&) &&
Line
Count
Source
1702
8.60k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.60k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.60k
                                           std::forward<F>(f));
1705
8.60k
  }
component_alias.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&>(WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&) &&
Line
Count
Source
1702
14.1k
  template <class F> constexpr auto map_error(F &&f) && {
1703
14.1k
    return detail::expected_map_error_impl(std::move(*this),
1704
14.1k
                                           std::forward<F>(f));
1705
14.1k
  }
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::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&>(WasmEdge::Loader::Loader::loadAlias(WasmEdge::AST::Component::Alias&)::$_0&) &&
Line
Count
Source
1702
3.03k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.03k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.03k
                                           std::forward<F>(f));
1705
3.03k
  }
component_canonical.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_0&>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_0&) &&
Line
Count
Source
1702
29.3k
  template <class F> constexpr auto map_error(F &&f) && {
1703
29.3k
    return detail::expected_map_error_impl(std::move(*this),
1704
29.3k
                                           std::forward<F>(f));
1705
29.3k
  }
component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_0&>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_0&) &&
Line
Count
Source
1702
19.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
19.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
19.4k
                                           std::forward<F>(f));
1705
19.4k
  }
component_canonical.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component9CanonicalENS9_8CanonOptEZZNS6_13loadCanonicalERSA_ENK3$_3clEvEUlRSB_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSH_9allocatorISJ_EEEEOT1_EUlT_E_EEDaOSQ_
Line
Count
Source
1702
8.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.67k
                                           std::forward<F>(f));
1705
8.67k
  }
component_canonical.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST9Component9CanonicalENS9_8CanonOptEZZNS6_13loadCanonicalERSA_ENK3$_3clEvEUlRSB_E_EES3_RNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E0_EEDaOSP_
Line
Count
Source
1702
9.64k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.64k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.64k
                                           std::forward<F>(f));
1705
9.64k
  }
component_canonical.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_1>(WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_1&&) &&
Line
Count
Source
1702
313
  template <class F> constexpr auto map_error(F &&f) && {
1703
313
    return detail::expected_map_error_impl(std::move(*this),
1704
313
                                           std::forward<F>(f));
1705
313
  }
component_canonical.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonicalOption(WasmEdge::AST::Component::CanonOpt&)::$_0&>(WasmEdge::Loader::Loader::loadCanonicalOption(WasmEdge::AST::Component::CanonOpt&)::$_0&) &&
Line
Count
Source
1702
9.64k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.64k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.64k
                                           std::forward<F>(f));
1705
9.64k
  }
component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadCanonicalOption(WasmEdge::AST::Component::CanonOpt&)::$_0&>(WasmEdge::Loader::Loader::loadCanonicalOption(WasmEdge::AST::Component::CanonOpt&)::$_0&) &&
Line
Count
Source
1702
1.05k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.05k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.05k
                                           std::forward<F>(f));
1705
1.05k
  }
component_canonical.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Canonical, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Canonical, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.07k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.07k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.07k
                                           std::forward<F>(f));
1705
1.07k
  }
component_canonical.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Canonical, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::Canonical, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadCanonical(WasmEdge::AST::Component::Canonical&)::$_4&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
11.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.7k
                                           std::forward<F>(f));
1705
11.7k
  }
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&) &&
Line
Count
Source
1702
3.15k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.15k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.15k
                                           std::forward<F>(f));
1705
3.15k
  }
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}&&) &&
Line
Count
Source
1702
1.59k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.59k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.59k
                                           std::forward<F>(f));
1705
1.59k
  }
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&) &&
Line
Count
Source
1702
119k
  template <class F> constexpr auto map_error(F &&f) && {
1703
119k
    return detail::expected_map_error_impl(std::move(*this),
1704
119k
                                           std::forward<F>(f));
1705
119k
  }
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}&&) &&
Line
Count
Source
1702
119k
  template <class F> constexpr auto map_error(F &&f) && {
1703
119k
    return detail::expected_map_error_impl(std::move(*this),
1704
119k
                                           std::forward<F>(f));
1705
119k
  }
component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_0&&) &&
Line
Count
Source
1702
257k
  template <class F> constexpr auto map_error(F &&f) && {
1703
257k
    return detail::expected_map_error_impl(std::move(*this),
1704
257k
                                           std::forward<F>(f));
1705
257k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_1>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_1&&) &&
Line
Count
Source
1702
664
  template <class F> constexpr auto map_error(F &&f) && {
1703
664
    return detail::expected_map_error_impl(std::move(*this),
1704
664
                                           std::forward<F>(f));
1705
664
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_2&>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_2&) &&
Line
Count
Source
1702
143k
  template <class F> constexpr auto map_error(F &&f) && {
1703
143k
    return detail::expected_map_error_impl(std::move(*this),
1704
143k
                                           std::forward<F>(f));
1705
143k
  }
component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefType&)::$_0&&) &&
Line
Count
Source
1702
1.24M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.24M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.24M
                                           std::forward<F>(f));
1705
1.24M
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefType&)::$_1&>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefType&)::$_1&) &&
Line
Count
Source
1702
1.24M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.24M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.24M
                                           std::forward<F>(f));
1705
1.24M
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefValType&, unsigned char)::$_0&>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::DefValType&, unsigned char)::$_0&) &&
Line
Count
Source
1702
15.6k
  template <class F> constexpr auto map_error(F &&f) && {
1703
15.6k
    return detail::expected_map_error_impl(std::move(*this),
1704
15.6k
                                           std::forward<F>(f));
1705
15.6k
  }
component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_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
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_1>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_1&&) &&
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
  }
component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_2>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_2&&) &&
Line
Count
Source
1702
904
  template <class F> constexpr auto map_error(F &&f) && {
1703
904
    return detail::expected_map_error_impl(std::move(*this),
1704
904
                                           std::forward<F>(f));
1705
904
  }
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&) &&
Line
Count
Source
1702
17.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
17.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
17.5k
                                           std::forward<F>(f));
1705
17.5k
  }
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&) &&
Line
Count
Source
1702
388
  template <class F> constexpr auto map_error(F &&f) && {
1703
388
    return detail::expected_map_error_impl(std::move(*this),
1704
388
                                           std::forward<F>(f));
1705
388
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&, bool)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&, bool)::$_0&&) &&
Line
Count
Source
1702
2.61k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.61k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.61k
                                           std::forward<F>(f));
1705
2.61k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&, bool)::$_1>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ListTy&, bool)::$_1&&) &&
Line
Count
Source
1702
2.21k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.21k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.21k
                                           std::forward<F>(f));
1705
2.21k
  }
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&&) &&
Line
Count
Source
1702
778
  template <class F> constexpr auto map_error(F &&f) && {
1703
778
    return detail::expected_map_error_impl(std::move(*this),
1704
778
                                           std::forward<F>(f));
1705
778
  }
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&&) &&
Line
Count
Source
1702
657
  template <class F> constexpr auto map_error(F &&f) && {
1703
657
    return detail::expected_map_error_impl(std::move(*this),
1704
657
                                           std::forward<F>(f));
1705
657
  }
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&&) &&
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
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreDefType, WasmEdge::AST::Component::CoreModuleDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::CoreModuleDecl, std::__1::allocator<WasmEdge::AST::Component::CoreModuleDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreDefType, WasmEdge::AST::Component::CoreModuleDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::CoreModuleDecl, std::__1::allocator<WasmEdge::AST::Component::CoreModuleDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
114k
  template <class F> constexpr auto map_error(F &&f) && {
1703
114k
    return detail::expected_map_error_impl(std::move(*this),
1704
114k
                                           std::forward<F>(f));
1705
114k
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreDefType, WasmEdge::AST::Component::CoreModuleDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::CoreModuleDecl, std::__1::allocator<WasmEdge::AST::Component::CoreModuleDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::CoreDefType, WasmEdge::AST::Component::CoreModuleDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::CoreModuleDecl, std::__1::allocator<WasmEdge::AST::Component::CoreModuleDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::CoreDefType&)::$_3&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
8.37k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.37k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.37k
                                           std::forward<F>(f));
1705
8.37k
  }
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&)::$_3>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3&&)::{lambda(auto:1)#1}&&) &&
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
  }
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&)::$_3>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::FuncType, WasmEdge::AST::Component::LabelValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3>(std::__1::vector<WasmEdge::AST::Component::LabelValType, std::__1::allocator<WasmEdge::AST::Component::LabelValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::FuncType&)::$_3&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
71.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
71.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
71.4k
                                           std::forward<F>(f));
1705
71.4k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::ComponentDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::ComponentDecl, std::__1::allocator<WasmEdge::AST::Component::ComponentDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::ComponentDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::ComponentDecl, std::__1::allocator<WasmEdge::AST::Component::ComponentDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
775k
  template <class F> constexpr auto map_error(F &&f) && {
1703
775k
    return detail::expected_map_error_impl(std::move(*this),
1704
775k
                                           std::forward<F>(f));
1705
775k
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::ComponentDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::ComponentDecl, std::__1::allocator<WasmEdge::AST::Component::ComponentDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::ComponentType, WasmEdge::AST::Component::ComponentDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::ComponentDecl, std::__1::allocator<WasmEdge::AST::Component::ComponentDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::ComponentType&)::$_0&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
9.70k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.70k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.70k
                                           std::forward<F>(f));
1705
9.70k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::InstanceDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::InstanceDecl, std::__1::allocator<WasmEdge::AST::Component::InstanceDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::InstanceDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::InstanceDecl, std::__1::allocator<WasmEdge::AST::Component::InstanceDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
357k
  template <class F> constexpr auto map_error(F &&f) && {
1703
357k
    return detail::expected_map_error_impl(std::move(*this),
1704
357k
                                           std::forward<F>(f));
1705
357k
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::InstanceDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::InstanceDecl, std::__1::allocator<WasmEdge::AST::Component::InstanceDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::InstanceType, WasmEdge::AST::Component::InstanceDecl, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0>(std::__1::vector<WasmEdge::AST::Component::InstanceDecl, std::__1::allocator<WasmEdge::AST::Component::InstanceDecl> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::InstanceType&)::$_0&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
1.50k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.50k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.50k
                                           std::forward<F>(f));
1705
1.50k
  }
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}&&) &&
Line
Count
Source
1702
17.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
17.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
17.5k
                                           std::forward<F>(f));
1705
17.5k
  }
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}&&) &&
Line
Count
Source
1702
749
  template <class F> constexpr auto map_error(F &&f) && {
1703
749
    return detail::expected_map_error_impl(std::move(*this),
1704
749
                                           std::forward<F>(f));
1705
749
  }
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}&&) &&
Line
Count
Source
1702
749
  template <class F> constexpr auto map_error(F &&f) && {
1703
749
    return detail::expected_map_error_impl(std::move(*this),
1704
749
                                           std::forward<F>(f));
1705
749
  }
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}&&) &&
Line
Count
Source
1702
889
  template <class F> constexpr auto map_error(F &&f) && {
1703
889
    return detail::expected_map_error_impl(std::move(*this),
1704
889
                                           std::forward<F>(f));
1705
889
  }
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}&&) &&
Line
Count
Source
1702
2.77k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.77k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.77k
                                           std::forward<F>(f));
1705
2.77k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1>(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1>(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.01k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.01k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.01k
                                           std::forward<F>(f));
1705
1.01k
  }
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::VariantTy&)::$_0::operator()(std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >&) const::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0::operator()(std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >&) const::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.26k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.26k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.26k
                                           std::forward<F>(f));
1705
1.26k
  }
auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::VariantTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::VariantTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.24k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.24k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.24k
                                           std::forward<F>(f));
1705
1.24k
  }
auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::VariantTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::VariantTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
693
  template <class F> constexpr auto map_error(F &&f) && {
1703
693
    return detail::expected_map_error_impl(std::move(*this),
1704
693
                                           std::forward<F>(f));
1705
693
  }
component_type.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0::operator()(std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >&) const::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_0::operator()(std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >&) const::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
1.22k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.22k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.22k
                                           std::forward<F>(f));
1705
1.22k
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1>(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::VariantTy, std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1>(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::optional<WasmEdge::ComponentValType> > > >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::VariantTy&)::$_1&&)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
1.26k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.26k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.26k
                                           std::forward<F>(f));
1705
1.26k
  }
component_type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, WasmEdge::ComponentValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<WasmEdge::ComponentValType, std::__1::allocator<WasmEdge::ComponentValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, WasmEdge::ComponentValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<WasmEdge::ComponentValType, std::__1::allocator<WasmEdge::ComponentValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.01k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.01k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.01k
                                           std::forward<F>(f));
1705
1.01k
  }
component_type.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, WasmEdge::ComponentValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<WasmEdge::ComponentValType, std::__1::allocator<WasmEdge::ComponentValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadVec<WasmEdge::AST::Component::TupleTy, WasmEdge::ComponentValType, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0>(std::__1::vector<WasmEdge::ComponentValType, std::__1::allocator<WasmEdge::ComponentValType> >&, WasmEdge::Loader::Loader::loadType(WasmEdge::AST::Component::TupleTy&)::$_0&&)::{lambda(auto:1)#2}&&) &&
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
  }
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}&&) &&
Line
Count
Source
1702
384
  template <class F> constexpr auto map_error(F &&f) && {
1703
384
    return detail::expected_map_error_impl(std::move(*this),
1704
384
                                           std::forward<F>(f));
1705
384
  }
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}&&) &&
Line
Count
Source
1702
882
  template <class F> constexpr auto map_error(F &&f) && {
1703
882
    return detail::expected_map_error_impl(std::move(*this),
1704
882
                                           std::forward<F>(f));
1705
882
  }
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}&&) &&
Line
Count
Source
1702
882
  template <class F> constexpr auto map_error(F &&f) && {
1703
882
    return detail::expected_map_error_impl(std::move(*this),
1704
882
                                           std::forward<F>(f));
1705
882
  }
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}&&) &&
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
  }
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}&&) &&
Line
Count
Source
1702
4.17k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.17k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.17k
                                           std::forward<F>(f));
1705
4.17k
  }
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}&&) &&
Line
Count
Source
1702
4.17k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.17k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.17k
                                           std::forward<F>(f));
1705
4.17k
  }
auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
7.20k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.20k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.20k
                                           std::forward<F>(f));
1705
7.20k
  }
auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::ResultTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
3.55k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.55k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.55k
                                           std::forward<F>(f));
1705
3.55k
  }
auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::StreamTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::StreamTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.32k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.32k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.32k
                                           std::forward<F>(f));
1705
1.32k
  }
auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::StreamTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::StreamTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
626
  template <class F> constexpr auto map_error(F &&f) && {
1703
626
    return detail::expected_map_error_impl(std::move(*this),
1704
626
                                           std::forward<F>(f));
1705
626
  }
auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::FutureTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::FutureTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
915
  template <class F> constexpr auto map_error(F &&f) && {
1703
915
    return detail::expected_map_error_impl(std::move(*this),
1704
915
                                           std::forward<F>(f));
1705
915
  }
auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::FutureTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::FutureTy, WasmEdge::ComponentValType>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::ComponentValType&)>)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
153
  template <class F> constexpr auto map_error(F &&f) && {
1703
153
    return detail::expected_map_error_impl(std::move(*this),
1704
153
                                           std::forward<F>(f));
1705
153
  }
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&&) &&
Line
Count
Source
1702
6.91k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.91k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.91k
                                           std::forward<F>(f));
1705
6.91k
  }
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&&) &&
Line
Count
Source
1702
6.86k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.86k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.86k
                                           std::forward<F>(f));
1705
6.86k
  }
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&&) &&
Line
Count
Source
1702
1.53k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.53k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.53k
                                           std::forward<F>(f));
1705
1.53k
  }
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&&) &&
Line
Count
Source
1702
1.50k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.50k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.50k
                                           std::forward<F>(f));
1705
1.50k
  }
auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, WasmEdge::AST::Component::ExternDesc>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::AST::Component::ExternDesc&)>)::{lambda(auto:1)#1}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, WasmEdge::AST::Component::ExternDesc>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::AST::Component::ExternDesc&)>)::{lambda(auto:1)#1}&&) &&
Line
Count
Source
1702
1.49k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.49k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.49k
                                           std::forward<F>(f));
1705
1.49k
  }
auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, WasmEdge::AST::Component::ExternDesc>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::AST::Component::ExternDesc&)>)::{lambda(auto:1)#2}>(WasmEdge::Loader::Loader::loadOption<WasmEdge::AST::Component::Export, WasmEdge::AST::Component::ExternDesc>(std::__1::function<cxx20::expected<void, WasmEdge::ErrCode> (WasmEdge::AST::Component::ExternDesc&)>)::{lambda(auto:1)#2}&&) &&
Line
Count
Source
1702
176
  template <class F> constexpr auto map_error(F &&f) && {
1703
176
    return detail::expected_map_error_impl(std::move(*this),
1704
176
                                           std::forward<F>(f));
1705
176
  }
component_declarator.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::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_0&&) &&
Line
Count
Source
1702
4.76k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.76k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.76k
                                           std::forward<F>(f));
1705
4.76k
  }
component_declarator.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::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_1>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_1&&) &&
Line
Count
Source
1702
4.75k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.75k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.75k
                                           std::forward<F>(f));
1705
4.75k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_2>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreImportDecl&)::$_2&&) &&
Line
Count
Source
1702
4.74k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.74k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.74k
                                           std::forward<F>(f));
1705
4.74k
  }
component_declarator.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::loadDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_0&&) &&
Line
Count
Source
1702
1.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.33k
                                           std::forward<F>(f));
1705
1.33k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_1>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreExportDecl&)::$_1&&) &&
Line
Count
Source
1702
1.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.33k
                                           std::forward<F>(f));
1705
1.33k
  }
component_declarator.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreModuleDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreModuleDecl&)::$_0&&) &&
Line
Count
Source
1702
8.37k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.37k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.37k
                                           std::forward<F>(f));
1705
8.37k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreModuleDecl&)::$_1&>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::CoreModuleDecl&)::$_1&) &&
Line
Count
Source
1702
8.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.33k
                                           std::forward<F>(f));
1705
8.33k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ImportDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ImportDecl&)::$_0&&) &&
Line
Count
Source
1702
1.13k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.13k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.13k
                                           std::forward<F>(f));
1705
1.13k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ImportDecl&)::$_1>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ImportDecl&)::$_1&&) &&
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
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ExportDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ExportDecl&)::$_0&&) &&
Line
Count
Source
1702
445
  template <class F> constexpr auto map_error(F &&f) && {
1703
445
    return detail::expected_map_error_impl(std::move(*this),
1704
445
                                           std::forward<F>(f));
1705
445
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ExportDecl&)::$_1>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ExportDecl&)::$_1&&) &&
Line
Count
Source
1702
438
  template <class F> constexpr auto map_error(F &&f) && {
1703
438
    return detail::expected_map_error_impl(std::move(*this),
1704
438
                                           std::forward<F>(f));
1705
438
  }
component_declarator.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::InstanceDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::InstanceDecl&)::$_0&&) &&
Line
Count
Source
1702
10.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
10.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
10.0k
                                           std::forward<F>(f));
1705
10.0k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::InstanceDecl&)::$_1&>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::InstanceDecl&)::$_1&) &&
Line
Count
Source
1702
9.98k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.98k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.98k
                                           std::forward<F>(f));
1705
9.98k
  }
component_declarator.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ComponentDecl&)::$_0>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ComponentDecl&)::$_0&&) &&
Line
Count
Source
1702
9.70k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.70k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.70k
                                           std::forward<F>(f));
1705
9.70k
  }
component_declarator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ComponentDecl&)::$_1&>(WasmEdge::Loader::Loader::loadDecl(WasmEdge::AST::Component::ComponentDecl&)::$_1&) &&
Line
Count
Source
1702
9.67k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.67k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.67k
                                           std::forward<F>(f));
1705
9.67k
  }
component_descriptor.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&) &&
Line
Count
Source
1702
6.07k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.07k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.07k
                                           std::forward<F>(f));
1705
6.07k
  }
component_descriptor.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&) &&
Line
Count
Source
1702
4.01k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.01k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.01k
                                           std::forward<F>(f));
1705
4.01k
  }
component_descriptor.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::CoreImportDesc&)::$_0&) &&
Line
Count
Source
1702
2.04k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.04k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.04k
                                           std::forward<F>(f));
1705
2.04k
  }
component_descriptor.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&) &&
Line
Count
Source
1702
14.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
14.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
14.9k
                                           std::forward<F>(f));
1705
14.9k
  }
component_descriptor.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&) &&
Line
Count
Source
1702
3.89k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.89k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.89k
                                           std::forward<F>(f));
1705
3.89k
  }
component_descriptor.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::Component::ExternDesc&)::$_0&) &&
Line
Count
Source
1702
1.95k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.95k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.95k
                                           std::forward<F>(f));
1705
1.95k
  }
component_valtype.cpp:auto cxx20::expected<long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadType(WasmEdge::ComponentValType&)::$_0>(WasmEdge::Loader::Loader::loadType(WasmEdge::ComponentValType&)::$_0&&) &&
Line
Count
Source
1702
111k
  template <class F> constexpr auto map_error(F &&f) && {
1703
111k
    return detail::expected_map_error_impl(std::move(*this),
1704
111k
                                           std::forward<F>(f));
1705
111k
  }
component_valtype.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&&) &&
Line
Count
Source
1702
86.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
86.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
86.0k
                                           std::forward<F>(f));
1705
86.0k
  }
component_valtype.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&&) &&
Line
Count
Source
1702
85.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
85.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
85.9k
                                           std::forward<F>(f));
1705
85.9k
  }
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
92.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
92.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
92.7k
                                           std::forward<F>(f));
1705
92.7k
  }
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
1.39M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.39M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.39M
                                           std::forward<F>(f));
1705
1.39M
  }
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
1.39M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.39M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.39M
                                           std::forward<F>(f));
1705
1.39M
  }
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
1.39M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.39M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.39M
                                           std::forward<F>(f));
1705
1.39M
  }
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
6.43k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.43k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.43k
                                           std::forward<F>(f));
1705
6.43k
  }
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
6.93k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.93k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.93k
                                           std::forward<F>(f));
1705
6.93k
  }
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
13.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
13.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
13.0k
                                           std::forward<F>(f));
1705
13.0k
  }
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}&&) &&
Line
Count
Source
1702
2.57k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.57k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.57k
                                           std::forward<F>(f));
1705
2.57k
  }
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
12.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.5k
                                           std::forward<F>(f));
1705
12.5k
  }
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
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_3AST13ImportSectionENS8_10ImportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_
Line
Count
Source
1702
1.33k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.33k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.33k
                                           std::forward<F>(f));
1705
1.33k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ImportSectionENS8_10ImportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
18.3k
  template <class F> constexpr auto map_error(F &&f) && {
1703
18.3k
    return detail::expected_map_error_impl(std::move(*this),
1704
18.3k
                                           std::forward<F>(f));
1705
18.3k
  }
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
5.30k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.30k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.30k
                                           std::forward<F>(f));
1705
5.30k
  }
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EENS0_IvS2_EERNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E_EEDaOSO_
Line
Count
Source
1702
5.25k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.25k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.25k
                                           std::forward<F>(f));
1705
5.25k
  }
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
158k
  template <class F> constexpr auto map_error(F &&f) && {
1703
158k
    return detail::expected_map_error_impl(std::move(*this),
1704
158k
                                           std::forward<F>(f));
1705
158k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST15FunctionSectionEjZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRjE_EES3_RNSt3__16vectorIT0_NSE_9allocatorISG_EEEEOT1_EUlT_E0_EEDaOSN_
Line
Count
Source
1702
158k
  template <class F> constexpr auto map_error(F &&f) && {
1703
158k
    return detail::expected_map_error_impl(std::move(*this),
1704
158k
                                           std::forward<F>(f));
1705
158k
  }
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
1.26k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.26k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.26k
                                           std::forward<F>(f));
1705
1.26k
  }
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
1.22k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.22k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.22k
                                           std::forward<F>(f));
1705
1.22k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST12TableSectionENS8_12TableSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
2.50k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.50k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.50k
                                           std::forward<F>(f));
1705
2.50k
  }
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.71k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.71k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.71k
                                           std::forward<F>(f));
1705
1.71k
  }
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.68k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.68k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.68k
                                           std::forward<F>(f));
1705
1.68k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13MemorySectionENS8_10MemoryTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
3.80k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.80k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.80k
                                           std::forward<F>(f));
1705
3.80k
  }
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
2.31k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.31k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.31k
                                           std::forward<F>(f));
1705
2.31k
  }
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
2.27k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.27k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.27k
                                           std::forward<F>(f));
1705
2.27k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13GlobalSectionENS8_13GlobalSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
2.59k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.59k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.59k
                                           std::forward<F>(f));
1705
2.59k
  }
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.48k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.48k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.48k
                                           std::forward<F>(f));
1705
1.48k
  }
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ExportSectionENS8_10ExportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_
Line
Count
Source
1702
1.43k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.43k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.43k
                                           std::forward<F>(f));
1705
1.43k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST13ExportSectionENS8_10ExportDescEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
19.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
19.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
19.8k
                                           std::forward<F>(f));
1705
19.8k
  }
section.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSectionContent<WasmEdge::AST::StartSection, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0>(WasmEdge::AST::StartSection&, WasmEdge::Loader::Loader::loadSection(WasmEdge::AST::StartSection&)::$_0&&)::{lambda(auto:1)#1}>(WasmEdge::AST::StartSection&&) &&
Line
Count
Source
1702
205
  template <class F> constexpr auto map_error(F &&f) && {
1703
205
    return detail::expected_map_error_impl(std::move(*this),
1704
205
                                           std::forward<F>(f));
1705
205
  }
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
165
  template <class F> constexpr auto map_error(F &&f) && {
1703
165
    return detail::expected_map_error_impl(std::move(*this),
1704
165
                                           std::forward<F>(f));
1705
165
  }
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
3.85k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.85k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.85k
                                           std::forward<F>(f));
1705
3.85k
  }
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
3.82k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.82k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.82k
                                           std::forward<F>(f));
1705
3.82k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST14ElementSectionENS8_14ElementSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
15.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
15.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
15.0k
                                           std::forward<F>(f));
1705
15.0k
  }
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
5.66k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.66k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.66k
                                           std::forward<F>(f));
1705
5.66k
  }
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
5.62k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.62k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.62k
                                           std::forward<F>(f));
1705
5.62k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11CodeSectionENS8_11CodeSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
21.1k
  template <class F> constexpr auto map_error(F &&f) && {
1703
21.1k
    return detail::expected_map_error_impl(std::move(*this),
1704
21.1k
                                           std::forward<F>(f));
1705
21.1k
  }
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
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
  }
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
3.15k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.15k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.15k
                                           std::forward<F>(f));
1705
3.15k
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST11DataSectionENS8_11DataSegmentEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
7.68k
  template <class F> constexpr auto map_error(F &&f) && {
1703
7.68k
    return detail::expected_map_error_impl(std::move(*this),
1704
7.68k
                                           std::forward<F>(f));
1705
7.68k
  }
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
392
  template <class F> constexpr auto map_error(F &&f) && {
1703
392
    return detail::expected_map_error_impl(std::move(*this),
1704
392
                                           std::forward<F>(f));
1705
392
  }
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
347
  template <class F> constexpr auto map_error(F &&f) && {
1703
347
    return detail::expected_map_error_impl(std::move(*this),
1704
347
                                           std::forward<F>(f));
1705
347
  }
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&&) &&
Line
Count
Source
1702
247
  template <class F> constexpr auto map_error(F &&f) && {
1703
247
    return detail::expected_map_error_impl(std::move(*this),
1704
247
                                           std::forward<F>(f));
1705
247
  }
section.cpp:_ZNO5cxx208expectedIjN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST10TagSectionENS8_7TagTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EENS0_IvS2_EERNSt3__16vectorIT0_NSG_9allocatorISI_EEEEOT1_EUlT_E_EEDaOSP_
Line
Count
Source
1702
207
  template <class F> constexpr auto map_error(F &&f) && {
1703
207
    return detail::expected_map_error_impl(std::move(*this),
1704
207
                                           std::forward<F>(f));
1705
207
  }
section.cpp:_ZNO5cxx208expectedIvN8WasmEdge7ErrCodeEE9map_errorIZNS1_6Loader6Loader7loadVecINS1_3AST10TagSectionENS8_7TagTypeEZZNS6_11loadSectionERS9_ENK3$_0clEvEUlRSA_E_EES3_RNSt3__16vectorIT0_NSF_9allocatorISH_EEEEOT1_EUlT_E0_EEDaOSO_
Line
Count
Source
1702
3.34k
  template <class F> constexpr auto map_error(F &&f) && {
1703
3.34k
    return detail::expected_map_error_impl(std::move(*this),
1704
3.34k
                                           std::forward<F>(f));
1705
3.34k
  }
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
36.6k
  template <class F> constexpr auto map_error(F &&f) && {
1703
36.6k
    return detail::expected_map_error_impl(std::move(*this),
1704
36.6k
                                           std::forward<F>(f));
1705
36.6k
  }
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
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
  }
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
4.11k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.11k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.11k
                                           std::forward<F>(f));
1705
4.11k
  }
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
19.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
19.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
19.8k
                                           std::forward<F>(f));
1705
19.8k
  }
description.cpp:auto cxx20::expected<unsigned char, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&>(WasmEdge::Loader::Loader::loadDesc(WasmEdge::AST::ExportDesc&)::$_0&) &&
Line
Count
Source
1702
19.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
19.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
19.7k
                                           std::forward<F>(f));
1705
19.7k
  }
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
19.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
19.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
19.7k
                                           std::forward<F>(f));
1705
19.7k
  }
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
2.50k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.50k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.50k
                                           std::forward<F>(f));
1705
2.50k
  }
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&&) &&
Line
Count
Source
1702
247
  template <class F> constexpr auto map_error(F &&f) && {
1703
247
    return detail::expected_map_error_impl(std::move(*this),
1704
247
                                           std::forward<F>(f));
1705
247
  }
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&&) &&
Line
Count
Source
1702
232
  template <class F> constexpr auto map_error(F &&f) && {
1703
232
    return detail::expected_map_error_impl(std::move(*this),
1704
232
                                           std::forward<F>(f));
1705
232
  }
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&&) &&
Line
Count
Source
1702
225
  template <class F> constexpr auto map_error(F &&f) && {
1703
225
    return detail::expected_map_error_impl(std::move(*this),
1704
225
                                           std::forward<F>(f));
1705
225
  }
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
2.23k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.23k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.23k
                                           std::forward<F>(f));
1705
2.23k
  }
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
2.59k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.59k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.59k
                                           std::forward<F>(f));
1705
2.59k
  }
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
27.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
27.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
27.4k
                                           std::forward<F>(f));
1705
27.4k
  }
segment.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_3>(WasmEdge::Loader::Loader::loadSegment(WasmEdge::AST::ElementSegment&)::$_3&&) &&
Line
Count
Source
1702
12.6k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.6k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.6k
                                           std::forward<F>(f));
1705
12.6k
  }
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
4.52k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.52k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.52k
                                           std::forward<F>(f));
1705
4.52k
  }
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
22.1k
  template <class F> constexpr auto map_error(F &&f) && {
1703
22.1k
    return detail::expected_map_error_impl(std::move(*this),
1704
22.1k
                                           std::forward<F>(f));
1705
22.1k
  }
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
51.1k
  template <class F> constexpr auto map_error(F &&f) && {
1703
51.1k
    return detail::expected_map_error_impl(std::move(*this),
1704
51.1k
                                           std::forward<F>(f));
1705
51.1k
  }
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
20.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
20.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
20.9k
                                           std::forward<F>(f));
1705
20.9k
  }
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
14.3k
  template <class F> constexpr auto map_error(F &&f) && {
1703
14.3k
    return detail::expected_map_error_impl(std::move(*this),
1704
14.3k
                                           std::forward<F>(f));
1705
14.3k
  }
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
4.76k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.76k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.76k
                                           std::forward<F>(f));
1705
4.76k
  }
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
5.37k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.37k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.37k
                                           std::forward<F>(f));
1705
5.37k
  }
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
2.65k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.65k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.65k
                                           std::forward<F>(f));
1705
2.65k
  }
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
6.85k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.85k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.85k
                                           std::forward<F>(f));
1705
6.85k
  }
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
158k
  template <class F> constexpr auto map_error(F &&f) && {
1703
158k
    return detail::expected_map_error_impl(std::move(*this),
1704
158k
                                           std::forward<F>(f));
1705
158k
  }
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
9.77k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.77k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.77k
                                           std::forward<F>(f));
1705
9.77k
  }
type.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_1>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_1&&) &&
Line
Count
Source
1702
9.63k
  template <class F> constexpr auto map_error(F &&f) && {
1703
9.63k
    return detail::expected_map_error_impl(std::move(*this),
1704
9.63k
                                           std::forward<F>(f));
1705
9.63k
  }
type.cpp:auto cxx20::expected<unsigned long, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_2>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_2&&) &&
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
  }
Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_3>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_3&&) &&
Unexecuted instantiation: type.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_4>(WasmEdge::Loader::Loader::loadLimit(WasmEdge::AST::Limit&)::$_4&&) &&
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
158k
  template <class F> constexpr auto map_error(F &&f) && {
1703
158k
    return detail::expected_map_error_impl(std::move(*this),
1704
158k
                                           std::forward<F>(f));
1705
158k
  }
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
5.64k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.64k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.64k
                                           std::forward<F>(f));
1705
5.64k
  }
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
4.13k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.13k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.13k
                                           std::forward<F>(f));
1705
4.13k
  }
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&&) &&
Line
Count
Source
1702
4.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.44k
                                           std::forward<F>(f));
1705
4.44k
  }
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&&) &&
Line
Count
Source
1702
4.40k
  template <class F> constexpr auto map_error(F &&f) && {
1703
4.40k
    return detail::expected_map_error_impl(std::move(*this),
1704
4.40k
                                           std::forward<F>(f));
1705
4.40k
  }
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}&&) &&
Line
Count
Source
1702
144k
  template <class F> constexpr auto map_error(F &&f) && {
1703
144k
    return detail::expected_map_error_impl(std::move(*this),
1704
144k
                                           std::forward<F>(f));
1705
144k
  }
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}&&) &&
Line
Count
Source
1702
1.32k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.32k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.32k
                                           std::forward<F>(f));
1705
1.32k
  }
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}&&) &&
Line
Count
Source
1702
1.40k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.40k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.40k
                                           std::forward<F>(f));
1705
1.40k
  }
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}&&) &&
Line
Count
Source
1702
13.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
13.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
13.2k
                                           std::forward<F>(f));
1705
13.2k
  }
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}&&) &&
Line
Count
Source
1702
13.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
13.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
13.2k
                                           std::forward<F>(f));
1705
13.2k
  }
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
25.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
25.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
25.5k
                                           std::forward<F>(f));
1705
25.5k
  }
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
24.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
24.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
24.4k
                                           std::forward<F>(f));
1705
24.4k
  }
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
47.9k
  template <class F> constexpr auto map_error(F &&f) && {
1703
47.9k
    return detail::expected_map_error_impl(std::move(*this),
1704
47.9k
                                           std::forward<F>(f));
1705
47.9k
  }
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
27.3M
  template <class F> constexpr auto map_error(F &&f) && {
1703
27.3M
    return detail::expected_map_error_impl(std::move(*this),
1704
27.3M
                                           std::forward<F>(f));
1705
27.3M
  }
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
1.21M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.21M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.21M
                                           std::forward<F>(f));
1705
1.21M
  }
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
64.5k
  template <class F> constexpr auto map_error(F &&f) && {
1703
64.5k
    return detail::expected_map_error_impl(std::move(*this),
1704
64.5k
                                           std::forward<F>(f));
1705
64.5k
  }
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
259k
  template <class F> constexpr auto map_error(F &&f) && {
1703
259k
    return detail::expected_map_error_impl(std::move(*this),
1704
259k
                                           std::forward<F>(f));
1705
259k
  }
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
1.35M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.35M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.35M
                                           std::forward<F>(f));
1705
1.35M
  }
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
82.4k
  template <class F> constexpr auto map_error(F &&f) && {
1703
82.4k
    return detail::expected_map_error_impl(std::move(*this),
1704
82.4k
                                           std::forward<F>(f));
1705
82.4k
  }
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&) &&
Line
Count
Source
1702
546
  template <class F> constexpr auto map_error(F &&f) && {
1703
546
    return detail::expected_map_error_impl(std::move(*this),
1704
546
                                           std::forward<F>(f));
1705
546
  }
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&) &&
Line
Count
Source
1702
447
  template <class F> constexpr auto map_error(F &&f) && {
1703
447
    return detail::expected_map_error_impl(std::move(*this),
1704
447
                                           std::forward<F>(f));
1705
447
  }
instruction.cpp:auto cxx20::expected<unsigned 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
459k
  template <class F> constexpr auto map_error(F &&f) && {
1703
459k
    return detail::expected_map_error_impl(std::move(*this),
1704
459k
                                           std::forward<F>(f));
1705
459k
  }
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.38M
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.38M
    return detail::expected_map_error_impl(std::move(*this),
1704
2.38M
                                           std::forward<F>(f));
1705
2.38M
  }
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
833k
  template <class F> constexpr auto map_error(F &&f) && {
1703
833k
    return detail::expected_map_error_impl(std::move(*this),
1704
833k
                                           std::forward<F>(f));
1705
833k
  }
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
45.7k
  template <class F> constexpr auto map_error(F &&f) && {
1703
45.7k
    return detail::expected_map_error_impl(std::move(*this),
1704
45.7k
                                           std::forward<F>(f));
1705
45.7k
  }
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
22.0k
  template <class F> constexpr auto map_error(F &&f) && {
1703
22.0k
    return detail::expected_map_error_impl(std::move(*this),
1704
22.0k
                                           std::forward<F>(f));
1705
22.0k
  }
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
6.62k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.62k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.62k
                                           std::forward<F>(f));
1705
6.62k
  }
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
6.56k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.56k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.56k
                                           std::forward<F>(f));
1705
6.56k
  }
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
6.51k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.51k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.51k
                                           std::forward<F>(f));
1705
6.51k
  }
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
6.49k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.49k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.49k
                                           std::forward<F>(f));
1705
6.49k
  }
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
6.34k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.34k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.34k
                                           std::forward<F>(f));
1705
6.34k
  }
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
6.15k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.15k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.15k
                                           std::forward<F>(f));
1705
6.15k
  }
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
5.83k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.83k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.83k
                                           std::forward<F>(f));
1705
5.83k
  }
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
5.79k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.79k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.79k
                                           std::forward<F>(f));
1705
5.79k
  }
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
5.66k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.66k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.66k
                                           std::forward<F>(f));
1705
5.66k
  }
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
5.62k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.62k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.62k
                                           std::forward<F>(f));
1705
5.62k
  }
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
5.53k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.53k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.53k
                                           std::forward<F>(f));
1705
5.53k
  }
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
5.50k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.50k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.50k
                                           std::forward<F>(f));
1705
5.50k
  }
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_0&&) &&
Line
Count
Source
1702
6.71k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.71k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.71k
                                           std::forward<F>(f));
1705
6.71k
  }
validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_1&&) &&
Line
Count
Source
1702
6.02k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.02k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.02k
                                           std::forward<F>(f));
1705
6.02k
  }
validator.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::(anonymous namespace)::checkSubtypeDepth(unsigned int, unsigned int, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, std::__1::vector<WasmEdge::AST::SubType const*, std::__1::allocator<WasmEdge::AST::SubType const*> > const&)::$_0>(WasmEdge::Validator::(anonymous namespace)::checkSubtypeDepth(unsigned int, unsigned int, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&, std::__1::vector<WasmEdge::AST::SubType const*, std::__1::allocator<WasmEdge::AST::SubType const*> > const&)::$_0&&) &&
Line
Count
Source
1702
1
  template <class F> constexpr auto map_error(F &&f) && {
1703
1
    return detail::expected_map_error_impl(std::move(*this),
1704
1
                                           std::forward<F>(f));
1705
1
  }
validator.cpp:auto cxx20::expected<unsigned int, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_2>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::SubType const&, unsigned int, std::__1::vector<unsigned int, std::__1::allocator<unsigned int> >&)::$_2&&) &&
Line
Count
Source
1702
33
  template <class F> constexpr auto map_error(F &&f) && {
1703
33
    return detail::expected_map_error_impl(std::move(*this),
1704
33
                                           std::forward<F>(f));
1705
33
  }
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
1.01k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.01k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.01k
                                           std::forward<F>(f));
1705
1.01k
  }
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
2.22k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.22k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.22k
                                           std::forward<F>(f));
1705
2.22k
  }
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&&) &&
Line
Count
Source
1702
8
  template <class F> constexpr auto map_error(F &&f) && {
1703
8
    return detail::expected_map_error_impl(std::move(*this),
1704
8
                                           std::forward<F>(f));
1705
8
  }
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
934
  template <class F> constexpr auto map_error(F &&f) && {
1703
934
    return detail::expected_map_error_impl(std::move(*this),
1704
934
                                           std::forward<F>(f));
1705
934
  }
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
614
  template <class F> constexpr auto map_error(F &&f) && {
1703
614
    return detail::expected_map_error_impl(std::move(*this),
1704
614
                                           std::forward<F>(f));
1705
614
  }
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
298
  template <class F> constexpr auto map_error(F &&f) && {
1703
298
    return detail::expected_map_error_impl(std::move(*this),
1704
298
                                           std::forward<F>(f));
1705
298
  }
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.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.44k
                                           std::forward<F>(f));
1705
1.44k
  }
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
269
  template <class F> constexpr auto map_error(F &&f) && {
1703
269
    return detail::expected_map_error_impl(std::move(*this),
1704
269
                                           std::forward<F>(f));
1705
269
  }
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.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.8k
                                           std::forward<F>(f));
1705
12.8k
  }
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
190
  template <class F> constexpr auto map_error(F &&f) && {
1703
190
    return detail::expected_map_error_impl(std::move(*this),
1704
190
                                           std::forward<F>(f));
1705
190
  }
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
105
  template <class F> constexpr auto map_error(F &&f) && {
1703
105
    return detail::expected_map_error_impl(std::move(*this),
1704
105
                                           std::forward<F>(f));
1705
105
  }
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
225
  template <class F> constexpr auto map_error(F &&f) && {
1703
225
    return detail::expected_map_error_impl(std::move(*this),
1704
225
                                           std::forward<F>(f));
1705
225
  }
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
92
  template <class F> constexpr auto map_error(F &&f) && {
1703
92
    return detail::expected_map_error_impl(std::move(*this),
1704
92
                                           std::forward<F>(f));
1705
92
  }
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&&) &&
Line
Count
Source
1702
8.56k
  template <class F> constexpr auto map_error(F &&f) && {
1703
8.56k
    return detail::expected_map_error_impl(std::move(*this),
1704
8.56k
                                           std::forward<F>(f));
1705
8.56k
  }
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
1.27k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.27k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.27k
                                           std::forward<F>(f));
1705
1.27k
  }
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
942
  template <class F> constexpr auto map_error(F &&f) && {
1703
942
    return detail::expected_map_error_impl(std::move(*this),
1704
942
                                           std::forward<F>(f));
1705
942
  }
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
2.00k
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.00k
    return detail::expected_map_error_impl(std::move(*this),
1704
2.00k
                                           std::forward<F>(f));
1705
2.00k
  }
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
614
  template <class F> constexpr auto map_error(F &&f) && {
1703
614
    return detail::expected_map_error_impl(std::move(*this),
1704
614
                                           std::forward<F>(f));
1705
614
  }
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
593
  template <class F> constexpr auto map_error(F &&f) && {
1703
593
    return detail::expected_map_error_impl(std::move(*this),
1704
593
                                           std::forward<F>(f));
1705
593
  }
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.8k
  template <class F> constexpr auto map_error(F &&f) && {
1703
12.8k
    return detail::expected_map_error_impl(std::move(*this),
1704
12.8k
                                           std::forward<F>(f));
1705
12.8k
  }
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
1.09k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.09k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.09k
                                           std::forward<F>(f));
1705
1.09k
  }
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.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
11.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
11.2k
                                           std::forward<F>(f));
1705
11.2k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validateComponent(WasmEdge::AST::Component::Component const&)::$_1&>(WasmEdge::Validator::Validator::validateComponent(WasmEdge::AST::Component::Component const&)::$_1&) &&
Line
Count
Source
1702
1.64M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.64M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.64M
                                           std::forward<F>(f));
1705
1.64M
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreModuleSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreModuleSection const&)::$_0&&) &&
Line
Count
Source
1702
1.51k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.51k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.51k
                                           std::forward<F>(f));
1705
1.51k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreInstanceSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreInstanceSection const&)::$_0&&) &&
Line
Count
Source
1702
6.10k
  template <class F> constexpr auto map_error(F &&f) && {
1703
6.10k
    return detail::expected_map_error_impl(std::move(*this),
1704
6.10k
                                           std::forward<F>(f));
1705
6.10k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreTypeSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreTypeSection const&)::$_0&&) &&
Line
Count
Source
1702
252k
  template <class F> constexpr auto map_error(F &&f) && {
1703
252k
    return detail::expected_map_error_impl(std::move(*this),
1704
252k
                                           std::forward<F>(f));
1705
252k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentSection const&)::$_0&&) &&
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
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceSection const&)::$_0&&) &&
Line
Count
Source
1702
26.2k
  template <class F> constexpr auto map_error(F &&f) && {
1703
26.2k
    return detail::expected_map_error_impl(std::move(*this),
1704
26.2k
                                           std::forward<F>(f));
1705
26.2k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::AliasSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::AliasSection const&)::$_0&&) &&
Line
Count
Source
1702
5.56k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.56k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.56k
                                           std::forward<F>(f));
1705
5.56k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::TypeSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::TypeSection const&)::$_0&&) &&
Line
Count
Source
1702
1.19M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.19M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.19M
                                           std::forward<F>(f));
1705
1.19M
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CanonSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CanonSection const&)::$_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
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportSection const&)::$_0&&) &&
Line
Count
Source
1702
5.40k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.40k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.40k
                                           std::forward<F>(f));
1705
5.40k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportSection const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportSection const&)::$_0&&) &&
Line
Count
Source
1702
705
  template <class F> constexpr auto map_error(F &&f) && {
1703
705
    return detail::expected_map_error_impl(std::move(*this),
1704
705
                                           std::forward<F>(f));
1705
705
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreDefType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreDefType const&)::$_0&&) &&
Line
Count
Source
1702
1.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.44k
                                           std::forward<F>(f));
1705
1.44k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::DefType const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::DefType const&)::$_0&) &&
Line
Count
Source
1702
1.19M
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.19M
    return detail::expected_map_error_impl(std::move(*this),
1704
1.19M
                                           std::forward<F>(f));
1705
1.19M
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Import const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Import const&)::$_0&&) &&
Line
Count
Source
1702
5.40k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.40k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.40k
                                           std::forward<F>(f));
1705
5.40k
  }
component_validator.cpp:auto cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Import const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Import const&)::$_1&&) &&
Line
Count
Source
1702
5.34k
  template <class F> constexpr auto map_error(F &&f) && {
1703
5.34k
    return detail::expected_map_error_impl(std::move(*this),
1704
5.34k
                                           std::forward<F>(f));
1705
5.34k
  }
component_validator.cpp:auto cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Export const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::Export const&)::$_0&&) &&
Line
Count
Source
1702
690
  template <class F> constexpr auto map_error(F &&f) && {
1703
690
    return detail::expected_map_error_impl(std::move(*this),
1704
690
                                           std::forward<F>(f));
1705
690
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreModuleDecl const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::CoreModuleDecl const&)::$_0&) &&
Line
Count
Source
1702
1.44k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.44k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.44k
                                           std::forward<F>(f));
1705
1.44k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportDecl const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportDecl const&)::$_0&) &&
Line
Count
Source
1702
341
  template <class F> constexpr auto map_error(F &&f) && {
1703
341
    return detail::expected_map_error_impl(std::move(*this),
1704
341
                                           std::forward<F>(f));
1705
341
  }
component_validator.cpp:auto cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportDecl const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ImportDecl 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
  }
component_validator.cpp:auto cxx20::expected<WasmEdge::Validator::ComponentName, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportDecl const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportDecl const&)::$_0&&) &&
Line
Count
Source
1702
255
  template <class F> constexpr auto map_error(F &&f) && {
1703
255
    return detail::expected_map_error_impl(std::move(*this),
1704
255
                                           std::forward<F>(f));
1705
255
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportDecl const&)::$_1>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ExportDecl const&)::$_1&&) &&
Line
Count
Source
1702
253
  template <class F> constexpr auto map_error(F &&f) && {
1703
253
    return detail::expected_map_error_impl(std::move(*this),
1704
253
                                           std::forward<F>(f));
1705
253
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceDecl const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceDecl const&)::$_0&) &&
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
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentDecl const&)::$_0&>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentDecl const&)::$_0&) &&
Line
Count
Source
1702
1.14k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.14k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.14k
                                           std::forward<F>(f));
1705
1.14k
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::InstanceType const&)::$_0&&) &&
Line
Count
Source
1702
485
  template <class F> constexpr auto map_error(F &&f) && {
1703
485
    return detail::expected_map_error_impl(std::move(*this),
1704
485
                                           std::forward<F>(f));
1705
485
  }
component_validator.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentType const&)::$_0>(WasmEdge::Validator::Validator::validate(WasmEdge::AST::Component::ComponentType const&)::$_0&&) &&
Line
Count
Source
1702
1.14k
  template <class F> constexpr auto map_error(F &&f) && {
1703
1.14k
    return detail::expected_map_error_impl(std::move(*this),
1704
1.14k
                                           std::forward<F>(f));
1705
1.14k
  }
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
2.06M
  template <class F> constexpr auto map_error(F &&f) && {
1703
2.06M
    return detail::expected_map_error_impl(std::move(*this),
1704
2.06M
                                           std::forward<F>(f));
1705
2.06M
  }
Unexecuted instantiation: vm.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_0>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_0&&) &&
Unexecuted instantiation: vm.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_2>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_2&&) &&
Unexecuted instantiation: vm.cpp:auto cxx20::expected<std::__1::shared_ptr<WasmEdge::Executable>, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_4>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_4&&) &&
Unexecuted instantiation: vm.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_6>(WasmEdge::VM::VM::unsafeLoadJITExecutable()::$_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&&) &&
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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType>, 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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(4), unsigned short __vector(8), short __vector(8), unsigned char __vector(16), signed char __vector(16), float __vector(4), double __vector(2), WasmEdge::RefVariant> >, WasmEdge::ComponentValType> > >, WasmEdge::ErrCode>::map_error<WasmEdge::VM::VM::unsafeExecuteComponent(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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(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::ComponentValType const, 18446744073709551615ul>)::$_0>(WasmEdge::VM::VM::unsafeExecuteComponent(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> >, WasmEdge::Variant<unsigned int, int, unsigned long, long, float, double, unsigned __int128, __int128, unsigned long __vector(2), long __vector(2), unsigned int __vector(4), int __vector(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::ComponentValType const, 18446744073709551615ul>)::$_0&&) &&
Unexecuted instantiation: threadInstr.cpp:auto cxx20::expected<unsigned long, 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 long, 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 long, 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::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ModuleInstance const&, std::__1::basic_string_view<char, std::__1::char_traits<char> >)::$_0>(WasmEdge::Executor::Executor::registerModule(WasmEdge::Runtime::StoreManager&, WasmEdge::Runtime::Instance::ModuleInstance 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::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> > >)::$_1::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> > >)::$_1::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> > >)::$_2&>(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> > >)::$_2&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::CoreModuleSection const&>(WasmEdge::AST::Component::CoreModuleSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreModuleSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::CoreInstanceSection const&>(WasmEdge::AST::Component::CoreInstanceSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreInstanceSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::CoreTypeSection const&>(WasmEdge::AST::Component::CoreTypeSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreTypeSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::ComponentSection const&>(WasmEdge::AST::Component::ComponentSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ComponentSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::InstanceSection const&>(WasmEdge::AST::Component::InstanceSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::InstanceSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::AliasSection const&>(WasmEdge::AST::Component::AliasSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::AliasSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::TypeSection const&>(WasmEdge::AST::Component::TypeSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::TypeSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::CanonSection const&>(WasmEdge::AST::Component::CanonSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CanonSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::StartSection const&>(WasmEdge::AST::Component::StartSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::StartSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::ImportSection const&>(WasmEdge::AST::Component::ImportSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ImportSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::StoreManager&, WasmEdge::AST::Component::Component const&, std::__1::optional<std::__1::basic_string_view<char, std::__1::char_traits<char> > >)::$_0::operator()<WasmEdge::AST::Component::ExportSection const&>(WasmEdge::AST::Component::ExportSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ExportSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::CoreModuleSection const&>(WasmEdge::AST::Component::CoreModuleSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreModuleSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::CoreInstanceSection const&>(WasmEdge::AST::Component::CoreInstanceSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreInstanceSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::CoreTypeSection const&>(WasmEdge::AST::Component::CoreTypeSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CoreTypeSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::ComponentSection const&>(WasmEdge::AST::Component::ComponentSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ComponentSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::InstanceSection const&>(WasmEdge::AST::Component::InstanceSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::InstanceSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::AliasSection const&>(WasmEdge::AST::Component::AliasSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::AliasSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::TypeSection const&>(WasmEdge::AST::Component::TypeSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::TypeSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::CanonSection const&>(WasmEdge::AST::Component::CanonSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::CanonSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::StartSection const&>(WasmEdge::AST::Component::StartSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::StartSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::ImportSection const&>(WasmEdge::AST::Component::ImportSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ImportSection const&) &&
Unexecuted instantiation: component.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Component::Component const&)::$_0::operator()<WasmEdge::AST::Component::ExportSection const&>(WasmEdge::AST::Component::ExportSection const&) const::{lambda(auto:1)#1}>(WasmEdge::AST::Component::ExportSection const&) &&
Unexecuted instantiation: component_module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Module const&)::$_1::operator()(WasmEdge::ASTNodeAttr) const::{lambda(auto:1)#1}>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Module const&)::$_1::operator()(WasmEdge::ASTNodeAttr) const::{lambda(auto:1)#1}&&) &&
Unexecuted instantiation: component_module.cpp:auto cxx20::expected<void, WasmEdge::ErrCode>::map_error<WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Module const&)::$_2>(WasmEdge::Executor::Executor::instantiate(WasmEdge::Runtime::Instance::ComponentImportManager&, WasmEdge::AST::Module const&)::$_2&&) &&
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<cxx20::span<WasmEdge::RefVariant const, 18446744073709551615ul>, WasmEdge::ErrCode>::map_error<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&) &&
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&)::$_0&>(WasmEdge::Executor::Executor::runTableCopyOp(WasmEdge::Runtime::StackManager&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::Runtime::Instance::TableInstance&, WasmEdge::AST::Instruction const&)::$_0&) &&
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&)::$_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::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&&) &&
Unexecuted instantiation: lazyjit.cpp:auto cxx20::expected<WasmEdge::LLVM::Data, WasmEdge::ErrCode>::map_error<WasmEdge::LLVM::LazyJITEngine::compileOnDemand(WasmEdge::Runtime::Instance::FunctionInstance const*)::$_0::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda(auto:1)#1}>(WasmEdge::LLVM::LazyJITEngine::compileOnDemand(WasmEdge::Runtime::Instance::FunctionInstance const*)::$_0::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda(auto:1)#1}&&) &&
Unexecuted instantiation: lazyjit.cpp:auto cxx20::expected<std::__1::vector<void*, std::__1::allocator<void*> >, WasmEdge::ErrCode>::map_error<WasmEdge::LLVM::LazyJITEngine::compileOnDemand(WasmEdge::Runtime::Instance::FunctionInstance const*)::$_0::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda(auto:1)#1}>(WasmEdge::LLVM::LazyJITEngine::compileOnDemand(WasmEdge::Runtime::Instance::FunctionInstance const*)::$_0::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda(auto:1)#1}&&) &&
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