blob: 73a30df11f6633dacc5402635e3769b745dac1d2 [file] [log] [blame]
Chris Lattner8da0c282018-06-29 11:15:56 -07001//===- TokenKinds.def - MLIR Token Description ------------------*- C++ -*-===//
2//
3// Copyright 2019 The MLIR Authors.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16// =============================================================================
17//
18// This file is intended to be #include'd multiple times to extract information
19// about tokens for various clients in the lexer.
20//
21//===----------------------------------------------------------------------===//
22
23#if !defined(TOK_MARKER) && !defined(TOK_IDENTIFIER) && !defined(TOK_LITERAL)&&\
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -070024 !defined(TOK_PUNCTUATION) && !defined(TOK_OPERATOR) && !defined(TOK_KEYWORD)
Chris Lattner8da0c282018-06-29 11:15:56 -070025# error Must define one of the TOK_ macros.
26#endif
27
28#ifndef TOK_MARKER
29#define TOK_MARKER(X)
30#endif
31#ifndef TOK_IDENTIFIER
32#define TOK_IDENTIFIER(NAME)
33#endif
34#ifndef TOK_LITERAL
35#define TOK_LITERAL(NAME)
36#endif
37#ifndef TOK_PUNCTUATION
38#define TOK_PUNCTUATION(NAME, SPELLING)
39#endif
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -070040#ifndef TOK_OPERATOR
41#define TOK_OPERATOR(NAME, SPELLING)
42#endif
Chris Lattner8da0c282018-06-29 11:15:56 -070043#ifndef TOK_KEYWORD
44#define TOK_KEYWORD(SPELLING)
45#endif
46
47
48// Markers
49TOK_MARKER(eof)
50TOK_MARKER(error)
51
52// Identifiers.
53TOK_IDENTIFIER(bare_identifier) // foo
54TOK_IDENTIFIER(at_identifier) // @foo
55TOK_IDENTIFIER(affine_map_identifier) // #foo
56// TODO: @@foo, etc.
57
58// Literals
59TOK_LITERAL(integer) // 42
60TOK_LITERAL(string) // "foo"
Chris Lattnerf958bbe2018-06-29 22:08:05 -070061TOK_LITERAL(inttype) // i421
Chris Lattner8da0c282018-06-29 11:15:56 -070062
63// Punctuation.
64TOK_PUNCTUATION(arrow, "->")
65TOK_PUNCTUATION(colon, ":")
66TOK_PUNCTUATION(comma, ",")
67TOK_PUNCTUATION(question, "?")
68TOK_PUNCTUATION(questionquestion, "??")
69TOK_PUNCTUATION(l_paren, "(")
70TOK_PUNCTUATION(r_paren, ")")
71TOK_PUNCTUATION(l_brace, "{")
72TOK_PUNCTUATION(r_brace, "}")
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -070073TOK_PUNCTUATION(l_bracket, "[")
74TOK_PUNCTUATION(r_bracket, "]")
Chris Lattner8da0c282018-06-29 11:15:56 -070075TOK_PUNCTUATION(less, "<")
76TOK_PUNCTUATION(greater, ">")
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -070077TOK_PUNCTUATION(equal, "=")
Chris Lattner8da0c282018-06-29 11:15:56 -070078// TODO: More punctuation.
79
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -070080// Operators.
81TOK_OPERATOR(plus, "+")
82TOK_OPERATOR(star, "*")
83TOK_OPERATOR(ceildiv, "ceildiv")
84TOK_OPERATOR(floordiv, "floordiv")
85// TODO: More operator tokens
86
Chris Lattner8da0c282018-06-29 11:15:56 -070087// Keywords. These turn "foo" into Token::kw_foo enums.
Chris Lattnerf958bbe2018-06-29 22:08:05 -070088TOK_KEYWORD(affineint)
Chris Lattner8da0c282018-06-29 11:15:56 -070089TOK_KEYWORD(bf16)
90TOK_KEYWORD(br)
91TOK_KEYWORD(cfgfunc)
92TOK_KEYWORD(extfunc)
93TOK_KEYWORD(f16)
94TOK_KEYWORD(f32)
95TOK_KEYWORD(f64)
Chris Lattner8da0c282018-06-29 11:15:56 -070096TOK_KEYWORD(memref)
97TOK_KEYWORD(mlfunc)
98TOK_KEYWORD(return)
99TOK_KEYWORD(tensor)
100TOK_KEYWORD(vector)
101
102#undef TOK_MARKER
103#undef TOK_IDENTIFIER
104#undef TOK_LITERAL
105#undef TOK_PUNCTUATION
Uday Bondhugulafaf37dd2018-06-29 18:09:29 -0700106#undef TOK_OPERATOR
Chris Lattner8da0c282018-06-29 11:15:56 -0700107#undef TOK_KEYWORD