LLVM 19.0.0git
DIAError.h
Go to the documentation of this file.
1//===- DIAError.h - Error extensions for PDB DIA implementation -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_DEBUGINFO_PDB_DIA_DIAERROR_H
10#define LLVM_DEBUGINFO_PDB_DIA_DIAERROR_H
11
12#include "llvm/ADT/StringRef.h"
13#include "llvm/Support/Error.h"
14
15namespace llvm {
16namespace pdb {
17enum class dia_error_code {
18 unspecified = 1,
24};
25} // namespace pdb
26} // namespace llvm
27
28namespace std {
29template <>
30struct is_error_code_enum<llvm::pdb::dia_error_code> : std::true_type {};
31} // namespace std
32
33namespace llvm {
34namespace pdb {
35const std::error_category &DIAErrCategory();
36
37inline std::error_code make_error_code(dia_error_code E) {
38 return std::error_code(static_cast<int>(E), DIAErrCategory());
39}
40
41/// Base class for errors originating in DIA SDK, e.g. COM calls
42class DIAError : public ErrorInfo<DIAError, StringError> {
43public:
44 using ErrorInfo<DIAError, StringError>::ErrorInfo;
46 static char ID;
47};
48} // namespace pdb
49} // namespace llvm
50#endif
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Base class for user error types.
Definition: Error.h:352
This class wraps a string in an Error.
Definition: Error.h:1235
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
Base class for errors originating in DIA SDK, e.g. COM calls.
Definition: DIAError.h:42
static char ID
Definition: DIAError.h:46
DIAError(const Twine &S)
Definition: DIAError.h:45
std::error_code make_error_code(dia_error_code E)
Definition: DIAError.h:37
const std::error_category & DIAErrCategory()
Definition: DIAError.cpp:33
dia_error_code
Definition: DIAError.h:17
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858