X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2Fclasslist.h;h=d56a6507b856f90209208a71b9a89be8e9ee8ea5;hp=ac07af9e8066824cd5f866fb3db864a19efaffe1;hb=3552af833b3ff76f221d6c9a9e410da96dd58734;hpb=db18e268cc989852265ced5bef57f2acd13caafd diff --git a/src/classlist.h b/src/classlist.h index ac07af9..d56a650 100644 --- a/src/classlist.h +++ b/src/classlist.h @@ -9,51 +9,64 @@ #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 "AST/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; -struct IncrementalSolver; -typedef struct IncrementalSolver IncrementalSolver; -struct Set; -typedef struct Set Set; -typedef struct Set MutableSet; +class ElementFunction; +class ElementSet; +class ElementConst; + +class FunctionOperator; +class FunctionTable; + + -struct Element; -typedef struct Element Element; +class PredicateTable; +class PredicateOperator; -struct Function; -typedef struct Function Function; -struct Predicate; -typedef struct Predicate Predicate; +class OrderPair; -struct Table; -typedef struct Table Table; +class OrderElement; +class IntegerEncodingRecord; +class Transform; +class Pass; +class Transformer; +class AnalysisData; -struct Order; -typedef struct Order Order; +class ElementEncoding; +class FunctionEncoding; +class OrderEncoding; -struct ElementEncoder; -typedef struct ElementEncoder ElementEncoder; +class OrderGraph; +class OrderNode; +class OrderEdge; -struct FunctionEncoder; -typedef struct FunctionEncoder FunctionEncoder; +class AutoTuner; +class SearchTuner; +class TunableSetting; + +class TunableDesc; + +class OrderResolver; +class DecomposeOrderResolver; + +struct IncrementalSolver; +typedef struct IncrementalSolver IncrementalSolver; +struct TableEntry; +typedef struct TableEntry TableEntry; +typedef int TunableParam; -typedef unsigned int uint; -typedef uint64_t VarType; #endif