LLVM 19.0.0git
DIAError.cpp
Go to the documentation of this file.
3
4using namespace llvm;
5using namespace llvm::pdb;
6
7// FIXME: This class is only here to support the transition to llvm::Error. It
8// will be removed once this transition is complete. Clients should prefer to
9// deal with the Error value directly, rather than converting to error_code.
10class DIAErrorCategory : public std::error_category {
11public:
12 const char *name() const noexcept override { return "llvm.pdb.dia"; }
13 std::string message(int Condition) const override {
14 switch (static_cast<dia_error_code>(Condition)) {
15 case dia_error_code::could_not_create_impl:
16 return "Failed to connect to DIA at runtime. Verify that Visual Studio "
17 "is properly installed, or that msdiaXX.dll is in your PATH.";
18 case dia_error_code::invalid_file_format:
19 return "Unable to load PDB. The file has an unrecognized format.";
20 case dia_error_code::invalid_parameter:
21 return "The parameter is incorrect.";
22 case dia_error_code::already_loaded:
23 return "Unable to load the PDB or EXE, because it is already loaded.";
24 case dia_error_code::debug_info_mismatch:
25 return "The PDB file and the EXE file do not match.";
26 case dia_error_code::unspecified:
27 return "An unknown error has occurred.";
28 }
29 llvm_unreachable("Unrecognized DIAErrorCode");
30 }
31};
32
33const std::error_category &llvm::pdb::DIAErrCategory() {
34 static DIAErrorCategory DIACategory;
35 return DIACategory;
36}
37
38char DIAError::ID;
aarch64 promote const
std::string message(int Condition) const override
Definition: DIAError.cpp:13
const char * name() const noexcept override
Definition: DIAError.cpp:12
static char ID
Definition: DIAError.h:46
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
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