blob: 025c3dc56b4ce0bdcca90ac5dbab7e46da2c675e (
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
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
|
<lexer>
<config>
<name>MLIR</name>
<alias>mlir</alias>
<filename>*.mlir</filename>
<mime_type>text/x-mlir</mime_type>
</config>
<rules>
<state name="whitespace">
<rule pattern="(\n|\s)+">
<token type="Text"/>
</rule>
<rule pattern="//.*?\n">
<token type="Comment"/>
</rule>
</state>
<state name="keyword">
<rule pattern="(constant|return)">
<token type="KeywordType"/>
</rule>
<rule pattern="(memref|tensor|vector|func|loc)">
<token type="KeywordType"/>
</rule>
<rule pattern="bf16|f16|f32|f64|index">
<token type="Keyword"/>
</rule>
<rule pattern="i[1-9]\d*">
<token type="Keyword"/>
</rule>
</state>
<state name="root">
<rule>
<include state="whitespace"/>
</rule>
<rule pattern="c?"[^"]*?"">
<token type="LiteralString"/>
</rule>
<rule pattern="\^([-a-zA-Z$._][\w\-$.0-9]*)\s*">
<token type="NameLabel"/>
</rule>
<rule pattern="([\w\d_$.]+)\s*=">
<token type="NameLabel"/>
</rule>
<rule>
<include state="keyword"/>
</rule>
<rule pattern="->">
<token type="Punctuation"/>
</rule>
<rule pattern="@([\w_][\w\d_$.]*)">
<token type="NameFunction"/>
</rule>
<rule pattern="[%#][\w\d_$.]+">
<token type="NameVariable"/>
</rule>
<rule pattern="([1-9?][\d?]*\s*x)+">
<token type="LiteralNumber"/>
</rule>
<rule pattern="0[xX][a-fA-F0-9]+">
<token type="LiteralNumber"/>
</rule>
<rule pattern="-?\d+(?:[.]\d+)?(?:[eE][-+]?\d+(?:[.]\d+)?)?">
<token type="LiteralNumber"/>
</rule>
<rule pattern="[=<>{}\[\]()*.,!:]|x\b">
<token type="Punctuation"/>
</rule>
<rule pattern="[\w\d]+">
<token type="Text"/>
</rule>
</state>
</rules>
</lexer>
|