-
Notifications
You must be signed in to change notification settings - Fork 9
/
namespaceobj.h
49 lines (37 loc) · 1.49 KB
/
namespaceobj.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
/*
$Id: namespaceobj.h 3136 2024-05-11 09:05:50Z soci $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef NAMESPACEOBJ_H
#define NAMESPACEOBJ_H
#include "obj.h"
extern struct Type *const NAMESPACE_OBJ;
struct Label;
typedef struct Namespace {
Obj v;
size_t len, mask;
struct Label **data;
const struct file_list_s *file_list;
struct linepos_s epoint;
uint32_t backr, forwr;
} Namespace;
#define Namespace(a) OBJ_CAST(Namespace, a)
extern void namespaceobj_init(void);
extern void namespaceobj_names(void);
static inline Namespace *ref_namespace(Namespace *v1) {
v1->v.refcount++; return v1;
}
extern MUST_CHECK Namespace *new_namespace(const struct file_list_s *, linepos_t);
extern MUST_CHECK Obj *namespace_member(struct oper_s *, Namespace *);
extern Namespace *get_namespace(const Obj *);
#endif