-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpp_trigraphs.cbrt
129 lines (117 loc) · 4.09 KB
/
pp_trigraphs.cbrt
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Copyright 2020-2024 Kinglet B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef STDLIB_H_INCLUDED
#define STDLIB_H_INCLUDED
#include <stdlib.h>
#endif
#ifndef STRING_H_INCLUDED
#define STRING_H_INCLUDED
#include <string.h>
#endif
#ifndef PP_H_INCLUDED
#define PP_H_INCLUDED
#include "pp.h"
#endif
#ifndef SITUS_H_INCLUDED
#define SITUS_H_INCLUDED
#include "situs.h"
#endif
%scanner%
%prefix pptg_
%common_type struct situs
%constructor situs_init(&$$);
%move situs_swap(&$$, &$0);
%destructor situs_cleanup(&$$);
%params struct preprocessor *pp, const char *filename, char **output_buf, size_t *output_end, size_t *output_buf_alloc_size, struct situs *output_situs
$: {
$.num_spans_ = 1;
$.u_.one_.filename_ = filename;
$.u_.one_.is_substitution_ = 0;
$.u_.one_.num_bytes_ = $len;
$.u_.one_.start_ = $offset;
$.u_.one_.end_ = $endoffset;
$.u_.one_.start_line_ = $line;
$.u_.one_.start_col_ = $column;
$.u_.one_.end_line_ = $endline;
$.u_.one_.end_col_ = $endcolumn;
}
: \?\?= {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "#")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?\( {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "[")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?/ {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "\\")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?\) {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "]")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?\' {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "^")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?< {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "{")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?! {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "|")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?> {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "}")) {
return _PPTG_NO_MEMORY;
}
}
: \?\?\- {
$.u_.one_.end_ = $.u_.one_.start_ + 1;
pptg_set_location(stack, $.u_.one_.end_line_, $.u_.one_.end_col_, $.u_.one_.end_);
if (pp_concat_sub_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, "~")) {
return _PPTG_NO_MEMORY;
}
}
: ([^\?]+ | \? [^\?] | \? \?+ [^=\(/\)\'<!>\-])+ {
if (pp_concat_output(pp, output_situs, output_buf, output_end, output_buf_alloc_size, &$, $text)) {
return _PPTG_NO_MEMORY;
}
}