#ifndef _PARSEDATA_H
#define _PARSEDATA_H
#include <iostream>
#include <limits.h>
#include <sstream>
#include "avlmap.h"
#include "bstmap.h"
#include "vector.h"
#include "dlist.h"
#include "fsmgraph.h"
#include "compare.h"
#include "vector.h"
#include "common.h"
#include "parsetree.h"
using
std::ostream;
struct
VarDef;
struct
Join;
struct
Expression;
struct
Term;
struct
FactorWithAug;
struct
FactorWithLabel;
struct
FactorWithRep;
struct
FactorWithNeg;
struct
Factor;
struct
Literal;
struct
Range;
struct
RegExpr;
struct
ReItem;
struct
ReOrBlock;
struct
ReOrItem;
struct
LongestMatch;
struct
InputData;
struct
CodeGenData;
typedef
DList<LongestMatch> LmList;
struct
GraphDictEl :
public
AvlTreeEl<GraphDictEl>,
public
DListEl<GraphDictEl>
{
using
DListEl<GraphDictEl>::operator
new
;
using
DListEl<GraphDictEl>::operator
delete
;
GraphDictEl(
const
char
*k )
: key(k), value(0), isInstance(
false
) { }
GraphDictEl(
const
char
*k, VarDef *value )
: key(k), value(value), isInstance(
false
) { }
const
char
*getKey() {
return
key; }
const
char
*key;
VarDef *value;
bool
isInstance;
InputLoc loc;
};
typedef
AvlTree<GraphDictEl,
const
char
*, CmpStr> GraphDict;
typedef
DList<GraphDictEl> GraphList;
typedef
AvlMapEl<
char
*,
int
> PriorDictEl;
typedef
AvlMap<
char
*,
int
, CmpStr> PriorDict;
typedef
AvlMapEl<
const
char
*,
int
> LocalErrDictEl;
typedef
AvlMap<
const
char
*,
int
, CmpStr> LocalErrDict;
typedef
BstMapEl<
const
char
*, NameInst*> NameMapEl;
typedef
BstMap<
const
char
*, NameInst*, CmpStr> NameMap;
typedef
Vector<NameInst*> NameVect;
typedef
BstSet<NameInst*> NameSet;
struct
NameInst : TmpObject<NameInst>
{
NameInst(
const
InputLoc &loc, NameInst *parent,
const
char
*name,
int
id,
bool
isLabel ) :
loc(loc), parent(parent), name(name), id(id), isLabel(isLabel),
isLongestMatch(
false
), numRefs(0), numUses(0), start(0), final(0) {}
InputLoc loc;
NameInst *parent;
const
char
*name;
int
id;
bool
isLabel;
bool
isLongestMatch;
int
numRefs;
int
numUses;
NameMap children;
NameVect childVect;
NameInst *start, *final;
NameVect referencedNames;
NameInst *prev, *next;
bool
anyRefsRec();
};
typedef
DList<NameInst> NameInstList;
struct
NameFrame : TmpObject<NameFrame>
{
NameInst *prevNameInst;
int
prevNameChild;
NameInst *prevLocalScope;
};
struct
LengthDef : TmpObject<LengthDef>
{
LengthDef(
char
*name )
: name(name) {}
char
*name;
LengthDef *prev, *next;
};
typedef
DList<LengthDef> LengthDefList;
struct
ParseData : TmpObject<ParseData>
{
ParseData(
const
char
*fileName,
char
*sectionName,
const
InputLoc §ionLoc );
~ParseData();
void
initGraphDict();
void
createBuiltin(
const
char
*name, BuiltinMachine builtin );
NameInst *addNameInst(
const
InputLoc &loc,
const
char
*data,
bool
isLabel );
void
makeRootNames();
void
makeNameTree( GraphDictEl *gdNode );
void
makeExportsNameTree();
void
fillNameIndex( NameInst *from );
void
printNameTree();
void
unsetObsoleteEntries( FsmAp *graph );
NameSet resolvePart( NameInst *refFrom,
const
char
*data,
bool
recLabelsOnly );
void
resolveFrom( NameSet &result, NameInst *refFrom,
const
NameRef &nameRef,
int
namePos );
NameInst *resolveStateRef(
const
NameRef &nameRef, InputLoc &loc, Action *action );
void
resolveNameRefs( InlineList *inlineList, Action *action );
void
resolveActionNameRefs();
bool
setAlphType(
const
InputLoc &loc,
char
*s1,
char
*s2 );
bool
setAlphType(
const
InputLoc &loc,
char
*s1 );
bool
setVariable(
char
*var, InlineList *inlineList );
void
removeDups( ActionTable &actionTable );
void
removeActionDups( FsmAp *graph );
void
printNameInst( NameInst *nameInst,
int
level );
FsmAp *makeInstance( GraphDictEl *gdNode );
FsmAp *makeSpecific( GraphDictEl *gdNode );
FsmAp *makeAll();
void
checkAction( Action *action );
void
checkInlineList( Action *act, InlineList *inlineList );
void
analyzeAction( Action *action, InlineList *inlineList );
void
analyzeGraph( FsmAp *graph );
void
makeExports();
void
prepareMachineGen( GraphDictEl *graphDictEl );
void
prepareMachineGenTBWrapped( GraphDictEl *graphDictEl );
void
generateXML( ostream &out );
void
generateReduced( InputData &inputData );
FsmAp *sectionGraph;
bool
generatingSectionSubset;
void
initKeyOps();
GraphDict graphDict;
GraphList instanceList;
ActionDict actionDict;
PriorDict priorDict;
LocalErrDict localErrDict;
ActionList actionList;
int
nextPriorKey, nextLocalErrKey, nextNameId, nextCondId;
int
curDefPriorKey;
int
curDefLocalErrKey;
HostType *userAlphType;
bool
alphTypeSet;
InputLoc alphTypeLoc;
InlineList *getKeyExpr;
InlineList *accessExpr;
InlineList *prePushExpr;
InlineList *postPopExpr;
InlineList *pExpr;
InlineList *peExpr;
InlineList *eofExpr;
InlineList *csExpr;
InlineList *topExpr;
InlineList *stackExpr;
InlineList *actExpr;
InlineList *tokstartExpr;
InlineList *tokendExpr;
InlineList *dataExpr;
char
*lowerNum, *upperNum;
Key lowKey, highKey;
InputLoc rangeLowLoc, rangeHighLoc;
const
char
*fileName;
char
*sectionName;
InputLoc sectionLoc;
int
curActionOrd;
int
curPriorOrd;
NameInst *rootName;
NameInst *exportsRootName;
NameInst *curNameInst;
int
curNameChild;
NameVect epsilonResolvedLinks;
int
nextEpsilonResolvedLink;
NameInst *localNameScope;
void
setLmInRetLoc( InlineList *inlineList );
void
initLongestMatchData();
void
setLongestMatchData( FsmAp *graph );
void
initNameWalk();
void
initExportsNameWalk();
NameInst *nextNameScope() {
return
curNameInst->childVect[curNameChild]; }
NameFrame enterNameScope(
bool
isLocal,
int
numScopes );
void
popNameScope(
const
NameFrame &frame );
void
resetNameScope(
const
NameFrame &frame );
NameInst **nameIndex;
int
nextLongestMatchId;
bool
lmRequiresErrorState;
LmList lmList;
Action *newAction(
const
char
*name, InlineList *inlineList );
Action *initTokStart;
int
initTokStartOrd;
Action *setTokStart;
int
setTokStartOrd;
Action *initActId;
int
initActIdOrd;
Action *setTokEnd;
int
setTokEndOrd;
void
beginProcessing()
{
::condData = &thisCondData;
::keyOps = &thisKeyOps;
}
CondData thisCondData;
KeyOps thisKeyOps;
ExportList exportList;
LengthDefList lengthDefList;
CodeGenData *cgd;
};
void
afterOpMinimize( FsmAp *fsm,
bool
lastInSeq =
true
);
Key makeFsmKeyHex(
char
*str,
const
InputLoc &loc, ParseData *pd );
Key makeFsmKeyDec(
char
*str,
const
InputLoc &loc, ParseData *pd );
Key makeFsmKeyNum(
char
*str,
const
InputLoc &loc, ParseData *pd );
Key makeFsmKeyChar(
char
c, ParseData *pd );
void
makeFsmKeyArray( Key *result,
char
*data,
int
len, ParseData *pd );
void
makeFsmUniqueKeyArray( KeySet &result,
char
*data,
int
len,
bool
caseInsensitive, ParseData *pd );
FsmAp *makeBuiltin( BuiltinMachine builtin, ParseData *pd );
FsmAp *dotFsm( ParseData *pd );
FsmAp *dotStarFsm( ParseData *pd );
void
errorStateLabels(
const
NameSet &locations );
#endif