Skip to content
Snippets Groups Projects
  1. Dec 17, 2015
  2. Dec 14, 2015
    • Paul Sokolovsky's avatar
      py/objpolyiter: Implement instance-polymorphic iterator type. · 1a1cceaf
      Paul Sokolovsky authored
      This allows to have single itertaor type for various internal iterator
      types (save rodata space by not having repeating almost-empty type
      structures). It works by looking "iternext" method stored in particular
      object instance (should be first object field after "base").
      1a1cceaf
  3. Dec 12, 2015
  4. Dec 10, 2015
    • Damien George's avatar
      py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics. · bdbe8c9a
      Damien George authored
      Fixes #1684 and makes "not" match Python semantics.  The code is also
      simplified (the separate MP_BC_NOT opcode is removed) and the patch saves
      68 bytes for bare-arm/ and 52 bytes for minimal/.
      
      Previously "not x" was implemented as !mp_unary_op(x, MP_UNARY_OP_BOOL),
      so any given object only needs to implement MP_UNARY_OP_BOOL (and the VM
      had a special opcode to do the ! bit).
      
      With this patch "not x" is implemented as mp_unary_op(x, MP_UNARY_OP_NOT),
      but this operation is caught at the start of mp_unary_op and dispatched as
      !mp_obj_is_true(x).  mp_obj_is_true has special logic to test for
      truthness, and is the correct way to handle the not operation.
      bdbe8c9a
    • Henrik Sölver's avatar
      py/emitinlinethumb: Add support for MRS instruction. · e242b178
      Henrik Sölver authored
      Only IPSR and BASEPRI special registers supported at the moment, but easy
      to extend in the future.
      e242b178
  5. Dec 09, 2015
  6. Dec 08, 2015
  7. Dec 07, 2015
  8. Dec 06, 2015
  9. Dec 04, 2015
  10. Dec 03, 2015
  11. Dec 02, 2015
  12. Nov 29, 2015
Loading