Skip to content

Commit 8c78a0b

Browse files
author
Devang Patel
committed
Drop 'const'
llvm-svn: 36662
1 parent 7aa944d commit 8c78a0b

File tree

150 files changed

+312
-312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+312
-312
lines changed

llvm/docs/WritingAnLLVMPass.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@
263263
time.</p>
264264

265265
<div class="doc_code"><pre>
266-
static const char ID;
266+
static char ID;
267267
Hello() : FunctionPass((intptr_t)&ID) {}
268268
</pre></div><p>
269269

@@ -285,7 +285,7 @@
285285
function.</p>
286286

287287
<div class="doc_code"><pre>
288-
const char Hello::ID = 0;
288+
char Hello::ID = 0;
289289
</pre></div>
290290

291291
<p> We initialize pass ID here. LLVM uses ID's address to identify pass so
@@ -311,7 +311,7 @@
311311
<b>namespace</b> {
312312
<b>struct Hello</b> : <b>public</b> <a href="#FunctionPass">FunctionPass</a> {
313313

314-
static const char ID;
314+
static char ID;
315315
Hello() : FunctionPass((intptr_t)&ID) {}
316316

317317
<b>virtual bool</b> <a href="#runOnFunction">runOnFunction</a>(Function &amp;F) {

llvm/include/llvm/Analysis/AliasAnalysis.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class AliasAnalysis {
6161
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
6262

6363
public:
64-
static const char ID; // Class identification, replacement for typeinfo
64+
static char ID; // Class identification, replacement for typeinfo
6565
AliasAnalysis() : TD(0), AA(0) {}
6666
virtual ~AliasAnalysis(); // We want to be subclassed
6767

llvm/include/llvm/Analysis/CallGraph.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CallGraph {
7373
FunctionMapTy FunctionMap; // Map from a function to its node
7474

7575
public:
76-
static const char ID; // Class identification, replacement for typeinfo
76+
static char ID; // Class identification, replacement for typeinfo
7777
//===---------------------------------------------------------------------
7878
// Accessors...
7979
//

llvm/include/llvm/Analysis/Dominators.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class DominatorTreeBase : public DominatorBase {
208208
///
209209
class DominatorTree : public DominatorTreeBase {
210210
public:
211-
static const char ID; // Pass ID, replacement for typeid
211+
static char ID; // Pass ID, replacement for typeid
212212
DominatorTree() : DominatorTreeBase((intptr_t)&ID, false) {}
213213

214214
BasicBlock *getRoot() const {
@@ -399,7 +399,7 @@ class ETForestBase : public DominatorBase {
399399

400400
class ETForest : public ETForestBase {
401401
public:
402-
static const char ID; // Pass identifcation, replacement for typeid
402+
static char ID; // Pass identifcation, replacement for typeid
403403

404404
ETForest() : ETForestBase((intptr_t)&ID, false) {}
405405

@@ -477,7 +477,7 @@ class DominanceFrontierBase : public DominatorBase {
477477
///
478478
class DominanceFrontier : public DominanceFrontierBase {
479479
public:
480-
static const char ID; // Pass ID, replacement for typeid
480+
static char ID; // Pass ID, replacement for typeid
481481
DominanceFrontier() :
482482
DominanceFrontierBase((intptr_t)& ID, false) {}
483483

llvm/include/llvm/Analysis/FindUsedTypes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Type;
2424
class FindUsedTypes : public ModulePass {
2525
std::set<const Type *> UsedTypes;
2626
public:
27-
static const char ID; // Pass identifcation, replacement for typeid
27+
static char ID; // Pass identifcation, replacement for typeid
2828
FindUsedTypes() : ModulePass((intptr_t)&ID) {}
2929

3030
/// getTypes - After the pass has been run, return the set containing all of

llvm/include/llvm/Analysis/IntervalPartition.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class IntervalPartition : public FunctionPass {
4545
std::vector<Interval*> Intervals;
4646

4747
public:
48-
static const char ID; // Pass identifcation, replacement for typeid
48+
static char ID; // Pass identifcation, replacement for typeid
4949

5050
IntervalPartition() : FunctionPass((intptr_t)&ID), RootInterval(0) {}
5151

llvm/include/llvm/Analysis/LoopInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class LoopInfo : public FunctionPass {
241241
std::vector<Loop*> TopLevelLoops;
242242
friend class Loop;
243243
public:
244-
static const char ID; // Pass identifcation, replacement for typeid
244+
static char ID; // Pass identifcation, replacement for typeid
245245

246246
LoopInfo() : FunctionPass((intptr_t)&ID) {}
247247
~LoopInfo() { releaseMemory(); }

llvm/include/llvm/Analysis/LoopPass.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class LoopPass : public Pass {
6868
class LPPassManager : public FunctionPass, public PMDataManager {
6969

7070
public:
71-
static const char ID;
71+
static char ID;
7272
LPPassManager(int Depth);
7373

7474
/// run - Execute all of the passes scheduled for execution. Keep track of

llvm/include/llvm/Analysis/PostDominators.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace llvm {
2222
/// compute the a post-dominator tree.
2323
///
2424
struct PostDominatorTree : public DominatorTreeBase {
25-
static const char ID; // Pass identifcation, replacement for typeid
25+
static char ID; // Pass identifcation, replacement for typeid
2626

2727
PostDominatorTree() :
2828
DominatorTreeBase((intptr_t)&ID, true) {}
@@ -54,7 +54,7 @@ struct PostDominatorTree : public DominatorTreeBase {
5454
/// PostETForest Class - Concrete subclass of ETForestBase that is used to
5555
/// compute a forwards post-dominator ET-Forest.
5656
struct PostETForest : public ETForestBase {
57-
static const char ID;
57+
static char ID;
5858
PostETForest() : ETForestBase((intptr_t)&ID, true) {}
5959

6060
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
@@ -79,7 +79,7 @@ struct PostETForest : public ETForestBase {
7979
/// used to compute the a post-dominance frontier.
8080
///
8181
struct PostDominanceFrontier : public DominanceFrontierBase {
82-
static const char ID;
82+
static char ID;
8383
PostDominanceFrontier()
8484
: DominanceFrontierBase((intptr_t) &ID, true) {}
8585

llvm/include/llvm/Analysis/ProfileInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace llvm {
3838
// entered.
3939
std::map<std::pair<BasicBlock*, BasicBlock*>, unsigned> EdgeCounts;
4040
public:
41-
static const char ID; // Class identification, replacement for typeinfo
41+
static char ID; // Class identification, replacement for typeinfo
4242
virtual ~ProfileInfo(); // We want to be subclassed
4343

4444
//===------------------------------------------------------------------===//

llvm/include/llvm/Analysis/ScalarEvolution.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ namespace llvm {
197197
class ScalarEvolution : public FunctionPass {
198198
void *Impl; // ScalarEvolution uses the pimpl pattern
199199
public:
200-
static const char ID; // Pass identifcation, replacement for typeid
200+
static char ID; // Pass identifcation, replacement for typeid
201201
ScalarEvolution() : FunctionPass((intptr_t)&ID), Impl(0) {}
202202

203203
/// getSCEV - Return a SCEV expression handle for the full generality of the

llvm/include/llvm/Analysis/ValueNumbering.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Value;
2929
class Instruction;
3030

3131
struct ValueNumbering {
32-
static const char ID; // Class identification, replacement for typeinfo
32+
static char ID; // Class identification, replacement for typeinfo
3333
virtual ~ValueNumbering(); // We want to be subclassed
3434

3535
/// getEqualNumberNodes - Return nodes with the same value number as the

llvm/include/llvm/Assembly/PrintModulePass.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class PrintModulePass : public ModulePass {
2828
OStream *Out; // ostream to print on
2929
bool DeleteStream; // Delete the ostream in our dtor?
3030
public:
31-
static const char ID;
31+
static char ID;
3232
PrintModulePass() : ModulePass((intptr_t)&ID), Out(&cerr), DeleteStream(false) {}
3333
PrintModulePass(OStream *o, bool DS = false)
3434
: ModulePass((intptr_t)&ID), Out(o), DeleteStream(DS) {}
@@ -52,7 +52,7 @@ class PrintFunctionPass : public FunctionPass {
5252
OStream *Out; // ostream to print on
5353
bool DeleteStream; // Delete the ostream in our dtor?
5454
public:
55-
static const char ID;
55+
static char ID;
5656
PrintFunctionPass() : FunctionPass((intptr_t)&ID), Banner(""), Out(&cerr),
5757
DeleteStream(false) {}
5858
PrintFunctionPass(const std::string &B, OStream *o = &cout,

llvm/include/llvm/Bytecode/WriteBytecodePass.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class WriteBytecodePass : public ModulePass {
2626
bool DeleteStream;
2727
bool CompressFile;
2828
public:
29-
static const char ID; // Pass identifcation, replacement for typeid
29+
static char ID; // Pass identifcation, replacement for typeid
3030
WriteBytecodePass()
3131
: ModulePass((intptr_t) &ID), Out(&cout), DeleteStream(false),
3232
CompressFile(false) {}

llvm/include/llvm/CodeGen/AsmPrinter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace llvm {
3434
/// AsmPrinter - This class is intended to be used as a driving class for all
3535
/// asm writers.
3636
class AsmPrinter : public MachineFunctionPass {
37-
static const char ID;
37+
static char ID;
3838

3939
/// FunctionNumber - This provides a unique ID for each function emitted in
4040
/// this translation unit. It is autoincremented by SetupMachineFunction,

llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace llvm {
6565
BitVector JoinedLIs;
6666

6767
public:
68-
static const char ID; // Pass identifcation, replacement for typeid
68+
static char ID; // Pass identifcation, replacement for typeid
6969
LiveIntervals() : MachineFunctionPass((intptr_t)&ID) {}
7070

7171
struct CopyRec {

llvm/include/llvm/CodeGen/LiveVariables.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class MRegisterInfo;
4040

4141
class LiveVariables : public MachineFunctionPass {
4242
public:
43-
static const char ID; // Pass identifcation, replacement for typeid
43+
static char ID; // Pass identifcation, replacement for typeid
4444
LiveVariables() : MachineFunctionPass((intptr_t)&ID) {}
4545

4646
/// VarInfo - This represents the regions where a virtual register is live in

llvm/include/llvm/CodeGen/MachineModuleInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ class MachineModuleInfo : public ImmutablePass {
10221022
std::vector<GlobalVariable *> TypeInfos;
10231023

10241024
public:
1025-
static const char ID; // Pass identifcation, replacement for typeid
1025+
static char ID; // Pass identifcation, replacement for typeid
10261026

10271027
MachineModuleInfo();
10281028
~MachineModuleInfo();

llvm/include/llvm/CodeGen/SelectionDAGISel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SelectionDAGISel : public FunctionPass {
4141
MachineBasicBlock *BB;
4242
std::vector<SDNode*> TopOrder;
4343
unsigned DAGSize;
44-
static const char ID;
44+
static char ID;
4545

4646
explicit SelectionDAGISel(TargetLowering &tli) :
4747
FunctionPass((intptr_t)&ID), TLI(tli), DAGSize(0) {}

llvm/include/llvm/PassManagers.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class PMDataManager {
336336
class FPPassManager : public ModulePass, public PMDataManager {
337337

338338
public:
339-
static const char ID;
339+
static char ID;
340340
explicit FPPassManager(int Depth)
341341
: ModulePass((intptr_t)&ID), PMDataManager(Depth) { }
342342

llvm/include/llvm/Target/TargetData.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class TargetData : public ImmutablePass {
202202
/// requested alignment (if the global has one).
203203
unsigned getPreferredAlignmentLog(const GlobalVariable *GV) const;
204204

205-
static const char ID; // Pass identifcation, replacement for typeid
205+
static char ID; // Pass identifcation, replacement for typeid
206206
};
207207

208208
/// StructLayout - used to lazily calculate structure layout information for a

llvm/include/llvm/Transforms/RSProfiling.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace llvm {
2323
/// this interface are expected to chain to other implementations, such that
2424
/// multiple profilers can be support simultaniously.
2525
struct RSProfilers : public ModulePass {
26-
static const char ID; // Pass identification, replacement for typeinfo
26+
static char ID; // Pass identification, replacement for typeinfo
2727
RSProfilers() : ModulePass((intptr_t)&ID) {}
2828

2929
/// isProfiling - This method returns true if the value passed it was

llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace llvm {
2525
struct UnifyFunctionExitNodes : public FunctionPass {
2626
BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock;
2727
public:
28-
static const char ID; // Pass identifcation, replacement for typeid
28+
static char ID; // Pass identifcation, replacement for typeid
2929
UnifyFunctionExitNodes() : FunctionPass((intptr_t)&ID),
3030
ReturnBlock(0), UnwindBlock(0) {}
3131

llvm/lib/Analysis/AliasAnalysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using namespace llvm;
3636
namespace {
3737
RegisterAnalysisGroup<AliasAnalysis> Z("Alias Analysis");
3838
}
39-
const char AliasAnalysis::ID = 0;
39+
char AliasAnalysis::ID = 0;
4040

4141
//===----------------------------------------------------------------------===//
4242
// Default chaining methods

llvm/lib/Analysis/AliasAnalysisCounter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace {
3434
const char *Name;
3535
Module *M;
3636
public:
37-
static const char ID; // Class identification, replacement for typeinfo
37+
static char ID; // Class identification, replacement for typeinfo
3838
AliasAnalysisCounter() : ModulePass((intptr_t) &ID) {
3939
No = May = Must = 0;
4040
NoMR = JustRef = JustMod = MR = 0;
@@ -108,7 +108,7 @@ namespace {
108108
}
109109
};
110110

111-
const char AliasAnalysisCounter::ID = 0;
111+
char AliasAnalysisCounter::ID = 0;
112112
RegisterPass<AliasAnalysisCounter>
113113
X("count-aa", "Count Alias Analysis Query Responses");
114114
RegisterAnalysisGroup<AliasAnalysis> Y(X);

llvm/lib/Analysis/AliasAnalysisEvaluator.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace {
5050
unsigned NoModRef, Mod, Ref, ModRef;
5151

5252
public:
53-
static const char ID; // Pass identifcation, replacement for typeid
53+
static char ID; // Pass identifcation, replacement for typeid
5454
AAEval() : FunctionPass((intptr_t)&ID) {}
5555

5656
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
@@ -73,7 +73,7 @@ namespace {
7373
bool doFinalization(Module &M);
7474
};
7575

76-
const char AAEval::ID = 0;
76+
char AAEval::ID = 0;
7777
RegisterPass<AAEval>
7878
X("aa-eval", "Exhaustive Alias Analysis Precision Evaluator");
7979
}

llvm/lib/Analysis/AliasDebugger.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace {
4040
std::set<const Value*> Vals;
4141

4242
public:
43-
static const char ID; // Class identification, replacement for typeinfo
43+
static char ID; // Class identification, replacement for typeinfo
4444
AliasDebugger() : ModulePass((intptr_t)&ID) {}
4545

4646
bool runOnModule(Module &M) {
@@ -122,7 +122,7 @@ namespace {
122122

123123
};
124124

125-
const char AliasDebugger::ID = 0;
125+
char AliasDebugger::ID = 0;
126126
RegisterPass<AliasDebugger> X("debug-aa", "AA use debugger");
127127
RegisterAnalysisGroup<AliasAnalysis> Y(X);
128128
}

llvm/lib/Analysis/AliasSetTracker.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ namespace {
555555
class VISIBILITY_HIDDEN AliasSetPrinter : public FunctionPass {
556556
AliasSetTracker *Tracker;
557557
public:
558-
static const char ID; // Pass identifcation, replacement for typeid
558+
static char ID; // Pass identifcation, replacement for typeid
559559
AliasSetPrinter() : FunctionPass((intptr_t)&ID) {}
560560

561561
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
@@ -573,6 +573,6 @@ namespace {
573573
return false;
574574
}
575575
};
576-
const char AliasSetPrinter::ID = 0;
576+
char AliasSetPrinter::ID = 0;
577577
RegisterPass<AliasSetPrinter> X("print-alias-sets", "Alias Set Printer");
578578
}

llvm/lib/Analysis/BasicAliasAnalysis.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace {
3636
/// such it doesn't follow many of the rules that other alias analyses must.
3737
///
3838
struct VISIBILITY_HIDDEN NoAA : public ImmutablePass, public AliasAnalysis {
39-
static const char ID; // Class identification, replacement for typeinfo
39+
static char ID; // Class identification, replacement for typeinfo
4040
NoAA() : ImmutablePass((intptr_t)&ID) {}
4141

4242
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
@@ -77,7 +77,7 @@ namespace {
7777
};
7878

7979
// Register this pass...
80-
const char NoAA::ID = 0;
80+
char NoAA::ID = 0;
8181
RegisterPass<NoAA>
8282
U("no-aa", "No Alias Analysis (always returns 'may' alias)");
8383

@@ -92,7 +92,7 @@ namespace {
9292
/// Because it doesn't chain to a previous alias analysis (like -no-aa), it
9393
/// derives from the NoAA class.
9494
struct VISIBILITY_HIDDEN BasicAliasAnalysis : public NoAA {
95-
static const char ID; // Class identification, replacement for typeinfo
95+
static char ID; // Class identification, replacement for typeinfo
9696
AliasResult alias(const Value *V1, unsigned V1Size,
9797
const Value *V2, unsigned V2Size);
9898

@@ -124,7 +124,7 @@ namespace {
124124
};
125125

126126
// Register this pass...
127-
const char BasicAliasAnalysis::ID = 0;
127+
char BasicAliasAnalysis::ID = 0;
128128
RegisterPass<BasicAliasAnalysis>
129129
X("basicaa", "Basic Alias Analysis (default AA impl)");
130130

0 commit comments

Comments
 (0)