LCOV - code coverage report
Current view: top level - py - parse.c (source / functions) Hit Total Coverage
Test: unix_coverage_v1.24.0-7-g548babf8a.info Lines: 554 556 99.6 %
Date: 2024-10-30 09:06:48 Functions: 28 28 100.0 %
Branches: 383 427 89.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * This file is part of the MicroPython project, http://micropython.org/
       3                 :            :  *
       4                 :            :  * The MIT License (MIT)
       5                 :            :  *
       6                 :            :  * Copyright (c) 2013-2017 Damien P. George
       7                 :            :  *
       8                 :            :  * Permission is hereby granted, free of charge, to any person obtaining a copy
       9                 :            :  * of this software and associated documentation files (the "Software"), to deal
      10                 :            :  * in the Software without restriction, including without limitation the rights
      11                 :            :  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      12                 :            :  * copies of the Software, and to permit persons to whom the Software is
      13                 :            :  * furnished to do so, subject to the following conditions:
      14                 :            :  *
      15                 :            :  * The above copyright notice and this permission notice shall be included in
      16                 :            :  * all copies or substantial portions of the Software.
      17                 :            :  *
      18                 :            :  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      19                 :            :  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      20                 :            :  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      21                 :            :  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      22                 :            :  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      23                 :            :  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      24                 :            :  * THE SOFTWARE.
      25                 :            :  */
      26                 :            : 
      27                 :            : #include <stdbool.h>
      28                 :            : #include <stdint.h>
      29                 :            : #include <stdio.h>
      30                 :            : #include <unistd.h> // for ssize_t
      31                 :            : #include <assert.h>
      32                 :            : #include <string.h>
      33                 :            : 
      34                 :            : #include "py/lexer.h"
      35                 :            : #include "py/parse.h"
      36                 :            : #include "py/parsenum.h"
      37                 :            : #include "py/runtime.h"
      38                 :            : #include "py/objint.h"
      39                 :            : #include "py/objstr.h"
      40                 :            : #include "py/builtin.h"
      41                 :            : 
      42                 :            : #if MICROPY_ENABLE_COMPILER
      43                 :            : 
      44                 :            : #define RULE_ACT_ARG_MASK       (0x0f)
      45                 :            : #define RULE_ACT_KIND_MASK      (0x30)
      46                 :            : #define RULE_ACT_ALLOW_IDENT    (0x40)
      47                 :            : #define RULE_ACT_ADD_BLANK      (0x80)
      48                 :            : #define RULE_ACT_OR             (0x10)
      49                 :            : #define RULE_ACT_AND            (0x20)
      50                 :            : #define RULE_ACT_LIST           (0x30)
      51                 :            : 
      52                 :            : #define RULE_ARG_KIND_MASK      (0xf000)
      53                 :            : #define RULE_ARG_ARG_MASK       (0x0fff)
      54                 :            : #define RULE_ARG_TOK            (0x1000)
      55                 :            : #define RULE_ARG_RULE           (0x2000)
      56                 :            : #define RULE_ARG_OPT_RULE       (0x3000)
      57                 :            : 
      58                 :            : // *FORMAT-OFF*
      59                 :            : 
      60                 :            : enum {
      61                 :            : // define rules with a compile function
      62                 :            : #define DEF_RULE(rule, comp, kind, ...) RULE_##rule,
      63                 :            : #define DEF_RULE_NC(rule, kind, ...)
      64                 :            : #include "py/grammar.h"
      65                 :            : #undef DEF_RULE
      66                 :            : #undef DEF_RULE_NC
      67                 :            :     RULE_const_object, // special node for a constant, generic Python object
      68                 :            : 
      69                 :            : // define rules without a compile function
      70                 :            : #define DEF_RULE(rule, comp, kind, ...)
      71                 :            : #define DEF_RULE_NC(rule, kind, ...) RULE_##rule,
      72                 :            : #include "py/grammar.h"
      73                 :            : #undef DEF_RULE
      74                 :            : #undef DEF_RULE_NC
      75                 :            : };
      76                 :            : 
      77                 :            : // Define an array of actions corresponding to each rule
      78                 :            : static const uint8_t rule_act_table[] = {
      79                 :            : #define or(n)                   (RULE_ACT_OR | n)
      80                 :            : #define and(n)                  (RULE_ACT_AND | n)
      81                 :            : #define and_ident(n)            (RULE_ACT_AND | n | RULE_ACT_ALLOW_IDENT)
      82                 :            : #define and_blank(n)            (RULE_ACT_AND | n | RULE_ACT_ADD_BLANK)
      83                 :            : #define one_or_more             (RULE_ACT_LIST | 2)
      84                 :            : #define list                    (RULE_ACT_LIST | 1)
      85                 :            : #define list_with_end           (RULE_ACT_LIST | 3)
      86                 :            : 
      87                 :            : #define DEF_RULE(rule, comp, kind, ...) kind,
      88                 :            : #define DEF_RULE_NC(rule, kind, ...)
      89                 :            : #include "py/grammar.h"
      90                 :            : #undef DEF_RULE
      91                 :            : #undef DEF_RULE_NC
      92                 :            : 
      93                 :            :     0, // RULE_const_object
      94                 :            : 
      95                 :            : #define DEF_RULE(rule, comp, kind, ...)
      96                 :            : #define DEF_RULE_NC(rule, kind, ...) kind,
      97                 :            : #include "py/grammar.h"
      98                 :            : #undef DEF_RULE
      99                 :            : #undef DEF_RULE_NC
     100                 :            : 
     101                 :            : #undef or
     102                 :            : #undef and
     103                 :            : #undef and_ident
     104                 :            : #undef and_blank
     105                 :            : #undef one_or_more
     106                 :            : #undef list
     107                 :            : #undef list_with_end
     108                 :            : };
     109                 :            : 
     110                 :            : // Define the argument data for each rule, as a combined array
     111                 :            : static const uint16_t rule_arg_combined_table[] = {
     112                 :            : #define tok(t)                  (RULE_ARG_TOK | MP_TOKEN_##t)
     113                 :            : #define rule(r)                 (RULE_ARG_RULE | RULE_##r)
     114                 :            : #define opt_rule(r)             (RULE_ARG_OPT_RULE | RULE_##r)
     115                 :            : 
     116                 :            : #define DEF_RULE(rule, comp, kind, ...) __VA_ARGS__,
     117                 :            : #define DEF_RULE_NC(rule, kind, ...)
     118                 :            : #include "py/grammar.h"
     119                 :            : #undef DEF_RULE
     120                 :            : #undef DEF_RULE_NC
     121                 :            : 
     122                 :            : #define DEF_RULE(rule, comp, kind, ...)
     123                 :            : #define DEF_RULE_NC(rule, kind, ...)  __VA_ARGS__,
     124                 :            : #include "py/grammar.h"
     125                 :            : #undef DEF_RULE
     126                 :            : #undef DEF_RULE_NC
     127                 :            : 
     128                 :            : #undef tok
     129                 :            : #undef rule
     130                 :            : #undef opt_rule
     131                 :            : };
     132                 :            : 
     133                 :            : // Macro to create a list of N identifiers where N is the number of variable arguments to the macro
     134                 :            : #define RULE_EXPAND(x) x
     135                 :            : #define RULE_PADDING(rule, ...) RULE_PADDING2(rule, __VA_ARGS__, RULE_PADDING_IDS(rule))
     136                 :            : #define RULE_PADDING2(rule, ...) RULE_EXPAND(RULE_PADDING3(rule, __VA_ARGS__))
     137                 :            : #define RULE_PADDING3(rule, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, ...) __VA_ARGS__
     138                 :            : #define RULE_PADDING_IDS(r) PAD13_##r, PAD12_##r, PAD11_##r, PAD10_##r, PAD9_##r, PAD8_##r, PAD7_##r, PAD6_##r, PAD5_##r, PAD4_##r, PAD3_##r, PAD2_##r, PAD1_##r,
     139                 :            : 
     140                 :            : // Use an enum to create constants specifying how much room a rule takes in rule_arg_combined_table
     141                 :            : enum {
     142                 :            : #define DEF_RULE(rule, comp, kind, ...) RULE_PADDING(rule, __VA_ARGS__)
     143                 :            : #define DEF_RULE_NC(rule, kind, ...)
     144                 :            : #include "py/grammar.h"
     145                 :            : #undef DEF_RULE
     146                 :            : #undef DEF_RULE_NC
     147                 :            : #define DEF_RULE(rule, comp, kind, ...)
     148                 :            : #define DEF_RULE_NC(rule, kind, ...) RULE_PADDING(rule, __VA_ARGS__)
     149                 :            : #include "py/grammar.h"
     150                 :            : #undef DEF_RULE
     151                 :            : #undef DEF_RULE_NC
     152                 :            : };
     153                 :            : 
     154                 :            : // Macro to compute the start of a rule in rule_arg_combined_table
     155                 :            : #define RULE_ARG_OFFSET(rule, ...) RULE_ARG_OFFSET2(rule, __VA_ARGS__, RULE_ARG_OFFSET_IDS(rule))
     156                 :            : #define RULE_ARG_OFFSET2(rule, ...) RULE_EXPAND(RULE_ARG_OFFSET3(rule, __VA_ARGS__))
     157                 :            : #define RULE_ARG_OFFSET3(rule, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, ...) _14
     158                 :            : #define RULE_ARG_OFFSET_IDS(r) PAD13_##r, PAD12_##r, PAD11_##r, PAD10_##r, PAD9_##r, PAD8_##r, PAD7_##r, PAD6_##r, PAD5_##r, PAD4_##r, PAD3_##r, PAD2_##r, PAD1_##r, PAD0_##r,
     159                 :            : 
     160                 :            : // Use the above enum values to create a table of offsets for each rule's arg
     161                 :            : // data, which indexes rule_arg_combined_table.  The offsets require 9 bits of
     162                 :            : // storage but only the lower 8 bits are stored here.  The 9th bit is computed
     163                 :            : // in get_rule_arg using the FIRST_RULE_WITH_OFFSET_ABOVE_255 constant.
     164                 :            : static const uint8_t rule_arg_offset_table[] = {
     165                 :            : #define DEF_RULE(rule, comp, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) & 0xff,
     166                 :            : #define DEF_RULE_NC(rule, kind, ...)
     167                 :            : #include "py/grammar.h"
     168                 :            : #undef DEF_RULE
     169                 :            : #undef DEF_RULE_NC
     170                 :            :     0, // RULE_const_object
     171                 :            : #define DEF_RULE(rule, comp, kind, ...)
     172                 :            : #define DEF_RULE_NC(rule, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) & 0xff,
     173                 :            : #include "py/grammar.h"
     174                 :            : #undef DEF_RULE
     175                 :            : #undef DEF_RULE_NC
     176                 :            : };
     177                 :            : 
     178                 :            : // Define a constant that's used to determine the 9th bit of the values in rule_arg_offset_table
     179                 :            : static const size_t FIRST_RULE_WITH_OFFSET_ABOVE_255 =
     180                 :            : #define DEF_RULE(rule, comp, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) >= 0x100 ? RULE_##rule :
     181                 :            : #define DEF_RULE_NC(rule, kind, ...)
     182                 :            : #include "py/grammar.h"
     183                 :            : #undef DEF_RULE
     184                 :            : #undef DEF_RULE_NC
     185                 :            : #define DEF_RULE(rule, comp, kind, ...)
     186                 :            : #define DEF_RULE_NC(rule, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) >= 0x100 ? RULE_##rule :
     187                 :            : #include "py/grammar.h"
     188                 :            : #undef DEF_RULE
     189                 :            : #undef DEF_RULE_NC
     190                 :            : 0;
     191                 :            : 
     192                 :            : #if MICROPY_DEBUG_PARSE_RULE_NAME
     193                 :            : // Define an array of rule names corresponding to each rule
     194                 :            : static const char *const rule_name_table[] = {
     195                 :            : #define DEF_RULE(rule, comp, kind, ...) #rule,
     196                 :            : #define DEF_RULE_NC(rule, kind, ...)
     197                 :            : #include "py/grammar.h"
     198                 :            : #undef DEF_RULE
     199                 :            : #undef DEF_RULE_NC
     200                 :            :     "", // RULE_const_object
     201                 :            : #define DEF_RULE(rule, comp, kind, ...)
     202                 :            : #define DEF_RULE_NC(rule, kind, ...) #rule,
     203                 :            : #include "py/grammar.h"
     204                 :            : #undef DEF_RULE
     205                 :            : #undef DEF_RULE_NC
     206                 :            : };
     207                 :            : #endif
     208                 :            : 
     209                 :            : // *FORMAT-ON*
     210                 :            : 
     211                 :            : typedef struct _rule_stack_t {
     212                 :            :     size_t src_line : (8 * sizeof(size_t) - 8); // maximum bits storing source line number
     213                 :            :     size_t rule_id : 8; // this must be large enough to fit largest rule number
     214                 :            :     size_t arg_i; // this dictates the maximum nodes in a "list" of things
     215                 :            : } rule_stack_t;
     216                 :            : 
     217                 :            : typedef struct _mp_parse_chunk_t {
     218                 :            :     size_t alloc;
     219                 :            :     union {
     220                 :            :         size_t used;
     221                 :            :         struct _mp_parse_chunk_t *next;
     222                 :            :     } union_;
     223                 :            :     byte data[];
     224                 :            : } mp_parse_chunk_t;
     225                 :            : 
     226                 :            : typedef struct _parser_t {
     227                 :            :     size_t rule_stack_alloc;
     228                 :            :     size_t rule_stack_top;
     229                 :            :     rule_stack_t *rule_stack;
     230                 :            : 
     231                 :            :     size_t result_stack_alloc;
     232                 :            :     size_t result_stack_top;
     233                 :            :     mp_parse_node_t *result_stack;
     234                 :            : 
     235                 :            :     mp_lexer_t *lexer;
     236                 :            : 
     237                 :            :     mp_parse_tree_t tree;
     238                 :            :     mp_parse_chunk_t *cur_chunk;
     239                 :            : 
     240                 :            :     #if MICROPY_COMP_CONST
     241                 :            :     mp_map_t consts;
     242                 :            :     #endif
     243                 :            : } parser_t;
     244                 :            : 
     245                 :            : static void push_result_rule(parser_t *parser, size_t src_line, uint8_t rule_id, size_t num_args);
     246                 :            : 
     247                 :   18899986 : static const uint16_t *get_rule_arg(uint8_t r_id) {
     248                 :   18899986 :     size_t off = rule_arg_offset_table[r_id];
     249         [ +  + ]:   18899986 :     if (r_id >= FIRST_RULE_WITH_OFFSET_ABOVE_255) {
     250                 :    6443351 :         off |= 0x100;
     251                 :            :     }
     252                 :   18899986 :     return &rule_arg_combined_table[off];
     253                 :            : }
     254                 :            : 
     255                 :     278741 : static void *parser_alloc(parser_t *parser, size_t num_bytes) {
     256                 :            :     // use a custom memory allocator to store parse nodes sequentially in large chunks
     257                 :            : 
     258                 :     278741 :     mp_parse_chunk_t *chunk = parser->cur_chunk;
     259                 :            : 
     260   [ +  +  +  + ]:     278741 :     if (chunk != NULL && chunk->union_.used + num_bytes > chunk->alloc) {
     261                 :            :         // not enough room at end of previously allocated chunk so try to grow
     262                 :     215779 :         mp_parse_chunk_t *new_data = (mp_parse_chunk_t *)m_renew_maybe(byte, chunk,
     263                 :            :             sizeof(mp_parse_chunk_t) + chunk->alloc,
     264                 :            :             sizeof(mp_parse_chunk_t) + chunk->alloc + num_bytes, false);
     265         [ +  + ]:     215779 :         if (new_data == NULL) {
     266                 :            :             // could not grow existing memory; shrink it to fit previous
     267                 :       9521 :             (void)m_renew_maybe(byte, chunk, sizeof(mp_parse_chunk_t) + chunk->alloc,
     268                 :            :                 sizeof(mp_parse_chunk_t) + chunk->union_.used, false);
     269                 :       9521 :             chunk->alloc = chunk->union_.used;
     270                 :       9521 :             chunk->union_.next = parser->tree.chunk;
     271                 :       9521 :             parser->tree.chunk = chunk;
     272                 :       9521 :             chunk = NULL;
     273                 :            :         } else {
     274                 :            :             // could grow existing memory
     275                 :     206258 :             chunk->alloc += num_bytes;
     276                 :            :         }
     277                 :            :     }
     278                 :            : 
     279                 :     215779 :     if (chunk == NULL) {
     280                 :            :         // no previous chunk, allocate a new chunk
     281                 :      13395 :         size_t alloc = MICROPY_ALLOC_PARSE_CHUNK_INIT;
     282         [ +  + ]:      13395 :         if (alloc < num_bytes) {
     283                 :         58 :             alloc = num_bytes;
     284                 :            :         }
     285                 :      13395 :         chunk = (mp_parse_chunk_t *)m_new(byte, sizeof(mp_parse_chunk_t) + alloc);
     286                 :      13395 :         chunk->alloc = alloc;
     287                 :      13395 :         chunk->union_.used = 0;
     288                 :      13395 :         parser->cur_chunk = chunk;
     289                 :            :     }
     290                 :            : 
     291                 :     278741 :     byte *ret = chunk->data + chunk->union_.used;
     292                 :     278741 :     chunk->union_.used += num_bytes;
     293                 :     278741 :     return ret;
     294                 :            : }
     295                 :            : 
     296                 :            : #if MICROPY_COMP_CONST_TUPLE
     297                 :        330 : static void parser_free_parse_node_struct(parser_t *parser, mp_parse_node_struct_t *pns) {
     298                 :        330 :     mp_parse_chunk_t *chunk = parser->cur_chunk;
     299   [ +  +  +  + ]:        330 :     if (chunk->data <= (byte *)pns && (byte *)pns < chunk->data + chunk->union_.used) {
     300                 :        283 :         size_t num_bytes = sizeof(mp_parse_node_struct_t) + sizeof(mp_parse_node_t) * MP_PARSE_NODE_STRUCT_NUM_NODES(pns);
     301                 :        283 :         chunk->union_.used -= num_bytes;
     302                 :            :     }
     303                 :        330 : }
     304                 :            : #endif
     305                 :            : 
     306                 :   18900449 : static void push_rule(parser_t *parser, size_t src_line, uint8_t rule_id, size_t arg_i) {
     307         [ +  + ]:   18900449 :     if (parser->rule_stack_top >= parser->rule_stack_alloc) {
     308                 :       1411 :         rule_stack_t *rs = m_renew(rule_stack_t, parser->rule_stack, parser->rule_stack_alloc, parser->rule_stack_alloc + MICROPY_ALLOC_PARSE_RULE_INC);
     309                 :       1411 :         parser->rule_stack = rs;
     310                 :       1411 :         parser->rule_stack_alloc += MICROPY_ALLOC_PARSE_RULE_INC;
     311                 :            :     }
     312                 :   18900449 :     rule_stack_t *rs = &parser->rule_stack[parser->rule_stack_top++];
     313                 :   18900449 :     rs->src_line = src_line;
     314                 :   18900449 :     rs->rule_id = rule_id;
     315                 :   18900449 :     rs->arg_i = arg_i;
     316                 :   18900449 : }
     317                 :            : 
     318                 :   10340386 : static void push_rule_from_arg(parser_t *parser, size_t arg) {
     319         [ -  + ]:   10340386 :     assert((arg & RULE_ARG_KIND_MASK) == RULE_ARG_RULE || (arg & RULE_ARG_KIND_MASK) == RULE_ARG_OPT_RULE);
     320                 :   10340386 :     size_t rule_id = arg & RULE_ARG_ARG_MASK;
     321                 :   10340386 :     push_rule(parser, parser->lexer->tok_line, rule_id, 0);
     322                 :   10340496 : }
     323                 :            : 
     324                 :   18894882 : static uint8_t pop_rule(parser_t *parser, size_t *arg_i, size_t *src_line) {
     325                 :   18894882 :     parser->rule_stack_top -= 1;
     326                 :   18894882 :     uint8_t rule_id = parser->rule_stack[parser->rule_stack_top].rule_id;
     327                 :   18894882 :     *arg_i = parser->rule_stack[parser->rule_stack_top].arg_i;
     328                 :   18894882 :     *src_line = parser->rule_stack[parser->rule_stack_top].src_line;
     329                 :   18894882 :     return rule_id;
     330                 :            : }
     331                 :            : 
     332                 :            : #if MICROPY_COMP_CONST_TUPLE
     333                 :       5614 : static uint8_t peek_rule(parser_t *parser, size_t n) {
     334         [ -  + ]:       5614 :     assert(parser->rule_stack_top > n);
     335                 :       5614 :     return parser->rule_stack[parser->rule_stack_top - 1 - n].rule_id;
     336                 :            : }
     337                 :            : #endif
     338                 :            : 
     339                 :       8799 : bool mp_parse_node_get_int_maybe(mp_parse_node_t pn, mp_obj_t *o) {
     340         [ +  + ]:       8799 :     if (MP_PARSE_NODE_IS_SMALL_INT(pn)) {
     341                 :       3682 :         *o = MP_OBJ_NEW_SMALL_INT(MP_PARSE_NODE_LEAF_SMALL_INT(pn));
     342                 :       3682 :         return true;
     343   [ +  -  +  +  :       5117 :     } else if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_const_object)) {
                   +  + ]
     344                 :       1539 :         mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)pn;
     345         [ +  - ]:       1539 :         *o = mp_parse_node_extract_const_object(pns);
     346   [ +  -  +  -  :       2283 :         return mp_obj_is_int(*o);
                   +  + ]
     347                 :            :     } else {
     348                 :            :         return false;
     349                 :            :     }
     350                 :            : }
     351                 :            : 
     352                 :            : #if MICROPY_COMP_CONST_TUPLE || MICROPY_COMP_CONST
     353                 :      86400 : static bool mp_parse_node_is_const(mp_parse_node_t pn) {
     354         [ +  + ]:      86400 :     if (MP_PARSE_NODE_IS_SMALL_INT(pn)) {
     355                 :            :         // Small integer.
     356                 :            :         return true;
     357         [ +  + ]:      79329 :     } else if (MP_PARSE_NODE_IS_LEAF(pn)) {
     358                 :            :         // Possible str, or constant literal.
     359                 :      17788 :         uintptr_t kind = MP_PARSE_NODE_LEAF_KIND(pn);
     360         [ +  + ]:      17788 :         if (kind == MP_PARSE_NODE_STRING) {
     361                 :            :             return true;
     362         [ +  + ]:      16262 :         } else if (kind == MP_PARSE_NODE_TOKEN) {
     363                 :       7518 :             uintptr_t arg = MP_PARSE_NODE_LEAF_ARG(pn);
     364                 :       7518 :             return arg == MP_TOKEN_KW_NONE
     365                 :            :                    || arg == MP_TOKEN_KW_FALSE
     366                 :            :                    || arg == MP_TOKEN_KW_TRUE
     367                 :       7518 :                    || arg == MP_TOKEN_ELLIPSIS;
     368                 :            :         }
     369   [ +  -  +  + ]:      61541 :     } else if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_const_object)) {
     370                 :            :         // Constant object.
     371                 :            :         return true;
     372         [ +  + ]:      60231 :     } else if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_atom_paren)) {
     373                 :            :         // Possible empty tuple.
     374                 :        162 :         mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)pn;
     375                 :        162 :         return MP_PARSE_NODE_IS_NULL(pns->nodes[0]);
     376                 :            :     }
     377                 :            :     return false;
     378                 :            : }
     379                 :            : 
     380                 :       8487 : static mp_obj_t mp_parse_node_convert_to_obj(mp_parse_node_t pn) {
     381         [ -  + ]:       8487 :     assert(mp_parse_node_is_const(pn));
     382         [ +  + ]:       8487 :     if (MP_PARSE_NODE_IS_SMALL_INT(pn)) {
     383                 :       3443 :         mp_int_t arg = MP_PARSE_NODE_LEAF_SMALL_INT(pn);
     384                 :            :         #if MICROPY_DYNAMIC_COMPILER
     385                 :            :         mp_uint_t sign_mask = -((mp_uint_t)1 << (mp_dynamic_compiler.small_int_bits - 1));
     386                 :            :         if (!((arg & sign_mask) == 0 || (arg & sign_mask) == sign_mask)) {
     387                 :            :             // Integer doesn't fit in a small-int, so create a multi-precision int object.
     388                 :            :             return mp_obj_new_int_from_ll(arg);
     389                 :            :         }
     390                 :            :         #endif
     391                 :       3443 :         return MP_OBJ_NEW_SMALL_INT(arg);
     392         [ +  + ]:       5044 :     } else if (MP_PARSE_NODE_IS_LEAF(pn)) {
     393                 :       4430 :         uintptr_t kind = MP_PARSE_NODE_LEAF_KIND(pn);
     394                 :       4430 :         uintptr_t arg = MP_PARSE_NODE_LEAF_ARG(pn);
     395         [ +  + ]:       4430 :         if (kind == MP_PARSE_NODE_STRING) {
     396                 :        672 :             return MP_OBJ_NEW_QSTR(arg);
     397                 :            :         } else {
     398         [ -  + ]:       3758 :             assert(MP_PARSE_NODE_LEAF_KIND(pn) == MP_PARSE_NODE_TOKEN);
     399   [ +  +  +  + ]:       3758 :             switch (arg) {
     400                 :            :                 case MP_TOKEN_KW_NONE:
     401                 :            :                     return mp_const_none;
     402                 :        126 :                 case MP_TOKEN_KW_FALSE:
     403                 :        126 :                     return mp_const_false;
     404                 :       3604 :                 case MP_TOKEN_KW_TRUE:
     405                 :       3604 :                     return mp_const_true;
     406                 :          2 :                 default:
     407         [ -  + ]:          2 :                     assert(arg == MP_TOKEN_ELLIPSIS);
     408                 :            :                     return MP_OBJ_FROM_PTR(&mp_const_ellipsis_obj);
     409                 :            :             }
     410                 :            :         }
     411   [ +  -  +  + ]:        614 :     } else if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_const_object)) {
     412                 :        590 :         mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)pn;
     413                 :        590 :         return mp_parse_node_extract_const_object(pns);
     414                 :            :     } else {
     415         [ -  + ]:         24 :         assert(MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_atom_paren));
     416         [ -  + ]:         24 :         assert(MP_PARSE_NODE_IS_NULL(((mp_parse_node_struct_t *)pn)->nodes[0]));
     417                 :            :         return mp_const_empty_tuple;
     418                 :            :     }
     419                 :            : }
     420                 :            : #endif
     421                 :            : 
     422                 :      72344 : static bool parse_node_is_const_bool(mp_parse_node_t pn, bool value) {
     423                 :            :     // Returns true if 'pn' is a constant whose boolean value is equivalent to 'value'
     424                 :            :     #if MICROPY_COMP_CONST_TUPLE || MICROPY_COMP_CONST
     425   [ +  +  +  + ]:      72344 :     return mp_parse_node_is_const(pn) && mp_obj_is_true(mp_parse_node_convert_to_obj(pn)) == value;
     426                 :            :     #else
     427                 :            :     return MP_PARSE_NODE_IS_TOKEN_KIND(pn, value ? MP_TOKEN_KW_TRUE : MP_TOKEN_KW_FALSE)
     428                 :            :            || (MP_PARSE_NODE_IS_SMALL_INT(pn) && !!MP_PARSE_NODE_LEAF_SMALL_INT(pn) == value);
     429                 :            :     #endif
     430                 :            : }
     431                 :            : 
     432                 :      36298 : bool mp_parse_node_is_const_false(mp_parse_node_t pn) {
     433                 :      36298 :     return parse_node_is_const_bool(pn, false);
     434                 :            : }
     435                 :            : 
     436                 :      36046 : bool mp_parse_node_is_const_true(mp_parse_node_t pn) {
     437                 :      36046 :     return parse_node_is_const_bool(pn, true);
     438                 :            : }
     439                 :            : 
     440                 :     493837 : size_t mp_parse_node_extract_list(mp_parse_node_t *pn, size_t pn_kind, mp_parse_node_t **nodes) {
     441         [ +  + ]:     493837 :     if (MP_PARSE_NODE_IS_NULL(*pn)) {
     442                 :     249614 :         *nodes = NULL;
     443                 :     249614 :         return 0;
     444         [ +  + ]:     244223 :     } else if (MP_PARSE_NODE_IS_LEAF(*pn)) {
     445                 :      56228 :         *nodes = pn;
     446                 :      56228 :         return 1;
     447                 :            :     } else {
     448                 :     187995 :         mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)(*pn);
     449         [ +  + ]:     187995 :         if (MP_PARSE_NODE_STRUCT_KIND(pns) != pn_kind) {
     450                 :     147382 :             *nodes = pn;
     451                 :     147382 :             return 1;
     452                 :            :         } else {
     453                 :      40613 :             *nodes = pns->nodes;
     454                 :      40613 :             return MP_PARSE_NODE_STRUCT_NUM_NODES(pns);
     455                 :            :         }
     456                 :            :     }
     457                 :            : }
     458                 :            : 
     459                 :            : #if MICROPY_DEBUG_PRINTERS
     460                 :         78 : void mp_parse_node_print(const mp_print_t *print, mp_parse_node_t pn, size_t indent) {
     461   [ +  +  +  + ]:         78 :     if (MP_PARSE_NODE_IS_STRUCT(pn)) {
     462                 :         44 :         mp_printf(print, "[% 4d] ", (int)((mp_parse_node_struct_t *)pn)->source_line);
     463                 :            :     } else {
     464                 :         34 :         mp_printf(print, "       ");
     465                 :            :     }
     466         [ +  + ]:        410 :     for (size_t i = 0; i < indent; i++) {
     467                 :        332 :         mp_printf(print, " ");
     468                 :            :     }
     469         [ +  + ]:         78 :     if (MP_PARSE_NODE_IS_NULL(pn)) {
     470                 :          4 :         mp_printf(print, "NULL\n");
     471         [ +  + ]:         74 :     } else if (MP_PARSE_NODE_IS_SMALL_INT(pn)) {
     472                 :          2 :         mp_int_t arg = MP_PARSE_NODE_LEAF_SMALL_INT(pn);
     473                 :          2 :         mp_printf(print, "int(" INT_FMT ")\n", arg);
     474         [ +  + ]:         72 :     } else if (MP_PARSE_NODE_IS_LEAF(pn)) {
     475                 :         28 :         uintptr_t arg = MP_PARSE_NODE_LEAF_ARG(pn);
     476      [ +  +  + ]:         28 :         switch (MP_PARSE_NODE_LEAF_KIND(pn)) {
     477                 :         22 :             case MP_PARSE_NODE_ID:
     478                 :         22 :                 mp_printf(print, "id(%s)\n", qstr_str(arg));
     479                 :         22 :                 break;
     480                 :          2 :             case MP_PARSE_NODE_STRING:
     481                 :          2 :                 mp_printf(print, "str(%s)\n", qstr_str(arg));
     482                 :          2 :                 break;
     483                 :          4 :             default:
     484         [ -  + ]:          4 :                 assert(MP_PARSE_NODE_LEAF_KIND(pn) == MP_PARSE_NODE_TOKEN);
     485                 :          4 :                 mp_printf(print, "tok(%u)\n", (uint)arg);
     486                 :          4 :                 break;
     487                 :            :         }
     488                 :            :     } else {
     489                 :            :         // node must be a mp_parse_node_struct_t
     490                 :         44 :         mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)pn;
     491         [ +  + ]:         44 :         if (MP_PARSE_NODE_STRUCT_KIND(pns) == RULE_const_object) {
     492                 :         10 :             mp_obj_t obj = mp_parse_node_extract_const_object(pns);
     493                 :            :             #if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_D
     494                 :            :             mp_printf(print, "literal const(%016llx)=", obj);
     495                 :            :             #else
     496                 :         10 :             mp_printf(print, "literal const(%p)=", obj);
     497                 :            :             #endif
     498                 :         10 :             mp_obj_print_helper(print, obj, PRINT_REPR);
     499                 :         10 :             mp_printf(print, "\n");
     500                 :            :         } else {
     501                 :         34 :             size_t n = MP_PARSE_NODE_STRUCT_NUM_NODES(pns);
     502                 :            :             #if MICROPY_DEBUG_PARSE_RULE_NAME
     503                 :         34 :             mp_printf(print, "%s(%u) (n=%u)\n", rule_name_table[MP_PARSE_NODE_STRUCT_KIND(pns)], (uint)MP_PARSE_NODE_STRUCT_KIND(pns), (uint)n);
     504                 :            :             #else
     505                 :            :             mp_printf(print, "rule(%u) (n=%u)\n", (uint)MP_PARSE_NODE_STRUCT_KIND(pns), (uint)n);
     506                 :            :             #endif
     507         [ +  + ]:        110 :             for (size_t i = 0; i < n; i++) {
     508                 :         76 :                 mp_parse_node_print(print, pns->nodes[i], indent + 2);
     509                 :            :             }
     510                 :            :         }
     511                 :            :     }
     512                 :         78 : }
     513                 :            : #endif // MICROPY_DEBUG_PRINTERS
     514                 :            : 
     515                 :            : /*
     516                 :            : static void result_stack_show(const mp_print_t *print, parser_t *parser) {
     517                 :            :     mp_printf(print, "result stack, most recent first\n");
     518                 :            :     for (ssize_t i = parser->result_stack_top - 1; i >= 0; i--) {
     519                 :            :         mp_parse_node_print(print, parser->result_stack[i], 0);
     520                 :            :     }
     521                 :            : }
     522                 :            : */
     523                 :            : 
     524                 :    1604363 : static mp_parse_node_t pop_result(parser_t *parser) {
     525         [ -  + ]:    1604363 :     assert(parser->result_stack_top > 0);
     526                 :    1604363 :     return parser->result_stack[--parser->result_stack_top];
     527                 :            : }
     528                 :            : 
     529                 :    1661364 : static mp_parse_node_t peek_result(parser_t *parser, size_t pos) {
     530         [ -  + ]:    1661364 :     assert(parser->result_stack_top > pos);
     531                 :    1661364 :     return parser->result_stack[parser->result_stack_top - 1 - pos];
     532                 :            : }
     533                 :            : 
     534                 :    1608425 : static void push_result_node(parser_t *parser, mp_parse_node_t pn) {
     535         [ +  + ]:    1608425 :     if (parser->result_stack_top >= parser->result_stack_alloc) {
     536                 :        700 :         mp_parse_node_t *stack = m_renew(mp_parse_node_t, parser->result_stack, parser->result_stack_alloc, parser->result_stack_alloc + MICROPY_ALLOC_PARSE_RESULT_INC);
     537                 :        700 :         parser->result_stack = stack;
     538                 :        700 :         parser->result_stack_alloc += MICROPY_ALLOC_PARSE_RESULT_INC;
     539                 :            :     }
     540                 :    1608425 :     parser->result_stack[parser->result_stack_top++] = pn;
     541                 :    1608425 : }
     542                 :            : 
     543                 :       8810 : static mp_parse_node_t make_node_const_object(parser_t *parser, size_t src_line, mp_obj_t obj) {
     544                 :       8810 :     mp_parse_node_struct_t *pn = parser_alloc(parser, sizeof(mp_parse_node_struct_t) + sizeof(mp_obj_t));
     545                 :       8810 :     pn->source_line = src_line;
     546                 :            :     #if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_D
     547                 :            :     // nodes are 32-bit pointers, but need to store 64-bit object
     548                 :            :     pn->kind_num_nodes = RULE_const_object | (2 << 8);
     549                 :            :     pn->nodes[0] = (uint64_t)obj;
     550                 :            :     pn->nodes[1] = (uint64_t)obj >> 32;
     551                 :            :     #else
     552                 :       8810 :     pn->kind_num_nodes = RULE_const_object | (1 << 8);
     553                 :       8810 :     pn->nodes[0] = (uintptr_t)obj;
     554                 :            :     #endif
     555                 :       8810 :     return (mp_parse_node_t)pn;
     556                 :            : }
     557                 :            : 
     558                 :            : // Create a parse node representing a constant object, possibly optimising the case of
     559                 :            : // an integer, by putting the (small) integer value directly in the parse node itself.
     560                 :      31239 : static mp_parse_node_t make_node_const_object_optimised(parser_t *parser, size_t src_line, mp_obj_t obj) {
     561         [ +  + ]:      31239 :     if (mp_obj_is_small_int(obj)) {
     562                 :      29956 :         mp_int_t val = MP_OBJ_SMALL_INT_VALUE(obj);
     563                 :            :         #if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_D
     564                 :            :         // A parse node is only 32-bits and the small-int value must fit in 31-bits
     565                 :            :         if (((val ^ (val << 1)) & 0xffffffff80000000) != 0) {
     566                 :            :             return make_node_const_object(parser, src_line, obj);
     567                 :            :         }
     568                 :            :         #endif
     569                 :            :         #if MICROPY_DYNAMIC_COMPILER
     570                 :            :         // Check that the integer value fits in target runtime's small-int
     571                 :            :         mp_uint_t sign_mask = -((mp_uint_t)1 << (mp_dynamic_compiler.small_int_bits - 1));
     572                 :            :         if (!((val & sign_mask) == 0 || (val & sign_mask) == sign_mask)) {
     573                 :            :             return make_node_const_object(parser, src_line, obj);
     574                 :            :         }
     575                 :            :         #endif
     576                 :      29956 :         return mp_parse_node_new_small_int(val);
     577                 :            :     } else {
     578                 :       1283 :         return make_node_const_object(parser, src_line, obj);
     579                 :            :     }
     580                 :            : }
     581                 :            : 
     582                 :     196649 : static void push_result_token(parser_t *parser, uint8_t rule_id) {
     583                 :     196649 :     mp_parse_node_t pn;
     584                 :     196649 :     mp_lexer_t *lex = parser->lexer;
     585   [ +  +  +  +  :     196649 :     if (lex->tok_kind == MP_TOKEN_NAME) {
                   +  + ]
     586                 :     132020 :         qstr id = qstr_from_strn(lex->vstr.buf, lex->vstr.len);
     587                 :            :         #if MICROPY_COMP_CONST
     588                 :            :         // if name is a standalone identifier, look it up in the table of dynamic constants
     589                 :     132008 :         mp_map_elem_t *elem;
     590         [ +  + ]:     132008 :         if (rule_id == RULE_atom
     591         [ +  + ]:      95371 :             && (elem = mp_map_lookup(&parser->consts, MP_OBJ_NEW_QSTR(id), MP_MAP_LOOKUP)) != NULL) {
     592                 :        201 :             pn = make_node_const_object_optimised(parser, lex->tok_line, elem->value);
     593                 :            :         } else {
     594                 :     131807 :             pn = mp_parse_node_new_leaf(MP_PARSE_NODE_ID, id);
     595                 :            :         }
     596                 :            :         #else
     597                 :            :         (void)rule_id;
     598                 :            :         pn = mp_parse_node_new_leaf(MP_PARSE_NODE_ID, id);
     599                 :            :         #endif
     600                 :            :     } else if (lex->tok_kind == MP_TOKEN_INTEGER) {
     601                 :      27713 :         mp_obj_t o = mp_parse_num_integer(lex->vstr.buf, lex->vstr.len, 0, lex);
     602                 :      27701 :         pn = make_node_const_object_optimised(parser, lex->tok_line, o);
     603                 :            :     } else if (lex->tok_kind == MP_TOKEN_FLOAT_OR_IMAG) {
     604                 :       1684 :         mp_obj_t o = mp_parse_num_float(lex->vstr.buf, lex->vstr.len, true, lex);
     605                 :       1684 :         pn = make_node_const_object(parser, lex->tok_line, o);
     606                 :            :     } else if (lex->tok_kind == MP_TOKEN_STRING) {
     607                 :            :         // Don't automatically intern all strings.  Doc strings (which are usually large)
     608                 :            :         // will be discarded by the compiler, and so we shouldn't intern them.
     609                 :      16993 :         qstr qst = MP_QSTRnull;
     610         [ +  + ]:      16993 :         if (lex->vstr.len <= MICROPY_ALLOC_PARSE_INTERN_STRING_LEN) {
     611                 :            :             // intern short strings
     612                 :      13936 :             qst = qstr_from_strn(lex->vstr.buf, lex->vstr.len);
     613                 :            :         } else {
     614                 :            :             // check if this string is already interned
     615                 :       3057 :             qst = qstr_find_strn(lex->vstr.buf, lex->vstr.len);
     616                 :            :         }
     617         [ +  + ]:      16993 :         if (qst != MP_QSTRnull) {
     618                 :            :             // qstr exists, make a leaf node
     619                 :      14409 :             pn = mp_parse_node_new_leaf(MP_PARSE_NODE_STRING, qst);
     620                 :            :         } else {
     621                 :            :             // not interned, make a node holding a pointer to the string object
     622                 :       2584 :             mp_obj_t o = mp_obj_new_str_copy(&mp_type_str, (const byte *)lex->vstr.buf, lex->vstr.len);
     623                 :       2584 :             pn = make_node_const_object(parser, lex->tok_line, o);
     624                 :            :         }
     625                 :            :     } else if (lex->tok_kind == MP_TOKEN_BYTES) {
     626                 :            :         // make a node holding a pointer to the bytes object
     627                 :       1982 :         mp_obj_t o = mp_obj_new_bytes((const byte *)lex->vstr.buf, lex->vstr.len);
     628                 :       1982 :         pn = make_node_const_object(parser, lex->tok_line, o);
     629                 :            :     } else {
     630                 :      16257 :         pn = mp_parse_node_new_leaf(MP_PARSE_NODE_TOKEN, lex->tok_kind);
     631                 :            :     }
     632                 :     196625 :     push_result_node(parser, pn);
     633                 :     196623 : }
     634                 :            : 
     635                 :            : #if MICROPY_COMP_CONST_FOLDING
     636                 :            : 
     637                 :            : #if MICROPY_COMP_MODULE_CONST
     638                 :            : static const mp_rom_map_elem_t mp_constants_table[] = {
     639                 :            :     #if MICROPY_PY_ERRNO
     640                 :            :     { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_errno) },
     641                 :            :     #endif
     642                 :            :     #if MICROPY_PY_UCTYPES
     643                 :            :     { MP_ROM_QSTR(MP_QSTR_uctypes), MP_ROM_PTR(&mp_module_uctypes) },
     644                 :            :     #endif
     645                 :            :     // Extra constants as defined by a port
     646                 :            :     MICROPY_PORT_CONSTANTS
     647                 :            : };
     648                 :            : static MP_DEFINE_CONST_MAP(mp_constants_map, mp_constants_table);
     649                 :            : #endif
     650                 :            : 
     651                 :     274716 : static bool fold_logical_constants(parser_t *parser, uint8_t rule_id, size_t *num_args) {
     652                 :     274716 :     if (rule_id == RULE_or_test
     653         [ +  + ]:     274716 :         || rule_id == RULE_and_test) {
     654                 :            :         // folding for binary logical ops: or and
     655                 :        594 :         size_t copy_to = *num_args;
     656         [ +  - ]:       1176 :         for (size_t i = copy_to; i > 0;) {
     657                 :       1176 :             mp_parse_node_t pn = peek_result(parser, --i);
     658                 :       1176 :             parser->result_stack[parser->result_stack_top - copy_to] = pn;
     659         [ +  + ]:       1176 :             if (i == 0) {
     660                 :            :                 // always need to keep the last value
     661                 :            :                 break;
     662                 :            :             }
     663         [ +  + ]:        604 :             if (rule_id == RULE_or_test) {
     664         [ +  + ]:        229 :                 if (mp_parse_node_is_const_true(pn)) {
     665                 :            :                     //
     666                 :            :                     break;
     667         [ +  + ]:        219 :                 } else if (!mp_parse_node_is_const_false(pn)) {
     668                 :        209 :                     copy_to -= 1;
     669                 :            :                 }
     670                 :            :             } else {
     671                 :            :                 // RULE_and_test
     672         [ +  + ]:        375 :                 if (mp_parse_node_is_const_false(pn)) {
     673                 :            :                     break;
     674         [ +  + ]:        363 :                 } else if (!mp_parse_node_is_const_true(pn)) {
     675                 :        353 :                     copy_to -= 1;
     676                 :            :                 }
     677                 :            :             }
     678                 :            :         }
     679                 :        594 :         copy_to -= 1; // copy_to now contains number of args to pop
     680                 :            : 
     681                 :            :         // pop and discard all the short-circuited expressions
     682         [ +  + ]:        636 :         for (size_t i = 0; i < copy_to; ++i) {
     683                 :         42 :             pop_result(parser);
     684                 :            :         }
     685                 :        594 :         *num_args -= copy_to;
     686                 :            : 
     687                 :            :         // we did a complete folding if there's only 1 arg left
     688                 :        594 :         return *num_args == 1;
     689                 :            : 
     690         [ +  + ]:     274122 :     } else if (rule_id == RULE_not_test_2) {
     691                 :            :         // folding for unary logical op: not
     692                 :        627 :         mp_parse_node_t pn = peek_result(parser, 0);
     693         [ +  + ]:        627 :         if (mp_parse_node_is_const_false(pn)) {
     694                 :            :             pn = mp_parse_node_new_leaf(MP_PARSE_NODE_TOKEN, MP_TOKEN_KW_TRUE);
     695         [ +  + ]:        593 :         } else if (mp_parse_node_is_const_true(pn)) {
     696                 :            :             pn = mp_parse_node_new_leaf(MP_PARSE_NODE_TOKEN, MP_TOKEN_KW_FALSE);
     697                 :            :         } else {
     698                 :            :             return false;
     699                 :            :         }
     700                 :         60 :         pop_result(parser);
     701                 :         60 :         push_result_node(parser, pn);
     702                 :         60 :         return true;
     703                 :            :     }
     704                 :            : 
     705                 :            :     return false;
     706                 :            : }
     707                 :            : 
     708                 :     274624 : static bool fold_constants(parser_t *parser, uint8_t rule_id, size_t num_args) {
     709                 :            :     // this code does folding of arbitrary integer expressions, eg 1 + 2 * 3 + 4
     710                 :            :     // it does not do partial folding, eg 1 + 2 + x -> 3 + x
     711                 :            : 
     712                 :     274624 :     mp_obj_t arg0;
     713                 :     274624 :     if (rule_id == RULE_expr
     714                 :            :         || rule_id == RULE_xor_expr
     715                 :     274624 :         || rule_id == RULE_and_expr
     716   [ +  +  +  +  :     274624 :         || rule_id == RULE_power) {
                   +  + ]
     717                 :            :         // folding for binary ops: | ^ & **
     718                 :       1363 :         mp_parse_node_t pn = peek_result(parser, num_args - 1);
     719         [ +  + ]:       1363 :         if (!mp_parse_node_get_int_maybe(pn, &arg0)) {
     720                 :            :             return false;
     721                 :            :         }
     722                 :        704 :         mp_binary_op_t op;
     723   [ +  +  +  + ]:        704 :         if (rule_id == RULE_expr) {
     724                 :            :             op = MP_BINARY_OP_OR;
     725                 :            :         } else if (rule_id == RULE_xor_expr) {
     726                 :            :             op = MP_BINARY_OP_XOR;
     727                 :            :         } else if (rule_id == RULE_and_expr) {
     728                 :            :             op = MP_BINARY_OP_AND;
     729                 :            :         } else {
     730                 :        704 :             op = MP_BINARY_OP_POWER;
     731                 :            :         }
     732         [ +  + ]:       1458 :         for (ssize_t i = num_args - 2; i >= 0; --i) {
     733                 :        784 :             pn = peek_result(parser, i);
     734                 :        784 :             mp_obj_t arg1;
     735         [ +  + ]:        784 :             if (!mp_parse_node_get_int_maybe(pn, &arg1)) {
     736                 :         30 :                 return false;
     737                 :            :             }
     738   [ +  +  +  + ]:        760 :             if (op == MP_BINARY_OP_POWER && mp_obj_int_sign(arg1) < 0) {
     739                 :            :                 // ** can't have negative rhs
     740                 :            :                 return false;
     741                 :            :             }
     742                 :        754 :             arg0 = mp_binary_op(op, arg0, arg1);
     743                 :            :         }
     744                 :            :     } else if (rule_id == RULE_shift_expr
     745                 :            :                || rule_id == RULE_arith_expr
     746                 :            :                || rule_id == RULE_term) {
     747                 :            :         // folding for binary ops: << >> + - * @ / % //
     748                 :       3398 :         mp_parse_node_t pn = peek_result(parser, num_args - 1);
     749         [ +  + ]:       3398 :         if (!mp_parse_node_get_int_maybe(pn, &arg0)) {
     750                 :            :             return false;
     751                 :            :         }
     752         [ +  + ]:       1275 :         for (ssize_t i = num_args - 2; i >= 1; i -= 2) {
     753                 :        787 :             pn = peek_result(parser, i - 1);
     754                 :        787 :             mp_obj_t arg1;
     755         [ +  + ]:        787 :             if (!mp_parse_node_get_int_maybe(pn, &arg1)) {
     756                 :        281 :                 return false;
     757                 :            :             }
     758                 :        562 :             mp_token_kind_t tok = MP_PARSE_NODE_LEAF_ARG(peek_result(parser, i));
     759         [ +  + ]:        562 :             if (tok == MP_TOKEN_OP_AT || tok == MP_TOKEN_OP_SLASH) {
     760                 :            :                 // Can't fold @ or /
     761                 :            :                 return false;
     762                 :            :             }
     763                 :        530 :             mp_binary_op_t op = MP_BINARY_OP_LSHIFT + (tok - MP_TOKEN_OP_DBL_LESS);
     764                 :        530 :             int rhs_sign = mp_obj_int_sign(arg1);
     765         [ +  + ]:        530 :             if (op <= MP_BINARY_OP_RSHIFT) {
     766                 :            :                 // << and >> can't have negative rhs
     767         [ +  + ]:        292 :                 if (rhs_sign < 0) {
     768                 :            :                     return false;
     769                 :            :                 }
     770         [ +  + ]:        238 :             } else if (op >= MP_BINARY_OP_FLOOR_DIVIDE) {
     771                 :            :                 // % and // can't have zero rhs
     772         [ +  + ]:         45 :                 if (rhs_sign == 0) {
     773                 :            :                     return false;
     774                 :            :                 }
     775                 :            :             }
     776                 :        506 :             arg0 = mp_binary_op(op, arg0, arg1);
     777                 :            :         }
     778                 :            :     } else if (rule_id == RULE_factor_2) {
     779                 :            :         // folding for unary ops: + - ~
     780                 :       2467 :         mp_parse_node_t pn = peek_result(parser, 0);
     781         [ +  + ]:       2467 :         if (!mp_parse_node_get_int_maybe(pn, &arg0)) {
     782                 :            :             return false;
     783                 :            :         }
     784                 :       1631 :         mp_token_kind_t tok = MP_PARSE_NODE_LEAF_ARG(peek_result(parser, 1));
     785                 :       1631 :         mp_unary_op_t op;
     786         [ +  + ]:       1631 :         if (tok == MP_TOKEN_OP_TILDE) {
     787                 :            :             op = MP_UNARY_OP_INVERT;
     788                 :            :         } else {
     789         [ -  + ]:       1609 :             assert(tok == MP_TOKEN_OP_PLUS || tok == MP_TOKEN_OP_MINUS); // should be
     790                 :            :             op = MP_UNARY_OP_POSITIVE + (tok - MP_TOKEN_OP_PLUS);
     791                 :            :         }
     792                 :       1631 :         arg0 = mp_unary_op(op, arg0);
     793                 :            : 
     794                 :            :     #if MICROPY_COMP_CONST
     795                 :            :     } else if (rule_id == RULE_expr_stmt) {
     796                 :      37901 :         mp_parse_node_t pn1 = peek_result(parser, 0);
     797         [ +  + ]:      37901 :         if (!MP_PARSE_NODE_IS_NULL(pn1)
     798   [ +  +  +  + ]:      10931 :             && !(MP_PARSE_NODE_IS_STRUCT_KIND(pn1, RULE_expr_stmt_augassign)
     799                 :            :                  || MP_PARSE_NODE_IS_STRUCT_KIND(pn1, RULE_expr_stmt_assign_list))) {
     800                 :            :             // this node is of the form <x> = <y>
     801                 :      10428 :             mp_parse_node_t pn0 = peek_result(parser, 1);
     802         [ +  + ]:      10428 :             if (MP_PARSE_NODE_IS_ID(pn0)
     803   [ +  +  +  + ]:       7533 :                 && MP_PARSE_NODE_IS_STRUCT_KIND(pn1, RULE_atom_expr_normal)
     804         [ +  + ]:       3611 :                 && MP_PARSE_NODE_IS_ID(((mp_parse_node_struct_t *)pn1)->nodes[0])
     805         [ +  + ]:       3584 :                 && MP_PARSE_NODE_LEAF_ARG(((mp_parse_node_struct_t *)pn1)->nodes[0]) == MP_QSTR_const
     806   [ +  -  +  -  :        109 :                 && MP_PARSE_NODE_IS_STRUCT_KIND(((mp_parse_node_struct_t *)pn1)->nodes[1], RULE_trailer_paren)
                   +  - ]
     807                 :            :                 ) {
     808                 :            :                 // code to assign dynamic constants: id = const(value)
     809                 :            : 
     810                 :            :                 // get the id
     811                 :        109 :                 qstr id = MP_PARSE_NODE_LEAF_ARG(pn0);
     812                 :            : 
     813                 :            :                 // get the value
     814                 :        109 :                 mp_parse_node_t pn_value = ((mp_parse_node_struct_t *)((mp_parse_node_struct_t *)pn1)->nodes[1])->nodes[0];
     815         [ +  + ]:        109 :                 if (!mp_parse_node_is_const(pn_value)) {
     816                 :         32 :                     mp_obj_t exc = mp_obj_new_exception_msg(&mp_type_SyntaxError,
     817                 :         32 :                         MP_ERROR_TEXT("not a constant"));
     818                 :         32 :                     mp_obj_exception_add_traceback(exc, parser->lexer->source_name,
     819                 :         32 :                         ((mp_parse_node_struct_t *)pn1)->source_line, MP_QSTRnull);
     820                 :         32 :                     nlr_raise(exc);
     821                 :            :                 }
     822                 :         77 :                 mp_obj_t value = mp_parse_node_convert_to_obj(pn_value);
     823                 :            : 
     824                 :            :                 // store the value in the table of dynamic constants
     825                 :         77 :                 mp_map_elem_t *elem = mp_map_lookup(&parser->consts, MP_OBJ_NEW_QSTR(id), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND);
     826         [ -  + ]:         77 :                 assert(elem->value == MP_OBJ_NULL);
     827                 :         77 :                 elem->value = value;
     828                 :            : 
     829                 :            :                 // If the constant starts with an underscore then treat it as a private
     830                 :            :                 // variable and don't emit any code to store the value to the id.
     831         [ +  + ]:         77 :                 if (qstr_str(id)[0] == '_') {
     832                 :         46 :                     pop_result(parser); // pop const(value)
     833                 :         46 :                     pop_result(parser); // pop id
     834                 :         46 :                     push_result_rule(parser, 0, RULE_pass_stmt, 0); // replace with "pass"
     835                 :         46 :                     return true;
     836                 :            :                 }
     837                 :            : 
     838                 :            :                 // replace const(value) with value
     839                 :         31 :                 pop_result(parser);
     840                 :         31 :                 push_result_node(parser, pn_value);
     841                 :            : 
     842                 :            :                 // finished folding this assignment, but we still want it to be part of the tree
     843                 :         31 :                 return false;
     844                 :            :             }
     845                 :            :         }
     846                 :            :         return false;
     847                 :            :     #endif
     848                 :            : 
     849                 :            :     #if MICROPY_COMP_MODULE_CONST
     850                 :            :     } else if (rule_id == RULE_atom_expr_normal) {
     851                 :      54811 :         mp_parse_node_t pn0 = peek_result(parser, 1);
     852                 :      54811 :         mp_parse_node_t pn1 = peek_result(parser, 0);
     853   [ +  +  +  - ]:      54811 :         if (!(MP_PARSE_NODE_IS_ID(pn0)
     854   [ +  -  +  + ]:      53157 :               && MP_PARSE_NODE_IS_STRUCT_KIND(pn1, RULE_trailer_period))) {
     855                 :      54267 :             return false;
     856                 :            :         }
     857                 :            :         // id1.id2
     858                 :            :         // look it up in constant table, see if it can be replaced with an integer
     859                 :       6537 :         mp_parse_node_struct_t *pns1 = (mp_parse_node_struct_t *)pn1;
     860         [ -  + ]:       6537 :         assert(MP_PARSE_NODE_IS_ID(pns1->nodes[0]));
     861                 :       6537 :         qstr q_base = MP_PARSE_NODE_LEAF_ARG(pn0);
     862                 :       6537 :         qstr q_attr = MP_PARSE_NODE_LEAF_ARG(pns1->nodes[0]);
     863                 :       6537 :         mp_map_elem_t *elem = mp_map_lookup((mp_map_t *)&mp_constants_map, MP_OBJ_NEW_QSTR(q_base), MP_MAP_LOOKUP);
     864         [ +  + ]:       6537 :         if (elem == NULL) {
     865                 :            :             return false;
     866                 :            :         }
     867                 :        548 :         mp_obj_t dest[2];
     868                 :        548 :         mp_load_method_maybe(elem->value, q_attr, dest);
     869   [ +  -  +  +  :        548 :         if (!(dest[0] != MP_OBJ_NULL && mp_obj_is_int(dest[0]) && dest[1] == MP_OBJ_NULL)) {
          +  +  -  +  +  
                      - ]
     870                 :            :             return false;
     871                 :            :         }
     872                 :        544 :         arg0 = dest[0];
     873                 :            :     #endif
     874                 :            : 
     875                 :            :     } else {
     876                 :            :         return false;
     877                 :            :     }
     878                 :            : 
     879                 :            :     // success folding this rule
     880                 :            : 
     881         [ +  + ]:      10603 :     for (size_t i = num_args; i > 0; i--) {
     882                 :       7266 :         pop_result(parser);
     883                 :            :     }
     884                 :       3337 :     push_result_node(parser, make_node_const_object_optimised(parser, 0, arg0));
     885                 :            : 
     886                 :       3337 :     return true;
     887                 :            : }
     888                 :            : 
     889                 :            : #endif // MICROPY_COMP_CONST_FOLDING
     890                 :            : 
     891                 :            : #if MICROPY_COMP_CONST_TUPLE
     892                 :       2604 : static bool build_tuple_from_stack(parser_t *parser, size_t src_line, size_t num_args) {
     893         [ +  + ]:       6737 :     for (size_t i = num_args; i > 0;) {
     894                 :       5460 :         mp_parse_node_t pn = peek_result(parser, --i);
     895         [ +  + ]:       5460 :         if (!mp_parse_node_is_const(pn)) {
     896                 :            :             return false;
     897                 :            :         }
     898                 :            :     }
     899                 :       1277 :     mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(num_args, NULL));
     900         [ +  + ]:       4907 :     for (size_t i = num_args; i > 0;) {
     901                 :       3630 :         mp_parse_node_t pn = pop_result(parser);
     902                 :       3630 :         tuple->items[--i] = mp_parse_node_convert_to_obj(pn);
     903   [ +  -  +  + ]:       3630 :         if (MP_PARSE_NODE_IS_STRUCT(pn)) {
     904                 :        330 :             parser_free_parse_node_struct(parser, (mp_parse_node_struct_t *)pn);
     905                 :            :         }
     906                 :            :     }
     907                 :       1277 :     push_result_node(parser, make_node_const_object(parser, src_line, MP_OBJ_FROM_PTR(tuple)));
     908                 :       1277 :     return true;
     909                 :            : }
     910                 :            : 
     911                 :     271209 : static bool build_tuple(parser_t *parser, size_t src_line, uint8_t rule_id, size_t num_args) {
     912         [ +  + ]:     271209 :     if (rule_id == RULE_testlist_comp) {
     913         [ +  + ]:       1969 :         if (peek_rule(parser, 0) == RULE_atom_paren) {
     914                 :            :             // Tuple of the form "(a,)".
     915                 :       1484 :             return build_tuple_from_stack(parser, src_line, num_args);
     916                 :            :         }
     917                 :            :     }
     918         [ +  + ]:     269725 :     if (rule_id == RULE_testlist_comp_3c) {
     919         [ -  + ]:       1215 :         assert(peek_rule(parser, 0) == RULE_testlist_comp_3b);
     920         [ -  + ]:       1215 :         assert(peek_rule(parser, 1) == RULE_testlist_comp);
     921         [ +  + ]:       1215 :         if (peek_rule(parser, 2) == RULE_atom_paren) {
     922                 :            :             // Tuple of the form "(a, b)".
     923         [ +  + ]:        772 :             if (build_tuple_from_stack(parser, src_line, num_args)) {
     924                 :        444 :                 parser->rule_stack_top -= 2; // discard 2 rules
     925                 :        444 :                 return true;
     926                 :            :             }
     927                 :            :         }
     928                 :            :     }
     929                 :     269281 :     if (rule_id == RULE_testlist_star_expr
     930         [ +  + ]:     269281 :         || rule_id == RULE_testlist
     931                 :            :         || rule_id == RULE_subscriptlist) {
     932                 :            :         // Tuple of the form:
     933                 :            :         //  - x = a, b
     934                 :            :         //  - return a, b
     935                 :            :         //  - for x in a, b: pass
     936                 :            :         //  - x[a, b]
     937                 :        348 :         return build_tuple_from_stack(parser, src_line, num_args);
     938                 :            :     }
     939                 :            : 
     940                 :            :     return false;
     941                 :            : }
     942                 :            : #endif
     943                 :            : 
     944                 :     277569 : static void push_result_rule(parser_t *parser, size_t src_line, uint8_t rule_id, size_t num_args) {
     945                 :            :     // Simplify and optimise certain rules, to reduce memory usage and simplify the compiler.
     946         [ +  + ]:     277569 :     if (rule_id == RULE_atom_paren) {
     947                 :            :         // Remove parenthesis around a single expression if possible.
     948                 :            :         // This atom_paren rule always has a single argument, and after this
     949                 :            :         // optimisation that argument is either NULL or testlist_comp.
     950                 :       3340 :         mp_parse_node_t pn = peek_result(parser, 0);
     951         [ +  + ]:       3340 :         if (MP_PARSE_NODE_IS_NULL(pn)) {
     952                 :            :             // need to keep parenthesis for ()
     953   [ +  +  +  + ]:       3111 :         } else if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, RULE_testlist_comp)) {
     954                 :            :             // need to keep parenthesis for (a, b, ...)
     955                 :            :         } else {
     956                 :            :             // parenthesis around a single expression, so it's just the expression
     957                 :            :             return;
     958                 :            :         }
     959         [ +  + ]:     274229 :     } else if (rule_id == RULE_testlist_comp) {
     960                 :            :         // The testlist_comp rule can be the sole argument to either atom_parent
     961                 :            :         // or atom_bracket, for (...) and [...] respectively.
     962         [ -  + ]:       2740 :         assert(num_args == 2);
     963                 :       2740 :         mp_parse_node_t pn = peek_result(parser, 0);
     964   [ +  -  +  + ]:       2740 :         if (MP_PARSE_NODE_IS_STRUCT(pn)) {
     965                 :       1528 :             mp_parse_node_struct_t *pns = (mp_parse_node_struct_t *)pn;
     966         [ +  + ]:       1528 :             if (MP_PARSE_NODE_STRUCT_KIND(pns) == RULE_testlist_comp_3b) {
     967                 :            :                 // tuple of one item, with trailing comma
     968                 :        265 :                 pop_result(parser);
     969                 :        265 :                 --num_args;
     970         [ +  + ]:       1263 :             } else if (MP_PARSE_NODE_STRUCT_KIND(pns) == RULE_testlist_comp_3c) {
     971                 :            :                 // tuple of many items, convert testlist_comp_3c to testlist_comp
     972                 :        771 :                 pop_result(parser);
     973         [ -  + ]:        771 :                 assert(pn == peek_result(parser, 0));
     974                 :        771 :                 pns->kind_num_nodes = rule_id | MP_PARSE_NODE_STRUCT_NUM_NODES(pns) << 8;
     975                 :        771 :                 return;
     976                 :            :             } else if (MP_PARSE_NODE_STRUCT_KIND(pns) == RULE_comp_for) {
     977                 :            :                 // generator expression
     978                 :            :             } else {
     979                 :            :                 // tuple with 2 items
     980                 :            :             }
     981                 :            :         } else {
     982                 :            :             // tuple with 2 items
     983                 :            :         }
     984         [ +  + ]:     271489 :     } else if (rule_id == RULE_testlist_comp_3c) {
     985                 :            :         // steal first arg of outer testlist_comp rule
     986                 :       1215 :         ++num_args;
     987                 :            :     }
     988                 :            : 
     989                 :            :     #if MICROPY_COMP_CONST_FOLDING
     990         [ +  + ]:     274716 :     if (fold_logical_constants(parser, rule_id, &num_args)) {
     991                 :            :         // we folded this rule so return straight away
     992                 :            :         return;
     993                 :            :     }
     994         [ +  + ]:     274622 :     if (fold_constants(parser, rule_id, num_args)) {
     995                 :            :         // we folded this rule so return straight away
     996                 :            :         return;
     997                 :            :     }
     998                 :            :     #endif
     999                 :            : 
    1000                 :            :     #if MICROPY_COMP_CONST_TUPLE
    1001         [ +  + ]:     271209 :     if (build_tuple(parser, src_line, rule_id, num_args)) {
    1002                 :            :         // we built a tuple from this rule so return straight away
    1003                 :            :         return;
    1004                 :            :     }
    1005                 :            :     #endif
    1006                 :            : 
    1007                 :     269931 :     mp_parse_node_struct_t *pn = parser_alloc(parser, sizeof(mp_parse_node_struct_t) + sizeof(mp_parse_node_t) * num_args);
    1008                 :     269932 :     pn->source_line = src_line;
    1009                 :     269932 :     pn->kind_num_nodes = (rule_id & 0xff) | (num_args << 8);
    1010         [ +  + ]:     792997 :     for (size_t i = num_args; i > 0; i--) {
    1011                 :     523067 :         pn->nodes[i - 1] = pop_result(parser);
    1012                 :            :     }
    1013         [ +  + ]:     269930 :     if (rule_id == RULE_testlist_comp_3c) {
    1014                 :            :         // need to push something non-null to replace stolen first arg of testlist_comp
    1015                 :        771 :         push_result_node(parser, (mp_parse_node_t)pn);
    1016                 :            :     }
    1017                 :     269930 :     push_result_node(parser, (mp_parse_node_t)pn);
    1018                 :            : }
    1019                 :            : 
    1020                 :       4038 : mp_parse_tree_t mp_parse(mp_lexer_t *lex, mp_parse_input_kind_t input_kind) {
    1021                 :            :     // Set exception handler to free the lexer if an exception is raised.
    1022                 :       4038 :     MP_DEFINE_NLR_JUMP_CALLBACK_FUNCTION_1(ctx, mp_lexer_free, lex);
    1023                 :       4038 :     nlr_push_jump_callback(&ctx.callback, mp_call_function_1_from_nlr_jump_callback);
    1024                 :            : 
    1025                 :            :     // initialise parser and allocate memory for its stacks
    1026                 :            : 
    1027                 :       4039 :     parser_t parser;
    1028                 :            : 
    1029                 :       4039 :     parser.rule_stack_alloc = MICROPY_ALLOC_PARSE_RULE_INIT;
    1030                 :       4039 :     parser.rule_stack_top = 0;
    1031                 :       4039 :     parser.rule_stack = m_new(rule_stack_t, parser.rule_stack_alloc);
    1032                 :            : 
    1033                 :       4039 :     parser.result_stack_alloc = MICROPY_ALLOC_PARSE_RESULT_INIT;
    1034                 :       4039 :     parser.result_stack_top = 0;
    1035                 :       4039 :     parser.result_stack = m_new(mp_parse_node_t, parser.result_stack_alloc);
    1036                 :            : 
    1037                 :       4039 :     parser.lexer = lex;
    1038                 :            : 
    1039                 :       4039 :     parser.tree.chunk = NULL;
    1040                 :       4039 :     parser.cur_chunk = NULL;
    1041                 :            : 
    1042                 :            :     #if MICROPY_COMP_CONST
    1043                 :       4039 :     mp_map_init(&parser.consts, 0);
    1044                 :            :     #endif
    1045                 :            : 
    1046                 :            :     // work out the top-level rule to use, and push it on the stack
    1047                 :       4039 :     size_t top_level_rule;
    1048      [ +  +  + ]:       4039 :     switch (input_kind) {
    1049                 :            :         case MP_PARSE_SINGLE_INPUT:
    1050                 :            :             top_level_rule = RULE_single_input;
    1051                 :            :             break;
    1052                 :        378 :         case MP_PARSE_EVAL_INPUT:
    1053                 :        378 :             top_level_rule = RULE_eval_input;
    1054                 :        378 :             break;
    1055                 :       3438 :         default:
    1056                 :       3438 :             top_level_rule = RULE_file_input;
    1057                 :            :     }
    1058                 :       4039 :     push_rule(&parser, lex->tok_line, top_level_rule, 0);
    1059                 :            : 
    1060                 :            :     // parse!
    1061                 :            : 
    1062                 :       4039 :     bool backtrack = false;
    1063                 :            : 
    1064                 :    3074000 :     for (;;) {
    1065                 :   18905655 :     next_rule:
    1066         [ +  + ]:   18909694 :         if (parser.rule_stack_top == 0) {
    1067                 :            :             break;
    1068                 :            :         }
    1069                 :            : 
    1070                 :            :         // Pop the next rule to process it
    1071                 :   18905749 :         size_t i; // state for the current rule
    1072                 :   18905749 :         size_t rule_src_line; // source line for the first token matched by the current rule
    1073                 :   18905749 :         uint8_t rule_id = pop_rule(&parser, &i, &rule_src_line);
    1074                 :   18905531 :         uint8_t rule_act = rule_act_table[rule_id];
    1075                 :   18905531 :         const uint16_t *rule_arg = get_rule_arg(rule_id);
    1076                 :   18905531 :         size_t n = rule_act & RULE_ACT_ARG_MASK;
    1077                 :            : 
    1078                 :            :         #if 0
    1079                 :            :         // debugging
    1080                 :            :         printf("depth=" UINT_FMT " ", parser.rule_stack_top);
    1081                 :            :         for (int j = 0; j < parser.rule_stack_top; ++j) {
    1082                 :            :             printf(" ");
    1083                 :            :         }
    1084                 :            :         printf("%s n=" UINT_FMT " i=" UINT_FMT " bt=%d\n", rule_name_table[rule_id], n, i, backtrack);
    1085                 :            :         #endif
    1086                 :            : 
    1087      [ +  +  + ]:   18905531 :         switch (rule_act & RULE_ACT_KIND_MASK) {
    1088                 :    6291638 :             case RULE_ACT_OR:
    1089   [ +  +  +  + ]:    6291638 :                 if (i > 0 && !backtrack) {
    1090                 :     153576 :                     goto next_rule;
    1091                 :            :                 } else {
    1092                 :   10203229 :                     backtrack = false;
    1093                 :            :                 }
    1094         [ +  + ]:   10203229 :                 for (; i < n; ++i) {
    1095                 :    9513081 :                     uint16_t kind = rule_arg[i] & RULE_ARG_KIND_MASK;
    1096         [ +  + ]:    9513081 :                     if (kind == RULE_ARG_TOK) {
    1097         [ +  + ]:    4225178 :                         if (lex->tok_kind == (rule_arg[i] & RULE_ARG_ARG_MASK)) {
    1098                 :     160011 :                             push_result_token(&parser, rule_id);
    1099                 :     159986 :                             mp_lexer_to_next(lex);
    1100                 :     159987 :                             goto next_rule;
    1101                 :            :                         }
    1102                 :            :                     } else {
    1103         [ -  + ]:    5287903 :                         assert(kind == RULE_ARG_RULE);
    1104         [ +  + ]:    5287903 :                         if (i + 1 < n) {
    1105                 :    3504546 :                             push_rule(&parser, rule_src_line, rule_id, i + 1); // save this or-rule
    1106                 :            :                         }
    1107                 :    5287803 :                         push_rule_from_arg(&parser, rule_arg[i]); // push child of or-rule
    1108                 :    5287330 :                         goto next_rule;
    1109                 :            :                     }
    1110                 :            :                 }
    1111                 :            :                 backtrack = true;
    1112                 :            :                 break;
    1113                 :            : 
    1114                 :    7302361 :             case RULE_ACT_AND: {
    1115                 :            : 
    1116                 :            :                 // failed, backtrack if we can, else syntax error
    1117         [ +  + ]:    7302361 :                 if (backtrack) {
    1118         [ -  + ]:    1140717 :                     assert(i > 0);
    1119         [ +  + ]:    1140717 :                     if ((rule_arg[i - 1] & RULE_ARG_KIND_MASK) == RULE_ARG_OPT_RULE) {
    1120                 :            :                         // an optional rule that failed, so continue with next arg
    1121                 :     553340 :                         push_result_node(&parser, MP_PARSE_NODE_NULL);
    1122                 :     553340 :                         backtrack = false;
    1123                 :            :                     } else {
    1124                 :            :                         // a mandatory rule that failed, so propagate backtrack
    1125         [ +  + ]:     587377 :                         if (i > 1) {
    1126                 :            :                             // already eaten tokens so can't backtrack
    1127                 :         38 :                             goto syntax_error;
    1128                 :            :                         } else {
    1129                 :     587373 :                             goto next_rule;
    1130                 :            :                         }
    1131                 :            :                     }
    1132                 :            :                 }
    1133                 :            : 
    1134                 :            :                 // progress through the rule
    1135         [ +  + ]:    7109657 :                 for (; i < n; ++i) {
    1136         [ +  + ]:    6303689 :                     if ((rule_arg[i] & RULE_ARG_KIND_MASK) == RULE_ARG_TOK) {
    1137                 :            :                         // need to match a token
    1138                 :    4300869 :                         mp_token_kind_t tok_kind = rule_arg[i] & RULE_ARG_ARG_MASK;
    1139         [ +  + ]:    4300869 :                         if (lex->tok_kind == tok_kind) {
    1140                 :            :                             // matched token
    1141         [ +  + ]:     393906 :                             if (tok_kind == MP_TOKEN_NAME) {
    1142                 :      33532 :                                 push_result_token(&parser, rule_id);
    1143                 :            :                             }
    1144                 :     393906 :                             mp_lexer_to_next(lex);
    1145                 :            :                         } else {
    1146                 :            :                             // failed to match token
    1147         [ +  + ]:    3906963 :                             if (i > 0) {
    1148                 :            :                                 // already eaten tokens so can't backtrack
    1149                 :         30 :                                 goto syntax_error;
    1150                 :            :                             } else {
    1151                 :            :                                 // this rule failed, so backtrack
    1152                 :    3906933 :                                 backtrack = true;
    1153                 :    3906933 :                                 goto next_rule;
    1154                 :            :                             }
    1155                 :            :                         }
    1156                 :            :                     } else {
    1157                 :    2002820 :                         push_rule(&parser, rule_src_line, rule_id, i + 1); // save this and-rule
    1158                 :    2002782 :                         push_rule_from_arg(&parser, rule_arg[i]); // push child of and-rule
    1159                 :    2002768 :                         goto next_rule;
    1160                 :            :                     }
    1161                 :            :                 }
    1162                 :            : 
    1163         [ -  + ]:     805968 :                 assert(i == n);
    1164                 :            : 
    1165                 :            :                 // matched the rule, so now build the corresponding parse_node
    1166                 :            : 
    1167                 :            :                 #if !MICROPY_ENABLE_DOC_STRING
    1168                 :            :                 // this code discards lonely statements, such as doc strings
    1169   [ +  +  +  + ]:     805968 :                 if (input_kind != MP_PARSE_SINGLE_INPUT && rule_id == RULE_expr_stmt && peek_result(&parser, 0) == MP_PARSE_NODE_NULL) {
    1170                 :      26872 :                     mp_parse_node_t p = peek_result(&parser, 1);
    1171   [ +  +  +  + ]:      26872 :                     if ((MP_PARSE_NODE_IS_LEAF(p) && !MP_PARSE_NODE_IS_ID(p))
    1172   [ +  -  +  +  :      26850 :                         || MP_PARSE_NODE_IS_STRUCT_KIND(p, RULE_const_object)) {
                   -  + ]
    1173                 :         22 :                         pop_result(&parser); // MP_PARSE_NODE_NULL
    1174                 :         22 :                         pop_result(&parser); // const expression (leaf or RULE_const_object)
    1175                 :            :                         // Pushing the "pass" rule here will overwrite any RULE_const_object
    1176                 :            :                         // entry that was on the result stack, allowing the GC to reclaim
    1177                 :            :                         // the memory from the const object when needed.
    1178                 :         22 :                         push_result_rule(&parser, rule_src_line, RULE_pass_stmt, 0);
    1179                 :         22 :                         break;
    1180                 :            :                     }
    1181                 :            :                 }
    1182                 :            :                 #endif
    1183                 :            : 
    1184                 :            :                 // count number of arguments for the parse node
    1185                 :     805946 :                 i = 0;
    1186                 :     805946 :                 size_t num_not_nil = 0;
    1187         [ +  + ]:    2613015 :                 for (size_t x = n; x > 0;) {
    1188                 :    1807066 :                     --x;
    1189         [ +  + ]:    1807066 :                     if ((rule_arg[x] & RULE_ARG_KIND_MASK) == RULE_ARG_TOK) {
    1190                 :     393388 :                         mp_token_kind_t tok_kind = rule_arg[x] & RULE_ARG_ARG_MASK;
    1191         [ +  + ]:     393388 :                         if (tok_kind == MP_TOKEN_NAME) {
    1192                 :            :                             // only tokens which were names are pushed to stack
    1193                 :      33528 :                             i += 1;
    1194                 :      33528 :                             num_not_nil += 1;
    1195                 :            :                         }
    1196                 :            :                     } else {
    1197                 :            :                         // rules are always pushed
    1198         [ +  + ]:    1413678 :                         if (peek_result(&parser, i) != MP_PARSE_NODE_NULL) {
    1199                 :     860386 :                             num_not_nil += 1;
    1200                 :            :                         }
    1201                 :    1413681 :                         i += 1;
    1202                 :            :                     }
    1203                 :            :                 }
    1204                 :            : 
    1205   [ +  +  +  + ]:    1382625 :                 if (num_not_nil == 1 && (rule_act & RULE_ACT_ALLOW_IDENT)) {
    1206                 :            :                     // this rule has only 1 argument and should not be emitted
    1207                 :            :                     mp_parse_node_t pn = MP_PARSE_NODE_NULL;
    1208         [ +  + ]:    1645778 :                     for (size_t x = 0; x < i; ++x) {
    1209                 :    1069099 :                         mp_parse_node_t pn2 = pop_result(&parser);
    1210         [ +  + ]:    1069104 :                         if (pn2 != MP_PARSE_NODE_NULL) {
    1211                 :     576678 :                             pn = pn2;
    1212                 :            :                         }
    1213                 :            :                     }
    1214                 :     576679 :                     push_result_node(&parser, pn);
    1215                 :            :                 } else {
    1216                 :            :                     // this rule must be emitted
    1217                 :            : 
    1218         [ +  + ]:     229275 :                     if (rule_act & RULE_ACT_ADD_BLANK) {
    1219                 :            :                         // and add an extra blank node at the end (used by the compiler to store data)
    1220                 :       6408 :                         push_result_node(&parser, MP_PARSE_NODE_NULL);
    1221                 :       6408 :                         i += 1;
    1222                 :            :                     }
    1223                 :            : 
    1224                 :     229275 :                     push_result_rule(&parser, rule_src_line, rule_id, i);
    1225                 :            :                 }
    1226                 :            :                 break;
    1227                 :            :             }
    1228                 :            : 
    1229                 :    5311532 :             default: {
    1230         [ -  + ]:    5311532 :                 assert((rule_act & RULE_ACT_KIND_MASK) == RULE_ACT_LIST);
    1231                 :            : 
    1232                 :            :                 // n=2 is: item item*
    1233                 :            :                 // n=1 is: item (sep item)*
    1234                 :            :                 // n=3 is: item (sep item)* [sep]
    1235                 :    5311532 :                 bool had_trailing_sep;
    1236         [ +  + ]:    5311532 :                 if (backtrack) {
    1237                 :    1373591 :                 list_backtrack:
    1238                 :    2258592 :                     had_trailing_sep = false;
    1239         [ +  + ]:    2258592 :                     if (n == 2) {
    1240         [ +  + ]:     302089 :                         if (i == 1) {
    1241                 :            :                             // fail on item, first time round; propagate backtrack
    1242                 :     203276 :                             goto next_rule;
    1243                 :            :                         } else {
    1244                 :            :                             // fail on item, in later rounds; finish with this rule
    1245                 :            :                             backtrack = false;
    1246                 :            :                         }
    1247                 :            :                     } else {
    1248         [ +  + ]:    1956503 :                         if (i == 1) {
    1249                 :            :                             // fail on item, first time round; propagate backtrack
    1250                 :     477404 :                             goto next_rule;
    1251         [ +  + ]:    1479099 :                         } else if ((i & 1) == 1) {
    1252                 :            :                             // fail on item, in later rounds; have eaten tokens so can't backtrack
    1253         [ +  + ]:        444 :                             if (n == 3) {
    1254                 :            :                                 // list allows trailing separator; finish parsing list
    1255                 :            :                                 had_trailing_sep = true;
    1256                 :            :                                 backtrack = false;
    1257                 :            :                             } else {
    1258                 :            :                                 // list doesn't allowing trailing separator; fail
    1259                 :          4 :                                 goto syntax_error;
    1260                 :            :                             }
    1261                 :            :                         } else {
    1262                 :            :                             // fail on separator; finish parsing list
    1263                 :            :                             backtrack = false;
    1264                 :            :                         }
    1265                 :            :                     }
    1266                 :            :                 } else {
    1267                 :    4000579 :                     for (;;) {
    1268                 :    3969260 :                         size_t arg = rule_arg[i & 1 & n];
    1269         [ +  + ]:    3969260 :                         if ((arg & RULE_ARG_KIND_MASK) == RULE_ARG_TOK) {
    1270         [ +  + ]:     916174 :                             if (lex->tok_kind == (arg & RULE_ARG_ARG_MASK)) {
    1271         [ +  + ]:      31173 :                                 if (i & 1 & n) {
    1272                 :            :                                     // separators which are tokens are not pushed to result stack
    1273                 :            :                                 } else {
    1274                 :       3105 :                                     push_result_token(&parser, rule_id);
    1275                 :            :                                 }
    1276                 :      31173 :                                 mp_lexer_to_next(lex);
    1277                 :            :                                 // got element of list, so continue parsing list
    1278                 :      31319 :                                 i += 1;
    1279                 :            :                             } else {
    1280                 :            :                                 // couldn't get element of list
    1281                 :     885001 :                                 i += 1;
    1282                 :     885001 :                                 backtrack = true;
    1283                 :     885001 :                                 goto list_backtrack;
    1284                 :            :                             }
    1285                 :            :                         } else {
    1286         [ -  + ]:    3053086 :                             assert((arg & RULE_ARG_KIND_MASK) == RULE_ARG_RULE);
    1287                 :    3053086 :                             push_rule(&parser, rule_src_line, rule_id, i + 1); // save this list-rule
    1288                 :    3053065 :                             push_rule_from_arg(&parser, arg); // push child of list-rule
    1289                 :    3053008 :                             goto next_rule;
    1290                 :            :                         }
    1291                 :            :                     }
    1292                 :            :                 }
    1293         [ -  + ]:    1577908 :                 assert(i >= 1);
    1294                 :            : 
    1295                 :            :                 // compute number of elements in list, result in i
    1296                 :    1577908 :                 i -= 1;
    1297   [ +  +  +  + ]:    1577908 :                 if ((n & 1) && (rule_arg[1] & RULE_ARG_KIND_MASK) == RULE_ARG_TOK) {
    1298                 :            :                     // don't count separators when they are tokens
    1299                 :     885217 :                     i = (i + 1) / 2;
    1300                 :            :                 }
    1301                 :            : 
    1302         [ +  + ]:    1577908 :                 if (i == 1) {
    1303                 :            :                     // list matched single item
    1304         [ +  + ]:    1529870 :                     if (had_trailing_sep) {
    1305                 :            :                         // if there was a trailing separator, make a list of a single item
    1306                 :        185 :                         push_result_rule(&parser, rule_src_line, rule_id, i);
    1307                 :            :                     } else {
    1308                 :            :                         // just leave single item on stack (ie don't wrap in a list)
    1309                 :            :                     }
    1310                 :            :                 } else {
    1311                 :      48038 :                     push_result_rule(&parser, rule_src_line, rule_id, i);
    1312                 :            :                 }
    1313                 :            :                 break;
    1314                 :            :             }
    1315                 :            :         }
    1316                 :            :     }
    1317                 :            : 
    1318                 :            :     #if MICROPY_COMP_CONST
    1319                 :       3945 :     mp_map_deinit(&parser.consts);
    1320                 :            :     #endif
    1321                 :            : 
    1322                 :            :     // truncate final chunk and link into chain of chunks
    1323         [ +  + ]:       3945 :     if (parser.cur_chunk != NULL) {
    1324                 :       3812 :         (void)m_renew_maybe(byte, parser.cur_chunk,
    1325                 :            :             sizeof(mp_parse_chunk_t) + parser.cur_chunk->alloc,
    1326                 :            :             sizeof(mp_parse_chunk_t) + parser.cur_chunk->union_.used,
    1327                 :            :             false);
    1328                 :       3812 :         parser.cur_chunk->alloc = parser.cur_chunk->union_.used;
    1329                 :       3812 :         parser.cur_chunk->union_.next = parser.tree.chunk;
    1330                 :       3812 :         parser.tree.chunk = parser.cur_chunk;
    1331                 :            :     }
    1332                 :            : 
    1333                 :       3945 :     if (
    1334         [ +  + ]:       3945 :         lex->tok_kind != MP_TOKEN_END // check we are at the end of the token stream
    1335         [ +  + ]:       3899 :         || parser.result_stack_top == 0 // check that we got a node (can fail on empty input)
    1336                 :            :         ) {
    1337                 :         54 :     syntax_error:;
    1338                 :         92 :         mp_obj_t exc;
    1339         [ +  + ]:         92 :         if (lex->tok_kind == MP_TOKEN_INDENT) {
    1340                 :          4 :             exc = mp_obj_new_exception_msg(&mp_type_IndentationError,
    1341                 :          4 :                 MP_ERROR_TEXT("unexpected indent"));
    1342         [ +  + ]:         88 :         } else if (lex->tok_kind == MP_TOKEN_DEDENT_MISMATCH) {
    1343                 :          4 :             exc = mp_obj_new_exception_msg(&mp_type_IndentationError,
    1344                 :          4 :                 MP_ERROR_TEXT("unindent doesn't match any outer indent level"));
    1345                 :            :         #if MICROPY_PY_FSTRINGS
    1346         [ -  + ]:         84 :         } else if (lex->tok_kind == MP_TOKEN_MALFORMED_FSTRING) {
    1347                 :          0 :             exc = mp_obj_new_exception_msg(&mp_type_SyntaxError,
    1348                 :          0 :                 MP_ERROR_TEXT("malformed f-string"));
    1349                 :            :         #endif
    1350                 :            :         } else {
    1351                 :         84 :             exc = mp_obj_new_exception_msg(&mp_type_SyntaxError,
    1352                 :         84 :                 MP_ERROR_TEXT("invalid syntax"));
    1353                 :            :         }
    1354                 :            :         // add traceback to give info about file name and location
    1355                 :            :         // we don't have a 'block' name, so just pass the NULL qstr to indicate this
    1356                 :         92 :         mp_obj_exception_add_traceback(exc, lex->source_name, lex->tok_line, MP_QSTRnull);
    1357                 :         92 :         nlr_raise(exc);
    1358                 :            :     }
    1359                 :            : 
    1360                 :            :     // get the root parse node that we created
    1361         [ -  + ]:       3891 :     assert(parser.result_stack_top == 1);
    1362                 :       3891 :     parser.tree.root = parser.result_stack[0];
    1363                 :            : 
    1364                 :            :     // free the memory that we don't need anymore
    1365                 :       3891 :     m_del(rule_stack_t, parser.rule_stack, parser.rule_stack_alloc);
    1366                 :       3891 :     m_del(mp_parse_node_t, parser.result_stack, parser.result_stack_alloc);
    1367                 :            : 
    1368                 :            :     // Deregister exception handler and free the lexer.
    1369                 :       3891 :     nlr_pop_jump_callback(true);
    1370                 :            : 
    1371                 :       3891 :     return parser.tree;
    1372                 :            : }
    1373                 :            : 
    1374                 :       3869 : void mp_parse_tree_clear(mp_parse_tree_t *tree) {
    1375                 :       3869 :     mp_parse_chunk_t *chunk = tree->chunk;
    1376         [ +  + ]:      17032 :     while (chunk != NULL) {
    1377                 :      13163 :         mp_parse_chunk_t *next = chunk->union_.next;
    1378                 :      13163 :         m_del(byte, chunk, sizeof(mp_parse_chunk_t) + chunk->alloc);
    1379                 :      13163 :         chunk = next;
    1380                 :            :     }
    1381                 :       3869 :     tree->chunk = NULL; // Avoid dangling pointer that may live on stack
    1382                 :       3869 : }
    1383                 :            : 
    1384                 :            : #endif // MICROPY_ENABLE_COMPILER

Generated by: LCOV version 1.15-5-g462f71d