X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=55ead2954e92ea34cbd6a30f4bd7f625f1748f27;hp=6de8bcf372c7bff7583bd22f226fe47b56c03d4e;hb=3896ad686a910868d7bf2988cd83a4fe3da700b2;hpb=c32d99edd9da968bb6ea9bda22c1dd985aef27c4 diff --git a/src/classlist.h b/src/classlist.h index 6de8bcf..55ead29 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,59 +12,74 @@ #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; -typedef struct BooleanOrder BooleanOrder; -typedef struct BooleanVar BooleanVar; -typedef struct BooleanLogic BooleanLogic; -typedef struct BooleanComp BooleanComp; +class BooleanPredicate; +class ASTNode; -struct Boolean; -typedef struct Boolean Boolean; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; -struct Set; -typedef struct Set Set; +class ElementFunction; +class ElementSet; +class ElementConst; + +class FunctionOperator; +class FunctionTable; + + -typedef struct Set MutableSet; +class PredicateTable; +class PredicateOperator; -struct Element; -typedef struct Element Element; -typedef struct FunctionOperator FunctionOperator; -typedef struct FunctionTable FunctionTable; +class OrderPair; -struct Function; -typedef struct Function Function; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct Predicate; -typedef struct Predicate Predicate; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct Table; -typedef struct Table Table; +class OrderGraph; +class OrderNodeKey; +class OrderNode; +class OrderEdge; +class DOREdge; -struct Order; -typedef struct Order Order; +class AutoTuner; +class CompTuner; +class SearchTuner; +class TunableSetting; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class SerializeTuner; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +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 unsigned int uint; -typedef uint64_t VarType; +typedef int TunableParam; #endif