/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.44G | (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 | 423M | static inline constexpr bool likely(bool V) noexcept { |
42 | 423M | return __builtin_expect(V, true); |
43 | 423M | } component.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 4.61M | static inline constexpr bool likely(bool V) noexcept { | 42 | 4.61M | return __builtin_expect(V, true); | 43 | 4.61M | } |
loader.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 89.5k | static inline constexpr bool likely(bool V) noexcept { | 42 | 89.5k | return __builtin_expect(V, true); | 43 | 89.5k | } |
component_section.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 15.0M | static inline constexpr bool likely(bool V) noexcept { | 42 | 15.0M | return __builtin_expect(V, true); | 43 | 15.0M | } |
component_instance.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 521k | static inline constexpr bool likely(bool V) noexcept { | 42 | 521k | return __builtin_expect(V, true); | 43 | 521k | } |
component_sort.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 67.3k | static inline constexpr bool likely(bool V) noexcept { | 42 | 67.3k | return __builtin_expect(V, true); | 43 | 67.3k | } |
component_alias.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 41.7k | static inline constexpr bool likely(bool V) noexcept { | 42 | 41.7k | return __builtin_expect(V, true); | 43 | 41.7k | } |
component_canonical.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 117k | static inline constexpr bool likely(bool V) noexcept { | 42 | 117k | return __builtin_expect(V, true); | 43 | 117k | } |
component_start.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 274k | static inline constexpr bool likely(bool V) noexcept { | 42 | 274k | return __builtin_expect(V, true); | 43 | 274k | } |
component_type.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 8.40M | static inline constexpr bool likely(bool V) noexcept { | 42 | 8.40M | return __builtin_expect(V, true); | 43 | 8.40M | } |
component_import.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 17.8k | static inline constexpr bool likely(bool V) noexcept { | 42 | 17.8k | return __builtin_expect(V, true); | 43 | 17.8k | } |
component_export.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 8.76k | static inline constexpr bool likely(bool V) noexcept { | 42 | 8.76k | return __builtin_expect(V, true); | 43 | 8.76k | } |
component_declarator.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 62.1k | static inline constexpr bool likely(bool V) noexcept { | 42 | 62.1k | return __builtin_expect(V, true); | 43 | 62.1k | } |
component_descriptor.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 32.6k | static inline constexpr bool likely(bool V) noexcept { | 42 | 32.6k | return __builtin_expect(V, true); | 43 | 32.6k | } |
component_valtype.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 317k | static inline constexpr bool likely(bool V) noexcept { | 42 | 317k | return __builtin_expect(V, true); | 43 | 317k | } |
module.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 94.3k | static inline constexpr bool likely(bool V) noexcept { | 42 | 94.3k | return __builtin_expect(V, true); | 43 | 94.3k | } |
section.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 9.50M | static inline constexpr bool likely(bool V) noexcept { | 42 | 9.50M | return __builtin_expect(V, true); | 43 | 9.50M | } |
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 | 196k | static inline constexpr bool likely(bool V) noexcept { | 42 | 196k | return __builtin_expect(V, true); | 43 | 196k | } |
type.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 1.03M | static inline constexpr bool likely(bool V) noexcept { | 42 | 1.03M | return __builtin_expect(V, true); | 43 | 1.03M | } |
Unexecuted instantiation: expression.cpp:WasmEdge::likely(bool) instruction.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 139M | static inline constexpr bool likely(bool V) noexcept { | 42 | 139M | return __builtin_expect(V, true); | 43 | 139M | } |
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 | 91.1M | static inline constexpr bool likely(bool V) noexcept { | 42 | 91.1M | return __builtin_expect(V, true); | 43 | 91.1M | } |
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 | 10.7M | static inline constexpr bool likely(bool V) noexcept { | 42 | 10.7M | return __builtin_expect(V, true); | 43 | 10.7M | } |
component_name.cpp:WasmEdge::likely(bool) Line | Count | Source | 41 | 87 | static inline constexpr bool likely(bool V) noexcept { | 42 | 87 | return __builtin_expect(V, true); | 43 | 87 | } |
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 | 236M | static inline constexpr bool unlikely(bool V) noexcept { |
45 | 236M | return __builtin_expect(V, false); |
46 | 236M | } component.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 15.4k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 15.4k | return __builtin_expect(V, false); | 46 | 15.4k | } |
Unexecuted instantiation: loader.cpp:WasmEdge::unlikely(bool) component_section.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 2.59M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 2.59M | return __builtin_expect(V, false); | 46 | 2.59M | } |
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 | 8.19k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 8.19k | return __builtin_expect(V, false); | 46 | 8.19k | } |
Unexecuted instantiation: component_start.cpp:WasmEdge::unlikely(bool) component_type.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 2.23M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 2.23M | return __builtin_expect(V, false); | 46 | 2.23M | } |
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 | 4.24M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 4.24M | return __builtin_expect(V, false); | 46 | 4.24M | } |
description.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 839 | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 839 | return __builtin_expect(V, false); | 46 | 839 | } |
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 | 945k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 945k | return __builtin_expect(V, false); | 46 | 945k | } |
Unexecuted instantiation: expression.cpp:WasmEdge::unlikely(bool) instruction.cpp:WasmEdge::unlikely(bool) Line | Count | Source | 44 | 46.5M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 46.5M | return __builtin_expect(V, false); | 46 | 46.5M | } |
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 | 179M | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 179M | return __builtin_expect(V, false); | 46 | 179M | } |
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.16k | static inline constexpr bool unlikely(bool V) noexcept { | 45 | 8.16k | return __builtin_expect(V, false); | 46 | 8.16k | } |
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 | 17.4k | constexpr auto Unexpect(const ErrCode &Val) { return Unexpected<ErrCode>(Val); } |
53 | 27.1k | template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) { |
54 | 27.1k | return Unexpected<ErrCode>(ErrCode(Args...)); |
55 | 27.1k | } auto WasmEdge::Unexpect<WasmEdge::ErrCode::Value>(WasmEdge::ErrCode::Value) Line | Count | Source | 53 | 27.1k | template <typename... ArgsT> constexpr auto Unexpect(ArgsT... Args) { | 54 | 27.1k | return Unexpected<ErrCode>(ErrCode(Args...)); | 55 | 27.1k | } |
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 | 15.1k | FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) { |
67 | 15.1k | using namespace std::literals; |
68 | 15.1k | std::string Output = |
69 | 15.1k | fmt::format("{} failed: {}, Code: 0x{:03x}"sv, Code.getErrCodePhase(), |
70 | 15.1k | WasmEdge::ErrCodeStr[Code.getEnum()], Code.getCode()); |
71 | 15.1k | return formatter<std::string_view>::format(Output, Ctx); |
72 | 15.1k | } |
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.10k | FmtCtx &Ctx) WASMEDGE_FMT_CONST noexcept -> decltype(Ctx.out()) { |
81 | 3.10k | return formatter<WasmEdge::ErrCode>::format(WasmEdge::ErrCode(Value), Ctx); |
82 | 3.10k | } |
83 | | }; |