OSDN Git Service

Mark a few functions noexcept.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 10 Jun 2014 21:26:47 +0000 (21:26 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 10 Jun 2014 21:26:47 +0000 (21:26 +0000)
This reduces the difference between std::error_code and llvm::error_code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210591 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/system_error.h
lib/Bitcode/Reader/BitcodeReader.cpp
lib/Object/Error.cpp
lib/ProfileData/InstrProf.cpp
lib/Support/system_error.cpp
tools/llvm-readobj/Error.cpp
tools/obj2yaml/Error.cpp

index 104cbc4..724e3ce 100644 (file)
@@ -624,10 +624,12 @@ private:
   error_category& operator=(const error_category&) LLVM_DELETED_FUNCTION;
 
 public:
-  virtual const char* name() const = 0;
-  virtual error_condition default_error_condition(int _ev) const;
-  virtual bool equivalent(int _code, const error_condition& _condition) const;
-  virtual bool equivalent(const error_code& _code, int _condition) const;
+  virtual const char* name() const LLVM_NOEXCEPT = 0;
+  virtual error_condition default_error_condition(int _ev) const LLVM_NOEXCEPT;
+  virtual bool
+  equivalent(int _code, const error_condition &_condition) const LLVM_NOEXCEPT;
+  virtual bool equivalent(const error_code &_code,
+                          int _condition) const LLVM_NOEXCEPT;
   virtual std::string message(int _ev) const = 0;
 
   bool operator==(const error_category& _rhs) const {return this == &_rhs;}
index 9638117..849c548 100644 (file)
@@ -3301,7 +3301,7 @@ error_code BitcodeReader::InitLazyStream() {
 
 namespace {
 class BitcodeErrorCategoryType : public error_category {
-  const char *name() const override {
+  const char *name() const LLVM_NOEXCEPT override {
     return "llvm.bitcode";
   }
   std::string message(int IE) const override {
index f1d0f01..6bcc6f9 100644 (file)
@@ -20,9 +20,9 @@ using namespace object;
 namespace {
 class _object_error_category : public error_category {
 public:
-  const char* name() const override;
+  const char* name() const LLVM_NOEXCEPT override;
   std::string message(int ev) const override;
-  error_condition default_error_condition(int ev) const override;
+  error_condition default_error_condition(int ev) const LLVM_NOEXCEPT override;
 };
 }
 
index a658313..94a79e9 100644 (file)
@@ -19,7 +19,7 @@ using namespace llvm;
 
 namespace {
 class InstrProfErrorCategoryType : public error_category {
-  const char *name() const override { return "llvm.instrprof"; }
+  const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; }
   std::string message(int IE) const override {
     instrprof_error E = static_cast<instrprof_error>(IE);
     switch (E) {
@@ -52,7 +52,7 @@ class InstrProfErrorCategoryType : public error_category {
     }
     llvm_unreachable("A value of instrprof_error has no message.");
   }
-  error_condition default_error_condition(int EV) const override {
+  error_condition default_error_condition(int EV) const LLVM_NOEXCEPT override {
     if (static_cast<instrprof_error>(EV) == instrprof_error::success)
       return error_condition();
     return errc::invalid_argument;
index 299f54a..0ca183e 100644 (file)
@@ -48,7 +48,7 @@ _do_message::message(int ev) const {
 
 class _generic_error_category : public _do_message {
 public:
-  const char* name() const override;
+  const char* name() const LLVM_NOEXCEPT override;
   std::string message(int ev) const override;
 };
 
@@ -74,7 +74,7 @@ generic_category() {
 
 class _system_error_category : public _do_message {
 public:
-  const char* name() const override;
+  const char* name() const LLVM_NOEXCEPT override;
   std::string message(int ev) const override;
   error_condition default_error_condition(int ev) const override;
 };
index 75c392e..424dfbe 100644 (file)
@@ -19,9 +19,9 @@ using namespace llvm;
 namespace {
 class _readobj_error_category : public error_category {
 public:
-  const char* name() const override;
+  const char* name() const LLVM_NOEXCEPT override;
   std::string message(int ev) const override;
-  error_condition default_error_condition(int ev) const override;
+  error_condition default_error_condition(int ev) const LLVM_NOEXCEPT override;
 };
 } // namespace
 
index 0003b7b..7f25d74 100644 (file)
@@ -15,9 +15,9 @@ using namespace llvm;
 namespace {
 class _obj2yaml_error_category : public error_category {
 public:
-  const char *name() const override;
+  const char *name() const LLVM_NOEXCEPT override;
   std::string message(int ev) const override;
-  error_condition default_error_condition(int ev) const override;
+  error_condition default_error_condition(int ev) const LLVM_NOEXCEPT override;
 };
 } // namespace