Coverage Report

Created: 2026-08-08 06:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/WasmEdge/include/common/errcode.h
Line
Count
Source
1
// SPDX-License-Identifier: Apache-2.0
2
// SPDX-FileCopyrightText: Copyright The WasmEdge Authors
3
4
//===-- wasmedge/common/errcode.h - Error code definition -----------------===//
5
//
6
// Part of the WasmEdge Project.
7
//
8
//===----------------------------------------------------------------------===//
9
///
10
/// \file
11
/// This file contains the `Expected` wrappers.
12
///
13
//===----------------------------------------------------------------------===//
14
#pragma once
15
16
#include "common/enum_errcode.hpp"
17
#include "common/expected.h"
18
#include "common/fmt.h"
19
#include "common/hexstr.h"
20
#include "common/spdlog.h"
21
22
#include <cassert>
23
#include <ostream>
24
25
#if defined(_MSC_VER) && !defined(__clang__)
26
#define __builtin_unreachable() __assume(0)
27
#endif
28
29
#ifdef NDEBUG
30
#define assuming(R)                                                            \
31
1.62G
  (static_cast<bool>(R) ? static_cast<void>(0) : __builtin_unreachable())
32
0
#define assumingUnreachable() __builtin_unreachable()
33
#else
34
#define assuming(expr) assert(expr)
35
#define assumingUnreachable()                                                  \
36
  (assert(false && "unreachable"), __builtin_unreachable())
