-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make control-flow sensitive DFG pass configurable by complexity (#1356)
* Removed `parent` from `hashCode` of `Scope` This was causing MAJOR performance problems, since we are using the `hashCode` in the symbol resolver for caching. This had the effect that on deeply nested scopes, performance dropped quite largely. * Comparing scope in case of a cache hit to avoid collisions * Make control-flow sensitive DFG pass configurable by complexity This calculates a simple cylic complexity for functions and adds a configuration option to specify a max for the control-flow sensitive DFG pass. * Extracted configuration in a more generic pass-specific config * Added unit test
- Loading branch information
Showing
6 changed files
with
168 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
cpg-core/src/test/kotlin/de/fraunhofer/aisec/cpg/passes/ControlFlowSensitiveDFGPassTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright (c) 2023, Fraunhofer AISEC. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* $$$$$$\ $$$$$$$\ $$$$$$\ | ||
* $$ __$$\ $$ __$$\ $$ __$$\ | ||
* $$ / \__|$$ | $$ |$$ / \__| | ||
* $$ | $$$$$$$ |$$ |$$$$\ | ||
* $$ | $$ ____/ $$ |\_$$ | | ||
* $$ | $$\ $$ | $$ | $$ | | ||
* \$$$$$ |$$ | \$$$$$ | | ||
* \______/ \__| \______/ | ||
* | ||
*/ | ||
package de.fraunhofer.aisec.cpg.passes | ||
|
||
import de.fraunhofer.aisec.cpg.TranslationConfiguration | ||
import de.fraunhofer.aisec.cpg.frontends.TestLanguage | ||
import de.fraunhofer.aisec.cpg.graph.builder.* | ||
import kotlin.test.Test | ||
import kotlin.test.assertNotNull | ||
|
||
class ControlFlowSensitiveDFGPassTest { | ||
@Test | ||
fun testConfiguration() { | ||
val result = getForEachTest() | ||
assertNotNull(result) | ||
} | ||
|
||
fun getForEachTest() = | ||
ControlDependenceGraphPassTest.testFrontend( | ||
TranslationConfiguration.builder() | ||
.registerLanguage(TestLanguage("::")) | ||
.defaultPasses() | ||
.registerPass<ControlFlowSensitiveDFGPass>() | ||
.configurePass<ControlFlowSensitiveDFGPass>( | ||
ControlFlowSensitiveDFGPass.Configuration(maxComplexity = 0) | ||
) | ||
.build() | ||
) | ||
.build { | ||
translationResult { | ||
translationUnit("forEach.cpp") { | ||
// The main method | ||
function("main", t("int")) { | ||
body { | ||
declare { variable("i", t("int")) { literal(0, t("int")) } } | ||
forEachStmt { | ||
declare { variable("loopVar", t("string")) } | ||
call("magicFunction") | ||
loopBody { | ||
call("printf") { | ||
literal("loop: \${}\n", t("string")) | ||
ref("loopVar") | ||
} | ||
} | ||
} | ||
call("printf") { literal("1\n", t("string")) } | ||
|
||
returnStmt { ref("i") } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |