Skip to content
Snippets Groups Projects
  1. Mar 23, 2017
  2. Mar 22, 2017
    • Damien George's avatar
      py/bc: Provide better error message for an unexpected keyword argument. · 58f23def
      Damien George authored
      Now, passing a keyword argument that is not expected will correctly report
      that fact.  If normal or detailed error messages are enabled then the name
      of the unexpected argument will be reported.
      
      This patch decreases the code size of bare-arm and stmhal by 12 bytes, and
      cc3200 by 8 bytes.  Other ports (minimal, unix, esp8266) remain the same in
      code size.  For terse error message configuration this is because the new
      message is shorter than the old one.  For normal (and detailed) error
      message configuration this is because the new error message already exists
      in py/objnamedtuple.c so there's no extra space in ROM needed for the
      string.
      58f23def
  3. Mar 20, 2017
    • Damien George's avatar
      py/vm: Don't release the GIL if the scheduler is locked. · 1a5c8d10
      Damien George authored
      The scheduler being locked general means we are running a scheduled
      function, and switching to another thread violates that, so don't switch in
      such a case (even though we technically could).
      
      And if we are running a scheduled function then we want to finish it ASAP,
      so we shouldn't switch to another thread.
      
      Furthermore, ports with threading enabled will lock the scheduler during a
      hard IRQ, and this patch to the VM will make sure that threads are not
      switched during a hard IRQ (which would crash the VM).
      1a5c8d10
    • Damien George's avatar
    • stijn's avatar
      py/objstr: Use better msg in bad implicit str/bytes conversion exception · bf29fe2e
      stijn authored
      Instead of always reporting some object cannot be implicitly be converted
      to a 'str', even when it is a 'bytes' object, adjust the logic so that
      when trying to convert str to bytes it is shown like that.
      This will still report bad implicit conversion from e.g. 'int to bytes'
      as 'int to str' but it will not result in the confusing
      'can't convert 'str' object to str implicitly' anymore for calls like
      b'somestring'.count('a').
      bf29fe2e
  4. Mar 17, 2017
    • Damien George's avatar
      py: Provide mp_decode_uint_value to help optimise stack usage. · 5640e6da
      Damien George authored
      This has a noticeable improvement on x86-64 and Thumb2 archs, where stack
      usage is reduced by 2 machine words in the VM.
      5640e6da
    • Damien George's avatar
      py: Reduce size of mp_code_state_t structure. · 71a3d6ec
      Damien George authored
      Instead of caching data that is constant (code_info, const_table and
      n_state), store just a pointer to the underlying function object from which
      this data can be derived.
      
      This helps reduce stack usage for the case when the mp_code_state_t
      structure is stored on the stack, as well as heap usage when it's stored
      on the heap.
      
      The downside is that the VM becomes a little more complex because it now
      needs to derive the data from the underlying function object.  But this
      doesn't impact the performance by much (if at all) because most of the
      decoding of data is done outside the main opcode loop.  Measurements using
      pystone show that little to no performance is lost.
      
      This patch also fixes a nasty bug whereby the bytecode can be reclaimed by
      the GC during execution.  With this patch there is always a pointer to the
      function object held by the VM during execution, since it's stored in the
      mp_code_state_t structure.
      71a3d6ec
  5. Mar 16, 2017
  6. Mar 15, 2017
  7. Mar 14, 2017
    • Damien George's avatar
      8cd4911e
    • Damien George's avatar
      py/emitnative: Use assertions and mp_not_implemented correctly. · a5a84e1f
      Damien George authored
      Assertions are used to check expressions that should always be true,
      and mp_not_implemented is used for code that can be reached.
      a5a84e1f
    • Damien George's avatar
      py/objint: Allow to print long-long ints without using the heap. · d1ae6ae0
      Damien George authored
      Some stack is allocated to format ints, and when the int implementation uses
      long-long there should be additional stack allocated compared with the other
      cases.  This patch uses the existing "fmt_int_t" type to determine the
      amount of stack to allocate.
      d1ae6ae0
    • Damien George's avatar
      py: Allow lexer to raise exceptions during construction. · 1831034b
      Damien George authored
      This patch refactors the error handling in the lexer, to simplify it (ie
      reduce code size).
      
      A long time ago, when the lexer/parser/compiler were first written, the
      lexer and parser were designed so they didn't use exceptions (ie nlr) to
      report errors but rather returned an error code.  Over time that has
      gradually changed, the parser in particular has more and more ways of
      raising exceptions.  Also, the lexer never really handled all errors without
      raising, eg there were some memory errors which could raise an exception
      (and in these rare cases one would get a fatal nlr-not-handled fault).
      
      This patch accepts the fact that the lexer can raise exceptions in some
      cases and allows it to raise exceptions to handle all its errors, which are
      for the most part just out-of-memory errors during construction of the
      lexer.  This makes the lexer a bit simpler, and also the persistent code
      stuff is simplified.
      
      What this means for users of the lexer is that calls to it must be wrapped
      in a nlr handler.  But all uses of the lexer already have such an nlr
      handler for the parser (and compiler) so that doesn't put any extra burden
      on the callers.
      1831034b
  8. Mar 09, 2017
  9. Mar 08, 2017
  10. Mar 07, 2017
  11. Mar 06, 2017
  12. Mar 03, 2017
    • Damien George's avatar
      py/map: Fix bugs with deletion of elements from OrderedDict. · 9275c182
      Damien George authored
      There were 2 bugs, now fixed by this patch:
      - after deleting an element the len of the dict did not decrease by 1
      - after deleting an element searching through the dict could lead to
        a seg fault due to there being an MP_OBJ_SENTINEL in the ordered array
      9275c182
  13. Feb 27, 2017
  14. Feb 24, 2017
    • Paul Sokolovsky's avatar
      py/runtime: mp_raise_msg(): Accept NULL argument for message. · 4b3da603
      Paul Sokolovsky authored
      In this case, raise an exception without a message.
      
      This would allow to shove few code bytes comparing to currently used
      mp_raise_msg(..., "") pattern. (Actual savings depend on function code
      alignment used by a particular platform.)
      4b3da603
    • Damien George's avatar
      py/parse: Simplify handling of errors by raising them directly. · f615d82d
      Damien George authored
      The parser was originally written to work without raising any exceptions
      and instead return an error value to the caller.  But it's now required
      that a call to the parser be wrapped in an nlr handler, so we may as well
      make use of that fact and simplify the parser so that it doesn't need to
      keep track of any memory errors that it had.  The parser anyway explicitly
      raises an exception at the end if there was an error.
      
      This patch simplifies the parser by letting the underlying memory
      allocation functions raise an exception if they fail to allocate any
      memory.  And if there is an error parsing the "<id> = const(<val>)" pattern
      then that also raises an exception right away instead of trying to recover
      gracefully and then raise.
      f615d82d
    • Damien George's avatar
      py: Create str/bytes objects in the parser, not the compiler. · 5255255f
      Damien George authored
      Previous to this patch any non-interned str/bytes objects would create a
      special parse node that held a copy of the str/bytes data.  Then in the
      compiler this data would be turned into a str/bytes object.  This actually
      lead to 2 copies of the data, one in the parse node and one in the object.
      The parse node's copy of the data would be freed at the end of the compile
      stage but nevertheless it meant that the peak memory usage of the
      parse/compile stage was higher than it needed to be (by an amount equal to
      the number of bytes in all the non-interned str/bytes objects).
      
      This patch changes the behaviour so that str/bytes objects are created
      directly in the parser and the object stored in a const-object parse node
      (which already exists for bignum, float and complex const objects).  This
      reduces peak RAM usage of the parse/compile stage, simplifies the parser
      and compiler, and reduces code size by about 170 bytes on Thumb2 archs,
      and by about 300 bytes on Xtensa archs.
      5255255f
    • Damien George's avatar
      py/parse: Allow parser/compiler consts to be bignums. · 74f4d2c6
      Damien George authored
      This patch allows uPy consts to be bignums, eg:
      
          X = const(1 << 100)
      
      The infrastructure for consts to be a bignum (rather than restricted to
      small integers) has been in place for a while, ever since constant folding
      was upgraded to allow bignums.  It just required a small change (in this
      patch) to enable it.
      74f4d2c6
  15. Feb 22, 2017
  16. Feb 20, 2017
  17. Feb 17, 2017
Loading