Skip to content
Snippets Groups Projects
  1. Feb 23, 2016
  2. Feb 17, 2016
    • Damien George's avatar
      py/vm: Add macros to hook into various points in the VM. · 40d8430e
      Damien George authored
      These can be used to insert arbitrary checks, polling, etc into the VM.
      They are left general because the VM is a highly tuned loop and it should
      be up to a given port how that port wants to modify the VM internals.
      
      One common use would be to insert a polling check, but only done after
      a certain number of opcodes were executed, so as not to slow down the VM
      too much.  For example:
      
       #define MICROPY_VM_HOOK_COUNT (30)
       #define MICROPY_VM_HOOK_INIT static uint vm_hook_divisor = MICROPY_VM_HOOK_COUNT
       #define MICROPY_VM_HOOK_POLL if (--vm_hook_divisor == 0) { \
           vm_hook_divisor = MICROPY_VM_HOOK_COUNT;
           extern void vm_hook_function(void);
           vm_hook_function();
       }
       #define MICROPY_VM_HOOK_LOOP MICROPY_VM_HOOK_POLL
       #define MICROPY_VM_HOOK_RETURN MICROPY_VM_HOOK_POLL
      40d8430e
    • Alex March's avatar
      py/repl: Check for an identifier char after the keyword. · 69d9e7d2
      Alex March authored
      - As described in the #1850.
      - Add cmdline tests.
      69d9e7d2
  3. Feb 15, 2016
  4. Feb 14, 2016
  5. Feb 10, 2016
  6. Feb 09, 2016
  7. Feb 03, 2016
    • Damien George's avatar
      py/mpz: Add commented-out mpz_pow3_inpl function, to compute (x**y)%z. · ff1a96ce
      Damien George authored
      This function computes (x**y)%z in an efficient way.  For large arguments
      this operation is otherwise not computable by doing x**y and then %z.
      
      It's currently not used, but is added in case it's useful one day.
      ff1a96ce
    • Doug Currie's avatar
      py/mpz: Complete implementation of mpz_{and,or,xor} for negative args. · 2e2e15ce
      Doug Currie authored
      For these 3 bitwise operations there are now fast functions for
      positive-only arguments, and general functions for arbitrary sign
      arguments (the fast functions are the existing implementation).
      
      By default the fast functions are not used (to save space) and instead
      the general functions are used for all operations.
      
      Enable MICROPY_OPT_MPZ_BITWISE to use the fast functions for positive
      arguments.
      2e2e15ce
  8. Feb 02, 2016
  9. Feb 01, 2016
  10. Jan 29, 2016
    • Damien George's avatar
      py/formatfloat: Add ability to format doubles with exponents > 99. · 7417ccfb
      Damien George authored
      For single prec, exponents never get larger than about 37.  For double
      prec, exponents can be larger than 99 and need 3 bytes to format.  This
      patch makes the number of bytes needed configurable.
      
      Addresses issue #1772.
      7417ccfb
    • Paul Sokolovsky's avatar
      py/runtime: mp_stack_ctrl_init() should be called immediately on startup. · d3b1f0b6
      Paul Sokolovsky authored
      Calling it from mp_init() is too late for some ports (like Unix), and leads
      to incomplete stack frame being captured, with following GC issues. So, now
      each port should call mp_stack_ctrl_init() on its own, ASAP after startup,
      and taking special precautions so it really was called before stack variables
      get allocated (because if such variable with a pointer is missed, it may lead
      to over-collecting (typical symptom is segfaulting)).
      d3b1f0b6
  11. Jan 28, 2016
  12. Jan 27, 2016
  13. Jan 26, 2016
    • Damien George's avatar
      extmod/modurandom: Add some extra random functions. · a53af6c8
      Damien George authored
      Functions added are:
      - randint
      - randrange
      - choice
      - random
      - uniform
      
      They are enabled with configuration variable
      MICROPY_PY_URANDOM_EXTRA_FUNCS, which is disabled by default.  It is
      enabled for unix coverage build and stmhal.
      a53af6c8
  14. Jan 24, 2016
  15. Jan 23, 2016
  16. Jan 19, 2016
  17. Jan 17, 2016
  18. Jan 15, 2016
  19. Jan 14, 2016
    • chrysn's avatar
      builtin property: accept keyword arguments · f8ba2eca
      chrysn authored
      this allows python code to use property(lambda:..., doc=...) idiom.
      
      named versions for the fget, fset and fdel arguments are left out in the
      interest of saving space; they are rarely used and easy to enable when
      actually needed.
      
      a test case is included.
      f8ba2eca
  20. Jan 13, 2016
Loading