X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=src%2Fclasslist.h;h=fee6d9bc7c14359893b61b1724d5e19fdc63ecc4;hb=238830745ba3939323c285b722c9ae512b7baa9b;hp=14f43f80c57f857c7547a156fe796b3d30ab9054;hpb=da8edf8ffe23430b414467fb4e35c66c94562356;p=satune.git diff --git a/src/classlist.h b/src/classlist.h index 14f43f8..fee6d9b 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -12,63 +12,66 @@ #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; -typedef struct BooleanPredicate BooleanPredicate; +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; -typedef struct ElementFunction ElementFunction; -typedef struct ElementSet ElementSet; +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 SearchTuner; +class TunableSetting; -struct ElementEncoding; -typedef struct ElementEncoding ElementEncoding; +class TunableDesc; -struct FunctionEncoding; -typedef struct FunctionEncoding FunctionEncoding; +class OrderResolver; +class DecomposeOrderResolver; +class EncodingGraph; +class EncodingNode; +class EncodingEdge; + +struct IncrementalSolver; +typedef struct IncrementalSolver IncrementalSolver; struct TableEntry; typedef struct TableEntry TableEntry; - -typedef unsigned int uint; -typedef uint64_t VarType; +typedef int TunableParam; #endif