-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vast: Replace all usages of 'analyses' to 'analysis'.
- Loading branch information
1 parent
a894a0f
commit f7308ba
Showing
30 changed files
with
83 additions
and
84 deletions.
There are no files selected for viewing
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ endif() | |
|
||
add_subdirectory(Tower) | ||
add_subdirectory(Util) | ||
add_subdirectory(Analyses) | ||
add_subdirectory(Analysis) |
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
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 was deleted.
Oops, something went wrong.
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
File renamed without changes.
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,26 @@ | ||
// Copyright (c) 2024, Trail of Bits, Inc. | ||
|
||
#ifndef VAST_INTERFACES_ANALYSIS_COMMON | ||
#define VAST_INTERFACES_ANALYSIS_COMMON | ||
|
||
include "mlir/IR/OpBase.td" | ||
|
||
class VAST_AnalysisOpInterface<string name, list<Interface> baseInterfaces = []> | ||
: OpInterface<name, baseInterfaces> | ||
{ | ||
let cppNamespace = "::vast::analysis"; | ||
} | ||
|
||
class VAST_AnalysisTypeInterface<string name, list<Interface> baseInterfaces = []> | ||
: TypeInterface<name, baseInterfaces> | ||
{ | ||
let cppNamespace = "::vast::analysis"; | ||
} | ||
|
||
class VAST_AnalysisAttrInterface<string name, list<Interface> baseInterfaces = []> | ||
: AttrInterface<name, baseInterfaces> | ||
{ | ||
let cppNamespace = "::vast::analysis"; | ||
} | ||
|
||
#endif // VAST_INTERFACES_ANALYSIS_COMMON |
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 was deleted.
Oops, something went wrong.
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,3 @@ | ||
add_vast_library(Analysis | ||
Iterators.cpp | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ endif() | |
|
||
add_subdirectory(Tower) | ||
add_subdirectory(Util) | ||
add_subdirectory(Analyses) | ||
add_subdirectory(Analysis) |
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
4 changes: 2 additions & 2 deletions
4
...Analyses/AnalysisDeclContextInterface.cpp → ...Analysis/AnalysisDeclContextInterface.cpp
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// Copyright (c) 2024-present, Trail of Bits, Inc. | ||
|
||
#include "vast/Interfaces/Analyses/AnalysisDeclContextInterface.hpp" | ||
#include "vast/Interfaces/Analysis/AnalysisDeclContextInterface.hpp" | ||
|
||
//===----------------------------------------------------------------------===// | ||
// ASTNodes Op Interface | ||
//===----------------------------------------------------------------------===// | ||
|
||
/// Include the generated interface. | ||
#include "vast/Interfaces/Analyses/AnalysisDeclContextInterface.cpp.inc" | ||
#include "vast/Interfaces/Analysis/AnalysisDeclContextInterface.cpp.inc" |
2 changes: 1 addition & 1 deletion
2
lib/vast/Interfaces/Analyses/CMakeLists.txt → lib/vast/Interfaces/Analysis/CMakeLists.txt
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2024-present, Trail of Bits, Inc. | ||
|
||
add_vast_interface_library(InterfacesAnalyses | ||
add_vast_interface_library(InterfacesAnalysis | ||
AnalysisDeclContextInterface.cpp | ||
) |
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
Oops, something went wrong.