37
#endif
38
39
namespace WasmEdge {
40
41
562M
static inline constexpr bool likely(bool V) noexcept {
42
562M
  return __builtin_expect(V, true);
43
562M
}
component.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
8.22M
static inline constexpr bool likely(bool V) noexcept {
42
8.22M
  return __builtin_expect(V, true);
43
8.22M
}
loader.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
95.7k
static inline constexpr bool likely(bool V) noexcept {
42
95.7k
  return __builtin_expect(V, true);
43
95.7k
}
component_section.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
26.1M
static inline constexpr bool likely(bool V) noexcept {
42
26.1M
  return __builtin_expect(V, true);
43
26.1M
}
component_instance.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
687k
static inline constexpr bool likely(bool V) noexcept {
42
687k
  return __builtin_expect(V, true);
43
687k
}
component_sort.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
91.2k
static inline constexpr bool likely(bool V) noexcept {
42
91.2k
  return __builtin_expect(V, true);
43
91.2k
}
component_alias.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
71.5k
static inline constexpr bool likely(bool V) noexcept {
42
71.5k
  return __builtin_expect(V, true);
43
71.5k
}
component_canonical.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
178k
static inline constexpr bool likely(bool V) noexcept {
42
178k
  return __builtin_expect(V, true);
43
178k
}
component_start.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
828k
static inline constexpr bool likely(bool V) noexcept {
42
828k
  return __builtin_expect(V, true);
43
828k
}
component_type.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
14.7M
static inline constexpr bool likely(bool V) noexcept {
42
14.7M
  return __builtin_expect(V, true);
43
14.7M
}
component_import.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
17.2k
static inline constexpr bool likely(bool V) noexcept {
42
17.2k
  return __builtin_expect(V, true);
43
17.2k
}
component_export.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
10.2k
static inline constexpr bool likely(bool V) noexcept {
42
10.2k
  return __builtin_expect(V, true);
43
10.2k
}
component_declarator.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
91.3k
static inline constexpr bool likely(bool V) noexcept {
42
91.3k
  return __builtin_expect(V, true);
43
91.3k
}
component_descriptor.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
44.9k
static inline constexpr bool likely(bool V) noexcept {
42
44.9k
  return __builtin_expect(V, true);
43
44.9k
}
component_valtype.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
337k
static inline constexpr bool likely(bool V) noexcept {
42
337k
  return __builtin_expect(V, true);
43
337k
}
module.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
94.1k
static inline constexpr bool likely(bool V) noexcept {
42
94.1k
  return __builtin_expect(V, true);
43
94.1k
}
section.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
19.5M
static inline constexpr bool likely(bool V) noexcept {
42
19.5M
  return __builtin_expect(V, true);
43
19.5M
}
description.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
200k
static inline constexpr bool likely(bool V) noexcept {
42
200k
  return __builtin_expect(V, true);
43
200k
}
segment.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
172k
static inline constexpr bool likely(bool V) noexcept {
42
172k
  return __builtin_expect(V, true);
43
172k
}
type.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
1.57M
static inline constexpr bool likely(bool V) noexcept {
42
1.57M
  return __builtin_expect(V, true);
43
1.57M
}
Unexecuted instantiation: expression.cpp:WasmEdge::likely(bool)
instruction.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
135M
static inline constexpr bool likely(bool V) noexcept {
42
135M
  return __builtin_expect(V, true);
43
135M
}
Unexecuted instantiation: serial_module.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_section.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_segment.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_type.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_description.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_expression.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: serial_instruction.cpp:WasmEdge::likely(bool)
filemgr.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
115M
static inline constexpr bool likely(bool V) noexcept {
42
115M
  return __builtin_expect(V, true);
43
115M
}
Unexecuted instantiation: shared_library.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: aot_section.cpp:WasmEdge::likely(bool)
validator.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
210M
static inline constexpr bool likely(bool V) noexcept {
42
210M
  return __builtin_expect(V, true);
43
210M
}
component_validator.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
19.2M
static inline constexpr bool likely(bool V) noexcept {
42
19.2M
  return __builtin_expect(V, true);
43
19.2M
}
component_name.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
106
static inline constexpr bool likely(bool V) noexcept {
42
106
  return __builtin_expect(V, true);
43
106
}
formchecker.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
6.60M
static inline constexpr bool likely(bool V) noexcept {
42
6.60M
  return __builtin_expect(V, true);
43
6.60M
}
Unexecuted instantiation: component_context.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: allocator.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: wasmedge.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: wasmedge_compat.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: fuzzTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: fuzzPO.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: uniTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: validateTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: parseTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: instantiateTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: toolConfig.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: compilerTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: runtimeTool.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: vm.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: plugin_modules.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: plugin.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: func.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: argument_parser.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: proxy.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: threadInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: refInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: engine.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: helper.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: executor.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: coredump.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: component_canon.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: component_module.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: controlInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: tableInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: memoryInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: variableInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: import.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: function.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: global.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: table.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: memory.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: elem.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: data.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: export.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: tag.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: environ.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: vinode.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: wasimodule.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: inode-linux.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: wasifunc.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: clock-linux.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: environ-linux.cpp:WasmEdge::likely(bool)
compiler.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
23.1k
static inline constexpr bool likely(bool V) noexcept {
42
23.1k
  return __builtin_expect(V, true);
43
23.1k
}
Unexecuted instantiation: context.cpp:WasmEdge::likely(bool)
function_compiler.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
1.57M
static inline constexpr bool likely(bool V) noexcept {
42
1.57M
  return __builtin_expect(V, true);
43
1.57M
}
Unexecuted instantiation: numericInstr.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: vectorInstr.cpp:WasmEdge::likely(bool)
codegen.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
4.64k
static inline constexpr bool likely(bool V) noexcept {
42
4.64k
  return __builtin_expect(V, true);
43
4.64k
}
Unexecuted instantiation: jit.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: lazyjit.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: llvm.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: fault.cpp:WasmEdge::likely(bool)
Unexecuted instantiation: stacktrace.cpp:WasmEdge::likely(bool)
hash.cpp:WasmEdge::likely(bool)
Line
Count
Source
41
824k
static inline constexpr bool likely(bool V) noexcept {
42
824k
  return __builtin_expect(V, true);
43
824k
}
44
292M
static inline constexpr bool unlikely(bool V) noexcept {
45
292M
  return __builtin_expect(V, false);
46
292M
}
component.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
16.7k
static inline constexpr bool unlikely(bool V) noexcept {
45
16.7k
  return __builtin_expect(V, false);
46
16.7k
}
Unexecuted instantiation: loader.cpp:WasmEdge::unlikely(bool)
component_section.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
4.51M
static inline constexpr bool unlikely(bool V) noexcept {
45
4.51M
  return __builtin_expect(V, false);
46
4.51M
}
Unexecuted instantiation: component_instance.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_sort.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_alias.cpp:WasmEdge::unlikely(bool)
component_canonical.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
9.87k
static inline constexpr bool unlikely(bool V) noexcept {
45
9.87k
  return __builtin_expect(V, false);
46
9.87k
}
Unexecuted instantiation: component_start.cpp:WasmEdge::unlikely(bool)
component_type.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
3.91M
static inline constexpr bool unlikely(bool V) noexcept {
45
3.91M
  return __builtin_expect(V, false);
46
3.91M
}
Unexecuted instantiation: component_import.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_export.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_declarator.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_descriptor.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_valtype.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: module.cpp:WasmEdge::unlikely(bool)
section.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
7.62M
static inline constexpr bool unlikely(bool V) noexcept {
45
7.62M
  return __builtin_expect(V, false);
46
7.62M
}
description.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
848
static inline constexpr bool unlikely(bool V) noexcept {
45
848
  return __builtin_expect(V, false);
46
848
}
segment.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
14.7k
static inline constexpr bool unlikely(bool V) noexcept {
45
14.7k
  return __builtin_expect(V, false);
46
14.7k
}
type.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
879k
static inline constexpr bool unlikely(bool V) noexcept {
45
879k
  return __builtin_expect(V, false);
46
879k
}
Unexecuted instantiation: expression.cpp:WasmEdge::unlikely(bool)
instruction.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
45.2M
static inline constexpr bool unlikely(bool V) noexcept {
45
45.2M
  return __builtin_expect(V, false);
46
45.2M
}
Unexecuted instantiation: serial_module.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_section.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_segment.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_type.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_description.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_expression.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: serial_instruction.cpp:WasmEdge::unlikely(bool)
filemgr.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
229M
static inline constexpr bool unlikely(bool V) noexcept {
45
229M
  return __builtin_expect(V, false);
46
229M
}
Unexecuted instantiation: shared_library.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: aot_section.cpp:WasmEdge::unlikely(bool)
validator.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
8.18k
static inline constexpr bool unlikely(bool V) noexcept {
45
8.18k
  return __builtin_expect(V, false);
46
8.18k
}
Unexecuted instantiation: component_validator.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_name.cpp:WasmEdge::unlikely(bool)
formchecker.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
64.7k
static inline constexpr bool unlikely(bool V) noexcept {
45
64.7k
  return __builtin_expect(V, false);
46
64.7k
}
Unexecuted instantiation: component_context.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: allocator.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: wasmedge.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: wasmedge_compat.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: fuzzTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: fuzzPO.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: uniTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: validateTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: parseTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: instantiateTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: toolConfig.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: compilerTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: runtimeTool.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: vm.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: plugin_modules.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: plugin.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: func.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: argument_parser.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: proxy.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: threadInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: refInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: engine.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: helper.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: executor.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: coredump.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_canon.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: component_module.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: controlInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: tableInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: memoryInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: variableInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: import.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: function.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: global.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: table.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: memory.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: elem.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: data.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: export.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: tag.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: environ.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: vinode.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: wasimodule.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: inode-linux.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: wasifunc.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: clock-linux.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: environ-linux.cpp:WasmEdge::unlikely(bool)
compiler.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
2.32k
static inline constexpr bool unlikely(bool V) noexcept {
45
2.32k
  return __builtin_expect(V, false);
46
2.32k
}
Unexecuted instantiation: context.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: function_compiler.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: numericInstr.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: vectorInstr.cpp:WasmEdge::unlikely(bool)
codegen.cpp:WasmEdge::unlikely(bool)
Line
Count
Source
44
34.3k
static inline constexpr bool unlikely(bool V) noexcept {
45
34.3k
  return __builtin_expect(V, false);
46
34.3k
}
Unexecuted instantiation: jit.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: lazyjit.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: llvm.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: fault.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: stacktrace.cpp:WasmEdge::unlikely(bool)
Unexecuted instantiation: hash.cpp:WasmEdge::unlikely(bool)
47
48
/// Type aliasing for Expected<T, ErrCode>.
49
template <typename T> using Expect = Expected<T, ErrCode>;
50
51
/// Helper function for Unexpected<ErrCode>.
52
18.5k
constexpr auto Unexpect(const ErrCode &Val) { return Unexpected<ErrCode>(Val); }
53
29.6k
template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) {
54
29.6k
  return Unexpected<ErrCode>(ErrCode(Args...));
55
29.6k
}
auto WasmEdge::Unexpect<WasmEdge::ErrCode::Value>(WasmEdge::ErrCode::Value)
Line
Count
Source
53
29.6k
template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) {
54
29.6k
  return Unexpected<ErrCode>(ErrCode(Args...));
55
29.6k
}
Unexecuted instantiation: auto WasmEdge::Unexpect<WasmEdge::ErrCategory, unsigned int>(WasmEdge::ErrCategory, unsigned int)
56
0
template <typename T> constexpr auto Unexpect(const Expect<T> &Val) {
57
0
  return Unexpected<ErrCode>(Val.error());
58
0
}
59
60
} // namespace WasmEdge
61
62
template <>
63
struct fmt::formatter<WasmEdge::ErrCode> : fmt::formatter<std::string_view> {
64
  template <typename FmtCtx>
65
  auto format(const WasmEdge::ErrCode &Code,
66
16.7k
              FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) {
67
16.7k
    using namespace std::literals;
68
16.7k
    std::string Output =
69
16.7k
        fmt::format("{} failed: {}, Code: 0x{:03x}"sv, Code.getErrCodePhase(),
70
16.7k
                    WasmEdge::ErrCodeStr[Code.getEnum()], Code.getCode());
71
16.7k
    return formatter<std::string_view>::format(Output, Ctx);
72
16.7k
  }
73
};
74
75
template <>
76
struct fmt::formatter<WasmEdge::ErrCode::Value>
77
    : fmt::formatter<WasmEdge::ErrCode> {
78
  template <typename FmtCtx>
79
  auto format(const WasmEdge::ErrCode::Value &Value,
80
3.53k
              FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) {
81
3.53k
    return formatter<WasmEdge::ErrCode>::format(WasmEdge::ErrCode(Value), Ctx);
82
3.53k
  }
83
};