Skip to content

Commit ea31ad3

Browse files
author
James Molloy
committedNov 13, 2015
[GlobalOpt] Coding style - remove function names from doxygen comments
Suggested by Mehdi in the review of D14148. llvm-svn: 253029
1 parent c1ba9fc commit ea31ad3

File tree

1 file changed

+115
-126
lines changed

1 file changed

+115
-126
lines changed
 

‎llvm/lib/Transforms/IPO/GlobalOpt.cpp

+115-126
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ INITIALIZE_PASS_END(GlobalOpt, "globalopt",
100100

101101
ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
102102

103-
/// isLeakCheckerRoot - Is this global variable possibly used by a leak checker
104-
/// as a root? If so, we might not really want to eliminate the stores to it.
103+
/// Is this global variable possibly used by a leak checker as a root? If so,
104+
/// we might not really want to eliminate the stores to it.
105105
static bool isLeakCheckerRoot(GlobalVariable *GV) {
106106
// A global variable is a root if it is a pointer, or could plausibly contain
107107
// a pointer. There are two challenges; one is that we could have a struct
@@ -176,10 +176,9 @@ static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
176176
} while (1);
177177
}
178178

179-
/// CleanupPointerRootUsers - This GV is a pointer root. Loop over all users
180-
/// of the global and clean up any that obviously don't assign the global a
181-
/// value that isn't dynamically allocated.
182-
///
179+
/// This GV is a pointer root. Loop over all users of the global and clean up
180+
/// any that obviously don't assign the global a value that isn't dynamically
181+
/// allocated.
183182
static bool CleanupPointerRootUsers(GlobalVariable *GV,
184183
const TargetLibraryInfo *TLI) {
185184
// A brief explanation of leak checkers. The goal is to find bugs where
@@ -263,10 +262,9 @@ static bool CleanupPointerRootUsers(GlobalVariable *GV,
263262
return Changed;
264263
}
265264

266-
/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
267-
/// users of the global, cleaning up the obvious ones. This is largely just a
268-
/// quick scan over the use list to clean up the easy and obvious cruft. This
269-
/// returns true if it made a change.
265+
/// We just marked GV constant. Loop over all users of the global, cleaning up
266+
/// the obvious ones. This is largely just a quick scan over the use list to
267+
/// clean up the easy and obvious cruft. This returns true if it made a change.
270268
static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
271269
const DataLayout &DL,
272270
TargetLibraryInfo *TLI) {
@@ -353,8 +351,8 @@ static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
353351
return Changed;
354352
}
355353

356-
/// isSafeSROAElementUse - Return true if the specified instruction is a safe
357-
/// user of a derived expression from a global that we want to SROA.
354+
/// Return true if the specified instruction is a safe user of a derived
355+
/// expression from a global that we want to SROA.
358356
static bool isSafeSROAElementUse(Value *V) {
359357
// We might have a dead and dangling constant hanging off of here.
360358
if (Constant *C = dyn_cast<Constant>(V))
@@ -385,9 +383,8 @@ static bool isSafeSROAElementUse(Value *V) {
385383
}
386384

387385

388-
/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
389-
/// Look at it and its uses and decide whether it is safe to SROA this global.
390-
///
386+
/// U is a direct user of the specified global value. Look at it and its uses
387+
/// and decide whether it is safe to SROA this global.
391388
static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
392389
// The user of the global must be a GEP Inst or a ConstantExpr GEP.
393390
if (!isa<GetElementPtrInst>(U) &&
@@ -452,9 +449,8 @@ static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
452449
return true;
453450
}
454451

455-
/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
456-
/// is safe for us to perform this transformation.
457-
///
452+
/// Look at all uses of the global and decide whether it is safe for us to
453+
/// perform this transformation.
458454
static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
459455
for (User *U : GV->users())
460456
if (!IsUserOfGlobalSafeForSRA(U, GV))
@@ -464,10 +460,10 @@ static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
464460
}
465461

466462

