2014-05-03 18:27:38 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-10-12 09:30:21 -04:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (PATH_MAX)
|
2014-09-03 17:40:15 -04:00
|
|
|
#if !defined(MICROPY_EMIT_X64) && defined(__x86_64__)
|
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2014-07-13 06:49:51 -04:00
|
|
|
#endif
|
2014-09-06 18:06:36 -04:00
|
|
|
#if !defined(MICROPY_EMIT_X86) && defined(__i386__)
|
|
|
|
#define MICROPY_EMIT_X86 (1)
|
|
|
|
#endif
|
2014-12-13 20:24:17 -05:00
|
|
|
#if !defined(MICROPY_EMIT_THUMB) && defined(__thumb2__)
|
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
2015-05-07 19:24:43 -04:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void*)((mp_uint_t)(p) | 1))
|
2014-12-13 20:24:17 -05:00
|
|
|
#endif
|
2015-05-07 19:24:43 -04:00
|
|
|
// Some compilers define __thumb2__ and __arm__ at the same time, let
|
|
|
|
// autodetected thumb2 emitter have priority.
|
|
|
|
#if !defined(MICROPY_EMIT_ARM) && defined(__arm__) && !defined(__thumb2__)
|
2014-12-13 20:24:17 -05:00
|
|
|
#define MICROPY_EMIT_ARM (1)
|
|
|
|
#endif
|
2015-01-10 09:07:24 -05:00
|
|
|
#define MICROPY_COMP_MODULE_CONST (1)
|
2015-03-14 09:11:35 -04:00
|
|
|
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1)
|
2014-04-02 13:57:19 -04:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-04-05 15:35:48 -04:00
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2015-01-08 19:10:55 -05:00
|
|
|
#define MICROPY_STACK_CHECK (1)
|
2015-02-27 04:54:12 -05:00
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
2014-01-07 09:54:15 -05:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-01-19 06:48:48 -05:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2015-03-13 03:45:42 -04:00
|
|
|
#define MICROPY_USE_READLINE_HISTORY (1)
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_HELPER_REPL (1)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (1)
|
2014-01-29 16:51:51 -05:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2014-03-08 10:24:39 -05:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
2014-02-22 14:25:23 -05:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-05-06 19:23:46 -04:00
|
|
|
#define MICROPY_STREAMS_NON_BLOCK (1)
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_OPT_COMPUTED_GOTO (1)
|
2015-01-06 07:51:39 -05:00
|
|
|
#define MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE (1)
|
2014-12-09 11:19:48 -05:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2015-02-14 12:44:31 -05:00
|
|
|
#define MICROPY_PY_FUNCTION_ATTRS (1)
|
2015-02-14 12:43:54 -05:00
|
|
|
#define MICROPY_PY_DESCRIPTORS (1)
|
2014-07-16 06:45:10 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
|
2015-04-03 17:09:23 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (1)
|
2014-10-23 08:34:35 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2014-06-01 08:32:54 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
2014-10-25 16:59:14 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_COMPILE (1)
|
2015-05-04 12:45:53 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
|
2015-01-09 15:12:54 -05:00
|
|
|
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
|
2015-01-29 18:42:49 -05:00
|
|
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
|
2015-02-27 15:16:05 -05:00
|
|
|
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2014-06-07 16:40:04 -04:00
|
|
|
#define MICROPY_PY_SYS_PLATFORM "linux"
|
2014-07-03 09:50:11 -04:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_SYS_STDFILES (1)
|
2015-04-24 20:17:41 -04:00
|
|
|
#define MICROPY_PY_SYS_EXC_INFO (1)
|
2015-03-17 19:25:04 -04:00
|
|
|
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
|
2015-02-22 09:48:18 -05:00
|
|
|
#define MICROPY_PY_MATH_SPECIAL_FUNCTIONS (1)
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_CMATH (1)
|
|
|
|
#define MICROPY_PY_IO_FILEIO (1)
|
2014-06-05 15:48:02 -04:00
|
|
|
#define MICROPY_PY_GC_COLLECT_RETVAL (1)
|
2014-06-27 20:03:47 -04:00
|
|
|
|
2015-03-27 19:14:45 -04:00
|
|
|
#define MICROPY_STACKLESS (0)
|
|
|
|
#define MICROPY_STACKLESS_STRICT (0)
|
|
|
|
|
2014-06-27 20:03:47 -04:00
|
|
|
#define MICROPY_PY_UCTYPES (1)
|
2014-10-12 11:16:34 -04:00
|
|
|
#define MICROPY_PY_UZLIB (1)
|
2014-09-17 17:56:34 -04:00
|
|
|
#define MICROPY_PY_UJSON (1)
|
2014-09-12 11:48:07 -04:00
|
|
|
#define MICROPY_PY_URE (1)
|
2014-10-22 13:37:18 -04:00
|
|
|
#define MICROPY_PY_UHEAPQ (1)
|
2014-11-21 18:19:13 -05:00
|
|
|
#define MICROPY_PY_UHASHLIB (1)
|
2014-11-28 23:19:30 -05:00
|
|
|
#define MICROPY_PY_UBINASCII (1)
|
2015-05-03 13:25:40 -04:00
|
|
|
#define MICROPY_PY_MACHINE (1)
|
2014-06-27 20:03:47 -04:00
|
|
|
|
2014-04-30 18:35:38 -04:00
|
|
|
// Define to MICROPY_ERROR_REPORTING_DETAILED to get function, etc.
|
|
|
|
// names in exception messages (may require more RAM).
|
|
|
|
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_DETAILED)
|
2015-01-01 02:29:28 -05:00
|
|
|
#define MICROPY_WARNINGS (1)
|
2014-10-11 13:32:17 -04:00
|
|
|
|
|
|
|
// Define to 1 to use undertested inefficient GC helper implementation
|
2014-06-04 21:32:17 -04:00
|
|
|
// (if more efficient arch-specific one is not available).
|
2014-06-20 13:17:43 -04:00
|
|
|
#ifndef MICROPY_GCREGS_SETJMP
|
2014-09-03 17:40:15 -04:00
|
|
|
#ifdef __mips__
|
|
|
|
#define MICROPY_GCREGS_SETJMP (1)
|
|
|
|
#else
|
|
|
|
#define MICROPY_GCREGS_SETJMP (0)
|
|
|
|
#endif
|
2014-06-20 13:17:43 -04:00
|
|
|
#endif
|
2013-10-12 09:30:21 -04:00
|
|
|
|
2014-07-02 02:46:53 -04:00
|
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
2014-10-07 03:50:20 -04:00
|
|
|
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (256)
|
2014-07-02 02:46:53 -04:00
|
|
|
|
2014-05-14 15:08:45 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_os;
|
2014-04-17 11:28:38 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_time;
|
2014-08-19 03:23:14 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_termios;
|
2014-04-17 13:34:04 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_socket;
|
2014-04-17 17:00:15 -04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_ffi;
|
2014-05-12 15:46:29 -04:00
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
#if MICROPY_PY_FFI
|
|
|
|
#define MICROPY_PY_FFI_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_ffi), (mp_obj_t)&mp_module_ffi },
|
2014-05-12 15:46:29 -04:00
|
|
|
#else
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_FFI_DEF
|
2014-05-12 15:46:29 -04:00
|
|
|
#endif
|
2014-05-24 18:03:12 -04:00
|
|
|
#if MICROPY_PY_TIME
|
2014-12-16 17:13:32 -05:00
|
|
|
#define MICROPY_PY_TIME_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_utime), (mp_obj_t)&mp_module_time },
|
2014-05-12 15:46:29 -04:00
|
|
|
#else
|
2014-05-24 18:03:12 -04:00
|
|
|
#define MICROPY_PY_TIME_DEF
|
2014-05-12 15:46:29 -04:00
|
|
|
#endif
|
2014-08-24 08:19:22 -04:00
|
|
|
#if MICROPY_PY_TERMIOS
|
|
|
|
#define MICROPY_PY_TERMIOS_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_termios), (mp_obj_t)&mp_module_termios },
|
|
|
|
#else
|
|
|
|
#define MICROPY_PY_TERMIOS_DEF
|
|
|
|
#endif
|
2015-01-11 12:28:27 -05:00
|
|
|
#if MICROPY_PY_SOCKET
|
|
|
|
#define MICROPY_PY_SOCKET_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_usocket), (mp_obj_t)&mp_module_socket },
|
|
|
|
#else
|
|
|
|
#define MICROPY_PY_SOCKET_DEF
|
|
|
|
#endif
|
2014-05-12 15:46:29 -04:00
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2014-05-24 18:03:12 -04:00
|
|
|
MICROPY_PY_FFI_DEF \
|
|
|
|
MICROPY_PY_TIME_DEF \
|
2015-01-11 12:28:27 -05:00
|
|
|
MICROPY_PY_SOCKET_DEF \
|
2014-05-14 15:08:45 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR__os), (mp_obj_t)&mp_module_os }, \
|
2014-08-24 08:19:22 -04:00
|
|
|
MICROPY_PY_TERMIOS_DEF \
|
2014-04-17 11:28:38 -04:00
|
|
|
|
2013-10-12 09:30:21 -04:00
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-12-29 20:38:32 -05:00
|
|
|
#ifdef __LP64__
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef long mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned long mp_uint_t; // must be pointer size
|
2013-12-29 20:38:32 -05:00
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless for actual size.
|
2014-07-03 08:25:24 -04:00
|
|
|
typedef int mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned int mp_uint_t; // must be pointer size
|
2013-12-29 20:38:32 -05:00
|
|
|
#endif
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
#define BYTES_PER_WORD sizeof(mp_int_t)
|
2013-10-22 11:05:47 -04:00
|
|
|
|
2014-11-16 17:16:14 -05:00
|
|
|
// Cannot include <sys/types.h>, as it may lead to symbol name clashes
|
|
|
|
#if _FILE_OFFSET_BITS == 64 && !defined(__LP64__)
|
|
|
|
typedef long long mp_off_t;
|
|
|
|
#else
|
|
|
|
typedef long mp_off_t;
|
|
|
|
#endif
|
|
|
|
|
2013-10-12 09:30:21 -04:00
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 13:17:45 -05:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2014-02-14 05:02:34 -05:00
|
|
|
|
2014-09-03 10:59:33 -04:00
|
|
|
void mp_unix_alloc_exec(mp_uint_t min_size, void** ptr, mp_uint_t *size);
|
|
|
|
void mp_unix_free_exec(void *ptr, mp_uint_t size);
|
2015-01-13 19:11:09 -05:00
|
|
|
void mp_unix_mark_exec(void);
|
2014-09-03 10:59:33 -04:00
|
|
|
#define MP_PLAT_ALLOC_EXEC(min_size, ptr, size) mp_unix_alloc_exec(min_size, ptr, size)
|
|
|
|
#define MP_PLAT_FREE_EXEC(ptr, size) mp_unix_free_exec(ptr, size)
|
|
|
|
|
2015-04-09 18:56:15 -04:00
|
|
|
#define MP_PLAT_PRINT_STRN(str, len) fwrite(str, 1, len, stdout)
|
|
|
|
|
2014-08-24 11:28:17 -04:00
|
|
|
extern const struct _mp_obj_fun_builtin_t mp_builtin_input_obj;
|
|
|
|
extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj;
|
2014-05-21 15:32:59 -04:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2014-05-07 10:15:00 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \
|
2014-04-05 17:36:42 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|
2014-06-07 03:36:04 -04:00
|
|
|
|
2015-01-01 18:30:53 -05:00
|
|
|
#define MICROPY_PORT_ROOT_POINTERS \
|
2015-01-13 19:11:09 -05:00
|
|
|
mp_obj_t keyboard_interrupt_obj; \
|
|
|
|
void *mmap_region_head; \
|
2015-01-01 18:30:53 -05:00
|
|
|
|
2014-06-08 08:25:33 -04:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
2014-06-07 03:36:04 -04:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#else
|
|
|
|
#include <alloca.h>
|
|
|
|
#endif
|