LCOV - code coverage report
Current view: top level - py - emitcommon.c (source / functions) Hit Total Coverage
Test: unix_coverage_v1.22.0-343-g7b050b366.info Lines: 42 42 100.0 %
Date: 2024-04-25 17:00:48 Functions: 5 5 100.0 %
Branches: 33 36 91.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, 2014 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 <assert.h>
      28                 :            : 
      29                 :            : #include "py/emit.h"
      30                 :            : #include "py/nativeglue.h"
      31                 :            : 
      32                 :            : #if MICROPY_ENABLE_COMPILER
      33                 :            : 
      34                 :            : #if MICROPY_EMIT_BYTECODE_USES_QSTR_TABLE
      35                 :     401716 : qstr_short_t mp_emit_common_use_qstr(mp_emit_common_t *emit, qstr qst) {
      36                 :     401716 :     mp_map_elem_t *elem = mp_map_lookup(&emit->qstr_map, MP_OBJ_NEW_QSTR(qst), MP_MAP_LOOKUP_ADD_IF_NOT_FOUND);
      37         [ +  + ]:     401712 :     if (elem->value == MP_OBJ_NULL) {
      38                 :      34093 :         elem->value = MP_OBJ_NEW_SMALL_INT(emit->qstr_map.used - 1);
      39                 :            :     }
      40                 :     401712 :     return MP_OBJ_SMALL_INT_VALUE(elem->value);
      41                 :            : }
      42                 :            : #endif
      43                 :            : 
      44                 :            : // Compare two objects for strict equality, including equality of type.  This is
      45                 :            : // different to the semantics of mp_obj_equal which, eg, has (True,) == (1.0,).
      46                 :     208915 : static bool strictly_equal(mp_obj_t a, mp_obj_t b) {
      47         [ +  + ]:     208915 :     if (a == b) {
      48                 :            :         return true;
      49                 :            :     }
      50                 :            : 
      51                 :            :     #if MICROPY_EMIT_NATIVE
      52   [ +  -  +  + ]:     179906 :     if (a == MP_OBJ_FROM_PTR(&mp_fun_table) || b == MP_OBJ_FROM_PTR(&mp_fun_table)) {
      53                 :            :         return false;
      54                 :            :     }
      55                 :            :     #endif
      56                 :            : 
      57                 :     149306 :     const mp_obj_type_t *a_type = mp_obj_get_type(a);
      58                 :     149306 :     const mp_obj_type_t *b_type = mp_obj_get_type(b);
      59         [ +  + ]:     149306 :     if (a_type != b_type) {
      60                 :            :         return false;
      61                 :            :     }
      62         [ +  + ]:     120168 :     if (a_type == &mp_type_tuple) {
      63                 :       8991 :         mp_obj_tuple_t *a_tuple = MP_OBJ_TO_PTR(a);
      64                 :       8991 :         mp_obj_tuple_t *b_tuple = MP_OBJ_TO_PTR(b);
      65         [ +  + ]:       8991 :         if (a_tuple->len != b_tuple->len) {
      66                 :            :             return false;
      67                 :            :         }
      68         [ +  + ]:       8595 :         for (size_t i = 0; i < a_tuple->len; ++i) {
      69         [ +  + ]:       7405 :             if (!strictly_equal(a_tuple->items[i], b_tuple->items[i])) {
      70                 :            :                 return false;
      71                 :            :             }
      72                 :            :         }
      73                 :            :         return true;
      74                 :            :     } else {
      75                 :     111177 :         return mp_obj_equal(a, b);
      76                 :            :     }
      77                 :            : }
      78                 :            : 
      79                 :      42511 : size_t mp_emit_common_use_const_obj(mp_emit_common_t *emit, mp_obj_t const_obj) {
      80         [ +  + ]:     207827 :     for (size_t i = 0; i < emit->const_obj_list.len; ++i) {
      81         [ +  + ]:     201510 :         if (strictly_equal(emit->const_obj_list.items[i], const_obj)) {
      82                 :            :             return i;
      83                 :            :         }
      84                 :            :     }
      85                 :       6317 :     mp_obj_list_append(MP_OBJ_FROM_PTR(&emit->const_obj_list), const_obj);
      86                 :       6317 :     return emit->const_obj_list.len - 1;
      87                 :            : }
      88                 :            : 
      89                 :      21708 : id_info_t *mp_emit_common_get_id_for_modification(scope_t *scope, qstr qst) {
      90                 :            :     // name adding/lookup
      91                 :      21708 :     id_info_t *id = scope_find_or_add_id(scope, qst, ID_INFO_KIND_GLOBAL_IMPLICIT);
      92         [ +  + ]:      21708 :     if (id->kind == ID_INFO_KIND_GLOBAL_IMPLICIT) {
      93         [ +  + ]:      15426 :         if (SCOPE_IS_FUNC_LIKE(scope->kind)) {
      94                 :            :             // rebind as a local variable
      95                 :       3151 :             id->kind = ID_INFO_KIND_LOCAL;
      96                 :            :         } else {
      97                 :            :             // mark this as assigned, to prevent it from being closed over
      98                 :      12275 :             id->kind = ID_INFO_KIND_GLOBAL_IMPLICIT_ASSIGNED;
      99                 :            :         }
     100                 :            :     }
     101                 :      21708 :     return id;
     102                 :            : }
     103                 :            : 
     104                 :     415763 : void mp_emit_common_id_op(emit_t *emit, const mp_emit_method_table_id_ops_t *emit_method_table, scope_t *scope, qstr qst) {
     105                 :            :     // assumes pass is greater than 1, ie that all identifiers are defined in the scope
     106                 :            : 
     107                 :     415763 :     id_info_t *id = scope_find(scope, qst);
     108         [ -  + ]:     415763 :     assert(id != NULL);
     109                 :            : 
     110                 :            :     // call the emit backend with the correct code
     111         [ +  + ]:     415763 :     if (id->kind == ID_INFO_KIND_GLOBAL_IMPLICIT || id->kind == ID_INFO_KIND_GLOBAL_IMPLICIT_ASSIGNED) {
     112                 :     316878 :         emit_method_table->global(emit, qst, MP_EMIT_IDOP_GLOBAL_NAME);
     113         [ +  + ]:      98885 :     } else if (id->kind == ID_INFO_KIND_GLOBAL_EXPLICIT) {
     114                 :      34176 :         emit_method_table->global(emit, qst, MP_EMIT_IDOP_GLOBAL_GLOBAL);
     115         [ +  + ]:      64709 :     } else if (id->kind == ID_INFO_KIND_LOCAL) {
     116                 :      62889 :         emit_method_table->local(emit, qst, id->local_num, MP_EMIT_IDOP_LOCAL_FAST);
     117                 :            :     } else {
     118         [ -  + ]:       1820 :         assert(id->kind == ID_INFO_KIND_CELL || id->kind == ID_INFO_KIND_FREE);
     119                 :       1820 :         emit_method_table->local(emit, qst, id->local_num, MP_EMIT_IDOP_LOCAL_DEREF);
     120                 :            :     }
     121                 :     415763 : }
     122                 :            : 
     123                 :            : #endif // MICROPY_ENABLE_COMPILER

Generated by: LCOV version 1.15-5-g462f71d