2014-05-04 02: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 17:30:21 +04:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2014-05-21 23:32:59 +04:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (PATH_MAX)
|
2014-09-04 01:40:15 +04:00
|
|
|
#if !defined(MICROPY_EMIT_X64) && defined(__x86_64__)
|
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2014-07-13 14:49:51 +04:00
|
|
|
#endif
|
2014-09-07 02:06:36 +04:00
|
|
|
#if !defined(MICROPY_EMIT_X86) && defined(__i386__)
|
|
|
|
#define MICROPY_EMIT_X86 (1)
|
|
|
|
#endif
|
2014-12-14 04:24:17 +03:00
|
|
|
#if !defined(MICROPY_EMIT_THUMB) && defined(__thumb2__)
|
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
2015-05-08 02:24:43 +03:00
|
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void*)((mp_uint_t)(p) | 1))
|
2014-12-14 04:24:17 +03:00
|
|
|
#endif
|
2015-05-08 02:24:43 +03: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-14 04:24:17 +03:00
|
|
|
#define MICROPY_EMIT_ARM (1)
|
|
|
|
#endif
|
2015-01-10 17:07:24 +03:00
|
|
|
#define MICROPY_COMP_MODULE_CONST (1)
|
2015-03-14 16:11:35 +03:00
|
|
|
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1)
|
2014-04-02 21:57:19 +04:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-04-05 23:35:48 +04:00
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2015-01-09 03:10:55 +03:00
|
|
|
#define MICROPY_STACK_CHECK (1)
|
2015-02-27 12:54:12 +03:00
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
2014-01-07 18:54:15 +04:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-01-19 15:48:48 +04:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2015-03-13 10:45:42 +03:00
|
|
|
#define MICROPY_USE_READLINE_HISTORY (1)
|
2014-05-21 23:32:59 +04:00
|
|
|
#define MICROPY_HELPER_REPL (1)
|
2015-07-10 02:32:36 +03:00
|
|
|
#define MICROPY_REPL_EMACS_KEYS (1)
|
2015-08-20 12:34:22 +03:00
|
|
|
#define MICROPY_REPL_AUTO_INDENT (1)
|
2014-05-21 23:32:59 +04:00
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (1)
|
2014-01-30 01:51:51 +04:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2014-03-08 19:24:39 +04:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
2014-02-22 23:25:23 +04:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-05-07 03:23:46 +04:00
|
|
|
#define MICROPY_STREAMS_NON_BLOCK (1)
|
2014-05-21 23:32:59 +04:00
|
|
|
#define MICROPY_OPT_COMPUTED_GOTO (1)
|
2015-01-06 15:51:39 +03:00
|
|
|
#define MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE (1)
|
2014-12-09 19:19:48 +03:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2015-02-14 20:44:31 +03:00
|
|
|
#define MICROPY_PY_FUNCTION_ATTRS (1)
|
2015-02-14 20:43:54 +03:00
|
|
|
#define MICROPY_PY_DESCRIPTORS (1)
|
2014-07-16 14:45:10 +04:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
|
2015-04-04 00:09:23 +03:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (1)
|
2014-10-23 16:34:35 +04:00
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2014-06-01 16:32:54 +04:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
2014-10-26 00:59:14 +04:00
|
|
|
#define MICROPY_PY_BUILTINS_COMPILE (1)
|
2015-05-04 19:45:53 +03:00
|
|
|
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
|
2015-01-09 23:12:54 +03:00
|
|
|
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
|
2015-01-30 02:42:49 +03:00
|
|
|
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
|
2015-02-27 23:16:05 +03:00
|
|
|
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
|
2015-09-12 00:31:32 +03:00
|
|
|
#define MICROPY_PY_BUILTINS_SLICE_ATTRS (1)
|
2014-05-25 02:03:12 +04:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2015-08-03 23:13:34 +03:00
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
|
|
#define MICROPY_PY_SYS_PLATFORM "darwin"
|
|
|
|
#else
|
|
|
|
#define MICROPY_PY_SYS_PLATFORM "linux"
|
|
|
|
#endif
|
2014-07-03 17:50:11 +04:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2014-05-25 02:03:12 +04:00
|
|
|
#define MICROPY_PY_SYS_STDFILES (1)
|
2015-04-25 03:17:41 +03:00
|
|
|
#define MICROPY_PY_SYS_EXC_INFO (1)
|
2015-03-18 02:25:04 +03:00
|
|
|
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1)
|
2015-02-22 17:48:18 +03:00
|
|
|
#define MICROPY_PY_MATH_SPECIAL_FUNCTIONS (1)
|
2014-05-25 02:03:12 +04:00
|
|
|
#define MICROPY_PY_CMATH (1)
|
|
|
|
#define MICROPY_PY_IO_FILEIO (1)
|
2014-06-05 23:48:02 +04:00
|
|
|
#define MICROPY_PY_GC_COLLECT_RETVAL (1)
|
2015-06-02 01:32:07 +03:00
|
|
|
#define MICROPY_MODULE_FROZEN (1)
|
2014-06-28 04:03:47 +04:00
|
|
|
|
2015-03-28 02:14:45 +03:00
|
|
|
#define MICROPY_STACKLESS (0)
|
|
|
|
#define MICROPY_STACKLESS_STRICT (0)
|
|
|
|
|
2014-06-28 04:03:47 +04:00
|
|
|
#define MICROPY_PY_UCTYPES (1)
|
2014-10-12 19:16:34 +04:00
|
|
|
#define MICROPY_PY_UZLIB (1)
|
2014-09-18 01:56:34 +04:00
|
|
|
#define MICROPY_PY_UJSON (1)
|
2014-09-12 19:48:07 +04:00
|
|
|
#define MICROPY_PY_URE (1)
|
2014-10-22 21:37:18 +04:00
|
|
|
#define MICROPY_PY_UHEAPQ (1)
|
2014-11-22 02:19:13 +03:00
|
|
|
#define MICROPY_PY_UHASHLIB (1)
|
2014-11-29 07:19:30 +03:00
|
|
|
#define MICROPY_PY_UBINASCII (1)
|
2015-05-03 20:25:40 +03:00
|
|
|
#define MICROPY_PY_MACHINE (1)
|
2014-06-28 04:03:47 +04:00
|
|
|
|
2014-05-01 02: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 10:29:28 +03:00
|
|
|
#define MICROPY_WARNINGS (1)
|
2014-10-11 21:32:17 +04:00
|
|
|
|
|
|
|
// Define to 1 to use undertested inefficient GC helper implementation
|
2014-06-05 05:32:17 +04:00
|
|
|
// (if more efficient arch-specific one is not available).
|
2014-06-20 21:17:43 +04:00
|
|
|
#ifndef MICROPY_GCREGS_SETJMP
|
2014-09-04 01:40:15 +04:00
|
|
|
#ifdef __mips__
|
|
|
|
#define MICROPY_GCREGS_SETJMP (1)
|
|
|
|
#else
|
|
|
|
#define MICROPY_GCREGS_SETJMP (0)
|
|
|
|
#endif
|
2014-06-20 21:17:43 +04:00
|
|
|
#endif
|
2013-10-12 17:30:21 +04:00
|
|
|
|
2014-07-02 10:46:53 +04:00
|
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
2014-10-07 11:50:20 +04:00
|
|
|
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (256)
|
2014-07-02 10:46:53 +04:00
|
|
|
|
2014-05-14 23:08:45 +04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_os;
|
2014-04-17 19:28:38 +04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_time;
|
2014-08-19 11:23:14 +04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_termios;
|
2014-04-17 21:34:04 +04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_socket;
|
2014-04-18 01:00:15 +04:00
|
|
|
extern const struct _mp_obj_module_t mp_module_ffi;
|
2015-09-11 17:57:47 +03:00
|
|
|
extern const struct _mp_obj_module_t mp_module_jni;
|
2014-05-12 23:46:29 +04:00
|
|
|
|
2014-05-25 02: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 23:46:29 +04:00
|
|
|
#else
|
2014-05-25 02:03:12 +04:00
|
|
|
#define MICROPY_PY_FFI_DEF
|
2014-05-12 23:46:29 +04:00
|
|
|
#endif
|
2015-09-11 17:57:47 +03:00
|
|
|
#if MICROPY_PY_JNI
|
|
|
|
#define MICROPY_PY_JNI_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_jni), (mp_obj_t)&mp_module_jni },
|
|
|
|
#else
|
|
|
|
#define MICROPY_PY_JNI_DEF
|
|
|
|
#endif
|
2014-05-25 02:03:12 +04:00
|
|
|
#if MICROPY_PY_TIME
|
2014-12-17 01:13:32 +03:00
|
|
|
#define MICROPY_PY_TIME_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_utime), (mp_obj_t)&mp_module_time },
|
2014-05-12 23:46:29 +04:00
|
|
|
#else
|
2014-05-25 02:03:12 +04:00
|
|
|
#define MICROPY_PY_TIME_DEF
|
2014-05-12 23:46:29 +04:00
|
|
|
#endif
|
2014-08-24 16: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 20:28:27 +03: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 23:46:29 +04:00
|
|
|
|
2014-05-21 23:32:59 +04:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2014-05-25 02:03:12 +04:00
|
|
|
MICROPY_PY_FFI_DEF \
|
2015-09-11 17:57:47 +03:00
|
|
|
MICROPY_PY_JNI_DEF \
|
2014-05-25 02:03:12 +04:00
|
|
|
MICROPY_PY_TIME_DEF \
|
2015-01-11 20:28:27 +03:00
|
|
|
MICROPY_PY_SOCKET_DEF \
|
2014-05-14 23:08:45 +04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR__os), (mp_obj_t)&mp_module_os }, \
|
2014-08-24 16:19:22 +04:00
|
|
|
MICROPY_PY_TERMIOS_DEF \
|
2014-04-17 19:28:38 +04:00
|
|
|
|
2013-10-12 17:30:21 +04:00
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-12-30 05:38:32 +04:00
|
|
|
#ifdef __LP64__
|
2014-07-03 16: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-30 05:38:32 +04:00
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless for actual size.
|
2014-07-03 16: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-30 05:38:32 +04:00
|
|
|
#endif
|
|
|
|
|
2014-07-03 16:25:24 +04:00
|
|
|
#define BYTES_PER_WORD sizeof(mp_int_t)
|
2013-10-22 19:05:47 +04:00
|
|
|
|
2014-11-17 01:16:14 +03: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 17:30:21 +04:00
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 22:17:45 +04:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2014-02-14 14:02:34 +04:00
|
|
|
|
2014-09-03 18: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-14 03:11:09 +03:00
|
|
|
void mp_unix_mark_exec(void);
|
2014-09-03 18: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-10 01:56:15 +03:00
|
|
|
#define MP_PLAT_PRINT_STRN(str, len) fwrite(str, 1, len, stdout)
|
|
|
|
|
2015-07-06 00:08:33 +03:00
|
|
|
#ifdef __linux__
|
|
|
|
// Can access physical memory using /dev/mem
|
|
|
|
#define MICROPY_PLAT_DEV_MEM (1)
|
|
|
|
#endif
|
|
|
|
|
2015-10-15 00:10:26 +03:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
#include <android/api-level.h>
|
|
|
|
#if __ANDROID_API__ < 4
|
|
|
|
// Bionic libc in Android 1.5 misses these 2 functions
|
|
|
|
// 1.442695040888963407354163704 is 1/_M_LN2
|
|
|
|
#define log2(x) (log(x) * 1.442695040888963407354163704)
|
|
|
|
#define nan(x) NAN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-08-24 19: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 23:32:59 +04:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2014-05-07 18:15:00 +04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \
|
2014-04-06 01:36:42 +04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|
2014-06-07 11:36:04 +04:00
|
|
|
|
2015-05-25 00:36:31 +03:00
|
|
|
#define MP_STATE_PORT MP_STATE_VM
|
|
|
|
|
2015-01-02 02:30:53 +03:00
|
|
|
#define MICROPY_PORT_ROOT_POINTERS \
|
2015-05-25 00:36:31 +03:00
|
|
|
const char *readline_hist[50]; \
|
2015-01-14 03:11:09 +03:00
|
|
|
mp_obj_t keyboard_interrupt_obj; \
|
|
|
|
void *mmap_region_head; \
|
2015-01-02 02:30:53 +03:00
|
|
|
|
2015-05-25 00:36:31 +03:00
|
|
|
#define MICROPY_HAL_H "unix_mphal.h"
|
|
|
|
|
2014-06-08 16:25:33 +04:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
2014-06-07 11:36:04 +04:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#else
|
|
|
|
#include <alloca.h>
|
|
|
|
#endif
|