/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 | 587M | (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 | 331M | static inline constexpr bool likely(bool V) noexcept { |
42 | 331M | return __builtin_expect(V, true); |
43 | 331M | } component.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 3.03M | static inline constexpr bool likely(bool V) noexcept { | 42 | 3.03M | return __builtin_expect(V, true); | 43 | 3.03M | } |
loader.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 79.4k | static inline constexpr bool likely(bool V) noexcept { | 42 | 79.4k | return __builtin_expect(V, true); | 43 | 79.4k | } |
component_section.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 9.99M | static inline constexpr bool likely(bool V) noexcept { | 42 | 9.99M | return __builtin_expect(V, true); | 43 | 9.99M | } |
component_instance.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 328k | static inline constexpr bool likely(bool V) noexcept { | 42 | 328k | return __builtin_expect(V, true); | 43 | 328k | } |
component_sort.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 59.8k | static inline constexpr bool likely(bool V) noexcept { | 42 | 59.8k | return __builtin_expect(V, true); | 43 | 59.8k | } |
component_alias.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 35.6k | static inline constexpr bool likely(bool V) noexcept { | 42 | 35.6k | return __builtin_expect(V, true); | 43 | 35.6k | } |
component_canonical.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 110k | static inline constexpr bool likely(bool V) noexcept { | 42 | 110k | return __builtin_expect(V, true); | 43 | 110k | } |
component_start.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 244k | static inline constexpr bool likely(bool V) noexcept { | 42 | 244k | return __builtin_expect(V, true); | 43 | 244k | } |
component_type.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 5.66M | static inline constexpr bool likely(bool V) noexcept { | 42 | 5.66M | return __builtin_expect(V, true); | 43 | 5.66M | } |
component_import.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 13.7k | static inline constexpr bool likely(bool V) noexcept { | 42 | 13.7k | return __builtin_expect(V, true); | 43 | 13.7k | } |
component_export.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 6.21k | static inline constexpr bool likely(bool V) noexcept { | 42 | 6.21k | return __builtin_expect(V, true); | 43 | 6.21k | } |
component_declarator.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 68.5k | static inline constexpr bool likely(bool V) noexcept { | 42 | 68.5k | return __builtin_expect(V, true); | 43 | 68.5k | } |
component_descriptor.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 32.9k | static inline constexpr bool likely(bool V) noexcept { | 42 | 32.9k | return __builtin_expect(V, true); | 43 | 32.9k | } |
component_valtype.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 309k | static inline constexpr bool likely(bool V) noexcept { | 42 | 309k | return __builtin_expect(V, true); | 43 | 309k | } |
module.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 92.7k | static inline constexpr bool likely(bool V) noexcept { | 42 | 92.7k | return __builtin_expect(V, true); | 43 | 92.7k | } |
section.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 6.19M | static inline constexpr bool likely(bool V) noexcept { | 42 | 6.19M | return __builtin_expect(V, true); | 43 | 6.19M | } |
description.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 129k | static inline constexpr bool likely(bool V) noexcept { | 42 | 129k | return __builtin_expect(V, true); | 43 | 129k | } |
segment.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 187k | static inline constexpr bool likely(bool V) noexcept { | 42 | 187k | return __builtin_expect(V, true); | 43 | 187k | } |
type.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 819k | static inline constexpr bool likely(bool V) noexcept { | 42 | 819k | return __builtin_expect(V, true); | 43 | 819k | } |
Unexecuted instantiation: expression.cpp:WasmEdge::likely(bool) instruction.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 92.6M | static inline constexpr bool likely(bool V) noexcept { | 42 | 92.6M | return __builtin_expect(V, true); | 43 | 92.6M | } |
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 | 62.4M | static inline constexpr bool likely(bool V) noexcept { | 42 | 62.4M | return __builtin_expect(V, true); | 43 | 62.4M | } |
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 | 132M | static inline constexpr bool likely(bool V) noexcept { | 42 | 132M | return __builtin_expect(V, true); | 43 | 132M | } |
component_validator.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 7.34M | static inline constexpr bool likely(bool V) noexcept { | 42 | 7.34M | return __builtin_expect(V, true); | 43 | 7.34M | } |
component_name.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 73 | static inline constexpr bool likely(bool V) noexcept { | 42 | 73 | return __builtin_expect(V, true); | 43 | 73 | } |
formchecker.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 6.64M | static inline constexpr bool likely(bool V) noexcept { | 42 | 6.64M | return __builtin_expect(V, true); | 43 | 6.64M | } |
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.3k | static inline constexpr bool likely(bool V) noexcept { | 42 | 23.3k | return __builtin_expect(V, true); | 43 | 23.3k | } |
Unexecuted instantiation: context.cpp:WasmEdge::likely(bool) function_compiler.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 1.59M | static inline constexpr bool likely(bool V) noexcept { | 42 | 1.59M | return __builtin_expect(V, true); | 43 | 1.59M | } |
Unexecuted instantiation: numericInstr.cpp:WasmEdge::likely(bool) Unexecuted instantiation: vectorInstr.cpp:WasmEdge::likely(bool) codegen.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 4.63k | static inline constexpr bool likely(bool V) noexcept { | 42 | 4.63k | return __builtin_expect(V, true); | 43 | 4.63k | } |
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 | 825k | static inline constexpr bool likely(bool V) noexcept { | 42 | 825k | return __builtin_expect(V, true); | 43 | 825k | } |
|
44 | 159M | static inline constexpr bool unlikely(bool V) noexcept { |
45 | 159M | return __builtin_expect(V, false); |
46 | 159M | } component.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 11.8k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 11.8k | return __builtin_expect(V, false); | 46 | 11.8k | } |
Unexecuted instantiation: loader.cpp:WasmEdge::unlikely(bool) component_section.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 1.72M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 1.72M | return __builtin_expect(V, false); | 46 | 1.72M | } |
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 | 6.58k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 6.58k | return __builtin_expect(V, false); | 46 | 6.58k | } |
Unexecuted instantiation: component_start.cpp:WasmEdge::unlikely(bool) component_type.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 1.50M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 1.50M | return __builtin_expect(V, false); | 46 | 1.50M | } |
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 | 2.81M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 2.81M | return __builtin_expect(V, false); | 46 | 2.81M | } |
description.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 865 | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 865 | return __builtin_expect(V, false); | 46 | 865 | } |
segment.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 15.0k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 15.0k | return __builtin_expect(V, false); | 46 | 15.0k | } |
type.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 918k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 918k | return __builtin_expect(V, false); | 46 | 918k | } |
Unexecuted instantiation: expression.cpp:WasmEdge::unlikely(bool) instruction.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 30.7M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 30.7M | return __builtin_expect(V, false); | 46 | 30.7M | } |
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 | 121M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 121M | return __builtin_expect(V, false); | 46 | 121M | } |
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.15k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 8.15k | return __builtin_expect(V, false); | 46 | 8.15k | } |
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.6k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 64.6k | return __builtin_expect(V, false); | 46 | 64.6k | } |
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.31k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 2.31k | return __builtin_expect(V, false); | 46 | 2.31k | } |
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 | 15.0k | constexpr auto Unexpect(const ErrCode &Val) { return Unexpected<ErrCode>(Val); } |
53 | 23.9k | template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) { |
54 | 23.9k | return Unexpected<ErrCode>(ErrCode(Args...)); |
55 | 23.9k | } auto WasmEdge::Unexpect<WasmEdge::ErrCode::Value>(WasmEdge::ErrCode::Value) Line | Count | Source | 53 | 23.9k | template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) { | 54 | 23.9k | return Unexpected<ErrCode>(ErrCode(Args...)); | 55 | 23.9k | } |
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 | 12.2k | FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) { |
67 | 12.2k | using namespace std::literals; |
68 | 12.2k | std::string Output = |
69 | 12.2k | fmt::format("{} failed: {}, Code: 0x{:03x}"sv, Code.getErrCodePhase(), |
70 | 12.2k | WasmEdge::ErrCodeStr[Code.getEnum()], Code.getCode()); |
71 | 12.2k | return formatter<std::string_view>::format(Output, Ctx); |
72 | 12.2k | } |
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 | 2.52k | FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) { |
81 | 2.52k | return formatter<WasmEdge::ErrCode>::format(WasmEdge::ErrCode(Value), Ctx); |
82 | 2.52k | } |
83 | | }; |