2011-06-25 19:42:56 +02:00
|
|
|
//===- Error.cpp - system_error extensions for Object -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This defines a new error_category for the Object library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Object/Error.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
|
|
|
|
|
|
|
namespace {
|
2014-06-12 03:45:43 +02:00
|
|
|
class _object_error_category : public std::error_category {
|
2011-06-25 19:42:56 +02:00
|
|
|
public:
|
2014-06-10 23:26:47 +02:00
|
|
|
const char* name() const LLVM_NOEXCEPT override;
|
2014-03-15 05:05:59 +01:00
|
|
|
std::string message(int ev) const override;
|
2011-06-25 19:42:56 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-08-18 09:48:18 +02:00
|
|
|
const char *_object_error_category::name() const LLVM_NOEXCEPT {
|
2011-06-25 19:42:56 +02:00
|
|
|
return "llvm.object";
|
|
|
|
}
|
|
|
|
|
2014-06-03 07:26:12 +02:00
|
|
|
std::string _object_error_category::message(int EV) const {
|
|
|
|
object_error E = static_cast<object_error>(EV);
|
2013-06-18 15:30:31 +02:00
|
|
|
switch (E) {
|
2011-06-25 19:42:56 +02:00
|
|
|
case object_error::success: return "Success";
|
2013-06-18 17:03:28 +02:00
|
|
|
case object_error::arch_not_found:
|
|
|
|
return "No object file for requested architecture";
|
2011-06-25 19:42:56 +02:00
|
|
|
case object_error::invalid_file_type:
|
|
|
|
return "The file was not recognized as a valid object file";
|
|
|
|
case object_error::parse_failed:
|
|
|
|
return "Invalid data was encountered while parsing the file";
|
2011-06-25 19:55:23 +02:00
|
|
|
case object_error::unexpected_eof:
|
|
|
|
return "The end of the file was unexpectedly encountered";
|
2011-06-25 19:42:56 +02:00
|
|
|
}
|
2013-06-18 15:30:31 +02:00
|
|
|
llvm_unreachable("An enumerator of object_error does not have a message "
|
|
|
|
"defined.");
|
2011-06-25 19:42:56 +02:00
|
|
|
}
|
|
|
|
|
2014-06-12 03:45:43 +02:00
|
|
|
const std::error_category &object::object_category() {
|
2011-06-25 19:42:56 +02:00
|
|
|
static _object_error_category o;
|
|
|
|
return o;
|
|
|
|
}
|