-
Notifications
You must be signed in to change notification settings - Fork 4
/
parse.h
96 lines (71 loc) · 2.25 KB
/
parse.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
// -*- C++ -*-
// Copyright (C) 2005-2010 Red Hat Inc.
// Copyright (C) 2007 Bull S.A.S
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
#ifndef PARSE_H
#define PARSE_H
#include <string>
#include <vector>
#include <iostream>
#include <stdexcept>
struct stapfile;
struct source_loc
{
stapfile* file;
unsigned line;
unsigned column;
};
std::ostream& operator << (std::ostream& o, const source_loc& loc);
enum parse_context
{
con_unknown, con_probe, con_global, con_function, con_embedded
};
enum token_type
{
tok_junk, tok_identifier, tok_operator, tok_string, tok_number,
tok_embedded, tok_keyword
};
struct token
{
source_loc location;
token_type type;
std::string content;
std::string msg; // for tok_junk
void make_junk (std::string msg);
const token* chain; // macro invocation that produced this token
};
std::ostream& operator << (std::ostream& o, const token& t);
struct parse_error: public std::runtime_error
{
const token* tok;
bool skip_some;
parse_error (const std::string& msg):
runtime_error (msg), tok (0), skip_some (true) {}
parse_error (const std::string& msg, const token* t):
runtime_error (msg), tok (t), skip_some (true) {}
parse_error (const std::string& msg, bool skip):
runtime_error (msg), tok (0), skip_some (skip) {}
};
typedef enum { ctx_library, ctx_local } macro_ctx;
/* structs from session.h: */
struct systemtap_session;
struct macrodecl {
const token* tok; // NB: macrodecl owns its token
std::string name;
std::vector<std::string> formal_args;
std::vector<const token*> body;
macro_ctx context;
// Used for identifying subclasses that represent e.g. parameter bindings.
virtual bool is_closure() { return false; }
macrodecl () : tok(0), context(ctx_local) { }
virtual ~macrodecl ();
};
stapfile* parse (systemtap_session& s, std::istream& i, bool privileged);
stapfile* parse (systemtap_session& s, const std::string& n, bool privileged);
stapfile* parse_library_macros (systemtap_session& s, const std::string& n);
#endif // PARSE_H
/* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */