mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Modified dump() to provide a little
more information for dependences between instructions that don't share a common loop. Updated the test results appropriately. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168965 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
adf0c3d82d
commit
a4eff77e37
@ -583,42 +583,40 @@ void Dependence::dump(raw_ostream &OS) const {
|
||||
else if (isInput())
|
||||
OS << "input";
|
||||
unsigned Levels = getLevels();
|
||||
if (Levels) {
|
||||
OS << " [";
|
||||
for (unsigned II = 1; II <= Levels; ++II) {
|
||||
if (isSplitable(II))
|
||||
Splitable = true;
|
||||
if (isPeelFirst(II))
|
||||
OS << 'p';
|
||||
const SCEV *Distance = getDistance(II);
|
||||
if (Distance)
|
||||
OS << *Distance;
|
||||
else if (isScalar(II))
|
||||
OS << "S";
|
||||
OS << " [";
|
||||
for (unsigned II = 1; II <= Levels; ++II) {
|
||||
if (isSplitable(II))
|
||||
Splitable = true;
|
||||
if (isPeelFirst(II))
|
||||
OS << 'p';
|
||||
const SCEV *Distance = getDistance(II);
|
||||
if (Distance)
|
||||
OS << *Distance;
|
||||
else if (isScalar(II))
|
||||
OS << "S";
|
||||
else {
|
||||
unsigned Direction = getDirection(II);
|
||||
if (Direction == DVEntry::ALL)
|
||||
OS << "*";
|
||||
else {
|
||||
unsigned Direction = getDirection(II);
|
||||
if (Direction == DVEntry::ALL)
|
||||
OS << "*";
|
||||
else {
|
||||
if (Direction & DVEntry::LT)
|
||||
OS << "<";
|
||||
if (Direction & DVEntry::EQ)
|
||||
OS << "=";
|
||||
if (Direction & DVEntry::GT)
|
||||
OS << ">";
|
||||
}
|
||||
if (Direction & DVEntry::LT)
|
||||
OS << "<";
|
||||
if (Direction & DVEntry::EQ)
|
||||
OS << "=";
|
||||
if (Direction & DVEntry::GT)
|
||||
OS << ">";
|
||||
}
|
||||
if (isPeelLast(II))
|
||||
OS << 'p';
|
||||
if (II < Levels)
|
||||
OS << " ";
|
||||
}
|
||||
if (isLoopIndependent())
|
||||
OS << "|<";
|
||||
OS << "]";
|
||||
if (Splitable)
|
||||
OS << " splitable";
|
||||
if (isPeelLast(II))
|
||||
OS << 'p';
|
||||
if (II < Levels)
|
||||
OS << " ";
|
||||
}
|
||||
if (isLoopIndependent())
|
||||
OS << "|<";
|
||||
OS << "]";
|
||||
if (Splitable)
|
||||
OS << " splitable";
|
||||
}
|
||||
OS << "!\n";
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ entry:
|
||||
br label %for.body
|
||||
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - flow!
|
||||
; CHECK: da analyze - flow [|<]!
|
||||
; CHECK: da analyze - confused!
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - confused!
|
||||
@ -388,7 +388,7 @@ entry:
|
||||
br label %for.body
|
||||
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - flow!
|
||||
; CHECK: da analyze - flow [|<]!
|
||||
; CHECK: da analyze - confused!
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - confused!
|
||||
|
@ -15,7 +15,7 @@ entry:
|
||||
store i32 0, i32* %arrayidx, align 4
|
||||
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - consistent flow!
|
||||
; CHECK: da analyze - consistent flow [|<]!
|
||||
; CHECK: da analyze - confused!
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - confused!
|
||||
@ -61,7 +61,7 @@ entry:
|
||||
store i32 0, i32* %arrayidx, align 4
|
||||
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - flow!
|
||||
; CHECK: da analyze - flow [|<]!
|
||||
; CHECK: da analyze - confused!
|
||||
; CHECK: da analyze - none!
|
||||
; CHECK: da analyze - confused!
|
||||
|
Loading…
x
Reference in New Issue
Block a user