@@ -275,7 +275,7 @@ bool Dependence::isAnti() const {
275
275
// if no subscript in the source or destination mention the induction
276
276
// variable associated with the loop at this level.
277
277
// Leave this out of line, so it will serve as a virtual method anchor
278
- bool Dependence::isScalar (unsigned level, bool isSameSD ) const { return false ; }
278
+ bool Dependence::isScalar (unsigned level, bool IsSameSD ) const { return false ; }
279
279
280
280
// ===----------------------------------------------------------------------===//
281
281
// FullDependence methods
@@ -351,38 +351,38 @@ bool FullDependence::normalize(ScalarEvolution *SE) {
351
351
352
352
// getDirection - Returns the direction associated with a particular common or
353
353
// SameSD level.
354
- unsigned FullDependence::getDirection (unsigned Level, bool isSameSD ) const {
355
- return getDVEntry (Level, isSameSD ).Direction ;
354
+ unsigned FullDependence::getDirection (unsigned Level, bool IsSameSD ) const {
355
+ return getDVEntry (Level, IsSameSD ).Direction ;
356
356
}
357
357
358
358
// Returns the distance (or NULL) associated with a particular common or
359
359
// SameSD level.
360
- const SCEV *FullDependence::getDistance (unsigned Level, bool isSameSD ) const {
361
- return getDVEntry (Level, isSameSD ).Distance ;
360
+ const SCEV *FullDependence::getDistance (unsigned Level, bool IsSameSD ) const {
361
+ return getDVEntry (Level, IsSameSD ).Distance ;
362
362
}
363
363
364
364
// Returns true if a particular regular or SameSD level is scalar; that is,
365
365
// if no subscript in the source or destination mention the induction variable
366
366
// associated with the loop at this level.
367
- bool FullDependence::isScalar (unsigned Level, bool isSameSD ) const {
368
- return getDVEntry (Level, isSameSD ).Scalar ;
367
+ bool FullDependence::isScalar (unsigned Level, bool IsSameSD ) const {
368
+ return getDVEntry (Level, IsSameSD ).Scalar ;
369
369
}
370
370
371
371
// Returns true if peeling the first iteration from this regular or SameSD
372
372
// loop level will break this dependence.
373
- bool FullDependence::isPeelFirst (unsigned Level, bool isSameSD ) const {
374
- return getDVEntry (Level, isSameSD ).PeelFirst ;
373
+ bool FullDependence::isPeelFirst (unsigned Level, bool IsSameSD ) const {
374
+ return getDVEntry (Level, IsSameSD ).PeelFirst ;
375
375
}
376
376
377
377
// Returns true if peeling the last iteration from this regular or SameSD
378
378
// loop level will break this dependence.
379
- bool FullDependence::isPeelLast (unsigned Level, bool isSameSD ) const {
380
- return getDVEntry (Level, isSameSD ).PeelLast ;
379
+ bool FullDependence::isPeelLast (unsigned Level, bool IsSameSD ) const {
380
+ return getDVEntry (Level, IsSameSD ).PeelLast ;
381
381
}
382
382
383
383
// Returns true if splitting loop will break the dependence.
384
- bool FullDependence::isSplitable (unsigned Level, bool isSameSD ) const {
385
- return getDVEntry (Level, isSameSD ).Splitable ;
384
+ bool FullDependence::isSplitable (unsigned Level, bool IsSameSD ) const {
385
+ return getDVEntry (Level, IsSameSD ).Splitable ;
386
386
}
387
387
388
388
// inSameSDLoops - Returns true if this level is an SameSD level, i.e.,
@@ -691,7 +691,7 @@ void Dependence::dump(raw_ostream &OS) const {
691
691
dumpImp (OS);
692
692
unsigned SameSDLevels = getSameSDLevels ();
693
693
if (SameSDLevels > 0 ) {
694
- OS << " ! / assuming " << SameSDLevels << " loop level(s) fused: " ;
694
+ OS << " / assuming " << SameSDLevels << " loop level(s) fused: " ;
695
695
dumpImp (OS, true );
696
696
}
697
697
}
@@ -706,13 +706,13 @@ void Dependence::dump(raw_ostream &OS) const {
706
706
707
707
// For debugging purposes. Dumps a dependence to OS with or without considering
708
708
// the SameSD levels.
709
- void Dependence::dumpImp (raw_ostream &OS, bool isSameSD ) const {
709
+ void Dependence::dumpImp (raw_ostream &OS, bool IsSameSD ) const {
710
710
bool Splitable = false ;
711
711
unsigned Levels = getLevels ();
712
712
unsigned SameSDLevels = getSameSDLevels ();
713
713
bool OnSameSD = false ;
714
714
unsigned LevelNum = Levels;
715
- if (isSameSD )
715
+ if (IsSameSD )
716
716
LevelNum += SameSDLevels;
717
717
OS << " [" ;
718
718
for (unsigned II = 1 ; II <= LevelNum; ++II) {
0 commit comments