Skip to content

Commit e6cf737

Browse files
authored
Merge pull request #19178 from aschackmull/csharp/pressa-useuse
C#: Update PreSSA to reference the new use-use predicates.
2 parents 47b1c3d + dbd99df commit e6cf737

File tree

1 file changed

+4
-6
lines changed
  • csharp/ql/lib/semmle/code/csharp/controlflow/internal

1 file changed

+4
-6
lines changed

csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll

+4-6
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,9 @@ module PreSsa {
175175
}
176176

177177
final AssignableRead getAFirstRead() {
178-
exists(SsaInput::BasicBlock bb1, int i1, SsaInput::BasicBlock bb2, int i2 |
179-
this.definesAt(_, bb1, i1) and
180-
SsaImpl::adjacentDefRead(this, bb1, i1, bb2, i2) and
181-
result = bb2.getElement(i2)
178+
exists(SsaInput::BasicBlock bb, int i |
179+
SsaImpl::firstUse(this, bb, i, true) and
180+
result = bb.getElement(i)
182181
)
183182
}
184183

@@ -216,8 +215,7 @@ module PreSsa {
216215
predicate adjacentReadPairSameVar(AssignableRead read1, AssignableRead read2) {
217216
exists(SsaInput::BasicBlock bb1, int i1, SsaInput::BasicBlock bb2, int i2 |
218217
read1 = bb1.getElement(i1) and
219-
SsaInput::variableRead(bb1, i1, _, true) and
220-
SsaImpl::adjacentDefRead(_, bb1, i1, bb2, i2) and
218+
SsaImpl::adjacentUseUse(bb1, i1, bb2, i2, _, true) and
221219
read2 = bb2.getElement(i2)
222220
)
223221
}

0 commit comments

Comments
 (0)