GenericError.cpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //===- Error.cpp - system_error extensions for PDB --------------*- 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. #include "llvm/DebugInfo/PDB/GenericError.h"
  9. #include "llvm/Support/ErrorHandling.h"
  10. #include "llvm/Support/ManagedStatic.h"
  11. using namespace llvm;
  12. using namespace llvm::pdb;
  13. namespace {
  14. // FIXME: This class is only here to support the transition to llvm::Error. It
  15. // will be removed once this transition is complete. Clients should prefer to
  16. // deal with the Error value directly, rather than converting to error_code.
  17. class PDBErrorCategory : public std::error_category {
  18. public:
  19. const char *name() const noexcept override { return "llvm.pdb"; }
  20. std::string message(int Condition) const override {
  21. switch (static_cast<pdb_error_code>(Condition)) {
  22. case pdb_error_code::unspecified:
  23. return "An unknown error has occurred.";
  24. case pdb_error_code::dia_sdk_not_present:
  25. return "LLVM was not compiled with support for DIA. This usually means "
  26. "that you are not using MSVC, or your Visual Studio "
  27. "installation is corrupt.";
  28. case pdb_error_code::dia_failed_loading:
  29. return "DIA is only supported when using MSVC.";
  30. case pdb_error_code::invalid_utf8_path:
  31. return "The PDB file path is an invalid UTF8 sequence.";
  32. case pdb_error_code::signature_out_of_date:
  33. return "The signature does not match; the file(s) might be out of date.";
  34. case pdb_error_code::no_matching_pch:
  35. return "No matching precompiled header could be located.";
  36. }
  37. llvm_unreachable("Unrecognized generic_error_code");
  38. }
  39. };
  40. } // namespace
  41. static llvm::ManagedStatic<PDBErrorCategory> PDBCategory;
  42. const std::error_category &llvm::pdb::PDBErrCategory() { return *PDBCategory; }
  43. char PDBError::ID;