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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
-- Copyright 2006-2017 Mitchell mitchell.att.foicica.com. See LICENSE.
-- C LPeg lexer.
local l = require('lexer')
local token, word_match = l.token, l.word_match
local P, R, S = lpeg.P, lpeg.R, lpeg.S
local M = {_NAME = 'ansi_c'}
-- Whitespace.
local ws = token(l.WHITESPACE, l.space^1)
-- Comments.
local line_comment = '//' * l.nonnewline_esc^0
local block_comment = '/*' * (l.any - '*/')^0 * P('*/')^-1
-- local preproc_ifzero = l.starts_line('#if') * S(' \t')^0 * '0' * l.space *
-- (l.starts_line('#endif'))
local comment = token(l.COMMENT, line_comment + block_comment)
-- Strings.
local sq_str = P('L')^-1 * l.delimited_range("'", true)
local dq_str = P('L')^-1 * l.delimited_range('"', true)
local string = token(l.STRING, sq_str + dq_str)
-- Numbers.
local float_suffix = P('f')^-1
local integer_suffix = (S('uU')^-1 * word_match{ 'l', 'L', 'll', 'LL' }^-1) +
(word_match{ 'l', 'L', 'll', 'LL' }^-1 * S('uU')^-1)
local number = token(l.NUMBER, (l.float * float_suffix) +
(l.integer * integer_suffix))
-- Preprocessor.
local preproc_word = word_match{
'define', 'elif', 'else', 'endif', 'error', 'if', 'ifdef', 'ifndef', 'line',
'pragma', 'undef', 'warning'
}
local preproc = #l.starts_line('#') *
(token(l.PREPROCESSOR, '#' * S('\t ')^0 * preproc_word) +
token(l.PREPROCESSOR, '#' * S('\t ')^0 * 'include') *
(token(l.WHITESPACE, S('\t ')^0) *
token(l.STRING, l.delimited_range('<>', true, true)))^-1)
-- Keywords.
local storage_class = word_match{
-- C11 6.7.1
'typedef', 'extern', 'static', '_Thread_local', 'auto', 'register',
}
local type_qualifier = word_match{
-- C11 6.7.3
'const', 'restrict', 'volatile', '_Atomic',
}
local function_specifier = word_match{
-- C11 6.7.4
'inline', '_Noreturn',
}
local extra_keywords = word_match{
'asm', '__asm', '__asm__', '__restrict__', '__inline', '__inline__',
'__attribute__', '__declspec'
}
local keyword = token(l.KEYWORD, word_match{
'break', 'case', 'continue', 'default', 'do', 'else', 'enum', 'for', 'goto',
'if', 'return', 'switch', 'while',
'_Alignas', '_Generic', '_Static_assert',
} + storage_class + type_qualifier + function_specifier + extra_keywords)
-- Constants.
local errno = word_match{
-- http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html
'E2BIG', 'EACCES', 'EADDRINUSE', 'EADDRNOTAVAIL', 'EAFNOSUPPORT',
'EAGAIN', 'EALREADY', 'EBADF', 'EBADMSG', 'EBUSY', 'ECANCELED', 'ECHILD',
'ECONNABORTED', 'ECONNREFUSED', 'ECONNRESET', 'EDEADLK', 'EDESTADDRREQ',
'EDOM', 'EDQUOT', 'EEXIST', 'EFAULT', 'EFBIG', 'EHOSTUNREACH', 'EIDRM',
'EILSEQ', 'EINPROGRESS', 'EINTR', 'EINVAL', 'EIO', 'EISCONN', 'EISDIR',
'ELOOP', 'EMFILE', 'EMLINK', 'EMSGSIZE', 'EMULTIHOP', 'ENAMETOOLONG',
'ENETDOWN', 'ENETRESET', 'ENETUNREACH', 'ENFILE', 'ENOBUFS', 'ENODATA',
'ENODEV', 'ENOENT', 'ENOEXEC', 'ENOLCK', 'ENOLINK', 'ENOMEM',
'ENOMSG', 'ENOPROTOOPT', 'ENOSPC', 'ENOSR', 'ENOSTR', 'ENOSYS',
'ENOTCONN', 'ENOTDIR', 'ENOTEMPTY', 'ENOTRECOVERABLE', 'ENOTSOCK',
'ENOTSUP', 'ENOTTY', 'ENXIO', 'EOPNOTSUPP', 'EOVERFLOW', 'EOWNERDEAD',
'EPERM', 'EPIPE', 'EPROTO', 'EPROTONOSUPPORT', 'EPROTOTYPE', 'ERANGE',
'EROFS', 'ESPIPE', 'ESRCH', 'ESTALE', 'ETIME', 'ETIMEDOUT', 'ETXTBSY',
'EWOULDBLOCK', 'EXDEV',
}
local preproc_macros = word_match{
-- C11 6.10.8.1 Mandatory macros
'__DATE__', '__FILE__', '__LINE__', '__TIME__',
-- C11 6.4.2.2 Predefined identifiers
'__func__',
}
local constant = token(l.CONSTANT, word_match{
'true', 'false',
'NULL', 'CHAR_BIT', 'SIZE_MAX', } +
((P('WINT') + P('WCHAR') + P('SIG_ATOMIC') + P('PTRDIFF')) * (P('_MIN') + P('_MAX'))) +
( P('INT') * (((P('_LEAST') + P('_FAST'))^-1 * l.dec_num^1) + P('MAX') + P('PTR')) * (P('_MIN') + P('_MAX'))) +
(P('UINT') * (((P('_LEAST') + P('_FAST'))^-1 * l.dec_num^1) + P('MAX') + P('PTR')) * P('_MAX')) +
errno + preproc_macros
)
-- Types.
local type = token(l.TYPE, word_match{
'bool', 'char', 'double', 'float', 'int', 'long', 'short',
'signed', 'struct', 'union', 'unsigned', 'void', '_Bool', '_Complex',
'_Imaginary', 'ptrdiff_t', 'size_t', 'max_align_t', 'wchar_t',
'intptr_t', 'uintptr_t', 'intmax_t', 'uintmax_t'} +
(P('u')^-1 * P('int') * (P('_least') + P('_fast'))^-1 * l.dec_num^1 * P('_t')) +
(S('usif') * l.dec_num^1 * P('_t')) +
(P('__')^-1 * S('usif') * l.dec_num^1)
)
-- Labels.
-- FIXME: Accept whitespace before label.
local label = token(l.LABEL, l.starts_line(l.word * ':'))
-- Identifiers.
local identifier = token(l.IDENTIFIER, l.word)
-- Operators.
local operator = token(l.OPERATOR,
S('+-/*%<>~!=^&|?~:;,.()[]{}') +
word_match{ 'sizeof', '_Alignof' }
)
M._rules = {
{'whitespace', ws},
{'comment', comment},
{'keyword', keyword},
{'type', type},
{'constant', constant},
{'operator', operator},
{'label', label},
{'identifier', identifier},
{'string', string},
{'number', number},
{'preproc', preproc},
}
M._foldsymbols = {
_patterns = {'#?%l+', '[{}]', '/%*', '%*/', '//'},
[l.PREPROCESSOR] = {['if'] = 1, ifdef = 1, ifndef = 1, endif = -1},
[l.OPERATOR] = {['{'] = 1, ['}'] = -1},
[l.COMMENT] = {
['/*'] = 1, ['*/'] = -1, ['//'] = l.fold_line_comments('//'),
['#if'] = 1, ['#endif'] = -1
}
}
return M
|