Skip to content

Commit 3fb6d39

Browse files
committed
Data flow: Store/load matching in pruning stage 3
1 parent 67d9437 commit 3fb6d39

File tree

3 files changed

+563
-38
lines changed

3 files changed

+563
-38
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

+3-2
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ signature module InputSig<LocationSig Location> {
265265
*/
266266
predicate isUnreachableInCall(NodeRegion nr, DataFlowCall call);
267267

268+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
268269
default int accessPathLimit() { result = 5 }
269270

270271
/**
@@ -401,7 +402,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
401402
*/
402403
default int fieldFlowBranchLimit() { result = 2 }
403404

404-
/** Gets the access path limit. */
405+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
405406
default int accessPathLimit() { result = Lang::accessPathLimit() }
406407

407408
/**
@@ -517,7 +518,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
517518
*/
518519
default int fieldFlowBranchLimit() { result = 2 }
519520

520-
/** Gets the access path limit. */
521+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
521522
default int accessPathLimit() { result = Lang::accessPathLimit() }
522523

523524
/**

0 commit comments

Comments
 (0)