@@ -81,7 +81,7 @@ module Sem implements Semantic {
81
81
private import java as J
82
82
private import SSA as SSA
83
83
private import RangeUtils as RU
84
- private import semmle.code.java.dataflow.internal.rangeanalysis.SsaReadPositionCommon as SSAReadPos
84
+ private import semmle.code.java.dataflow.internal.rangeanalysis.SsaReadPositionCommon as SsaReadPos
85
85
private import semmle.code.java.controlflow.internal.GuardsLogic as GL
86
86
87
87
class Expr = J:: Expr ;
@@ -230,18 +230,18 @@ module Sem implements Semantic {
230
230
231
231
class SsaExplicitUpdate extends SsaVariable instanceof SSA:: SsaExplicitUpdate { }
232
232
233
- final private class FinalSsaReadPosition = SSAReadPos :: SsaReadPosition ;
233
+ final private class FinalSsaReadPosition = SsaReadPos :: SsaReadPosition ;
234
234
235
235
class SsaReadPosition extends FinalSsaReadPosition {
236
236
predicate hasReadOfVar ( SsaVariable v ) { super .hasReadOfVar ( v ) }
237
237
}
238
238
239
- class SsaReadPositionPhiInputEdge extends SsaReadPosition instanceof SSAReadPos :: SsaReadPositionPhiInputEdge
239
+ class SsaReadPositionPhiInputEdge extends SsaReadPosition instanceof SsaReadPos :: SsaReadPositionPhiInputEdge
240
240
{
241
241
predicate phiInput ( SsaPhiNode phi , SsaVariable inp ) { super .phiInput ( phi , inp ) }
242
242
}
243
243
244
- class SsaReadPositionBlock extends SsaReadPosition instanceof SSAReadPos :: SsaReadPositionBlock {
244
+ class SsaReadPositionBlock extends SsaReadPosition instanceof SsaReadPos :: SsaReadPositionBlock {
245
245
BasicBlock getBlock ( ) { result = super .getBlock ( ) }
246
246
}
247
247
@@ -374,7 +374,7 @@ module JavaLangImpl implements LangSig<Sem, IntDelta> {
374
374
375
375
module Utils implements UtilSig< Sem , IntDelta > {
376
376
private import RangeUtils as RU
377
- private import semmle.code.java.dataflow.internal.rangeanalysis.SsaReadPositionCommon as SSAReadPos
377
+ private import semmle.code.java.dataflow.internal.rangeanalysis.SsaReadPositionCommon as SsaReadPos
378
378
379
379
Sem:: Expr semSsaRead ( Sem:: SsaVariable v , int delta ) { result = RU:: ssaRead ( v , delta ) }
380
380
@@ -399,10 +399,10 @@ module Utils implements UtilSig<Sem, IntDelta> {
399
399
predicate rankedPhiInput (
400
400
Sem:: SsaPhiNode phi , Sem:: SsaVariable inp , Sem:: SsaReadPositionPhiInputEdge edge , int r
401
401
) {
402
- SSAReadPos :: rankedPhiInput ( phi , inp , edge , r )
402
+ SsaReadPos :: rankedPhiInput ( phi , inp , edge , r )
403
403
}
404
404
405
- predicate maxPhiInputRank ( Sem:: SsaPhiNode phi , int rix ) { SSAReadPos :: maxPhiInputRank ( phi , rix ) }
405
+ predicate maxPhiInputRank ( Sem:: SsaPhiNode phi , int rix ) { SsaReadPos :: maxPhiInputRank ( phi , rix ) }
406
406
}
407
407
408
408
module Bounds implements BoundSig< Location , Sem , IntDelta > {
0 commit comments