@@ -100,8 +100,8 @@ INITIALIZE_PASS_END(GlobalOpt, "globalopt",
100
100
101
101
ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt (); }
102
102
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.
105
105
static bool isLeakCheckerRoot (GlobalVariable *GV) {
106
106
// A global variable is a root if it is a pointer, or could plausibly contain
107
107
// 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) {
176
176
} while (1 );
177
177
}
178
178
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.
183
182
static bool CleanupPointerRootUsers (GlobalVariable *GV,
184
183
const TargetLibraryInfo *TLI) {
185
184
// A brief explanation of leak checkers. The goal is to find bugs where
@@ -263,10 +262,9 @@ static bool CleanupPointerRootUsers(GlobalVariable *GV,
263
262
return Changed;
264
263
}
265
264
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.
270
268
static bool CleanupConstantGlobalUsers (Value *V, Constant *Init,
271
269
const DataLayout &DL,
272
270
TargetLibraryInfo *TLI) {
@@ -353,8 +351,8 @@ static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
353
351
return Changed;
354
352
}
355
353
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.
358
356
static bool isSafeSROAElementUse (Value *V) {
359
357
// We might have a dead and dangling constant hanging off of here.
360
358
if (Constant *C = dyn_cast<Constant>(V))
@@ -385,9 +383,8 @@ static bool isSafeSROAElementUse(Value *V) {
385
383
}
386
384
387
385
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.
391
388
static bool IsUserOfGlobalSafeForSRA (User *U, GlobalValue *GV) {
392
389
// The user of the global must be a GEP Inst or a ConstantExpr GEP.
393
390
if (!isa<GetElementPtrInst>(U) &&
@@ -452,9 +449,8 @@ static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
452
449
return true ;
453
450
}
454
451
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.
458
454
static bool GlobalUsersSafeToSRA (GlobalValue *GV) {
459
455
for (User *U : GV->users ())
460
456
if (!IsUserOfGlobalSafeForSRA (U, GV))
@@ -464,10 +460,10 @@ static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
464
460
}
465
461
466
462
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
471
467
// / insert so that the caller can reprocess it.
472
468
static GlobalVariable *SRAGlobal (GlobalVariable *GV, const DataLayout &DL) {
473
469
// Make sure this global only has simple uses that we can SRA.
@@ -612,9 +608,9 @@ static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
612
608
return FirstGlobal != NewGlobals.size () ? NewGlobals[FirstGlobal] : nullptr ;
613
609
}
614
610
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.
618
614
static bool AllUsesOfValueWillTrapIfNull (const Value *V,
619
615
SmallPtrSetImpl<const PHINode*> &PHIs) {
620
616
for (const User *U : V->users ())
@@ -655,9 +651,9 @@ static bool AllUsesOfValueWillTrapIfNull(const Value *V,
655
651
return true ;
656
652
}
657
653
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.
661
657
static bool AllUsesOfLoadedValueWillTrapIfNull (const GlobalVariable *GV) {
662
658
for (const User *U : GV->users ())
663
659
if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
@@ -737,10 +733,10 @@ static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
737
733
}
738
734
739
735
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.
744
740
static bool OptimizeAwayTrappingUsesOfLoads (GlobalVariable *GV, Constant *LV,
745
741
const DataLayout &DL,
746
742
TargetLibraryInfo *TLI) {
@@ -803,8 +799,8 @@ static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
803
799
return Changed;
804
800
}
805
801
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.
808
804
static void ConstantPropUsersOf (Value *V, const DataLayout &DL,
809
805
TargetLibraryInfo *TLI) {
810
806
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,
820
816
}
821
817
}
822
818
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.
828
824
static GlobalVariable *
829
825
OptimizeGlobalAddressOfMalloc (GlobalVariable *GV, CallInst *CI, Type *AllocTy,
830
826
ConstantInt *NElements, const DataLayout &DL,
@@ -953,10 +949,9 @@ OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
953
949
return NewGV;
954
950
}
955
951
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.
960
955
static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal (const Instruction *V,
961
956
const GlobalVariable *GV,
962
957
SmallPtrSetImpl<const PHINode*> &PHIs) {
@@ -1000,10 +995,9 @@ static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
1000
995
return true ;
1001
996
}
1002
997
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
1007
1001
// / 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
1008
1002
static void ReplaceUsesOfMallocWithGlobal (Instruction *Alloc,
1009
1003
GlobalVariable *GV) {
@@ -1045,9 +1039,9 @@ static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
1045
1039
}
1046
1040
}
1047
1041
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.
1051
1045
static bool LoadUsesSimpleEnoughForHeapSRA (const Value *V,
1052
1046
SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1053
1047
SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
@@ -1098,8 +1092,8 @@ static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
1098
1092
}
1099
1093
1100
1094
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.
1103
1097
static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA (const GlobalVariable *GV,
1104
1098
Instruction *StoredVal) {
1105
1099
SmallPtrSet<const PHINode*, 32 > LoadUsingPHIs;
@@ -1188,8 +1182,8 @@ static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1188
1182
return FieldVals[FieldNo] = Result;
1189
1183
}
1190
1184
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.
1193
1187
static void RewriteHeapSROALoadUser (Instruction *LoadUser,
1194
1188
DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1195
1189
std::vector<std::pair<PHINode*, unsigned > > &PHIsToRewrite) {
@@ -1250,10 +1244,9 @@ static void RewriteHeapSROALoadUser(Instruction *LoadUser,
1250
1244
}
1251
1245
}
1252
1246
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.
1257
1250
static void RewriteUsesOfLoadForHeapSRoA (LoadInst *Load,
1258
1251
DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1259
1252
std::vector<std::pair<PHINode*, unsigned > > &PHIsToRewrite) {
@@ -1268,8 +1261,8 @@ static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
1268
1261
}
1269
1262
}
1270
1263
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.
1273
1266
static GlobalVariable *PerformHeapAllocSRoA (GlobalVariable *GV, CallInst *CI,
1274
1267
Value *NElems, const DataLayout &DL,
1275
1268
const TargetLibraryInfo *TLI) {
@@ -1379,9 +1372,8 @@ static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
1379
1372
// CI is no longer needed, remove it.
1380
1373
CI->eraseFromParent ();
1381
1374
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.
1385
1377
DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1386
1378
InsertedScalarizedValues[GV] = FieldGlobals;
1387
1379
@@ -1457,9 +1449,8 @@ static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
1457
1449
return cast<GlobalVariable>(FieldGlobals[0 ]);
1458
1450
}
1459
1451
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.
1463
1454
static bool TryToOptimizeStoreOfMallocToGlobal (GlobalVariable *GV, CallInst *CI,
1464
1455
Type *AllocTy,
1465
1456
AtomicOrdering Ordering,
@@ -1592,10 +1583,10 @@ static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
1592
1583
return false ;
1593
1584
}
1594
1585
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.
1599
1590
static bool TryToShrinkGlobalToBoolean (GlobalVariable *GV, Constant *OtherVal) {
1600
1591
Type *GVElType = GV->getType ()->getElementType ();
1601
1592
@@ -1694,8 +1685,8 @@ static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1694
1685
}
1695
1686
1696
1687
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.
1699
1690
bool GlobalOpt::ProcessGlobal (GlobalVariable *GV,
1700
1691
Module::global_iterator &GVI) {
1701
1692
// Do more involved optimizations if the global is internal.
@@ -1727,7 +1718,7 @@ bool GlobalOpt::ProcessGlobal(GlobalVariable *GV,
1727
1718
return ProcessInternalGlobal (GV, GVI, GS);
1728
1719
}
1729
1720
1730
- // / ProcessInternalGlobal - Analyze the specified global variable and optimize
1721
+ // / Analyze the specified global variable and optimize
1731
1722
// / it if possible. If we make a change, return true.
1732
1723
bool GlobalOpt::ProcessInternalGlobal (GlobalVariable *GV,
1733
1724
Module::global_iterator &GVI,
@@ -1855,8 +1846,8 @@ bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
1855
1846
return false ;
1856
1847
}
1857
1848
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.
1860
1851
static void ChangeCalleesToFastCall (Function *F) {
1861
1852
for (User *U : F->users ()) {
1862
1853
if (isa<BlockAddress>(U))
@@ -1973,8 +1964,8 @@ isSimpleEnoughValueToCommit(Constant *C,
1973
1964
SmallPtrSetImpl<Constant *> &SimpleConstants,
1974
1965
const DataLayout &DL);
1975
1966
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:
1978
1969
// / void *X = &X/42;
1979
1970
// / because the code generator doesn't have a relocation that can handle that.
1980
1971
// /
@@ -2049,11 +2040,11 @@ isSimpleEnoughValueToCommit(Constant *C,
2049
2040
}
2050
2041
2051
2042
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.
2057
2048
static bool isSimpleEnoughPointerToCommit (Constant *C) {
2058
2049
// Conservatively, avoid aggregate types. This is because we don't
2059
2050
// want to worry about them partially overlapping other stores.
@@ -2100,9 +2091,9 @@ static bool isSimpleEnoughPointerToCommit(Constant *C) {
2100
2091
return false ;
2101
2092
}
2102
2093
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.
2106
2097
static Constant *EvaluateStoreInto (Constant *Init, Constant *Val,
2107
2098
ConstantExpr *Addr, unsigned OpNo) {
2108
2099
// Base case of the recursion.
@@ -2149,7 +2140,7 @@ static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2149
2140
return ConstantVector::get (Elts);
2150
2141
}
2151
2142
2152
- // / CommitValueTo - We have decided that Addr (which satisfies the predicate
2143
+ // / We have decided that Addr (which satisfies the predicate
2153
2144
// / isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2154
2145
static void CommitValueTo (Constant *Val, Constant *Addr) {
2155
2146
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
@@ -2165,10 +2156,10 @@ static void CommitValueTo(Constant *Val, Constant *Addr) {
2165
2156
2166
2157
namespace {
2167
2158
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.
2172
2163
class Evaluator {
2173
2164
public:
2174
2165
Evaluator (const DataLayout &DL, const TargetLibraryInfo *TLI)
@@ -2185,15 +2176,15 @@ class Evaluator {
2185
2176
Tmp->replaceAllUsesWith (Constant::getNullValue (Tmp->getType ()));
2186
2177
}
2187
2178
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.
2191
2182
bool EvaluateFunction (Function *F, Constant *&RetVal,
2192
2183
const SmallVectorImpl<Constant*> &ActualArgs);
2193
2184
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.
2197
2188
bool EvaluateBlock (BasicBlock::iterator CurInst, BasicBlock *&NextBB);
2198
2189
2199
2190
Constant *getVal (Value *V) {
@@ -2218,32 +2209,31 @@ class Evaluator {
2218
2209
private:
2219
2210
Constant *ComputeLoadResult (Constant *P);
2220
2211
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.
2224
2215
std::deque<DenseMap<Value*, Constant*>> ValueStack;
2225
2216
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.
2229
2219
SmallVector<Function*, 4 > CallStack;
2230
2220
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.
2234
2224
DenseMap<Constant*, Constant*> MutatedMemory;
2235
2225
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.
2239
2229
SmallVector<std::unique_ptr<GlobalVariable>, 32 > AllocaTmps;
2240
2230
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.
2243
2233
SmallPtrSet<GlobalVariable*, 8 > Invariants;
2244
2234
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.
2247
2237
SmallPtrSet<Constant*, 8 > SimpleConstants;
2248
2238
2249
2239
const DataLayout &DL;
@@ -2252,9 +2242,8 @@ class Evaluator {
2252
2242
2253
2243
} // anonymous namespace
2254
2244
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.
2258
2247
Constant *Evaluator::ComputeLoadResult (Constant *P) {
2259
2248
// If this memory location has been recently stored, use the stored value: it
2260
2249
// is the most up-to-date.
@@ -2280,9 +2269,9 @@ Constant *Evaluator::ComputeLoadResult(Constant *P) {
2280
2269
return nullptr ; // don't know how to evaluate.
2281
2270
}
2282
2271
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.
2286
2275
bool Evaluator::EvaluateBlock (BasicBlock::iterator CurInst,
2287
2276
BasicBlock *&NextBB) {
2288
2277
// This is the main evaluation loop.
@@ -2624,9 +2613,9 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
2624
2613
}
2625
2614
}
2626
2615
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.
2630
2619
bool Evaluator::EvaluateFunction (Function *F, Constant *&RetVal,
2631
2620
const SmallVectorImpl<Constant*> &ActualArgs) {
2632
2621
// Check to see if this function is already executing (recursion). If so,
@@ -2688,8 +2677,8 @@ bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
2688
2677
}
2689
2678
}
2690
2679
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.
2693
2682
static bool EvaluateStaticConstructor (Function *F, const DataLayout &DL,
2694
2683
const TargetLibraryInfo *TLI) {
2695
2684
// Call the function.
@@ -2752,7 +2741,7 @@ static void setUsedInitializer(GlobalVariable &V,
2752
2741
}
2753
2742
2754
2743
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.
2756
2745
class LLVMUsed {
2757
2746
SmallPtrSet<GlobalValue *, 8 > Used;
2758
2747
SmallPtrSet<GlobalValue *, 8 > CompilerUsed;
@@ -2946,8 +2935,8 @@ static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
2946
2935
return Fn;
2947
2936
}
2948
2937
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.
2951
2940
// / Note that we assume that other optimization passes have already simplified
2952
2941
// / the code so we only look for a function with a single basic block, where
2953
2942
// / the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
0 commit comments