Add explicit keywords.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53179 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-07-07 18:00:37 +00:00
parent eccfb6a165
commit 1002c02034
16 changed files with 26 additions and 26 deletions

View File

@ -317,7 +317,7 @@ public:
template<class T>
class FoldingSetIterator : public FoldingSetIteratorImpl {
public:
FoldingSetIterator(void **Bucket) : FoldingSetIteratorImpl(Bucket) {}
explicit FoldingSetIterator(void **Bucket) : FoldingSetIteratorImpl(Bucket) {}
T &operator*() const {
return *static_cast<T*>(NodePtr);
@ -345,7 +345,7 @@ class FoldingSetBucketIteratorImpl {
protected:
void *Ptr;
FoldingSetBucketIteratorImpl(void **Bucket);
explicit FoldingSetBucketIteratorImpl(void **Bucket);
FoldingSetBucketIteratorImpl(void **Bucket, bool)
: Ptr(reinterpret_cast<void*>(Bucket)) {}
@ -369,7 +369,7 @@ public:
template<class T>
class FoldingSetBucketIterator : public FoldingSetBucketIteratorImpl {
public:
FoldingSetBucketIterator(void **Bucket) :
explicit FoldingSetBucketIterator(void **Bucket) :
FoldingSetBucketIteratorImpl(Bucket) {}
FoldingSetBucketIterator(void **Bucket, bool) :
@ -394,7 +394,7 @@ template <typename T>
class FoldingSetNodeWrapper : public FoldingSetNode {
T data;
public:
FoldingSetNodeWrapper(const T& x) : data(x) {}
explicit FoldingSetNodeWrapper(const T& x) : data(x) {}
virtual ~FoldingSetNodeWrapper() {}
template<typename A1>

View File

@ -611,7 +611,7 @@ public:
private:
friend class LoopInfoBase<BlockT>;
LoopBase(BlockT *BB) : ParentLoop(0) {
explicit LoopBase(BlockT *BB) : ParentLoop(0) {
Blocks.push_back(BB);
}
};

View File

@ -44,7 +44,7 @@ class Timer {
bool Started; // Has this time variable ever been started?
TimerGroup *TG; // The TimerGroup this Timer is in.
public:
Timer(const std::string &N);
explicit Timer(const std::string &N);
Timer(const std::string &N, TimerGroup &tg);
Timer(const Timer &T);
~Timer();
@ -116,7 +116,7 @@ class TimeRegion {
Timer &T;
TimeRegion(const TimeRegion &); // DO NOT IMPLEMENT
public:
TimeRegion(Timer &t) : T(t) {
explicit TimeRegion(Timer &t) : T(t) {
T.startTimer();
}
~TimeRegion() {
@ -131,7 +131,7 @@ public:
/// is primarily used for debugging and for hunting performance problems.
///
struct NamedRegionTimer : public TimeRegion {
NamedRegionTimer(const std::string &Name);
explicit NamedRegionTimer(const std::string &Name);
};
@ -145,7 +145,7 @@ class TimerGroup {
unsigned NumTimers;
std::vector<Timer> TimersToPrint;
public:
TimerGroup(const std::string &name) : Name(name), NumTimers(0) {}
explicit TimerGroup(const std::string &name) : Name(name), NumTimers(0) {}
~TimerGroup() {
assert(NumTimers == 0 &&
"TimerGroup destroyed before all contained timers!");

View File

@ -30,7 +30,7 @@ namespace llvm {
class BasicInliner {
public:
BasicInliner(TargetData *T = NULL);
explicit BasicInliner(TargetData *T = NULL);
~BasicInliner();
/// addFunction - Add function into the list of functions to process.

View File

@ -122,8 +122,7 @@ class VISIBILITY_HIDDEN SelectionDAGLegalize {
}
public:
SelectionDAGLegalize(SelectionDAG &DAG);
explicit SelectionDAGLegalize(SelectionDAG &DAG);
/// getTypeAction - Return how we should legalize values of this type, either
/// it is already legal or we need to expand it into multiple registers of

View File

@ -284,7 +284,7 @@ namespace {
public SelectionDAG::DAGUpdateListener {
DAGTypeLegalizer &DTL;
public:
NodeUpdateListener(DAGTypeLegalizer &dtl) : DTL(dtl) {}
explicit NodeUpdateListener(DAGTypeLegalizer &dtl) : DTL(dtl) {}
virtual void NodeDeleted(SDNode *N, SDNode *E) {
assert(N->getNodeId() != DAGTypeLegalizer::Processed &&

View File

@ -44,7 +44,7 @@ class ARMDAGToDAGISel : public SelectionDAGISel {
const ARMSubtarget *Subtarget;
public:
ARMDAGToDAGISel(ARMTargetMachine &TM)
explicit ARMDAGToDAGISel(ARMTargetMachine &TM)
: SelectionDAGISel(Lowering), Lowering(TM),
Subtarget(&TM.getSubtarget<ARMSubtarget>()) {
}

View File

@ -227,7 +227,7 @@ class SPUDAGToDAGISel :
unsigned GlobalBaseReg;
public:
SPUDAGToDAGISel(SPUTargetMachine &tm) :
explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
SelectionDAGISel(*tm.getTargetLowering()),
TM(tm),
SPUtli(*tm.getTargetLowering())

View File

@ -40,7 +40,7 @@ namespace {
IA64TargetLowering IA64Lowering;
unsigned GlobalBaseReg;
public:
IA64DAGToDAGISel(IA64TargetMachine &TM)
explicit IA64DAGToDAGISel(IA64TargetMachine &TM)
: SelectionDAGISel(IA64Lowering), IA64Lowering(*TM.getTargetLowering()) {}
virtual bool runOnFunction(Function &Fn) {

View File

@ -61,7 +61,8 @@ class VISIBILITY_HIDDEN MipsDAGToDAGISel : public SelectionDAGISel {
const MipsSubtarget &Subtarget;
public:
MipsDAGToDAGISel(MipsTargetMachine &tm) : SelectionDAGISel(MipsLowering),
explicit MipsDAGToDAGISel(MipsTargetMachine &tm) :
SelectionDAGISel(MipsLowering),
TM(tm), MipsLowering(*TM.getTargetLowering()),
Subtarget(tm.getSubtarget<MipsSubtarget>()) {}

View File

@ -57,7 +57,7 @@ class VISIBILITY_HIDDEN PIC16DAGToDAGISel : public SelectionDAGISel {
PIC16TargetLowering PIC16Lowering;
public:
PIC16DAGToDAGISel(PIC16TargetMachine &tm) :
explicit PIC16DAGToDAGISel(PIC16TargetMachine &tm) :
SelectionDAGISel(PIC16Lowering),
TM(tm), PIC16Lowering(*TM.getTargetLowering()) {}

View File

@ -45,7 +45,7 @@ namespace {
const PPCSubtarget &PPCSubTarget;
unsigned GlobalBaseReg;
public:
PPCDAGToDAGISel(PPCTargetMachine &tm)
explicit PPCDAGToDAGISel(PPCTargetMachine &tm)
: SelectionDAGISel(PPCLowering), TM(tm),
PPCLowering(*TM.getTargetLowering()),
PPCSubTarget(*TM.getSubtargetImpl()) {}

View File

@ -35,7 +35,7 @@ class SparcDAGToDAGISel : public SelectionDAGISel {
/// make the right decision when generating code for different targets.
const SparcSubtarget &Subtarget;
public:
SparcDAGToDAGISel(TargetMachine &TM)
explicit SparcDAGToDAGISel(TargetMachine &TM)
: SelectionDAGISel(Lowering), Lowering(TM),
Subtarget(TM.getSubtarget<SparcSubtarget>()) {
}

View File

@ -31,7 +31,7 @@ namespace {
template <typename T>
struct VISIBILITY_HIDDEN LeakDetectorImpl {
LeakDetectorImpl(const char* const name) : Cache(0), Name(name) { }
explicit LeakDetectorImpl(const char* const name) : Cache(0), Name(name) { }
// Because the most common usage pattern, by far, is to add a
// garbage object, then remove it immediately, we optimize this

View File

@ -431,7 +431,7 @@ const Type *Type::LabelTy = new Type(Type::LabelTyID);
namespace {
struct BuiltinIntegerType : public IntegerType {
BuiltinIntegerType(unsigned W) : IntegerType(W) {}
explicit BuiltinIntegerType(unsigned W) : IntegerType(W) {}
};
}
const IntegerType *Type::Int1Ty = new BuiltinIntegerType(1);

View File

@ -151,7 +151,7 @@ public:
class BitsRecTy : public RecTy {
unsigned Size;
public:
BitsRecTy(unsigned Sz) : Size(Sz) {}
explicit BitsRecTy(unsigned Sz) : Size(Sz) {}
unsigned getNumBits() const { return Size; }
@ -268,7 +268,7 @@ public:
class ListRecTy : public RecTy {
RecTy *Ty;
public:
ListRecTy(RecTy *T) : Ty(T) {}
explicit ListRecTy(RecTy *T) : Ty(T) {}
RecTy *getElementType() const { return Ty; }
@ -381,7 +381,7 @@ public:
class RecordRecTy : public RecTy {
Record *Rec;
public:
RecordRecTy(Record *R) : Rec(R) {}
explicit RecordRecTy(Record *R) : Rec(R) {}
Record *getRecord() const { return Rec; }
@ -966,7 +966,7 @@ class Record {
std::vector<Record*> SuperClasses;
public:
Record(const std::string &N) : Name(N) {}
explicit Record(const std::string &N) : Name(N) {}
~Record() {}
const std::string &getName() const { return Name; }