Remove LLVM_NOEXCEPT and replace it with noexcept

Now that we have dropped MSVC 2013, all supported compilers support
noexcept and we can drop this portability macro.

llvm-svn: 284672
This commit is contained in:
Reid Kleckner 2016-10-19 23:52:38 +00:00
parent 86c0541716
commit 2a26070bb8
19 changed files with 26 additions and 33 deletions

View File

@ -578,7 +578,7 @@ namespace llvm {
/// allocator supports it). /// allocator supports it).
/// \return The allocated memory. Could be NULL. /// \return The allocated memory. Could be NULL.
inline void *operator new(size_t Bytes, llvm::MCContext &C, inline void *operator new(size_t Bytes, llvm::MCContext &C,
size_t Alignment = 8) LLVM_NOEXCEPT { size_t Alignment = 8) noexcept {
return C.allocate(Bytes, Alignment); return C.allocate(Bytes, Alignment);
} }
/// \brief Placement delete companion to the new above. /// \brief Placement delete companion to the new above.
@ -587,8 +587,7 @@ inline void *operator new(size_t Bytes, llvm::MCContext &C,
/// invoking it directly; see the new operator for more details. This operator /// invoking it directly; see the new operator for more details. This operator
/// is called implicitly by the compiler if a placement new expression using /// is called implicitly by the compiler if a placement new expression using
/// the MCContext throws in the object constructor. /// the MCContext throws in the object constructor.
inline void operator delete(void *Ptr, llvm::MCContext &C, inline void operator delete(void *Ptr, llvm::MCContext &C, size_t) noexcept {
size_t) LLVM_NOEXCEPT {
C.deallocate(Ptr); C.deallocate(Ptr);
} }
@ -612,7 +611,7 @@ inline void operator delete(void *Ptr, llvm::MCContext &C,
/// allocator supports it). /// allocator supports it).
/// \return The allocated memory. Could be NULL. /// \return The allocated memory. Could be NULL.
inline void *operator new[](size_t Bytes, llvm::MCContext &C, inline void *operator new[](size_t Bytes, llvm::MCContext &C,
size_t Alignment = 8) LLVM_NOEXCEPT { size_t Alignment = 8) noexcept {
return C.allocate(Bytes, Alignment); return C.allocate(Bytes, Alignment);
} }
@ -622,7 +621,7 @@ inline void *operator new[](size_t Bytes, llvm::MCContext &C,
/// invoking it directly; see the new[] operator for more details. This operator /// invoking it directly; see the new[] operator for more details. This operator
/// is called implicitly by the compiler if a placement new[] expression using /// is called implicitly by the compiler if a placement new[] expression using
/// the MCContext throws in the object constructor. /// the MCContext throws in the object constructor.
inline void operator delete[](void *Ptr, llvm::MCContext &C) LLVM_NOEXCEPT { inline void operator delete[](void *Ptr, llvm::MCContext &C) noexcept {
C.deallocate(Ptr); C.deallocate(Ptr);
} }

View File

@ -73,12 +73,6 @@
#define LLVM_MSC_PREREQ(version) 0 #define LLVM_MSC_PREREQ(version) 0
#endif #endif
#if !defined(_MSC_VER) || defined(__clang__) || LLVM_MSC_PREREQ(1900)
#define LLVM_NOEXCEPT noexcept
#else
#define LLVM_NOEXCEPT throw()
#endif
/// \brief Does the compiler support ref-qualifiers for *this? /// \brief Does the compiler support ref-qualifiers for *this?
/// ///
/// Sadly, this is separate from just rvalue reference support because GCC /// Sadly, this is separate from just rvalue reference support because GCC

View File

@ -144,12 +144,12 @@ public:
unsigned int getType() const { return TypeID; } unsigned int getType() const { return TypeID; }
void *operator new(size_t Size, BumpPtrAllocator &Alloc, void *operator new(size_t Size, BumpPtrAllocator &Alloc,
size_t Alignment = 16) LLVM_NOEXCEPT { size_t Alignment = 16) noexcept {
return Alloc.Allocate(Size, Alignment); return Alloc.Allocate(Size, Alignment);
} }
void operator delete(void *Ptr, BumpPtrAllocator &Alloc, void operator delete(void *Ptr, BumpPtrAllocator &Alloc,
size_t Size) LLVM_NOEXCEPT { size_t Size) noexcept {
Alloc.Deallocate(Ptr, Size); Alloc.Deallocate(Ptr, Size);
} }
@ -157,7 +157,7 @@ protected:
std::unique_ptr<Document> &Doc; std::unique_ptr<Document> &Doc;
SMRange SourceRange; SMRange SourceRange;
void operator delete(void *) LLVM_NOEXCEPT = delete; void operator delete(void *) noexcept = delete;
~Node() = default; ~Node() = default;

View File

@ -6581,7 +6581,7 @@ namespace {
// will be removed once this transition is complete. Clients should prefer to // will be removed once this transition is complete. Clients should prefer to
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class BitcodeErrorCategoryType : public std::error_category { class BitcodeErrorCategoryType : public std::error_category {
const char *name() const LLVM_NOEXCEPT override { const char *name() const noexcept override {
return "llvm.bitcode"; return "llvm.bitcode";
} }
std::string message(int IE) const override { std::string message(int IE) const override {

View File

@ -20,7 +20,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class CodeViewErrorCategory : public std::error_category { class CodeViewErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.codeview"; } const char *name() const noexcept override { return "llvm.codeview"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<cv_error_code>(Condition)) { switch (static_cast<cv_error_code>(Condition)) {

View File

@ -20,7 +20,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class MSFErrorCategory : public std::error_category { class MSFErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.msf"; } const char *name() const noexcept override { return "llvm.msf"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<msf_error_code>(Condition)) { switch (static_cast<msf_error_code>(Condition)) {

View File

@ -10,7 +10,7 @@ using namespace llvm::pdb;
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class DIAErrorCategory : public std::error_category { class DIAErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.pdb.dia"; } const char *name() const noexcept override { return "llvm.pdb.dia"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<dia_error_code>(Condition)) { switch (static_cast<dia_error_code>(Condition)) {

View File

@ -20,7 +20,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class GenericErrorCategory : public std::error_category { class GenericErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.pdb"; } const char *name() const noexcept override { return "llvm.pdb"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<generic_error_code>(Condition)) { switch (static_cast<generic_error_code>(Condition)) {

View File

@ -11,7 +11,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class RawErrorCategory : public std::error_category { class RawErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.pdb.raw"; } const char *name() const noexcept override { return "llvm.pdb.raw"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<raw_error_code>(Condition)) { switch (static_cast<raw_error_code>(Condition)) {

View File

@ -25,7 +25,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class OrcErrorCategory : public std::error_category { class OrcErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "orc"; } const char *name() const noexcept override { return "orc"; }
std::string message(int condition) const override { std::string message(int condition) const override {
switch (static_cast<OrcErrorCode>(condition)) { switch (static_cast<OrcErrorCode>(condition)) {

View File

@ -39,7 +39,7 @@ enum RuntimeDyldErrorCode {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class RuntimeDyldErrorCategory : public std::error_category { class RuntimeDyldErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "runtimedyld"; } const char *name() const noexcept override { return "runtimedyld"; }
std::string message(int Condition) const override { std::string message(int Condition) const override {
switch (static_cast<RuntimeDyldErrorCode>(Condition)) { switch (static_cast<RuntimeDyldErrorCode>(Condition)) {

View File

@ -24,12 +24,12 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class _object_error_category : public std::error_category { class _object_error_category : public std::error_category {
public: public:
const char* name() const LLVM_NOEXCEPT override; const char* name() const noexcept override;
std::string message(int ev) const override; std::string message(int ev) const override;
}; };
} }
const char *_object_error_category::name() const LLVM_NOEXCEPT { const char *_object_error_category::name() const noexcept {
return "llvm.object"; return "llvm.object";
} }

View File

@ -589,7 +589,7 @@ std::string getCoverageMapErrString(coveragemap_error Err) {
// will be removed once this transition is complete. Clients should prefer to // will be removed once this transition is complete. Clients should prefer to
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class CoverageMappingErrorCategoryType : public std::error_category { class CoverageMappingErrorCategoryType : public std::error_category {
const char *name() const LLVM_NOEXCEPT override { return "llvm.coveragemap"; } const char *name() const noexcept override { return "llvm.coveragemap"; }
std::string message(int IE) const override { std::string message(int IE) const override {
return getCoverageMapErrString(static_cast<coveragemap_error>(IE)); return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
} }

View File

@ -80,7 +80,7 @@ std::string getInstrProfErrString(instrprof_error Err) {
// will be removed once this transition is complete. Clients should prefer to // will be removed once this transition is complete. Clients should prefer to
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class InstrProfErrorCategoryType : public std::error_category { class InstrProfErrorCategoryType : public std::error_category {
const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; } const char *name() const noexcept override { return "llvm.instrprof"; }
std::string message(int IE) const override { std::string message(int IE) const override {
return getInstrProfErrString(static_cast<instrprof_error>(IE)); return getInstrProfErrString(static_cast<instrprof_error>(IE));
} }

View File

@ -24,7 +24,7 @@ namespace {
// will be removed once this transition is complete. Clients should prefer to // will be removed once this transition is complete. Clients should prefer to
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class SampleProfErrorCategoryType : public std::error_category { class SampleProfErrorCategoryType : public std::error_category {
const char *name() const LLVM_NOEXCEPT override { return "llvm.sampleprof"; } const char *name() const noexcept override { return "llvm.sampleprof"; }
std::string message(int IE) const override { std::string message(int IE) const override {
sampleprof_error E = static_cast<sampleprof_error>(IE); sampleprof_error E = static_cast<sampleprof_error>(IE);
switch (E) { switch (E) {

View File

@ -28,7 +28,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class ErrorErrorCategory : public std::error_category { class ErrorErrorCategory : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "Error"; } const char *name() const noexcept override { return "Error"; }
std::string message(int condition) const override { std::string message(int condition) const override {
switch (static_cast<ErrorErrorCode>(condition)) { switch (static_cast<ErrorErrorCode>(condition)) {

View File

@ -22,7 +22,7 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class cxxdump_error_category : public std::error_category { class cxxdump_error_category : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override { return "llvm.cxxdump"; } const char *name() const noexcept override { return "llvm.cxxdump"; }
std::string message(int ev) const override { std::string message(int ev) const override {
switch (static_cast<cxxdump_error>(ev)) { switch (static_cast<cxxdump_error>(ev)) {
case cxxdump_error::success: case cxxdump_error::success:

View File

@ -22,12 +22,12 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class _readobj_error_category : public std::error_category { class _readobj_error_category : public std::error_category {
public: public:
const char* name() const LLVM_NOEXCEPT override; const char* name() const noexcept override;
std::string message(int ev) const override; std::string message(int ev) const override;
}; };
} // namespace } // namespace
const char *_readobj_error_category::name() const LLVM_NOEXCEPT { const char *_readobj_error_category::name() const noexcept {
return "llvm.readobj"; return "llvm.readobj";
} }

View File

@ -18,12 +18,12 @@ namespace {
// deal with the Error value directly, rather than converting to error_code. // deal with the Error value directly, rather than converting to error_code.
class _obj2yaml_error_category : public std::error_category { class _obj2yaml_error_category : public std::error_category {
public: public:
const char *name() const LLVM_NOEXCEPT override; const char *name() const noexcept override;
std::string message(int ev) const override; std::string message(int ev) const override;
}; };
} // namespace } // namespace
const char *_obj2yaml_error_category::name() const LLVM_NOEXCEPT { const char *_obj2yaml_error_category::name() const noexcept {
return "obj2yaml"; return "obj2yaml";
} }