Skip to content

Commit

Permalink
[llvm-diff] Implement diff of PHI nodes
Browse files Browse the repository at this point in the history
Implement diff of PHI nodes

Reviewed By: dblaikie

Differential Revision: https://reviews.llvm.org/D114211
  • Loading branch information
isanbard authored and bwendling committed Nov 22, 2021
1 parent 6149e57 commit 2975f37
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
28 changes: 28 additions & 0 deletions llvm/test/tools/llvm-diff/phinode.ll
@@ -0,0 +1,28 @@
; RUN: rm -f %t.ll
; RUN: cat %s | sed -e 's/ 0, %2 / 1, %2 /' > %t.ll
; RUN: not llvm-diff %s %t.ll 2>&1 | FileCheck %s

; CHECK: in function foo:
; CHECK-NEXT: in block %6 / %6:
; CHECK-NEXT: > %7 = phi i32 [ 1, %2 ], [ -1, %1 ]
; CHECK-NEXT: > ret i32 %7
; CHECK-NEXT: < %7 = phi i32 [ 0, %2 ], [ -1, %1 ]
; CHECK-NEXT: < ret i32 %7
define i32 @foo(i32 %0) #0 {
callbr void asm sideeffect "", "X,~{dirflag},~{fpsr},~{flags}"(i8* blockaddress(@foo, %6))
to label %2 [label %6]

2:
%3 = icmp eq i32 %0, 0
br i1 %3, label %6, label %4

4:
br label %5

5:
br label %5

6:
%7 = phi i32 [ 0, %2 ], [ -1, %1 ]
ret i32 %7
}
26 changes: 23 additions & 3 deletions llvm/tools/llvm-diff/lib/DifferenceEngine.cpp
Expand Up @@ -269,15 +269,35 @@ class FunctionDifferenceEngine {
} else if (isa<CallInst>(L)) {
return diffCallSites(cast<CallInst>(*L), cast<CallInst>(*R), Complain);
} else if (isa<PHINode>(L)) {
// FIXME: implement.
const PHINode &LI = cast<PHINode>(*L);
const PHINode &RI = cast<PHINode>(*R);

// This is really weird; type uniquing is broken?
if (L->getType() != R->getType()) {
if (!L->getType()->isPointerTy() || !R->getType()->isPointerTy()) {
if (LI.getType() != RI.getType()) {
if (!LI.getType()->isPointerTy() || !RI.getType()->isPointerTy()) {
if (Complain) Engine.log("different phi types");
return true;
}
}

if (LI.getNumIncomingValues() != RI.getNumIncomingValues()) {
if (Complain)
Engine.log("PHI node # of incoming values differ");
return true;
}

for (unsigned I = 0; I < LI.getNumIncomingValues(); ++I) {
if (TryUnify)
tryUnify(LI.getIncomingBlock(I), RI.getIncomingBlock(I));

if (!equivalentAsOperands(LI.getIncomingValue(I),
RI.getIncomingValue(I))) {
if (Complain)
Engine.log("PHI node incoming values differ");
return true;
}
}

return false;

// Terminators.
Expand Down

0 comments on commit 2975f37

Please sign in to comment.