ROSE 0.11.145.141
Rose/BinaryAnalysis/ModelChecker/BasicTypes.h
1#ifndef ROSE_BinaryAnalysis_ModelChecker_BasicTypes_H
2#define ROSE_BinaryAnalysis_ModelChecker_BasicTypes_H
3#include <featureTests.h>
4#ifdef ROSE_ENABLE_MODEL_CHECKER
5
6#include <Rose/Sarif/BasicTypes.h>
7#include <Sawyer/Message.h>
8#include <memory>
9#include <boost/shared_ptr.hpp>
10
11namespace Rose {
12namespace BinaryAnalysis {
13
20namespace ModelChecker {
21
22class AlwaysTrue;
24using AlwaysTruePtr = std::shared_ptr<AlwaysTrue>;
25
26class BasicBlockUnit;
28using BasicBlockUnitPtr = std::shared_ptr<BasicBlockUnit>;
29
30class BestCoverageFirst;
32using BestCoverageFirstPtr = std::shared_ptr<BestCoverageFirst>;
33
34class Engine;
36using EnginePtr = std::shared_ptr<Engine>;
37
38class ErrorTag;
40using ErrorTagPtr = std::shared_ptr<ErrorTag>;
41
42class Exception;
43
44class ExecutionUnit;
46using ExecutionUnitPtr = std::shared_ptr<ExecutionUnit>;
47
48class ExternalFunctionUnit;
50using ExternalFunctionUnitPtr = std::shared_ptr<ExternalFunctionUnit>;
51
52class FailureUnit;
54using FailureUnitPtr = std::shared_ptr<FailureUnit>;
55
56class FastestPathFirst;
58using FastestPathFirstPtr = std::shared_ptr<FastestPathFirst>;
59
60class FoundVariable;
61
62class HasFinalTags;
64using HasFinalTagsPtr = std::shared_ptr<HasFinalTags>;
65
66class InstructionUnit;
68using InstructionUnitPtr = std::shared_ptr<InstructionUnit>;
69
70class LongestPathFirst;
72using LongestPathFirstPtr = std::shared_ptr<LongestPathFirst>;
73
74class NameTag;
76using NameTagPtr = std::shared_ptr<NameTag>;
77
78class NullDereferenceTag;
80using NullDereferenceTagPtr = std::shared_ptr<NullDereferenceTag>;
81
82class OutOfBoundsTag;
84using OutOfBoundsTagPtr = std::shared_ptr<OutOfBoundsTag>;
85
86class ParseError;
87
88class Path;
90using PathPtr = std::shared_ptr<Path>;
91
92class PathNode;
94using PathNodePtr = std::shared_ptr<PathNode>;
95
96class PathPredicate;
98using PathPredicatePtr = std::shared_ptr<PathPredicate>;
99
100class PathPrioritizer;
102using PathPrioritizerPtr = std::shared_ptr<PathPrioritizer>;
103
104class PathQueue;
106using PathQueuePtr = std::shared_ptr<PathQueue>;
107
108class Periodic;
110using PeriodicPtr = std::shared_ptr<Periodic>;
111
112class RandomPathFirst;
114using RandomPathFirstPtr = std::shared_ptr<RandomPathFirst>;
115
116class SemanticCallbacks;
118using SemanticCallbacksPtr = std::shared_ptr<SemanticCallbacks>;
119
120class Settings;
122using SettingsPtr = std::shared_ptr<Settings>;
123
124class ShortestPathFirst;
126using ShortestPathFirstPtr = std::shared_ptr<ShortestPathFirst>;
127
128class SourceLister;
130using SourceListerPtr = std::shared_ptr<SourceLister>;
131
132class Tag;
134using TagPtr = std::shared_ptr<Tag>;
135
136class UninitializedVariableTag;
138using UninitializedVariableTagPtr = std::shared_ptr<UninitializedVariableTag>;
139
140class WorkerStatus;
142using WorkerStatusPtr = std::shared_ptr<WorkerStatus>;
143
144class WorkPredicate;
146using WorkPredicatePtr = std::shared_ptr<WorkPredicate>;
147
149void initDiagnostics();
150
151namespace PartitionerModel {
152 class SValue;
154
155 class RiscOperators;
156 using RiscOperatorsPtr = boost::shared_ptr<RiscOperators>;
157
158 class SemanticCallbacks;
159 using SemanticCallbacksPtr = std::shared_ptr<SemanticCallbacks>;
160}
161
163enum class TestMode {
164 OFF,
165 MAY,
166 MUST
167};
168
170enum class IoMode {
171 WRITE,
172 READ
173};
174
176enum class Prune {
177 NO,
178 YES
179};
180
181// Worker states. Used internally.
182enum class WorkerState {
183 STARTING, // thread is initializing
184 WAITING, // thread is looking for new work
185 WORKING, // thread is actively working on a path
186 FINISHED // thread will never work again and is cleaning up
187};
188
189#define UNMANAGED_WORKER ((size_t)-1) // non-ID for an unmanaged worker; I.e., a user thread
190
192Rose::Sarif::LogPtr makeSarifLog();
193
195void insertSarifRules(const Rose::Sarif::AnalysisPtr&);
196
197} // namespace
198} // namespace
199} // namespace
200
201#endif
202#endif
Collection of streams.
Definition Message.h:1606
Reference-counting intrusive smart pointer.
@ YES
Allocate memory for real.
@ NO
Only query an allocation.
boost::shared_ptr< class RiscOperators > RiscOperatorsPtr
Shared-ownership pointer to concrete RISC operations.
Sawyer::SharedPointer< class SValue > SValuePtr
Smart-ownership pointer to a concrete semantic value.
Rose::BinaryAnalysis::DataFlow::Engine< DfCfg, InstructionSemantics::BaseSemantics::StatePtr, TransferFunction, MergeFunction > Engine
Data-Flow engine.
Sawyer::SharedPointer< Engine > EnginePtr
Shared-ownership pointer for Engine.
void initDiagnostics()
Initialize diagnostics.
@ OFF
Disable colored output.
ROSE_DLL_API Sawyer::Message::Facility mlog
Diagnostic facility for the ROSE library as a whole.
Definition sageBuilder.C:58
boost::filesystem::path Path
Name of entities in a filesystem.
The ROSE library.
const char * IoMode(int64_t)
Convert Rose::BinaryAnalysis::FeasiblePath::IoMode enum constant to a string.
const char * WorkerState(int64_t)
Convert Rose::BinaryAnalysis::ModelChecker::WorkerState enum constant to a string.
const char * TestMode(int64_t)
Convert Rose::BinaryAnalysis::ModelChecker::TestMode enum constant to a string.
const char * Prune(int64_t)
Convert Rose::BinaryAnalysis::ModelChecker::Prune enum constant to a string.