Skip to content
Snippets Groups Projects
  1. Feb 17, 2017
    • Damien George's avatar
    • Damien George's avatar
      py: Do adjacent str/bytes literal concatenation in lexer, not compiler. · 534b7c36
      Damien George authored
      It's much more efficient in RAM and code size to do implicit literal string
      concatenation in the lexer, as opposed to the compiler.
      
      RAM usage is reduced because the concatenation can be done right away in the
      tokeniser by just accumulating the string/bytes literals into the lexer's
      vstr.  Prior to this patch adjacent strings/bytes would create a parse tree
      (one node per string/bytes) and then in the compiler a whole new chunk of
      memory was allocated to store the concatenated string, which used more than
      double the memory compared to just accumulating in the lexer.
      
      This patch also significantly reduces code size:
      
      bare-arm: -204
      minimal:  -204
      unix x64: -328
      stmhal:   -208
      esp8266:  -284
      cc3200:   -224
      534b7c36
    • Damien George's avatar
      py/lexer: Simplify handling of line-continuation error. · 773278ec
      Damien George authored
      Previous to this patch there was an explicit check for errors with line
      continuation (where backslash was not immediately followed by a newline).
      
      But this check is not necessary: if there is an error then the remaining
      logic of the tokeniser will reject the backslash and correctly produce a
      syntax error.
      773278ec
    • Damien George's avatar
      py/lexer: Use strcmp to make keyword searching more efficient. · ae436797
      Damien George authored
      Since the table of keywords is sorted, we can use strcmp to do the search
      and stop part way through the search if the comparison is less-than.
      
      Because all tokens that are names are subject to this search, this
      optimisation will improve the overall speed of the lexer when processing
      a script.
      
      The change also decreases code size by a little bit because we now use
      strcmp instead of the custom str_strn_equal function.
      ae436797
  2. Feb 16, 2017
  3. Feb 15, 2017
  4. Feb 14, 2017
  5. Feb 10, 2017
    • Damien George's avatar
      py/emitbc: Produce correct line number info for large bytecode chunks. · cc2dbdd1
      Damien George authored
      Previous to this patch, for large chunks of bytecode that originated from
      a single source-code line, the bytecode-line mapping would generate
      something like (for 42 bytecode bytes and 1 line):
      
        BC_SKIP=31  LINE_SKIP=1
        BC_SKIP=11  LINE_SKIP=0
      
      This would mean that any errors in the last 11 bytecode bytes would be
      reported on the following line.  This patch fixes it to generate instead:
      
        BC_SKIP=31  LINE_SKIP=0
        BC_SKIP=11  LINE_SKIP=1
      cc2dbdd1
  6. Feb 09, 2017
    • dmazzella's avatar
      py/objtype: Implement __delattr__ and __setattr__. · 18e65691
      dmazzella authored
      This patch implements support for class methods __delattr__ and __setattr__
      for customising attribute access.  It is controlled by the config option
      MICROPY_PY_DELATTR_SETATTR and is disabled by default.
      18e65691
  7. Feb 08, 2017
    • Dave Hylands's avatar
      py/nlr: Fix execstack builds for ARM. · aa34c553
      Dave Hylands authored
      It seems that the gcc toolchain on the RaspberryPi
      likes %progbits instead of @progbits. I verified that
      %progbits also works under x86, so this should
      fix #2848 and fix #2842
      
      I verified that unix and mpy-cross both compile
      on my RaspberryPi and on my x64 machine.
      aa34c553
    • Damien George's avatar
      py/map: Change mp_uint_t to size_t where appropriate. · af622eb2
      Damien George authored
      The internal map/set functions now use size_t exclusively for computing
      addresses.  size_t is enough to reach all of available memory when
      computing addresses so is the right type to use.  In particular, for
      nanbox builds it saves quite a bit of code size and RAM compared to the
      original use of mp_uint_t (which is 64-bits on nanbox builds).
      af622eb2
Loading