-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a
LookupScopeStatement
node (#1742)
- Loading branch information
Showing
7 changed files
with
313 additions
and
8 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
61 changes: 61 additions & 0 deletions
61
cpg-core/src/main/kotlin/de/fraunhofer/aisec/cpg/graph/statements/LookupScopeStatement.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,61 @@ | ||
/* | ||
* Copyright (c) 2024, 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.graph.statements | ||
|
||
import de.fraunhofer.aisec.cpg.graph.newLookupScopeStatement | ||
import de.fraunhofer.aisec.cpg.graph.scopes.Scope | ||
import de.fraunhofer.aisec.cpg.graph.scopes.Symbol | ||
import de.fraunhofer.aisec.cpg.graph.statements.expressions.Reference | ||
import java.util.Objects | ||
|
||
/** | ||
* This statement modifies the lookup scope of one or more [Reference] nodes (or more precise it's | ||
* symbols) within the current [Scope]. The most prominent example of this are the Python `global` | ||
* and `nonlocal` keywords. | ||
* | ||
* This node itself does not implement the actual functionality. It is necessary to add this node | ||
* (or the information therein) to [Scope.predefinedLookupScopes]. The reason for this is that we | ||
* want to avoid AST traversals in the scope/identifier lookup. | ||
* | ||
* The [newLookupScopeStatement] node builder will add this automatically, so it is STRONGLY | ||
* encouraged that the node builder is used instead of creating the node itself. | ||
*/ | ||
class LookupScopeStatement : Statement() { | ||
|
||
/** The symbols this statement affects. */ | ||
var symbols: List<Symbol> = listOf() | ||
|
||
/** The target scope to which the references are referring to. */ | ||
var targetScope: Scope? = null | ||
|
||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (other !is LookupScopeStatement) return false | ||
return super.equals(other) && symbols == other.symbols && targetScope == other.targetScope | ||
} | ||
|
||
override fun hashCode() = Objects.hash(super.hashCode(), symbols, targetScope) | ||
} |
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
98 changes: 98 additions & 0 deletions
98
cpg-core/src/test/kotlin/de/fraunhofer/aisec/cpg/graph/StatementBuilderTest.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,98 @@ | ||
/* | ||
* Copyright (c) 2024, 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.graph | ||
|
||
import de.fraunhofer.aisec.cpg.ScopeManager | ||
import de.fraunhofer.aisec.cpg.TranslationConfiguration | ||
import de.fraunhofer.aisec.cpg.TranslationContext | ||
import de.fraunhofer.aisec.cpg.TypeManager | ||
import de.fraunhofer.aisec.cpg.frontends.TestLanguageFrontend | ||
import de.fraunhofer.aisec.cpg.graph.builder.translationResult | ||
import de.fraunhofer.aisec.cpg.graph.scopes.GlobalScope | ||
import de.fraunhofer.aisec.cpg.test.assertRefersTo | ||
import kotlin.test.Test | ||
import kotlin.test.assertIs | ||
import kotlin.test.assertNotNull | ||
|
||
class StatementBuilderTest { | ||
@Test | ||
fun testNewLookupScopeStatement() { | ||
val frontend = | ||
TestLanguageFrontend( | ||
ctx = | ||
TranslationContext( | ||
TranslationConfiguration.builder().defaultPasses().build(), | ||
ScopeManager(), | ||
TypeManager() | ||
) | ||
) | ||
val result = | ||
frontend.build { | ||
translationResult { | ||
var tu = | ||
with(frontend) { | ||
var tu = newTranslationUnitDeclaration("main.file") | ||
scopeManager.resetToGlobal(tu) | ||
|
||
var globalA = newVariableDeclaration("a") | ||
scopeManager.addDeclaration(globalA) | ||
|
||
var func = newFunctionDeclaration("main") | ||
scopeManager.enterScope(func) | ||
|
||
var body = newBlock() | ||
scopeManager.enterScope(body) | ||
|
||
var localA = newVariableDeclaration("a") | ||
var stmt = newDeclarationStatement() | ||
stmt.declarations += localA | ||
scopeManager.addDeclaration(localA) | ||
body += stmt | ||
|
||
body += newLookupScopeStatement(listOf("a"), scopeManager.globalScope) | ||
body += newReference("a") | ||
|
||
scopeManager.leaveScope(body) | ||
func.body = body | ||
scopeManager.leaveScope(func) | ||
|
||
scopeManager.addDeclaration(func) | ||
scopeManager.leaveScope(tu) | ||
tu | ||
} | ||
|
||
components.firstOrNull()?.translationUnits?.add(tu) | ||
} | ||
} | ||
|
||
val globalA = result.variables["a"] | ||
assertNotNull(globalA) | ||
assertIs<GlobalScope>(globalA.scope) | ||
|
||
val a = result.refs["a"] | ||
assertRefersTo(a, globalA) | ||
} | ||
} |
Oops, something went wrong.