467-
/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
468-
/// variable. This opens the door for other optimizations by exposing the
469-
/// behavior of the program in a more fine-grained way. We have determined that
470-
/// this transformation is safe already. We return the first global variable we
463+
/// Perform scalar replacement of aggregates on the specified global variable.
464+
/// This opens the door for other optimizations by exposing the behavior of the
465+
/// program in a more fine-grained way. We have determined that this
466+
/// transformation is safe already. We return the first global variable we
471467
/// insert so that the caller can reprocess it.
472468
static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
473469
// Make sure this global only has simple uses that we can SRA.
@@ -612,9 +608,9 @@ static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
612608
return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
613609
}
614610

615-
/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
616-
/// value will trap if the value is dynamically null. PHIs keeps track of any
617-
/// phi nodes we've seen to avoid reprocessing them.
611+
/// Return true if all users of the specified value will trap if the value is
612+
/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
613+
/// reprocessing them.
618614
static bool AllUsesOfValueWillTrapIfNull(const Value *V,
619615
SmallPtrSetImpl<const PHINode*> &PHIs) {
620616
for (const User *U : V->users())
@@ -655,9 +651,9 @@ static bool AllUsesOfValueWillTrapIfNull(const Value *V,
655651
return true;
656652
}
657653

658-
/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
659-
/// from GV will trap if the loaded value is null. Note that this also permits
660-
/// comparisons of the loaded value against null, as a special case.
654+
/// Return true if all uses of any loads from GV will trap if the loaded value
655+
/// is null. Note that this also permits comparisons of the loaded value
656+
/// against null, as a special case.
661657
static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
662658
for (const User *U : GV->users())
663659
if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
@@ -737,10 +733,10 @@ static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
737733
}
738734

739735

740-
/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
741-
/// value stored into it. If there are uses of the loaded value that would trap
742-
/// if the loaded value is dynamically null, then we know that they cannot be
743-
/// reachable with a null optimize away the load.
736+
/// The specified global has only one non-null value stored into it. If there
737+
/// are uses of the loaded value that would trap if the loaded value is
738+
/// dynamically null, then we know that they cannot be reachable with a null
739+
/// optimize away the load.
744740
static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
745741
const DataLayout &DL,
746742
TargetLibraryInfo *TLI) {
@@ -803,8 +799,8 @@ static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
803799
return Changed;
804800
}
805801

806-
/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
807-
/// instructions that are foldable.
802+
/// Walk the use list of V, constant folding all of the instructions that are
803+
/// foldable.
808804
static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
809805
TargetLibraryInfo *TLI) {
810806
for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
@@ -820,11 +816,11 @@ static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
820816
}
821817
}
822818

823-
/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
824-
/// variable, and transforms the program as if it always contained the result of
825-
/// the specified malloc. Because it is always the result of the specified
826-
/// malloc, there is no reason to actually DO the malloc. Instead, turn the
827-
/// malloc into a global, and any loads of GV as uses of the new global.
819+
/// This function takes the specified global variable, and transforms the
820+
/// program as if it always contained the result of the specified malloc.
821+
/// Because it is always the result of the specified malloc, there is no reason
822+
/// to actually DO the malloc. Instead, turn the malloc into a global, and any
823+
/// loads of GV as uses of the new global.
828824
static GlobalVariable *
829825
OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
830826
ConstantInt *NElements, const DataLayout &DL,
@@ -953,10 +949,9 @@ OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
953949
return NewGV;
954950
}
955951

956-
/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
957-
/// to make sure that there are no complex uses of V. We permit simple things
958-
/// like dereferencing the pointer, but not storing through the address, unless
959-
/// it is to the specified global.
952+
/// Scan the use-list of V checking to make sure that there are no complex uses
953+
/// of V. We permit simple things like dereferencing the pointer, but not
954+
/// storing through the address, unless it is to the specified global.
960955
static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
961956
const GlobalVariable *GV,
962957
SmallPtrSetImpl<const PHINode*> &PHIs) {
@@ -1000,10 +995,9 @@ static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
1000995
return true;
1001996
}
1002997

1003-
/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
1004-
/// somewhere. Transform all uses of the allocation into loads from the
1005-
/// global and uses of the resultant pointer. Further, delete the store into
1006-
/// GV. This assumes that these value pass the
998+
/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
999+
/// allocation into loads from the global and uses of the resultant pointer.
1000+
/// Further, delete the store into GV. This assumes that these value pass the
10071001
/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
10081002
static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
10091003
GlobalVariable *GV) {
@@ -1045,9 +1039,9 @@ static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
10451039
}
10461040
}
10471041

1048-
/// LoadUsesSimpleEnoughForHeapSRA - Verify that all uses of V (a load, or a phi
1049-
/// of a load) are simple enough to perform heap SRA on. This permits GEP's
1050-
/// that index through the array and struct field, icmps of null, and PHIs.
1042+
/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1043+
/// perform heap SRA on. This permits GEP's that index through the array and
1044+
/// struct field, icmps of null, and PHIs.
10511045
static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
10521046
SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
10531047
SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
@@ -1098,8 +1092,8 @@ static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
10981092
}
10991093

11001094

1101-
/// AllGlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
1102-
/// GV are simple enough to perform HeapSRA, return true.
1095+
/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1096+
/// return true.
11031097
static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
11041098
Instruction *StoredVal) {
11051099
SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
@@ -1188,8 +1182,8 @@ static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
11881182
return FieldVals[FieldNo] = Result;
11891183
}
11901184

1191-
/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1192-
/// the load, rewrite the derived value to use the HeapSRoA'd load.
1185+
/// Given a load instruction and a value derived from the load, rewrite the
1186+
/// derived value to use the HeapSRoA'd load.
11931187
static void RewriteHeapSROALoadUser(Instruction *LoadUser,
11941188
DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
11951189
std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
@@ -1250,10 +1244,9 @@ static void RewriteHeapSROALoadUser(Instruction *LoadUser,
12501244
}
12511245
}
12521246

1253-
/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1254-
/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1255-
/// use FieldGlobals instead. All uses of loaded values satisfy
1256-
/// AllGlobalLoadUsesSimpleEnoughForHeapSRA.
1247+
/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1248+
/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1249+
/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
12571250
static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
12581251
DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
12591252
std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
@@ -1268,8 +1261,8 @@ static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
12681261
}
12691262
}
12701263

1271-
/// PerformHeapAllocSRoA - CI is an allocation of an array of structures. Break
1272-
/// it up into multiple allocations of arrays of the fields.
1264+
/// CI is an allocation of an array of structures. Break it up into multiple
1265+
/// allocations of arrays of the fields.
12731266
static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
12741267
Value *NElems, const DataLayout &DL,
12751268
const TargetLibraryInfo *TLI) {
@@ -1379,9 +1372,8 @@ static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
13791372
// CI is no longer needed, remove it.
13801373
CI->eraseFromParent();
13811374

1382-
/// InsertedScalarizedLoads - As we process loads, if we can't immediately
1383-
/// update all uses of the load, keep track of what scalarized loads are
1384-
/// inserted for a given load.
1375+
/// As we process loads, if we can't immediately update all uses of the load,
1376+
/// keep track of what scalarized loads are inserted for a given load.
13851377
DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
13861378
InsertedScalarizedValues[GV] = FieldGlobals;
13871379

@@ -1457,9 +1449,8 @@ static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
14571449
return cast<GlobalVariable>(FieldGlobals[0]);
14581450
}
14591451

1460-
/// TryToOptimizeStoreOfMallocToGlobal - This function is called when we see a
1461-
/// pointer global variable with a single value stored it that is a malloc or
1462-
/// cast of malloc.
1452+
/// This function is called when we see a pointer global variable with a single
1453+
/// value stored it that is a malloc or cast of malloc.
14631454
static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
14641455
Type *AllocTy,
14651456
AtomicOrdering Ordering,
@@ -1592,10 +1583,10 @@ static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
15921583
return false;
15931584
}
15941585

