mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators that aren't implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164006 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbb13471ed
commit
f630e49efc
@ -15,12 +15,13 @@
|
||||
#ifndef LLVM_ADT_SMALLPTRSET_H
|
||||
#define LLVM_ADT_SMALLPTRSET_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/PointerLikeTypeTraits.h"
|
||||
#include <cassert>
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
#include <iterator>
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/PointerLikeTypeTraits.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
@ -132,7 +133,7 @@ private:
|
||||
/// Grow - Allocate a larger backing store for the buckets and move it over.
|
||||
void Grow(unsigned NewSize);
|
||||
|
||||
void operator=(const SmallPtrSetImpl &RHS); // DO NOT IMPLEMENT.
|
||||
void operator=(const SmallPtrSetImpl &RHS) LLVM_DELETED_FUNCTION;
|
||||
protected:
|
||||
/// swap - Swaps the elements of two sets.
|
||||
/// Note: This method assumes that both sets have the same small size.
|
||||
|
@ -94,8 +94,8 @@ public:
|
||||
/// FunctionType - Class to represent function types
|
||||
///
|
||||
class FunctionType : public Type {
|
||||
FunctionType(const FunctionType &); // Do not implement
|
||||
const FunctionType &operator=(const FunctionType &); // Do not implement
|
||||
FunctionType(const FunctionType &) LLVM_DELETED_FUNCTION;
|
||||
const FunctionType &operator=(const FunctionType &) LLVM_DELETED_FUNCTION;
|
||||
FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
|
||||
|
||||
public:
|
||||
@ -187,8 +187,8 @@ public:
|
||||
/// generator for a target expects).
|
||||
///
|
||||
class StructType : public CompositeType {
|
||||
StructType(const StructType &); // Do not implement
|
||||
const StructType &operator=(const StructType &); // Do not implement
|
||||
StructType(const StructType &) LLVM_DELETED_FUNCTION;
|
||||
const StructType &operator=(const StructType &) LLVM_DELETED_FUNCTION;
|
||||
StructType(LLVMContext &C)
|
||||
: CompositeType(C, StructTyID), SymbolTableEntry(0) {}
|
||||
enum {
|
||||
@ -308,8 +308,8 @@ public:
|
||||
///
|
||||
class SequentialType : public CompositeType {
|
||||
Type *ContainedType; ///< Storage for the single contained type.
|
||||
SequentialType(const SequentialType &); // Do not implement!
|
||||
const SequentialType &operator=(const SequentialType &); // Do not implement!
|
||||
SequentialType(const SequentialType &) LLVM_DELETED_FUNCTION;
|
||||
const SequentialType &operator=(const SequentialType &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
protected:
|
||||
SequentialType(TypeID TID, Type *ElType)
|
||||
@ -336,8 +336,8 @@ public:
|
||||
class ArrayType : public SequentialType {
|
||||
uint64_t NumElements;
|
||||
|
||||
ArrayType(const ArrayType &); // Do not implement
|
||||
const ArrayType &operator=(const ArrayType &); // Do not implement
|
||||
ArrayType(const ArrayType &) LLVM_DELETED_FUNCTION;
|
||||
const ArrayType &operator=(const ArrayType &) LLVM_DELETED_FUNCTION;
|
||||
ArrayType(Type *ElType, uint64_t NumEl);
|
||||
public:
|
||||
/// ArrayType::get - This static method is the primary way to construct an
|
||||
@ -363,8 +363,8 @@ public:
|
||||
class VectorType : public SequentialType {
|
||||
unsigned NumElements;
|
||||
|
||||
VectorType(const VectorType &); // Do not implement
|
||||
const VectorType &operator=(const VectorType &); // Do not implement
|
||||
VectorType(const VectorType &) LLVM_DELETED_FUNCTION;
|
||||
const VectorType &operator=(const VectorType &) LLVM_DELETED_FUNCTION;
|
||||
VectorType(Type *ElType, unsigned NumEl);
|
||||
public:
|
||||
/// VectorType::get - This static method is the primary way to construct an
|
||||
@ -429,8 +429,8 @@ public:
|
||||
/// PointerType - Class to represent pointers.
|
||||
///
|
||||
class PointerType : public SequentialType {
|
||||
PointerType(const PointerType &); // Do not implement
|
||||
const PointerType &operator=(const PointerType &); // Do not implement
|
||||
PointerType(const PointerType &) LLVM_DELETED_FUNCTION;
|
||||
const PointerType &operator=(const PointerType &) LLVM_DELETED_FUNCTION;
|
||||
explicit PointerType(Type *ElType, unsigned AddrSpace);
|
||||
public:
|
||||
/// PointerType::get - This constructs a pointer to an object of the specified
|
||||
|
@ -28,8 +28,8 @@ template<typename ValueSubClass, typename ItemParentClass>
|
||||
class SymbolTableListTraits;
|
||||
|
||||
class Instruction : public User, public ilist_node<Instruction> {
|
||||
void operator=(const Instruction &); // Do not implement
|
||||
Instruction(const Instruction &); // Do not implement
|
||||
void operator=(const Instruction &) LLVM_DELETED_FUNCTION;
|
||||
Instruction(const Instruction &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
BasicBlock *Parent;
|
||||
DebugLoc DbgLoc; // 'dbg' Metadata cache.
|
||||
|
@ -88,8 +88,8 @@ public:
|
||||
/// allocating memory, and never deletes it until the entire block is dead. This
|
||||
/// makes allocation speedy, but must only be used when the trade-off is ok.
|
||||
class BumpPtrAllocator {
|
||||
BumpPtrAllocator(const BumpPtrAllocator &); // do not implement
|
||||
void operator=(const BumpPtrAllocator &); // do not implement
|
||||
BumpPtrAllocator(const BumpPtrAllocator &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const BumpPtrAllocator &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
/// SlabSize - Allocate data into slabs of this size unless we get an
|
||||
/// allocation above SizeThreshold.
|
||||
|
@ -47,8 +47,8 @@ private:
|
||||
Optional<std::pair<std::string, int> > Owner;
|
||||
Optional<error_code> Error;
|
||||
|
||||
LockFileManager(const LockFileManager &);
|
||||
LockFileManager &operator=(const LockFileManager &);
|
||||
LockFileManager(const LockFileManager &) LLVM_DELETED_FUNCTION;
|
||||
LockFileManager &operator=(const LockFileManager &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
static Optional<std::pair<std::string, int> >
|
||||
readLockFile(StringRef LockFileName);
|
||||
|
@ -15,6 +15,7 @@
|
||||
#define LLVM_SUPPORT_MEMORYBUFFER_H
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
|
||||
namespace llvm {
|
||||
@ -36,8 +37,8 @@ class MemoryBuffer {
|
||||
const char *BufferStart; // Start of the buffer.
|
||||
const char *BufferEnd; // End of the buffer.
|
||||
|
||||
MemoryBuffer(const MemoryBuffer &); // DO NOT IMPLEMENT
|
||||
MemoryBuffer &operator=(const MemoryBuffer &); // DO NOT IMPLEMENT
|
||||
MemoryBuffer(const MemoryBuffer &) LLVM_DELETED_FUNCTION;
|
||||
MemoryBuffer &operator=(const MemoryBuffer &) LLVM_DELETED_FUNCTION;
|
||||
protected:
|
||||
MemoryBuffer() {}
|
||||
void init(const char *BufStart, const char *BufEnd,
|
||||
|
@ -14,6 +14,7 @@
|
||||
#ifndef LLVM_SYSTEM_MUTEX_H
|
||||
#define LLVM_SYSTEM_MUTEX_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Threading.h"
|
||||
#include <cassert>
|
||||
|
||||
@ -75,8 +76,8 @@ namespace llvm
|
||||
/// @name Do Not Implement
|
||||
/// @{
|
||||
private:
|
||||
MutexImpl(const MutexImpl & original);
|
||||
void operator=(const MutexImpl &);
|
||||
MutexImpl(const MutexImpl &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MutexImpl &) LLVM_DELETED_FUNCTION;
|
||||
/// @}
|
||||
};
|
||||
|
||||
|
@ -16,6 +16,8 @@
|
||||
#ifndef LLVM_SUPPORT_PRETTYSTACKTRACE_H
|
||||
#define LLVM_SUPPORT_PRETTYSTACKTRACE_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
|
||||
namespace llvm {
|
||||
class raw_ostream;
|
||||
|
||||
@ -32,8 +34,8 @@ namespace llvm {
|
||||
/// virtual stack trace. This gets dumped out if the program crashes.
|
||||
class PrettyStackTraceEntry {
|
||||
const PrettyStackTraceEntry *NextEntry;
|
||||
PrettyStackTraceEntry(const PrettyStackTraceEntry &); // DO NOT IMPLEMENT
|
||||
void operator=(const PrettyStackTraceEntry&); // DO NOT IMPLEMENT
|
||||
PrettyStackTraceEntry(const PrettyStackTraceEntry &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const PrettyStackTraceEntry&) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
PrettyStackTraceEntry();
|
||||
virtual ~PrettyStackTraceEntry();
|
||||
|
@ -34,8 +34,8 @@ namespace sys {
|
||||
void *Data_;
|
||||
|
||||
// Noncopyable.
|
||||
Program(const Program& other);
|
||||
Program& operator=(const Program& other);
|
||||
Program(const Program& other) LLVM_DELETED_FUNCTION;
|
||||
Program& operator=(const Program& other) LLVM_DELETED_FUNCTION;
|
||||
|
||||
/// @name Methods
|
||||
/// @{
|
||||
|
@ -14,6 +14,7 @@
|
||||
#ifndef LLVM_SYSTEM_RWMUTEX_H
|
||||
#define LLVM_SYSTEM_RWMUTEX_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Threading.h"
|
||||
#include <cassert>
|
||||
|
||||
@ -75,8 +76,8 @@ namespace llvm
|
||||
/// @name Do Not Implement
|
||||
/// @{
|
||||
private:
|
||||
RWMutexImpl(const RWMutexImpl & original);
|
||||
void operator=(const RWMutexImpl &);
|
||||
RWMutexImpl(const RWMutexImpl & original) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const RWMutexImpl &) LLVM_DELETED_FUNCTION;
|
||||
/// @}
|
||||
};
|
||||
|
||||
|
@ -64,9 +64,9 @@ private:
|
||||
|
||||
DiagHandlerTy DiagHandler;
|
||||
void *DiagContext;
|
||||
|
||||
SourceMgr(const SourceMgr&); // DO NOT IMPLEMENT
|
||||
void operator=(const SourceMgr&); // DO NOT IMPLEMENT
|
||||
|
||||
SourceMgr(const SourceMgr&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const SourceMgr&) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
SourceMgr() : LineNoCache(0), DiagHandler(0), DiagContext(0) {}
|
||||
~SourceMgr();
|
||||
|
@ -12,6 +12,7 @@
|
||||
#define STREAMABLEMEMORYOBJECT_H_
|
||||
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/MemoryObject.h"
|
||||
#include "llvm/Support/DataStream.h"
|
||||
#include <vector>
|
||||
@ -170,8 +171,8 @@ private:
|
||||
return true;
|
||||
}
|
||||
|
||||
StreamingMemoryObject(const StreamingMemoryObject&); // DO NOT IMPLEMENT
|
||||
void operator=(const StreamingMemoryObject&); // DO NOT IMPLEMENT
|
||||
StreamingMemoryObject(const StreamingMemoryObject&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const StreamingMemoryObject&) LLVM_DELETED_FUNCTION;
|
||||
};
|
||||
|
||||
StreamableMemoryObject *getNonStreamedMemoryObject(
|
||||
|
@ -15,6 +15,7 @@
|
||||
#ifndef LLVM_SUPPORT_TIMER_H
|
||||
#define LLVM_SUPPORT_TIMER_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include <cassert>
|
||||
@ -130,7 +131,7 @@ private:
|
||||
///
|
||||
class TimeRegion {
|
||||
Timer *T;
|
||||
TimeRegion(const TimeRegion &); // DO NOT IMPLEMENT
|
||||
TimeRegion(const TimeRegion &) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
explicit TimeRegion(Timer &t) : T(&t) {
|
||||
T->startTimer();
|
||||
@ -168,8 +169,8 @@ class TimerGroup {
|
||||
std::vector<std::pair<TimeRecord, std::string> > TimersToPrint;
|
||||
|
||||
TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
|
||||
TimerGroup(const TimerGroup &TG); // DO NOT IMPLEMENT
|
||||
void operator=(const TimerGroup &TG); // DO NOT IMPLEMENT
|
||||
TimerGroup(const TimerGroup &TG) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const TimerGroup &TG) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
explicit TimerGroup(StringRef name);
|
||||
~TimerGroup();
|
||||
|
@ -15,6 +15,7 @@
|
||||
#define LLVM_SUPPORT_RAW_OSTREAM_H
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
|
||||
namespace llvm {
|
||||
@ -29,8 +30,8 @@ namespace llvm {
|
||||
class raw_ostream {
|
||||
private:
|
||||
// Do not implement. raw_ostream is noncopyable.
|
||||
void operator=(const raw_ostream &);
|
||||
raw_ostream(const raw_ostream &);
|
||||
void operator=(const raw_ostream &) LLVM_DELETED_FUNCTION;
|
||||
raw_ostream(const raw_ostream &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
/// The buffer is handled in such a way that the buffer is
|
||||
/// uninitialized, unbuffered, or out of space when OutBufCur >=
|
||||
|
@ -17,6 +17,8 @@
|
||||
#ifndef LLVM_SYSTEM_SYSTEM_ERROR_H
|
||||
#define LLVM_SYSTEM_SYSTEM_ERROR_H
|
||||
|
||||
#include "llvm/Support/Compiler.h"
|
||||
|
||||
/*
|
||||
system_error synopsis
|
||||
|
||||
@ -629,8 +631,8 @@ public:
|
||||
|
||||
private:
|
||||
error_category();
|
||||
error_category(const error_category&);// = delete;
|
||||
error_category& operator=(const error_category&);// = delete;
|
||||
error_category(const error_category&) LLVM_DELETED_FUNCTION;
|
||||
error_category& operator=(const error_category&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
virtual const char* name() const = 0;
|
||||
|
@ -66,7 +66,7 @@ public:
|
||||
|
||||
private:
|
||||
/// Copy ctor - do not implement
|
||||
Use(const Use &U);
|
||||
Use(const Use &U) LLVM_DELETED_FUNCTION;
|
||||
|
||||
/// Destructor - Only for zap()
|
||||
~Use() {
|
||||
|
@ -31,8 +31,8 @@ template <class>
|
||||
struct OperandTraits;
|
||||
|
||||
class User : public Value {
|
||||
User(const User &); // Do not implement
|
||||
void *operator new(size_t); // Do not implement
|
||||
User(const User &) LLVM_DELETED_FUNCTION;
|
||||
void *operator new(size_t) LLVM_DELETED_FUNCTION;
|
||||
template <unsigned>
|
||||
friend struct HungoffOperandTraits;
|
||||
virtual void anchor();
|
||||
|
@ -80,8 +80,8 @@ private:
|
||||
friend class ValueHandleBase;
|
||||
ValueName *Name;
|
||||
|
||||
void operator=(const Value &); // Do not implement
|
||||
Value(const Value &); // Do not implement
|
||||
void operator=(const Value &) LLVM_DELETED_FUNCTION;
|
||||
Value(const Value &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
protected:
|
||||
/// printCustom - Value subclasses can override this to implement custom
|
||||
|
Loading…
x
Reference in New Issue
Block a user