Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 1 | //===- 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 Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 24 | !defined(TOK_PUNCTUATION) && !defined(TOK_OPERATOR) && !defined(TOK_KEYWORD) |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 25 | # 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 Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 40 | #ifndef TOK_OPERATOR |
| 41 | #define TOK_OPERATOR(NAME, SPELLING) |
| 42 | #endif |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 43 | #ifndef TOK_KEYWORD |
| 44 | #define TOK_KEYWORD(SPELLING) |
| 45 | #endif |
| 46 | |
| 47 | |
| 48 | // Markers |
| 49 | TOK_MARKER(eof) |
| 50 | TOK_MARKER(error) |
| 51 | |
| 52 | // Identifiers. |
| 53 | TOK_IDENTIFIER(bare_identifier) // foo |
| 54 | TOK_IDENTIFIER(at_identifier) // @foo |
| 55 | TOK_IDENTIFIER(affine_map_identifier) // #foo |
| 56 | // TODO: @@foo, etc. |
| 57 | |
| 58 | // Literals |
| 59 | TOK_LITERAL(integer) // 42 |
| 60 | TOK_LITERAL(string) // "foo" |
Chris Lattner | f958bbe | 2018-06-29 22:08:05 -0700 | [diff] [blame^] | 61 | TOK_LITERAL(inttype) // i421 |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 62 | |
| 63 | // Punctuation. |
| 64 | TOK_PUNCTUATION(arrow, "->") |
| 65 | TOK_PUNCTUATION(colon, ":") |
| 66 | TOK_PUNCTUATION(comma, ",") |
| 67 | TOK_PUNCTUATION(question, "?") |
| 68 | TOK_PUNCTUATION(questionquestion, "??") |
| 69 | TOK_PUNCTUATION(l_paren, "(") |
| 70 | TOK_PUNCTUATION(r_paren, ")") |
| 71 | TOK_PUNCTUATION(l_brace, "{") |
| 72 | TOK_PUNCTUATION(r_brace, "}") |
Uday Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 73 | TOK_PUNCTUATION(l_bracket, "[") |
| 74 | TOK_PUNCTUATION(r_bracket, "]") |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 75 | TOK_PUNCTUATION(less, "<") |
| 76 | TOK_PUNCTUATION(greater, ">") |
Uday Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 77 | TOK_PUNCTUATION(equal, "=") |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 78 | // TODO: More punctuation. |
| 79 | |
Uday Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 80 | // Operators. |
| 81 | TOK_OPERATOR(plus, "+") |
| 82 | TOK_OPERATOR(star, "*") |
| 83 | TOK_OPERATOR(ceildiv, "ceildiv") |
| 84 | TOK_OPERATOR(floordiv, "floordiv") |
| 85 | // TODO: More operator tokens |
| 86 | |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 87 | // Keywords. These turn "foo" into Token::kw_foo enums. |
Chris Lattner | f958bbe | 2018-06-29 22:08:05 -0700 | [diff] [blame^] | 88 | TOK_KEYWORD(affineint) |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 89 | TOK_KEYWORD(bf16) |
| 90 | TOK_KEYWORD(br) |
| 91 | TOK_KEYWORD(cfgfunc) |
| 92 | TOK_KEYWORD(extfunc) |
| 93 | TOK_KEYWORD(f16) |
| 94 | TOK_KEYWORD(f32) |
| 95 | TOK_KEYWORD(f64) |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 96 | TOK_KEYWORD(memref) |
| 97 | TOK_KEYWORD(mlfunc) |
| 98 | TOK_KEYWORD(return) |
| 99 | TOK_KEYWORD(tensor) |
| 100 | TOK_KEYWORD(vector) |
| 101 | |
| 102 | #undef TOK_MARKER |
| 103 | #undef TOK_IDENTIFIER |
| 104 | #undef TOK_LITERAL |
| 105 | #undef TOK_PUNCTUATION |
Uday Bondhugula | faf37dd | 2018-06-29 18:09:29 -0700 | [diff] [blame] | 106 | #undef TOK_OPERATOR |
Chris Lattner | 8da0c28 | 2018-06-29 11:15:56 -0700 | [diff] [blame] | 107 | #undef TOK_KEYWORD |