aboutsummaryrefslogtreecommitdiffstats
path: root/dissect.h
blob: 3b72b89884df199a50022ee8063ca1ca822c7124 (plain)
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
#ifndef	DISSECT_H
#define	DISSECT_H

#include <stdio.h>
#include "parse.h"
#include "expression.h"

#define	U_SHIFT		8

#define	U_R_AOF		0x01
#define	U_W_AOF		0x02

#define	U_R_VAL		0x04
#define	U_W_VAL		0x08

#define	U_R_PTR		(U_R_VAL << U_SHIFT)
#define	U_W_PTR		(U_W_VAL << U_SHIFT)

struct reporter
{
	void (*r_symdef)(struct symbol *);

	void (*r_symbol)(unsigned, struct position *, struct symbol *);
	void (*r_member)(unsigned, struct position *, struct symbol *, struct symbol *);
};

extern void dissect(struct symbol_list *, struct reporter *);

#define	MK_IDENT(s)	({				\
	static struct {					\
		struct ident ident;			\
		char __[sizeof(s)];			\
	} ident = {{					\
		.len  = sizeof(s)-1,			\
		.name = s,				\
	}};						\
	&ident.ident;					\
})

#endif