2014-05-03 23:27:38 +01: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 14:30:21 +01:00
|
|
|
// options to control how Micro Python is built
|
|
|
|
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_ALLOC_PATH_MAX (PATH_MAX)
|
2014-09-03 22:40:15 +01:00
|
|
|
#if !defined(MICROPY_EMIT_X64) && defined(__x86_64__)
|
|
|
|
#define MICROPY_EMIT_X64 (1)
|
2014-07-13 11:49:51 +01:00
|
|
|
#endif
|
2014-09-06 23:06:36 +01:00
|
|
|
#if !defined(MICROPY_EMIT_X86) && defined(__i386__)
|
|
|
|
#define MICROPY_EMIT_X86 (1)
|
|
|
|
#endif
|
2014-12-14 01:24:17 +00:00
|
|
|
#if !defined(MICROPY_EMIT_THUMB) && defined(__thumb2__)
|
|
|
|
#define MICROPY_EMIT_THUMB (1)
|
|
|
|
#endif
|
|
|
|
#if !defined(MICROPY_EMIT_ARM) && defined(__arm__)
|
|
|
|
#define MICROPY_EMIT_ARM (1)
|
|
|
|
#endif
|
2014-04-02 18:57:19 +01:00
|
|
|
#define MICROPY_ENABLE_GC (1)
|
2014-04-05 20:35:48 +01:00
|
|
|
#define MICROPY_ENABLE_FINALISER (1)
|
2014-01-07 14:54:15 +00:00
|
|
|
#define MICROPY_MEM_STATS (1)
|
2014-01-19 11:48:48 +00:00
|
|
|
#define MICROPY_DEBUG_PRINTERS (1)
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_HELPER_REPL (1)
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (1)
|
2014-01-29 21:51:51 +00:00
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (1)
|
2014-03-08 15:24:39 +00:00
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
|
2014-02-22 19:25:23 +00:00
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
2014-05-07 00:23:46 +01:00
|
|
|
#define MICROPY_STREAMS_NON_BLOCK (1)
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_OPT_COMPUTED_GOTO (1)
|
2014-12-09 16:19:48 +00:00
|
|
|
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
|
2014-07-16 11:45:10 +01:00
|
|
|
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
|
2014-10-23 13:34:35 +01:00
|
|
|
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
|
2014-06-01 13:32:54 +01:00
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (1)
|
2014-10-25 21:59:14 +01:00
|
|
|
#define MICROPY_PY_BUILTINS_COMPILE (1)
|
2014-05-24 23:03:12 +01:00
|
|
|
#define MICROPY_PY_SYS_EXIT (1)
|
2014-06-07 21:40:04 +01:00
|
|
|
#define MICROPY_PY_SYS_PLATFORM "linux"
|
2014-07-03 14:50:11 +01:00
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (1)
|
2014-05-24 23:03:12 +01:00
|
|
|
#define MICROPY_PY_SYS_STDFILES (1)
|
|
|
|
#define MICROPY_PY_CMATH (1)
|
|
|
|
#define MICROPY_PY_IO_FILEIO (1)
|
2014-06-05 20:48:02 +01:00
|
|
|
#define MICROPY_PY_GC_COLLECT_RETVAL (1)
|
2014-06-28 01:03:47 +01:00
|
|
|
|
|
|
|
#define MICROPY_PY_UCTYPES (1)
|
2014-10-12 16:16:34 +01:00
|
|
|
#define MICROPY_PY_UZLIB (1)
|
2014-09-17 22:56:34 +01:00
|
|
|
#define MICROPY_PY_UJSON (1)
|
2014-09-12 16:48:07 +01:00
|
|
|
#define MICROPY_PY_URE (1)
|
2014-10-22 18:37:18 +01:00
|
|
|
#define MICROPY_PY_UHEAPQ (1)
|
2014-11-21 23:19:13 +00:00
|
|
|
#define MICROPY_PY_UHASHLIB (1)
|
2014-11-29 04:19:30 +00:00
|
|
|
#define MICROPY_PY_UBINASCII (1)
|
2014-06-28 01:03:47 +01:00
|
|
|
|
2014-04-30 23:35:38 +01: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)
|
2014-10-11 18:32:17 +01:00
|
|
|
|
|
|
|
// Define to 1 to use undertested inefficient GC helper implementation
|
2014-06-05 02:32:17 +01:00
|
|
|
// (if more efficient arch-specific one is not available).
|
2014-06-20 18:17:43 +01:00
|
|
|
#ifndef MICROPY_GCREGS_SETJMP
|
2014-09-03 22:40:15 +01:00
|
|
|
#ifdef __mips__
|
|
|
|
#define MICROPY_GCREGS_SETJMP (1)
|
|
|
|
#else
|
|
|
|
#define MICROPY_GCREGS_SETJMP (0)
|
|
|
|
#endif
|
2014-06-20 18:17:43 +01:00
|
|
|
#endif
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-07-02 07:46:53 +01:00
|
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
2014-10-07 08:50:20 +01:00
|
|
|
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (256)
|
2014-07-02 07:46:53 +01:00
|
|
|
|
2014-05-14 20:08:45 +01:00
|
|
|
extern const struct _mp_obj_module_t mp_module_os;
|
2014-04-17 16:28:38 +01:00
|
|
|
extern const struct _mp_obj_module_t mp_module_time;
|
2014-08-19 08:23:14 +01:00
|
|
|
extern const struct _mp_obj_module_t mp_module_termios;
|
2014-04-17 18:34:04 +01:00
|
|
|
extern const struct _mp_obj_module_t mp_module_socket;
|
2014-04-17 22:00:15 +01:00
|
|
|
extern const struct _mp_obj_module_t mp_module_ffi;
|
2014-05-12 20:46:29 +01:00
|
|
|
|
2014-05-24 23:03:12 +01: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 20:46:29 +01:00
|
|
|
#else
|
2014-05-24 23:03:12 +01:00
|
|
|
#define MICROPY_PY_FFI_DEF
|
2014-05-12 20:46:29 +01:00
|
|
|
#endif
|
2014-05-24 23:03:12 +01:00
|
|
|
#if MICROPY_PY_TIME
|
2014-12-16 22:13:32 +00:00
|
|
|
#define MICROPY_PY_TIME_DEF { MP_OBJ_NEW_QSTR(MP_QSTR_utime), (mp_obj_t)&mp_module_time },
|
2014-05-12 20:46:29 +01:00
|
|
|
#else
|
2014-05-24 23:03:12 +01:00
|
|
|
#define MICROPY_PY_TIME_DEF
|
2014-05-12 20:46:29 +01:00
|
|
|
#endif
|
2014-08-24 13:19:22 +01: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
|
2014-05-12 20:46:29 +01:00
|
|
|
|
2014-05-21 20:32:59 +01:00
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES \
|
2014-05-24 23:03:12 +01:00
|
|
|
MICROPY_PY_FFI_DEF \
|
|
|
|
MICROPY_PY_TIME_DEF \
|
2014-10-09 18:43:10 +01:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_usocket), (mp_obj_t)&mp_module_socket }, \
|
2014-05-14 20:08:45 +01:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR__os), (mp_obj_t)&mp_module_os }, \
|
2014-08-24 13:19:22 +01:00
|
|
|
MICROPY_PY_TERMIOS_DEF \
|
2014-04-17 16:28:38 +01:00
|
|
|
|
2013-10-12 14:30:21 +01:00
|
|
|
// type definitions for the specific machine
|
|
|
|
|
2013-12-30 01:38:32 +00:00
|
|
|
#ifdef __LP64__
|
2014-07-03 13:25:24 +01:00
|
|
|
typedef long mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned long mp_uint_t; // must be pointer size
|
2013-12-30 01:38:32 +00:00
|
|
|
#else
|
|
|
|
// These are definitions for machines where sizeof(int) == sizeof(void*),
|
|
|
|
// regardless for actual size.
|
2014-07-03 13:25:24 +01:00
|
|
|
typedef int mp_int_t; // must be pointer size
|
|
|
|
typedef unsigned int mp_uint_t; // must be pointer size
|
2013-12-30 01:38:32 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-03 13:25:24 +01:00
|
|
|
#define BYTES_PER_WORD sizeof(mp_int_t)
|
2013-10-22 16:05:47 +01:00
|
|
|
|
2014-11-16 22:16:14 +00: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 14:30:21 +01:00
|
|
|
typedef void *machine_ptr_t; // must be of pointer size
|
2013-12-21 18:17:45 +00:00
|
|
|
typedef const void *machine_const_ptr_t; // must be of pointer size
|
2014-02-14 10:02:34 +00:00
|
|
|
|
2014-09-03 15:59:33 +01: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);
|
|
|
|
#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)
|
|
|
|
|
2014-08-24 16:28:17 +01: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 20:32:59 +01:00
|
|
|
#define MICROPY_PORT_BUILTINS \
|
2014-05-07 15:15:00 +01:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \
|
2014-04-05 22:36:42 +01:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
|
2014-06-07 08:36:04 +01:00
|
|
|
|
2014-06-08 13:25:33 +01:00
|
|
|
// We need to provide a declaration/definition of alloca()
|
2014-06-07 08:36:04 +01:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#else
|
|
|
|
#include <alloca.h>
|
|
|
|
#endif
|