2011-06-26 01:42:56 +08: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"
|
2014-09-20 06:09:18 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2011-06-26 01:42:56 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
|
|
|
|
|
|
|
namespace {
|
2016-05-25 04:13:46 +08:00
|
|
|
// FIXME: This class is only here to support the transition to llvm::Error. It
|
|
|
|
// will be removed once this transition is complete. Clients should prefer to
|
|
|
|
// deal with the Error value directly, rather than converting to error_code.
|
2014-06-12 09:45:43 +08:00
|
|
|
class _object_error_category : public std::error_category {
|
2011-06-26 01:42:56 +08:00
|
|
|
public:
|
2016-10-20 07:52:38 +08:00
|
|
|
const char* name() const noexcept override;
|
2014-03-15 12:05:59 +08:00
|
|
|
std::string message(int ev) const override;
|
2011-06-26 01:42:56 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-10-20 07:52:38 +08:00
|
|
|
const char *_object_error_category::name() const noexcept {
|
2011-06-26 01:42:56 +08:00
|
|
|
return "llvm.object";
|
|
|
|
}
|
|
|
|
|
2014-06-03 13:26:12 +08:00
|
|
|
std::string _object_error_category::message(int EV) const {
|
|
|
|
object_error E = static_cast<object_error>(EV);
|
2013-06-18 21:30:31 +08:00
|
|
|
switch (E) {
|
2013-06-18 23:03:28 +08:00
|
|
|
case object_error::arch_not_found:
|
|
|
|
return "No object file for requested architecture";
|
2011-06-26 01:42:56 +08: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-26 01:55:23 +08:00
|
|
|
case object_error::unexpected_eof:
|
|
|
|
return "The end of the file was unexpectedly encountered";
|
2015-06-29 22:39:25 +08:00
|
|
|
case object_error::string_table_non_null_end:
|
|
|
|
return "String table must end with a null terminator";
|
2015-07-01 20:56:27 +08:00
|
|
|
case object_error::invalid_section_index:
|
|
|
|
return "Invalid section index";
|
2014-09-19 05:28:49 +08:00
|
|
|
case object_error::bitcode_section_not_found:
|
|
|
|
return "Bitcode section not found in object file";
|
2016-11-03 16:40:55 +08:00
|
|
|
case object_error::invalid_symbol_index:
|
|
|
|
return "Invalid symbol index";
|
2011-06-26 01:42:56 +08:00
|
|
|
}
|
2013-06-18 21:30:31 +08:00
|
|
|
llvm_unreachable("An enumerator of object_error does not have a message "
|
|
|
|
"defined.");
|
2011-06-26 01:42:56 +08:00
|
|
|
}
|
|
|
|
|
2016-03-26 01:25:34 +08:00
|
|
|
char BinaryError::ID = 0;
|
|
|
|
char GenericBinaryError::ID = 0;
|
|
|
|
|
2016-05-07 04:16:28 +08:00
|
|
|
GenericBinaryError::GenericBinaryError(Twine Msg) : Msg(Msg.str()) {}
|
2016-03-26 01:25:34 +08:00
|
|
|
|
2016-05-07 04:16:28 +08:00
|
|
|
GenericBinaryError::GenericBinaryError(Twine Msg, object_error ECOverride)
|
|
|
|
: Msg(Msg.str()) {
|
2016-03-26 01:25:34 +08:00
|
|
|
setErrorCode(make_error_code(ECOverride));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericBinaryError::log(raw_ostream &OS) const {
|
2016-05-07 04:16:28 +08:00
|
|
|
OS << Msg;
|
2016-03-26 01:25:34 +08:00
|
|
|
}
|
|
|
|
|
2014-09-20 06:09:18 +08:00
|
|
|
static ManagedStatic<_object_error_category> error_category;
|
|
|
|
|
2014-06-12 09:45:43 +08:00
|
|
|
const std::error_category &object::object_category() {
|
2014-09-20 06:09:18 +08:00
|
|
|
return *error_category;
|
2011-06-26 01:42:56 +08:00
|
|
|
}
|
2016-05-18 05:38:53 +08:00
|
|
|
|
|
|
|
llvm::Error llvm::object::isNotObjectErrorInvalidFileType(llvm::Error Err) {
|
|
|
|
if (auto Err2 =
|
2016-11-11 12:28:40 +08:00
|
|
|
handleErrors(std::move(Err), [](std::unique_ptr<ECError> M) -> Error {
|
|
|
|
// Try to handle 'M'. If successful, return a success value from
|
|
|
|
// the handler.
|
|
|
|
if (M->convertToErrorCode() == object_error::invalid_file_type)
|
|
|
|
return Error::success();
|
2016-05-18 05:38:53 +08:00
|
|
|
|
2016-11-11 12:28:40 +08:00
|
|
|
// We failed to handle 'M' - return it from the handler.
|
|
|
|
// This value will be passed back from catchErrors and
|
|
|
|
// wind up in Err2, where it will be returned from this function.
|
|
|
|
return Error(std::move(M));
|
|
|
|
}))
|
2016-05-18 05:38:53 +08:00
|
|
|
return Err2;
|
|
|
|
return Err;
|
|
|
|
}
|