Skip to content

Commit aa4436f

Browse files
C++: More IR reshuffling
Remove redundant "_ir" suffix. Move non-user-importable modules into "implementation" directory.
1 parent 97cfbd9 commit aa4436f

File tree

88 files changed

+73
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+73
-74
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Most queries should operate on the aliased SSA IR, so that's what we expose
22
// publically as the "IR".
3-
import internal.aliased_ssa_ir.IR
3+
import internal.aliased_ssa.IR

cpp/ql/src/semmle/code/cpp/ir/IRSanity.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* @id cpp/ir-sanity-check
66
*/
77

8-
import internal.aliased_ssa_ir.IRSanity
8+
import internal.aliased_ssa.IRSanity

cpp/ql/src/semmle/code/cpp/ir/Opcode.qll

Lines changed: 0 additions & 1 deletion
This file was deleted.

cpp/ql/src/semmle/code/cpp/ir/PrintIR.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* @kind graph
66
*/
77

8-
import internal.aliased_ssa_ir.PrintIR
8+
import internal.aliased_ssa.PrintIR
File renamed without changes.

cpp/ql/src/semmle/code/cpp/ir/MemoryAccessKind.qll renamed to cpp/ql/src/semmle/code/cpp/ir/implementation/MemoryAccessKind.qll

File renamed without changes.
File renamed without changes.

cpp/ql/src/semmle/code/cpp/ir/TempVariableTag.qll renamed to cpp/ql/src/semmle/code/cpp/ir/implementation/TempVariableTag.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import cpp
2-
private import internal.TempVariableTag
2+
private import semmle.code.cpp.ir.internal.TempVariableTag
33

44
class TempVariableTag extends TTempVariableTag {
55
string toString() {

cpp/ql/src/semmle/code/cpp/ir/ValueCategory.qll renamed to cpp/ql/src/semmle/code/cpp/ir/implementation/ValueCategory.qll

File renamed without changes.

cpp/ql/src/semmle/code/cpp/ir/internal/aliased_ssa_ir/AliasAnalysis.qll renamed to cpp/ql/src/semmle/code/cpp/ir/internal/aliased_ssa/AliasAnalysis.qll

File renamed without changes.

0 commit comments

Comments
 (0)