/* $NetBSD: lexi.c,v 1.91 2021/10/11 20:31:06 rillig Exp $ */ /*- * SPDX-License-Identifier: BSD-4-Clause * * Copyright (c) 1985 Sun Microsystems, Inc. * Copyright (c) 1980, 1993 * The Regents of the University of California. All rights reserved. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #if 0 static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93"; #endif #include #if defined(__NetBSD__) __RCSID("$NetBSD: lexi.c,v 1.91 2021/10/11 20:31:06 rillig Exp $"); #elif defined(__FreeBSD__) __FBSDID("$FreeBSD: head/usr.bin/indent/lexi.c 337862 2018-08-15 18:19:45Z pstef $"); #endif #include #include #include #include #include #include #include "indent.h" /* must be sorted alphabetically, is used in binary search */ static const struct keyword { const char *name; enum keyword_kind kind; } keywords[] = { {"_Bool", kw_type}, {"_Complex", kw_type}, {"_Imaginary", kw_type}, {"auto", kw_storage_class}, {"bool", kw_type}, {"break", kw_jump}, {"case", kw_case_or_default}, {"char", kw_type}, {"complex", kw_type}, {"const", kw_type}, {"continue", kw_jump}, {"default", kw_case_or_default}, {"do", kw_do_or_else}, {"double", kw_type}, {"else", kw_do_or_else}, {"enum", kw_struct_or_union_or_enum}, {"extern", kw_storage_class}, {"float", kw_type}, {"for", kw_for_or_if_or_while}, {"goto", kw_jump}, {"if", kw_for_or_if_or_while}, {"imaginary", kw_type}, {"inline", kw_inline_or_restrict}, {"int", kw_type}, {"long", kw_type}, {"offsetof", kw_offsetof}, {"register", kw_storage_class}, {"restrict", kw_inline_or_restrict}, {"return", kw_jump}, {"short", kw_type}, {"signed", kw_type}, {"sizeof", kw_sizeof}, {"static", kw_storage_class}, {"struct", kw_struct_or_union_or_enum}, {"switch", kw_switch}, {"typedef", kw_typedef}, {"union", kw_struct_or_union_or_enum}, {"unsigned", kw_type}, {"void", kw_type}, {"volatile", kw_type}, {"while", kw_for_or_if_or_while} }; static struct { const char **items; unsigned int len; unsigned int cap; } typenames; /* * The transition table below was rewritten by hand from lx's output, given * the following definitions. lx is Katherine Flavel's lexer generator. * * O = /[0-7]/; D = /[0-9]/; NZ = /[1-9]/; * H = /[a-f0-9]/i; B = /[0-1]/; HP = /0x/i; * BP = /0b/i; E = /e[+\-]?/i D+; P = /p[+\-]?/i D+; * FS = /[fl]/i; IS = /u/i /(l|L|ll|LL)/? | /(l|L|ll|LL)/ /u/i?; * * D+ E FS? -> $float; * D* "." D+ E? FS? -> $float; * D+ "." E? FS? -> $float; HP H+ IS? -> $int; * HP H+ P FS? -> $float; NZ D* IS? -> $int; * HP H* "." H+ P FS? -> $float; "0" O* IS? -> $int; * HP H+ "." P FS -> $float; BP B+ IS? -> $int; */ /* INDENT OFF */ static const unsigned char lex_number_state[][26] = { /* examples: 00 s 0xx t 00xaa a 11 101100xxa.. r 11ee0001101lbuuxx.a.pp t.01.e+008bLuxll0Ll.aa.p+0 states: ABCDEFGHIJKLMNOPQRSTUVWXYZ */ [0] = "uuiifuufiuuiiuiiiiiuiuuuuu", /* (other) */ [1] = "CEIDEHHHIJQ U Q VUVVZZZ", /* 0 */ [2] = "DEIDEHHHIJQ U Q VUVVZZZ", /* 1 */ [3] = "DEIDEHHHIJ U VUVVZZZ", /* 2 3 4 5 6 7 */ [4] = "DEJDEHHHJJ U VUVVZZZ", /* 8 9 */ [5] = " U VUVV ", /* A a C c D d */ [6] = " K U VUVV ", /* B b */ [7] = " FFF FF U VUVV ", /* E e */ [8] = " f f U VUVV f", /* F f */ [9] = " LLf fL PR Li L f", /* L */ [10] = " OOf fO S P O i O f", /* l */ [11] = " FFX ", /* P p */ [12] = " MM M i iiM M ", /* U u */ [13] = " N ", /* X x */ [14] = " G Y ", /* + - */ [15] = "B EE EE T W ", /* . */ /* ABCDEFGHIJKLMNOPQRSTUVWXYZ */ }; /* INDENT ON */ static const uint8_t lex_number_row[] = { ['0'] = 1, ['1'] = 2, ['2'] = 3, ['3'] = 3, ['4'] = 3, ['5'] = 3, ['6'] = 3, ['7'] = 3, ['8'] = 4, ['9'] = 4, ['A'] = 5, ['a'] = 5, ['C'] = 5, ['c'] = 5, ['D'] = 5, ['d'] = 5, ['B'] = 6, ['b'] = 6, ['E'] = 7, ['e'] = 7, ['F'] = 8, ['f'] = 8, ['L'] = 9, ['l'] = 10, ['P'] = 11, ['p'] = 11, ['U'] = 12, ['u'] = 12, ['X'] = 13, ['x'] = 13, ['+'] = 14, ['-'] = 14, ['.'] = 15, }; static char inbuf_peek(void) { return *inp.s; } void inbuf_skip(void) { inp.s++; if (inp.s >= inp.e) inbuf_read_line(); } char inbuf_next(void) { char ch = inbuf_peek(); inbuf_skip(); return ch; } static void check_size_token(size_t desired_size) { if (token.e + desired_size >= token.l) buf_expand(&token, desired_size); } static void token_add_char(char ch) { check_size_token(1); *token.e++ = ch; } static int cmp_keyword_by_name(const void *key, const void *elem) { return strcmp(key, ((const struct keyword *)elem)->name); } #ifdef debug const char * token_type_name(token_type ttype) { static const char *const name[] = { "end_of_file", "newline", "lparen_or_lbracket", "rparen_or_rbracket", "unary_op", "binary_op", "postfix_op", "question", "case_label", "colon", "semicolon", "lbrace", "rbrace", "ident", "comma", "comment", "switch_expr", "preprocessing", "form_feed", "decl", "keyword_for_if_while", "keyword_do_else", "if_expr", "while_expr", "for_exprs", "stmt", "stmt_list", "keyword_else", "keyword_do", "do_stmt", "if_expr_stmt", "if_expr_stmt_else", "period", "string_prefix", "storage_class", "funcname", "type_def", "keyword_struct_union_enum" }; assert(0 <= ttype && ttype < nitems(name)); return name[ttype]; } static void debug_print_buf(const char *name, const struct buffer *buf) { if (buf->s < buf->e) { debug_printf(" %s ", name); debug_vis_range("\"", buf->s, buf->e, "\""); } } static token_type lexi_end(token_type ttype) { debug_printf("in line %d, lexi returns '%s'", line_no, token_type_name(ttype)); debug_print_buf("token", &token); debug_print_buf("label", &lab); debug_print_buf("code", &code); debug_print_buf("comment", &com); debug_printf("\n"); return ttype; } #else #define lexi_end(tk) (tk) #endif static void lex_number(void) { for (uint8_t s = 'A'; s != 'f' && s != 'i' && s != 'u';) { uint8_t ch = (uint8_t)*inp.s; if (ch >= nitems(lex_number_row) || lex_number_row[ch] == 0) break; uint8_t row = lex_number_row[ch]; if (lex_number_state[row][s - 'A'] == ' ') { /*- * lex_number_state[0][s - 'A'] now indicates the type: * f = floating, i = integer, u = unknown */ break; } s = lex_number_state[row][s - 'A']; token_add_char(inbuf_next()); } } static void lex_word(void) { while (isalnum((unsigned char)*inp.s) || *inp.s == '\\' || *inp.s == '_' || *inp.s == '$') { if (*inp.s == '\\') { if (inp.s[1] == '\n') { inp.s += 2; if (inp.s >= inp.e) inbuf_read_line(); } else break; } token_add_char(inbuf_next()); } } static void lex_char_or_string(void) { for (char delim = *token.s;;) { if (*inp.s == '\n') { diag(1, "Unterminated literal"); return; } token_add_char(inbuf_next()); if (token.e[-1] == delim) return; if (token.e[-1] == '\\') { if (*inp.s == '\n') ++line_no; token_add_char(inbuf_next()); } } } /* Guess whether the current token is a declared type. */ static bool probably_typename(const struct parser_state *state) { if (state->p_l_follow != 0) return false; if (state->block_init || state->in_stmt) return false; if (inp.s[0] == '*' && inp.s[1] != '=') goto maybe; if (isalpha((unsigned char)*inp.s)) goto maybe; return false; maybe: return state->last_token == semicolon || state->last_token == lbrace || state->last_token == rbrace; } static int bsearch_typenames(const char *key) { const char **arr = typenames.items; int lo = 0; int hi = (int)typenames.len - 1; while (lo <= hi) { int mid = (int)((unsigned)(lo + hi) >> 1); int cmp = strcmp(arr[mid], key); if (cmp < 0) lo = mid + 1; else if (cmp > 0) hi = mid - 1; else return mid; } return -(lo + 1); } static bool is_typename(void) { if (opt.auto_typedefs && token.e - token.s >= 2 && memcmp(token.e - 2, "_t", 2) == 0) return true; return bsearch_typenames(token.s) >= 0; } /* Read an alphanumeric token into 'token', or return end_of_file. */ static token_type lexi_alnum(struct parser_state *state) { if (!(isalnum((unsigned char)*inp.s) || *inp.s == '_' || *inp.s == '$' || (inp.s[0] == '.' && isdigit((unsigned char)inp.s[1])))) return end_of_file; /* just as a placeholder */ if (isdigit((unsigned char)*inp.s) || (inp.s[0] == '.' && isdigit((unsigned char)inp.s[1]))) { lex_number(); } else { lex_word(); } *token.e = '\0'; if (token.s[0] == 'L' && token.s[1] == '\0' && (*inp.s == '"' || *inp.s == '\'')) return string_prefix; while (is_hspace(inbuf_peek())) inbuf_skip(); state->keyword = kw_0; if (state->last_token == keyword_struct_union_enum && state->p_l_follow == 0) { state->last_u_d = true; return decl; } /* Operator after identifier is binary unless last token was 'struct'. */ state->last_u_d = (state->last_token == keyword_struct_union_enum); const struct keyword *kw = bsearch(token.s, keywords, nitems(keywords), sizeof(keywords[0]), cmp_keyword_by_name); if (kw == NULL) { if (is_typename()) { state->keyword = kw_type; state->last_u_d = true; goto found_typename; } } else { /* we have a keyword */ state->keyword = kw->kind; state->last_u_d = true; switch (kw->kind) { case kw_switch: return switch_expr; case kw_case_or_default: return case_label; case kw_struct_or_union_or_enum: case kw_type: found_typename: if (state->p_l_follow != 0) { /* inside parens: cast, param list, offsetof or sizeof */ state->cast_mask |= (1 << state->p_l_follow) & ~state->not_cast_mask; } if (state->last_token == period || state->last_token == unary_op) { state->keyword = kw_0; break; } if (kw != NULL && kw->kind == kw_struct_or_union_or_enum) return keyword_struct_union_enum; if (state->p_l_follow != 0) break; return decl; case kw_for_or_if_or_while: return keyword_for_if_while; case kw_do_or_else: return keyword_do_else; case kw_storage_class: return storage_class; case kw_typedef: return type_def; default: /* all others are treated like any other * identifier */ return ident; } } if (*inp.s == '(' && state->tos <= 1 && state->ind_level == 0 && !state->in_parameter_declaration && !state->block_init) { for (const char *p = inp.s; p < inp.e;) if (*p++ == ')' && (*p == ';' || *p == ',')) goto not_proc; strncpy(state->procname, token.s, sizeof state->procname - 1); if (state->in_decl) state->in_parameter_declaration = true; return funcname; not_proc:; } else if (probably_typename(state)) { state->keyword = kw_type; state->last_u_d = true; return decl; } if (state->last_token == decl) /* if this is a declared variable, * then following sign is unary */ state->last_u_d = true; /* will make "int a -1" work */ return ident; /* the ident is not in the list */ } /* Reads the next token, placing it in the global variable "token". */ token_type lexi(struct parser_state *state) { token.e = token.s; state->col_1 = state->last_nl; state->last_nl = false; while (is_hspace(*inp.s)) { state->col_1 = false; inbuf_skip(); } token_type alnum_ttype = lexi_alnum(state); if (alnum_ttype != end_of_file) return lexi_end(alnum_ttype); /* Scan a non-alphanumeric token */ check_size_token(3); /* for things like "<<=" */ *token.e++ = inbuf_next(); *token.e = '\0'; token_type ttype; bool unary_delim = false; /* whether the current token forces a * following operator to be unary */ switch (*token.s) { case '\n': unary_delim = state->last_u_d; state->last_nl = true; /* remember that we just had a newline */ /* if data has been exhausted, the newline is a dummy. */ ttype = had_eof ? end_of_file : newline; break; case '\'': case '"': lex_char_or_string(); ttype = ident; break; case '(': case '[': unary_delim = true; ttype = lparen_or_lbracket; break; case ')': case ']': ttype = rparen_or_rbracket; break; case '#': unary_delim = state->last_u_d; ttype = preprocessing; break; case '?': unary_delim = true; ttype = question; break; case ':': ttype = colon; unary_delim = true; break; case ';': unary_delim = true; ttype = semicolon; break; case '{': unary_delim = true; ttype = lbrace; break; case '}': unary_delim = true; ttype = rbrace; break; case '\f': unary_delim = state->last_u_d; state->last_nl = true; /* remember this, so we can set 'state->col_1' * right */ ttype = form_feed; break; case ',': unary_delim = true; ttype = comma; break; case '.': unary_delim = false; ttype = period; break; case '-': case '+': ttype = state->last_u_d ? unary_op : binary_op; unary_delim = true; if (*inp.s == token.s[0]) { /* ++, -- */ *token.e++ = *inp.s++; if (state->last_token == ident || state->last_token == rparen_or_rbracket) { ttype = state->last_u_d ? unary_op : postfix_op; unary_delim = false; } } else if (*inp.s == '=') { /* += */ *token.e++ = *inp.s++; } else if (*inp.s == '>') { /* -> */ *token.e++ = *inp.s++; unary_delim = false; ttype = unary_op; state->want_blank = false; } break; case '=': if (state->init_or_struct) state->block_init = true; if (*inp.s == '=') { /* == */ *token.e++ = *inp.s++; *token.e = '\0'; } ttype = binary_op; unary_delim = true; break; case '>': case '<': case '!': /* ops like <, <<, <=, !=, etc */ if (*inp.s == '>' || *inp.s == '<' || *inp.s == '=') *token.e++ = inbuf_next(); if (*inp.s == '=') *token.e++ = *inp.s++; ttype = state->last_u_d ? unary_op : binary_op; unary_delim = true; break; case '*': unary_delim = true; if (!state->last_u_d) { if (*inp.s == '=') *token.e++ = *inp.s++; ttype = binary_op; break; } while (*inp.s == '*' || isspace((unsigned char)*inp.s)) { if (*inp.s == '*') token_add_char('*'); inbuf_skip(); } if (ps.in_decl) { char *tp = inp.s; while (isalpha((unsigned char)*tp) || isspace((unsigned char)*tp)) { if (++tp >= inp.e) inbuf_read_line(); } if (*tp == '(') ps.procname[0] = ' '; } ttype = unary_op; break; default: if (token.s[0] == '/' && (*inp.s == '*' || *inp.s == '/')) { /* it is start of comment */ *token.e++ = inbuf_next(); ttype = comment; unary_delim = state->last_u_d; break; } while (token.e[-1] == *inp.s || *inp.s == '=') { /* handle '||', '&&', etc., and also things as in 'int *****i' */ token_add_char(inbuf_next()); } ttype = state->last_u_d ? unary_op : binary_op; unary_delim = true; } if (inp.s >= inp.e) /* check for input buffer empty */ inbuf_read_line(); state->last_u_d = unary_delim; check_size_token(1); *token.e = '\0'; return lexi_end(ttype); } void add_typename(const char *name) { if (typenames.len >= typenames.cap) { typenames.cap = 16 + 2 * typenames.cap; typenames.items = xrealloc(typenames.items, sizeof(typenames.items[0]) * typenames.cap); } int pos = bsearch_typenames(name); if (pos >= 0) return; /* already in the list */ pos = -(pos + 1); memmove(typenames.items + pos + 1, typenames.items + pos, sizeof(typenames.items[0]) * (typenames.len++ - (unsigned)pos)); typenames.items[pos] = xstrdup(name); }