1595-
/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1596-
/// two values ever stored into GV are its initializer and OtherVal. See if we
1597-
/// can shrink the global into a boolean and select between the two values
1598-
/// whenever it is used. This exposes the values to other scalar optimizations.
1586+
/// At this point, we have learned that the only two values ever stored into GV
1587+
/// are its initializer and OtherVal. See if we can shrink the global into a
1588+
/// boolean and select between the two values whenever it is used. This exposes
1589+
/// the values to other scalar optimizations.
15991590
static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
16001591
Type *GVElType = GV->getType()->getElementType();
16011592

@@ -1694,8 +1685,8 @@ static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
16941685
}
16951686

16961687

1697-
/// ProcessGlobal - Analyze the specified global variable and optimize it if
1698-
/// possible. If we make a change, return true.
1688+
/// Analyze the specified global variable and optimize it if possible. If we
1689+
/// make a change, return true.
16991690
bool GlobalOpt::ProcessGlobal(GlobalVariable *GV,
17001691
Module::global_iterator &GVI) {
17011692
// Do more involved optimizations if the global is internal.
@@ -1727,7 +1718,7 @@ bool GlobalOpt::ProcessGlobal(GlobalVariable *GV,
17271718
return ProcessInternalGlobal(GV, GVI, GS);
17281719
}
17291720

1730-
/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1721+
/// Analyze the specified global variable and optimize
17311722
/// it if possible. If we make a change, return true.
17321723
bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
17331724
Module::global_iterator &GVI,
@@ -1855,8 +1846,8 @@ bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
18551846
return false;
18561847
}
18571848

