summaryrefslogtreecommitdiff
path: root/py/emitnative.c
AgeCommit message (Expand)Author
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-16py: Remove unnecessary id_flags argument from emitter's load_fast.Damien George
2015-01-14py, unix: Trace root pointers with native emitter under unix port.Damien George
2015-01-13py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2015-01-01emitnative: Disable warning in delete_fast for now (breaks test).Paul Sokolovsky
2015-01-01py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky
2014-12-27py: Allow to properly disable builtin slice operation.Damien George
2014-12-27py: Allow to properly disable builtin "set" object.Damien George
2014-10-19py: Partially fix viper multi-comparison; add test for it.Damien George
2014-10-12py: Fix x86 viper code generation, mem8 <-> mem16 for load.Damien George
2014-10-12py: Implement native load for viper.Damien George
2014-10-12py: Implement and,or,xor native ops for viper.Damien George
2014-10-04Implement missing ARM emitter functions for viperFabian Vogt
2014-10-03py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George
2014-09-29py: Fix viper store on x86; add tests for viper ptr16.Damien George
2014-09-29py: Add casting to viper; add native mem stores to viper.Damien George
2014-09-29py: Implement more binary ops for viper emitter.Damien George
2014-09-29py: Allow viper to use ints as direct conditionals in jumps.Damien George
2014-09-29py: Make macro names in assemblers consistent, and tidy up a bit.Damien George
2014-09-29py: In asmthumb, clean up unit/int types and ite ops.Damien George
2014-09-23py: Make native emitter handle multi-compare and not/is not/not in ops.Damien George
2014-09-15py: Make asm_arm_less_op take destination register as first arg.Damien George
2014-09-12py: Load strings as objects when compiling viper.Damien George
2014-09-08py: Put define of x86 argument registers in asmx86.h.Damien George
2014-09-08py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.Damien George
2014-09-07py: Clean up x86-64 native assembler; allow use of extended regs.Damien George
2014-09-06py: Adjust regs for x86 so that 1 more local can live in a reg.Damien George
2014-09-06py: Allow x86 native functions to take arguments.Damien George
2014-09-06py: Add support for emitting native x86 machine code.Damien George
2014-09-06py: Native emitter now supports delete name & global, and end finally.Damien George
2014-09-03Code style/whitespace cleanup; remove obsolete headers.Damien George
2014-08-29py: Fix 2 bugs in native emitter: jump_or_pop and stack settling.Damien George
2014-08-27Basic native ARM emitterFabian Vogt
2014-08-16py: Code clean-up in native emitter; improve thumb native calls.Damien George
2014-08-16py: Viper can call functions with native types, and raise exceptions.Damien George
2014-08-15py: Viper can now store to global.Damien George
2014-08-15py: Fix typing of viper locals; allow default types in annotation.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-30py: Improvements to native emitter.Damien George
2014-06-25Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-06-22py: Implement delete_attr in native emitter.Damien George
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-05-30py: Fix break from within a for loop.Damien George
2014-05-28py: Implement long int parsing in int(...).Damien George
2014-05-10py: Combine native emitters to 1 glue function; distinguish viper.Damien George
2014-05-07py: Fix stack access in thumb native emitter.Damien George
2014-05-07py: Improve native emitter; now supports more opcodes.Damien George
2014-05-07py, compiler: Improve passes; add an extra pass for native emitter.Damien George