-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocal.h
88 lines (63 loc) · 1.1 KB
/
local.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
#ifndef INCLUDE_LOCAL_H
#define INCLUDE_LOCAL_H
// local.h
// Revision 10-jan-2007
#include <string>
#include <map>
#include <stack>
#include "var.h"
namespace pasmo
{
namespace impl
{
class AsmReal;
class LocalLevel
{
public:
LocalLevel (AsmReal & asmin_n);
virtual ~LocalLevel ();
virtual bool is_auto () const;
void add (const std::string & varname);
private:
AsmReal & asmin;
mapvar_t saved;
std::map <std::string, std::string> globalized;
};
class AutoLevel : public LocalLevel
{
public:
AutoLevel (AsmReal & asmin_n);
~AutoLevel ();
bool is_auto () const;
};
class ProcLevel : public LocalLevel
{
public:
ProcLevel (AsmReal & asmin_n, size_t line);
~ProcLevel ();
size_t getline () const;
private:
size_t line;
};
class MacroLevel : public LocalLevel
{
public:
MacroLevel (AsmReal & asmin_n);
~MacroLevel ();
};
class LocalStack
{
public:
~LocalStack ();
bool empty () const;
void push (LocalLevel * level);
LocalLevel * top () const;
void pop ();
private:
typedef std::stack <LocalLevel *> st_t;
st_t st;
};
} // namespace impl
} // namespace pasmo
#endif
// End of local.h