This repository has been archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinstlist.h
97 lines (86 loc) · 2.68 KB
/
instlist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* Predmet: IFJ / IAL
* Projekt: Implementace interpretu imperativniho jazyka IFJ13
* Tym: 099
* Varianta: a/2/I
* Soubor: instlist.h
* Autori: Vlcek Michael <[email protected]>
* Svacek Radim <[email protected]>
* Blanco Roman <[email protected]>
* Micka Vojtech <[email protected]>
* Wolfert Richard <[email protected]>
*/
#ifndef INSTLIST_H_INCLUDED
#define INSTLIST_H_INCLUDED
// typy jednotlivych instrukci
enum InstType {
// vestavene funkce
INST_BOOLVAL = 0, // boolval()
INST_DOUBVAL, // doubleval()
INST_INTVAL, // intval()
INST_STRVAL, // strval()
INST_GETSTR, // get_string()
INST_PUTSTR, // put_string()
INST_STRLEN, // strlen()
INST_GETSUB, // get_substring()
INST_FINDSTR, // find_string()
INST_SORTSTR, // sort_string()
// vyrazy
INST_NONTERM, // prirazeni - nonterminalni polozky
INST_NOP, // prirazeni - znamenko (prazdna instrukce)
// skoky
INST_JUMP, // jump
INST_DJUMP, // Priamy skok na addr1 bez kontroly
INST_LABEL, // navesti (prazdna instrukce)
INST_CALL, // volani funkci
INST_LOAD, // nacteni hodnoty do promenne
INST_RETURN,
INST_LTOGLOAD, // presun z lokalnej tabulky do globalnej
// ciel reprezentovany priamym ukazatelom
INST_GTOLLOAD, // presun z Globalnej tabulky do lokalnej
// Zdroj reprezentovany priamym ukazatelom
// operace s retezci
INST_CONCAT = 31, // .
// logicke operace
INST_EQUAL = 40, // ===
INST_NEQUAL, // !=
INST_ASSIGN, // =
INST_LESSER, // <
INST_LESSERQ, // <=
INST_GREATERQ, // >=
INST_GREATER, // >
// aritmeticke operace
INST_PLUS = 60, // +
INST_MINUS, // -
INST_MULTIP, // *
INST_DIVIDE // /
};
// instrukce
typedef struct {
int type;
void *adr1;
void *adr2;
void *result;
} tInst;
// polozka v seznamu instrukci
typedef struct InstListItem{
tInst instruction;
struct InstListItem *prevInst;
struct InstListItem *nextInst;
} tInstListItem;
// seznam instrukci
typedef struct {
tInstListItem *First;
tInstListItem *Active;
tInstListItem *Last;
} tInstList;
// prototypy funkci
void listInit(tInstList *);
int listInsertInst(tInstList *, tInst);
tInstListItem* listGetActive(tInstList *);
void listSetActiveOn(tInstList *List,tInstListItem *addr1);
void listNextInst(tInstList *);
void listPrevInst(tInstList *);
void listFirstActive(tInstList *);
void listDestroy(tInstList *);
#endif