X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=55ead2954e92ea34cbd6a30f4bd7f625f1748f27;hp=c6a7cb7f434902896e69c9f0cf20a4bf3687458e;hb=3896ad686a910868d7bf2988cd83a4fe3da700b2;hpb=2ef6d0360a8317b47f1a78990e2ed2f660855b53 diff --git a/src/classlist.h b/src/classlist.h index c6a7cb7..55ead29 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -9,45 +9,77 @@ #ifndef CLASSLIST_H #define CLASSLIST_H -//#include "hashset.h" + #include "mymemory.h" #include -#define bool int -#define true 1 -#define false 0 +#include "classes.h" +#include "astnode.h" -struct CSolver; -typedef struct CSolver CSolver; -struct Constraint; -typedef struct Constraint Constraint; +class BooleanOrder; +class BooleanVar; -struct Boolean; -typedef struct Boolean Boolean; +class BooleanPredicate; +class ASTNode; + + + +class ElementFunction; +class ElementSet; +class ElementConst; + +class FunctionOperator; +class FunctionTable; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; +class PredicateTable; +class PredicateOperator; -struct Element; -typedef struct Element Element; -struct Function; -typedef struct Function Function; +class OrderPair; -struct Predicate; -typedef struct Predicate Predicate; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct Table; -typedef struct Table Table; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct Order; -typedef struct Order Order; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -typedef unsigned int uint; -typedef uint64_t VarType; +class AutoTuner; +class CompTuner; +class SearchTuner; +class TunableSetting; + +class SerializeTuner; + +class TunableDesc; + +class OrderResolver; +class DecomposeOrderResolver; + +class EncodingGraph; +class EncodingNode; +class EncodingEdge; +class EncodingSubGraph; +class SignatureEnc; +class Signature; +class ElementSig; +class SetSig; +class BooleanSig; +struct IncrementalSolver; +typedef struct IncrementalSolver IncrementalSolver; +struct TableEntry; +typedef struct TableEntry TableEntry; +typedef int TunableParam; #endif