You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Henrik Sölver e242b1785f py/emitinlinethumb: Add support for MRS instruction. 9 years ago
..
argcheck.c py: Use mp_not_implemented consistently for not implemented features. 9 years ago
asmarm.c py: Implement native multiply operation in viper emitter. 10 years ago
asmarm.h py: Implement native multiply operation in viper emitter. 10 years ago
asmthumb.c py/asmthumb: Allow to compile with -Wsign-compare and -Wunused-parameter. 9 years ago
asmthumb.h py: Add lsl/lsr/asr opcode support to inline Thumb2 assembler. 9 years ago
asmx64.c py: Implement ptr32 load and store in viper emitter. 9 years ago
asmx64.h py: Implement ptr32 load and store in viper emitter. 9 years ago
asmx86.c py/asmx86: Fix function definition to use int32_t instead of int. 9 years ago
asmx86.h py: Implement native multiply operation in viper emitter. 10 years ago
bc.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
bc.h py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
bc0.h py: Remove mp_load_const_bytes and instead load precreated bytes object. 10 years ago
binary.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
binary.h py/binary: Make return type of mp_binary_get_size size_t instead of int. 10 years ago
builtin.h extmod: Move fsusermount.c from stmhal for cross-port reuse. 9 years ago
builtinevex.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
builtinimport.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
compile.c py: Don't try to optimise for+range when args are not simple expressions. 9 years ago
compile.h py/compile: Add mp_compile_to_raw_code() to return raw code object. 9 years ago
emit.h py/emit: Change type of arg of load_const_obj from void* to mp_obj_t. 9 years ago
emitbc.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
emitcommon.c unix-cpy: Remove unix-cpy. It's no longer needed. 9 years ago
emitglue.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
emitglue.h py/emitglue: Add mp_raw_code_load_mem to load raw-code from memory. 9 years ago
emitinlinethumb.c py/emitinlinethumb: Add support for MRS instruction. 9 years ago
emitnative.c py/emit: Change type of arg of load_const_obj from void* to mp_obj_t. 9 years ago
formatfloat.c py/formatfloat: Handle calculation of integer digit for %f format properly. 9 years ago
formatfloat.h py: Implement mp_format_float for doubles and use where appropriate 10 years ago
frozenmod.c frozenmod: Include header with function prototypes. 10 years ago
frozenmod.h py: Implement very simple frozen modules support. 10 years ago
gc.c py/gc: Make GC block size be configurable. 9 years ago
gc.h py/gc: Move away from using mp_uint_t, instead use uintptr_t and size_t. 9 years ago
grammar.h py/compile: Do proper checking of * and ** in function definition. 9 years ago
lexer.c py/lexer: Properly classify floats that look like hex numbers. 9 years ago
lexer.h unix: Allow to cat a script into stdin from the command line. 10 years ago
lexerstr.c py: Use m_{new,renew,del} consistently. 10 years ago
lexerunix.c unix: Allow to cat a script into stdin from the command line. 10 years ago
makeqstrdata.py py/makeqstrdata.py: Catch and report case of empty input file. 9 years ago
makeversionhdr.py py/makeversionhdr.py: Work with backslashes in paths. 9 years ago
malloc.c py: Improve allocation policy of qstr data. 9 years ago
map.c py: Use MP_OBJ_NULL instead of NULL when appropriate. 9 years ago
misc.h py/misc.h: Include stdint.h only once (unconditionally at the top). 9 years ago
mkenv.mk py: Allow to to build MicroPython as a static library. 9 years ago
mkrules.mk py/mkrules.mk: Don't pass COPT to linker. 9 years ago
modarray.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modbuiltins.c py: Add min/max "default" keyword argument 9 years ago
modcmath.c py: Make it easy to build without MICROPY_PY_BUILTINS_COMPLEX. 9 years ago
modcollections.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modgc.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modio.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modmath.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modmicropython.c py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
modstruct.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
modsys.c py/modsys: Use MP_ROM_PTR() initializer for sys.modules. 9 years ago
mpconfig.h py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports. 9 years ago
mphal.h all: Add py/mphal.h and use it in all ports. 9 years ago
mpprint.c py/mpprint: Printing of doubles is now supported (by uPy own routine). 9 years ago
mpprint.h py: Change mp_print_strn_t func type to use size_t for the str length. 9 years ago
mpstate.c py: Put all global state together in state structures. 10 years ago
mpstate.h py/modsys: Implement sys.modules. 9 years ago
mpz.c py/mpz: Normalize (remove leading zeros) xor operation result. 9 years ago
mpz.h windows/py: Support 64bit mingw-w64 builds 9 years ago
nativeglue.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 9 years ago
nlr.h py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
nlrsetjmp.c py: Put all global state together in state structures. 10 years ago
nlrthumb.S py/nlrthumb: Make compatible with Cortex-M0 (ARMv6M instr set). 9 years ago
nlrx64.S nlr: Use single preprocessor symbol to check if building on Windows 9 years ago
nlrx86.S nlr: Use single preprocessor symbol to check if building on Windows 9 years ago
nlrxtensa.S py: Put all global state together in state structures. 10 years ago
obj.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
obj.h py: Add support for 64-bit NaN-boxing object model, on 32-bit machine. 9 years ago
objarray.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objattrtuple.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objbool.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objboundmeth.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objcell.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objclosure.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objcomplex.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objdict.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objenumerate.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objexcept.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objexcept.h py: Fix adding of traceback so that it appends to existing info. 10 years ago
objfilter.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objfloat.c py: Add support for 64-bit NaN-boxing object model, on 32-bit machine. 9 years ago
objfun.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objfun.h py: Add constant table to bytecode. 9 years ago
objgenerator.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objgenerator.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objgetitemiter.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objint.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objint.h py: Support conversion of bignum to bytes. 10 years ago
objint_longlong.c py/objint_longlong: Instead of assert, throw OverflowError. 9 years ago
objint_mpz.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objlist.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objlist.h py: Fix adding of traceback so that it appends to existing info. 10 years ago
objmap.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objmodule.c py: Make it easy to build without MICROPY_PY_BUILTINS_COMPLEX. 9 years ago
objmodule.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objnamedtuple.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objnone.c py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function. 10 years ago
objobject.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objproperty.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objrange.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objreversed.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objset.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objsingleton.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objslice.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objstr.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objstr.h py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objstringio.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objstrunicode.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objtuple.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objtuple.h py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
objtype.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objtype.h py: Check that arg to object.__new__ is a user-defined type. 10 years ago
objzip.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
opmethods.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
parse.c py: Add support for 64-bit NaN-boxing object model, on 32-bit machine. 9 years ago
parse.h py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
parsenum.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
parsenum.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
parsenumbase.c py: Parse big-int/float/imag constants directly in parser. 10 years ago
parsenumbase.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
py.mk extmod: Move fsusermount.c from stmhal for cross-port reuse. 9 years ago
qstr.c py: Change qstr_* functions to use size_t as the type for str len arg. 9 years ago
qstr.h py: Change qstr_* functions to use size_t as the type for str len arg. 9 years ago
qstrdefs.h py: Add min/max "default" keyword argument 9 years ago
repl.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
repl.h py, readline: Add tab autocompletion for REPL. 10 years ago
runtime.c py: Fix calling of parent classmethod from instance of subclass. 9 years ago
runtime.h py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
runtime0.h py: Put all bytecode state (arg count, etc) in bytecode. 9 years ago
scope.c unix-cpy: Remove unix-cpy. It's no longer needed. 9 years ago
scope.h py: Put all bytecode state (arg count, etc) in bytecode. 9 years ago
sequence.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
showbc.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
smallint.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
smallint.h py: Add support for 64-bit NaN-boxing object model, on 32-bit machine. 9 years ago
stackctrl.c vm: Support strict stackless mode, with proper exception reporting. 10 years ago
stackctrl.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
stream.c py: Add mp_get_stream_raise to factor out check for stream methods. 9 years ago
stream.h py: Add mp_get_stream_raise to factor out check for stream methods. 9 years ago
unicode.c py: Minor improvement to unichar_isxdigit 10 years ago
unicode.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
vm.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
vmentrytable.h py: Remove mp_load_const_bytes and instead load precreated bytes object. 10 years ago
vstr.c py: Prevent many extra vstr allocations. 9 years ago
warning.c py: Convert occurrences of non-debug printf to mp_printf. 10 years ago