1858-
/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1859-
/// function, changing them to FastCC.
1849+
/// Walk all of the direct calls of the specified function, changing them to
1850+
/// FastCC.
18601851
static void ChangeCalleesToFastCall(Function *F) {
18611852
for (User *U : F->users()) {
18621853
if (isa<BlockAddress>(U))
@@ -1973,8 +1964,8 @@ isSimpleEnoughValueToCommit(Constant *C,
19731964
SmallPtrSetImpl<Constant *> &SimpleConstants,
19741965
const DataLayout &DL);
19751966

1976-
/// isSimpleEnoughValueToCommit - Return true if the specified constant can be
1977-
/// handled by the code generator. We don't want to generate something like:
1967+
/// Return true if the specified constant can be handled by the code generator.
1968+
/// We don't want to generate something like:
19781969
/// void *X = &X/42;
19791970
/// because the code generator doesn't have a relocation that can handle that.
19801971
///
@@ -2049,11 +2040,11 @@ isSimpleEnoughValueToCommit(Constant *C,
20492040
}
20502041

20512042

2052-
/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
2053-
/// enough for us to understand. In particular, if it is a cast to anything
2054-
/// other than from one pointer type to another pointer type, we punt.
2055-
/// We basically just support direct accesses to globals and GEP's of
2056-
/// globals. This should be kept up to date with CommitValueTo.
2043+
/// Return true if this constant is simple enough for us to understand. In
2044+
/// particular, if it is a cast to anything other than from one pointer type to
2045+
/// another pointer type, we punt. We basically just support direct accesses to
2046+
/// globals and GEP's of globals. This should be kept up to date with
2047+
/// CommitValueTo.
20572048
static bool isSimpleEnoughPointerToCommit(Constant *C) {
20582049
// Conservatively, avoid aggregate types. This is because we don't
20592050
// want to worry about them partially overlapping other stores.
@@ -2100,9 +2091,9 @@ static bool isSimpleEnoughPointerToCommit(Constant *C) {
21002091
return false;
21012092
}
21022093

2103-
/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
2104-
/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
2105-
/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
2094+
/// Evaluate a piece of a constantexpr store into a global initializer. This
2095+
/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2096+
/// GEP operands of Addr [0, OpNo) have been stepped into.
21062097
static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
21072098
ConstantExpr *Addr, unsigned OpNo) {
21082099
// Base case of the recursion.
@@ -2149,7 +2140,7 @@ static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
21492140
return ConstantVector::get(Elts);
21502141
}
21512142

2152-
/// CommitValueTo - We have decided that Addr (which satisfies the predicate
2143+
/// We have decided that Addr (which satisfies the predicate
21532144
/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
21542145
static void CommitValueTo(Constant *Val, Constant *Addr) {
21552146
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
@@ -2165,10 +2156,10 @@ static void CommitValueTo(Constant *Val, Constant *Addr) {
21652156

21662157
namespace {
21672158

2168-
/// Evaluator - This class evaluates LLVM IR, producing the Constant
2169-
/// representing each SSA instruction. Changes to global variables are stored
2170-
/// in a mapping that can be iterated over after the evaluation is complete.
2171-
/// Once an evaluation call fails, the evaluation object should not be reused.
2159+
/// This class evaluates LLVM IR, producing the Constant representing each SSA
2160+
/// instruction. Changes to global variables are stored in a mapping that can
2161+
/// be iterated over after the evaluation is complete. Once an evaluation call
2162+
/// fails, the evaluation object should not be reused.
21722163
class Evaluator {
21732164
public:
21742165
Evaluator(const DataLayout &DL, const TargetLibraryInfo *TLI)
@@ -2185,15 +2176,15 @@ class Evaluator {
21852176
Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
21862177
}
21872178

2188-
/// EvaluateFunction - Evaluate a call to function F, returning true if
2189-
/// successful, false if we can't evaluate it. ActualArgs contains the formal
2190-
/// arguments for the function.
2179+
/// Evaluate a call to function F, returning true if successful, false if we
2180+
/// can't evaluate it. ActualArgs contains the formal arguments for the
2181+
/// function.
21912182
bool EvaluateFunction(Function *F, Constant *&RetVal,
21922183
const SmallVectorImpl<Constant*> &ActualArgs);
21932184

2194-
/// EvaluateBlock - Evaluate all instructions in block BB, returning true if
2195-
/// successful, false if we can't evaluate it. NewBB returns the next BB that
2196-
/// control flows into, or null upon return.
2185+
/// Evaluate all instructions in block BB, returning true if successful, false
2186+
/// if we can't evaluate it. NewBB returns the next BB that control flows
2187+
/// into, or null upon return.
21972188
bool EvaluateBlock(BasicBlock::iterator CurInst, BasicBlock *&NextBB);
21982189

21992190
Constant *getVal(Value *V) {
@@ -2218,32 +2209,31 @@ class Evaluator {
22182209
private:
22192210
Constant *ComputeLoadResult(Constant *P);
22202211

2221-
/// ValueStack - As we compute SSA register values, we store their contents
2222-
/// here. The back of the deque contains the current function and the stack
2223-
/// contains the values in the calling frames.
2212+
/// As we compute SSA register values, we store their contents here. The back
2213+
/// of the deque contains the current function and the stack contains the
2214+
/// values in the calling frames.
22242215
std::deque<DenseMap<Value*, Constant*>> ValueStack;
22252216

2226-
/// CallStack - This is used to detect recursion. In pathological situations
2227-
/// we could hit exponential behavior, but at least there is nothing
2228-
/// unbounded.
2217+
/// This is used to detect recursion. In pathological situations we could hit
2218+
/// exponential behavior, but at least there is nothing unbounded.
22292219
SmallVector<Function*, 4> CallStack;
22302220

2231-
/// MutatedMemory - For each store we execute, we update this map. Loads
2232-
/// check this to get the most up-to-date value. If evaluation is successful,
2233-
/// this state is committed to the process.
2221+
/// For each store we execute, we update this map. Loads check this to get
2222+
/// the most up-to-date value. If evaluation is successful, this state is
2223+
/// committed to the process.
22342224
DenseMap<Constant*, Constant*> MutatedMemory;
22352225

2236-
/// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2237-
/// to represent its body. This vector is needed so we can delete the
2238-
/// temporary globals when we are done.
2226+
/// To 'execute' an alloca, we create a temporary global variable to represent
2227+
/// its body. This vector is needed so we can delete the temporary globals
2228+
/// when we are done.
22392229
SmallVector<std::unique_ptr<GlobalVariable>, 32> AllocaTmps;
22402230

2241-
/// Invariants - These global variables have been marked invariant by the
2242-
/// static constructor.
2231+
/// These global variables have been marked invariant by the static
2232+
/// constructor.
22432233
SmallPtrSet<GlobalVariable*, 8> Invariants;
22442234

2245-
/// SimpleConstants - These are constants we have checked and know to be
2246-
/// simple enough to live in a static initializer of a global.
2235+
/// These are constants we have checked and know to be simple enough to live
2236+
/// in a static initializer of a global.
22472237
SmallPtrSet<Constant*, 8> SimpleConstants;
22482238

22492239
const DataLayout &DL;
@@ -2252,9 +2242,8 @@ class Evaluator {
22522242

22532243
} // anonymous namespace
22542244

2255-
/// ComputeLoadResult - Return the value that would be computed by a load from
2256-
/// P after the stores reflected by 'memory' have been performed. If we can't
2257-
/// decide, return null.
2245+
/// Return the value that would be computed by a load from P after the stores
2246+
/// reflected by 'memory' have been performed. If we can't decide, return null.
22582247
Constant *Evaluator::ComputeLoadResult(Constant *P) {
22592248
// If this memory location has been recently stored, use the stored value: it
22602249
// is the most up-to-date.
@@ -2280,9 +2269,9 @@ Constant *Evaluator::ComputeLoadResult(Constant *P) {
22802269
return nullptr; // don't know how to evaluate.
22812270
}
22822271

2283-
/// EvaluateBlock - Evaluate all instructions in block BB, returning true if
2284-
/// successful, false if we can't evaluate it. NewBB returns the next BB that
2285-
/// control flows into, or null upon return.
2272+
/// Evaluate all instructions in block BB, returning true if successful, false
2273+
/// if we can't evaluate it. NewBB returns the next BB that control flows into,
2274+
/// or null upon return.
22862275
bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
22872276
BasicBlock *&NextBB) {
22882277
// This is the main evaluation loop.
@@ -2624,9 +2613,9 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
26242613
}
26252614
}
26262615

2627-
/// EvaluateFunction - Evaluate a call to function F, returning true if
2628-
/// successful, false if we can't evaluate it. ActualArgs contains the formal
2629-
/// arguments for the function.
2616+
/// Evaluate a call to function F, returning true if successful, false if we
2617+
/// can't evaluate it. ActualArgs contains the formal arguments for the
2618+
/// function.
26302619
bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
26312620
const SmallVectorImpl<Constant*> &ActualArgs) {
26322621
// Check to see if this function is already executing (recursion). If so,
@@ -2688,8 +2677,8 @@ bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
26882677
}
26892678
}
26902679

2691-
/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2692-
/// we can. Return true if we can, false otherwise.
2680+
/// Evaluate static constructors in the function, if we can. Return true if we
2681+
/// can, false otherwise.
26932682
static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
26942683
const TargetLibraryInfo *TLI) {
26952684
// Call the function.
@@ -2752,7 +2741,7 @@ static void setUsedInitializer(GlobalVariable &V,
27522741
}
27532742

27542743
namespace {
2755-
/// \brief An easy to access representation of llvm.used and llvm.compiler.used.
2744+
/// An easy to access representation of llvm.used and llvm.compiler.used.
27562745
class LLVMUsed {
27572746
SmallPtrSet<GlobalValue *, 8> Used;
27582747
SmallPtrSet<GlobalValue *, 8> CompilerUsed;
@@ -2946,8 +2935,8 @@ static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
29462935
return Fn;
29472936
}
29482937

2949-
/// cxxDtorIsEmpty - Returns whether the given function is an empty C++
2950-
/// destructor and can therefore be eliminated.
2938+
/// Returns whether the given function is an empty C++ destructor and can
2939+
/// therefore be eliminated.
29512940
/// Note that we assume that other optimization passes have already simplified
29522941
/// the code so we only look for a function with a single basic block, where
29532942
/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and

0 commit comments

Comments
 (0)
Please sign in to comment.