Skip to content
Snippets Groups Projects
  1. Sep 21, 2017
    • Damien George's avatar
      py/stream: Remove unnecessary checks for NULL return from vstr_add_len. · 7885a425
      Damien George authored
      The vstr argument to the calls to vstr_add_len are dynamically allocated
      (ie fixed_buf=false) and so vstr_add_len will never return NULL.  So
      there's no need to check for it.  Any out-of-memory errors are raised by
      the call to m_renew in vstr_ensure_extra.
      7885a425
    • Damien George's avatar
      py/objexcept: Prevent infinite recursion when allocating exceptions. · 96fd80db
      Damien George authored
      The aim of this patch is to rewrite the functions that create exception
      instances (mp_obj_exception_make_new and mp_obj_new_exception_msg_varg) so
      that they do not call any functions that may raise an exception.  Otherwise
      it's possible to create infinite recursion with an exception being raised
      while trying to create an exception object.
      
      The two main things that are done to accomplish this are:
      1. Change mp_obj_new_exception_msg_varg to just format the string, then
         call mp_obj_exception_make_new to actually create the exception object.
      2. In mp_obj_exception_make_new and mp_obj_new_exception_msg_varg try to
         allocate all memory first using functions that don't raise exceptions
         If any of the memory allocations fail (return NULL) then degrade
         gracefully by trying other options for memory allocation, eg using the
         emergency exception buffer.
      3. Use a custom printer backend to conservatively format strings: if it
         can't allocate memory then it just truncates the string.
      
      As part of this rewrite, raising an exception without a message, like
      KeyError(123), will now use the emergency buffer to store the arg and
      traceback data if there is no heap memory available.
      
      Memory use with this patch is unchanged.  Code size is increased by:
      
         bare-arm:  +136
      minimal x86:  +124
         unix x64:   +72
      unix nanbox:   +96
            stm32:   +88
          esp8266:   +92
           cc3200:   +80
      96fd80db
  2. Sep 19, 2017
  3. Sep 18, 2017
  4. Sep 17, 2017
    • Paul Sokolovsky's avatar
      py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS. · 9dce823c
      Paul Sokolovsky authored
      This allows user classes to implement __abs__ special method, and saves
      code size (104 bytes for x86_64), even though during refactor, an issue
      was fixed and few optimizations were made:
      
      * abs() of minimum (negative) small int value is calculated properly.
      * objint_longlong and objint_mpz avoid allocating new object is the
        argument is already non-negative.
      9dce823c
  5. Sep 13, 2017
  6. Sep 12, 2017
  7. Sep 10, 2017
  8. Sep 07, 2017
  9. Sep 06, 2017
  10. Sep 05, 2017
  11. Sep 04, 2017
  12. Sep 02, 2017
    • Paul Sokolovsky's avatar
      py/objfloat: Fix binary ops with incompatible objects. · 9950865c
      Paul Sokolovsky authored
      These are now returned as "operation not supported" instead of raising
      TypeError. In particular, this fixes equality for float vs incompatible
      types, which now properly results in False instead of exception. This
      also paves the road to support reverse operation (e.g. __radd__) with
      float objects.
      
      This is achieved by introducing mp_obj_get_float_maybe(), similar to
      existing mp_obj_get_int_maybe().
      9950865c
  13. Sep 01, 2017
    • Damien George's avatar
      py/nlrthumb: Get working again on standard Thumb arch (ie not Thumb2). · dd376a23
      Damien George authored
      "b" on Thumb might not be long enough for the jump to nlr_push_tail so it
      must be done indirectly.
      dd376a23
    • Damien George's avatar
      py/qstrdefs: Remove unused qstrs. · 860eeeea
      Damien George authored
      They are not used by any component and take up valuable flash space.
      860eeeea
    • Damien George's avatar
      py/modstruct: Check and prevent buffer-write overflow in struct packing. · 2daacc5c
      Damien George authored
      Prior to this patch, the size of the buffer given to pack_into() was checked
      for being too small by using the count of the arguments, not their actual
      size.  For example, a format spec of '4I' would only check that there was 4
      bytes available, not 16; and 'I' would check for 1 byte, not 4.
      
      The pack() function is ok because its buffer is created to be exactly the
      correct size.
      
      The fix in this patch calculates the total size of the format spec at the
      start of pack_into() and verifies that the buffer is large enough.  This
      adds some computational overhead, to iterate through the whole format spec.
      The alternative is to check during the packing, but that requires extra
      code to handle alignment, and the check is anyway not needed for pack().
      So to maintain minimal code size the check is done using struct_calcsize.
      2daacc5c
    • Damien George's avatar
      py/modstruct: Check and prevent buffer-read overflow in struct unpacking · 79d5acbd
      Damien George authored
      Prior to this patch, the size of the buffer given to unpack/unpack_from was
      checked for being too small by using the count of the arguments, not their
      actual size.  For example, a format spec of '4I' would only check that
      there was 4 bytes available, not 16; and 'I' would check for 1 byte, not 4.
      
      This bug is fixed in this patch by calculating the total size of the format
      spec at the start of the unpacking function.  This function anyway needs to
      calculate the number of items at the start, so calculating the total size
      can be done at the same time.
      79d5acbd
    • Damien George's avatar
      py/modstruct: In struct.pack, stop converting if there are no args left. · 793d826d
      Damien George authored
      This patch makes a repeat counter behave the same as repeating the
      typecode, when there are not enough args.  For example:
      struct.pack('2I', 1) now behave the same as struct.pack('II', 1).
      793d826d
  14. Aug 31, 2017
  15. Aug 30, 2017
  16. Aug 29, 2017
Loading