@@ -275,7 +275,7 @@ bool Dependence::isAnti() const {
275275// if no subscript in the source or destination mention the induction
276276// variable associated with the loop at this level.
277277// 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 ; }
279279
280280// ===----------------------------------------------------------------------===//
281281// FullDependence methods
@@ -351,38 +351,38 @@ bool FullDependence::normalize(ScalarEvolution *SE) {
351351
352352// getDirection - Returns the direction associated with a particular common or
353353// 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 ;
356356}
357357
358358// Returns the distance (or NULL) associated with a particular common or
359359// 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 ;
362362}
363363
364364// Returns true if a particular regular or SameSD level is scalar; that is,
365365// if no subscript in the source or destination mention the induction variable
366366// 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 ;
369369}
370370
371371// Returns true if peeling the first iteration from this regular or SameSD
372372// 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 ;
375375}
376376
377377// Returns true if peeling the last iteration from this regular or SameSD
378378// 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 ;
381381}
382382
383383// 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 ;
386386}
387387
388388// inSameSDLoops - Returns true if this level is an SameSD level, i.e.,
@@ -691,7 +691,7 @@ void Dependence::dump(raw_ostream &OS) const {
691691 dumpImp (OS);
692692 unsigned SameSDLevels = getSameSDLevels ();
693693 if (SameSDLevels > 0 ) {
694- OS << " ! / assuming " << SameSDLevels << " loop level(s) fused: " ;
694+ OS << " / assuming " << SameSDLevels << " loop level(s) fused: " ;
695695 dumpImp (OS, true );
696696 }
697697 }
@@ -706,13 +706,13 @@ void Dependence::dump(raw_ostream &OS) const {
706706
707707// For debugging purposes. Dumps a dependence to OS with or without considering
708708// the SameSD levels.
709- void Dependence::dumpImp (raw_ostream &OS, bool isSameSD ) const {
709+ void Dependence::dumpImp (raw_ostream &OS, bool IsSameSD ) const {
710710 bool Splitable = false ;
711711 unsigned Levels = getLevels ();
712712 unsigned SameSDLevels = getSameSDLevels ();
713713 bool OnSameSD = false ;
714714 unsigned LevelNum = Levels;
715- if (isSameSD )
715+ if (IsSameSD )
716716 LevelNum += SameSDLevels;
717717 OS << " [" ;
718718 for (unsigned II = 1 ; II <= LevelNum; ++II) {
0 commit comments