scyther/src/tac.h

73 lines
976 B
C

#ifndef TAC_H
#define TAC_H
#include "symbol.h"
/*
* TAC instructions
*/
enum tactypes
{
TAC_UNDEF,
TAC_SYM,
TAC_TUPLE,
TAC_ENCRYPT,
TAC_VAR,
TAC_CONST,
TAC_READ,
TAC_SEND,
TAC_CLAIM,
TAC_FUNC,
TAC_STRING,
TAC_ROLE,
TAC_PROTOCOL,
TAC_RUN,
TAC_ROLEREF,
TAC_SECRET,
TAC_INVERSEKEYS,
TAC_UNTRUSTED,
TAC_COMPROMISED,
TAC_USERTYPE
};
struct tacnode
{
struct tacnode *next;
struct tacnode *prev;
struct tacnode *allnext;
int op;
int lineno;
union
{
Symbol sym;
struct tacnode *tac;
char *str;
} t1;
union
{
Symbol sym;
struct tacnode *tac;
char *str;
} t2;
union
{
Symbol sym;
struct tacnode *tac;
char *str;
} t3;
};
typedef struct tacnode *Tac;
void tacInit (void);
void tacDone (void);
Tac tacCreate (int op);
Tac tacSymb (char *s);
Tac tacJoin (int op, Tac t1, Tac t2, Tac t3);
Tac tacTuple (Tac taclist);
Tac tacCat (Tac t1, Tac t2);
void tacPrint (Tac t);
#endif