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.
|
|
|
|
*/
|
|
|
|
|
2014-01-03 10:15:53 -05:00
|
|
|
// This file contains default configuration settings for MicroPython.
|
|
|
|
// You can override any of these options using mpconfigport.h file located
|
|
|
|
// in a directory of your port.
|
|
|
|
|
2014-06-12 14:50:17 -04:00
|
|
|
#include <mpconfigport.h>
|
2014-01-03 10:15:53 -05:00
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
// Any options not explicitly set in mpconfigport.h will get default
|
|
|
|
// values below.
|
|
|
|
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Memory allocation policy */
|
|
|
|
|
2014-05-10 12:48:01 -04:00
|
|
|
// Initial amount for lexer indentation level
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_LEXER_INDENT_INIT
|
|
|
|
#define MICROPY_ALLOC_LEXER_INDENT_INIT (10)
|
2014-05-10 12:48:01 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Increment for lexer indentation level
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_LEXEL_INDENT_INC
|
|
|
|
#define MICROPY_ALLOC_LEXEL_INDENT_INC (8)
|
2014-05-10 12:48:01 -04:00
|
|
|
#endif
|
|
|
|
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
// Initial amount for parse rule stack
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_PARSE_RULE_INIT
|
|
|
|
#define MICROPY_ALLOC_PARSE_RULE_INIT (64)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Increment for parse rule stack
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_PARSE_RULE_INC
|
|
|
|
#define MICROPY_ALLOC_PARSE_RULE_INC (16)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Initial amount for parse result stack
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_PARSE_RESULT_INIT
|
|
|
|
#define MICROPY_ALLOC_PARSE_RESULT_INIT (32)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Increment for parse result stack
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_PARSE_RESULT_INC
|
|
|
|
#define MICROPY_ALLOC_PARSE_RESULT_INC (16)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-25 17:06:06 -04:00
|
|
|
// Strings this length or less will be interned by the parser
|
|
|
|
#ifndef MICROPY_ALLOC_PARSE_INTERN_STRING_LEN
|
|
|
|
#define MICROPY_ALLOC_PARSE_INTERN_STRING_LEN (10)
|
|
|
|
#endif
|
|
|
|
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
// Initial amount for ids in a scope
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_SCOPE_ID_INIT
|
|
|
|
#define MICROPY_ALLOC_SCOPE_ID_INIT (4)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Increment for ids in a scope
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_ALLOC_SCOPE_ID_INC
|
|
|
|
#define MICROPY_ALLOC_SCOPE_ID_INC (6)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Maximum length of a path in the filesystem
|
|
|
|
// So we can allocate a buffer on the stack for path manipulation in import
|
|
|
|
#ifndef MICROPY_ALLOC_PATH_MAX
|
|
|
|
#define MICROPY_ALLOC_PATH_MAX (512)
|
py: Turn down amount of RAM parser and compiler use.
There are 2 locations in parser, and 1 in compiler, where memory
allocation is not precise. In the parser it's the rule stack and result
stack, in the compiler it's the array for the identifiers in the current
scope. All other mallocs are exact (ie they don't allocate more than is
needed).
This patch adds tuning options (MP_ALLOC_*) to mpconfig.h for these 3
inexact allocations.
The inexact allocations in the parser should actually be close to
logarithmic: you need an exponentially larger script (absent pathological
cases) to use up more room on the rule and result stacks. As such, the
default allocation policy for these is now to start with a modest sized
stack, but grow only in small increments.
For the identifier arrays in the compiler, these now start out quite
small (4 entries, since most functions don't have that many ids), and
grow incrementally by 6 (since if you have more ids than 4, you probably
have quite a few more, but it wouldn't be exponentially more).
Partially addresses issue #560.
2014-05-05 08:19:03 -04:00
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Micro Python emitters */
|
|
|
|
|
|
|
|
// Whether to emit CPython byte codes (for debugging/testing)
|
|
|
|
// Enabling this overrides all other emitters
|
|
|
|
#ifndef MICROPY_EMIT_CPYTHON
|
|
|
|
#define MICROPY_EMIT_CPYTHON (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Whether to emit x64 native code
|
|
|
|
#ifndef MICROPY_EMIT_X64
|
|
|
|
#define MICROPY_EMIT_X64 (0)
|
2014-01-03 18:57:00 -05:00
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
// Whether to emit thumb native code
|
|
|
|
#ifndef MICROPY_EMIT_THUMB
|
|
|
|
#define MICROPY_EMIT_THUMB (0)
|
|
|
|
#endif
|
2014-01-03 18:57:00 -05:00
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
// Whether to enable the thumb inline assembler
|
|
|
|
#ifndef MICROPY_EMIT_INLINE_THUMB
|
|
|
|
#define MICROPY_EMIT_INLINE_THUMB (0)
|
|
|
|
#endif
|
|
|
|
|
2014-08-15 11:45:41 -04:00
|
|
|
// Convenience definition for whether any native emitter is enabled
|
|
|
|
#define MICROPY_EMIT_NATIVE (MICROPY_EMIT_X64 || MICROPY_EMIT_THUMB)
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Compiler configuration */
|
|
|
|
|
|
|
|
// Whether to enable constant optimisation; id = const(value)
|
|
|
|
#ifndef MICROPY_COMP_CONST
|
|
|
|
#define MICROPY_COMP_CONST (1)
|
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Internal debugging stuff */
|
2014-01-03 10:15:53 -05:00
|
|
|
|
|
|
|
// Whether to collect memory allocation stats
|
|
|
|
#ifndef MICROPY_MEM_STATS
|
2014-01-07 09:54:15 -05:00
|
|
|
#define MICROPY_MEM_STATS (0)
|
|
|
|
#endif
|
|
|
|
|
2014-01-19 06:48:48 -05:00
|
|
|
// Whether to build functions that print debugging info:
|
2014-02-15 11:10:44 -05:00
|
|
|
// mp_token_show
|
2014-05-10 05:36:38 -04:00
|
|
|
// mp_bytecode_print
|
2014-01-19 06:48:48 -05:00
|
|
|
// mp_parse_node_print
|
|
|
|
#ifndef MICROPY_DEBUG_PRINTERS
|
|
|
|
#define MICROPY_DEBUG_PRINTERS (0)
|
2014-01-07 10:20:33 -05:00
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
/*****************************************************************************/
|
2014-05-24 18:03:12 -04:00
|
|
|
/* Optimisations */
|
|
|
|
|
|
|
|
// Whether to use computed gotos in the VM, or a switch
|
|
|
|
// Computed gotos are roughly 10% faster, and increase VM code size by a little
|
|
|
|
#ifndef MICROPY_OPT_COMPUTED_GOTO
|
|
|
|
#define MICROPY_OPT_COMPUTED_GOTO (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Python internal features */
|
2014-01-07 09:54:15 -05:00
|
|
|
|
2014-01-07 10:20:33 -05:00
|
|
|
// Whether to include the garbage collector
|
|
|
|
#ifndef MICROPY_ENABLE_GC
|
|
|
|
#define MICROPY_ENABLE_GC (0)
|
|
|
|
#endif
|
|
|
|
|
2014-04-05 15:35:48 -04:00
|
|
|
// Whether to enable finalisers in the garbage collector (ie call __del__)
|
|
|
|
#ifndef MICROPY_ENABLE_GC_FINALISER
|
|
|
|
#define MICROPY_ENABLE_GC_FINALISER (0)
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 20:03:34 -04:00
|
|
|
// Whether to check C stack usage. C stack used for calling Python functions,
|
|
|
|
// etc. Not checking means segfault on overflow.
|
|
|
|
#ifndef MICROPY_STACK_CHECK
|
|
|
|
#define MICROPY_STACK_CHECK (1)
|
|
|
|
#endif
|
|
|
|
|
2014-07-02 02:46:53 -04:00
|
|
|
// Whether to have an emergency exception buffer
|
|
|
|
#ifndef MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF
|
|
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (0)
|
|
|
|
#endif
|
|
|
|
#if MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF
|
|
|
|
# ifndef MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE
|
|
|
|
# define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (0) // 0 - implies dynamic allocation
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
// Whether to include REPL helper function
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_HELPER_REPL
|
|
|
|
#define MICROPY_HELPER_REPL (0)
|
2014-01-07 09:54:15 -05:00
|
|
|
#endif
|
|
|
|
|
2014-01-07 10:20:33 -05:00
|
|
|
// Whether to include lexer helper function for unix
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_HELPER_LEXER_UNIX
|
|
|
|
#define MICROPY_HELPER_LEXER_UNIX (0)
|
2014-01-07 10:20:33 -05:00
|
|
|
#endif
|
|
|
|
|
2014-01-12 10:30:48 -05:00
|
|
|
// Long int implementation
|
|
|
|
#define MICROPY_LONGINT_IMPL_NONE (0)
|
|
|
|
#define MICROPY_LONGINT_IMPL_LONGLONG (1)
|
2014-02-22 14:25:23 -05:00
|
|
|
#define MICROPY_LONGINT_IMPL_MPZ (2)
|
2014-01-12 10:30:48 -05:00
|
|
|
|
|
|
|
#ifndef MICROPY_LONGINT_IMPL
|
|
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG
|
|
|
|
typedef long long mp_longint_impl_t;
|
|
|
|
#endif
|
|
|
|
|
2014-01-29 16:51:51 -05:00
|
|
|
// Whether to include information in the byte code to determine source
|
|
|
|
// line number (increases RAM usage, but doesn't slow byte code execution)
|
|
|
|
#ifndef MICROPY_ENABLE_SOURCE_LINE
|
|
|
|
#define MICROPY_ENABLE_SOURCE_LINE (0)
|
|
|
|
#endif
|
|
|
|
|
2014-04-25 18:52:57 -04:00
|
|
|
// Whether to include doc strings (increases RAM usage)
|
|
|
|
#ifndef MICROPY_ENABLE_DOC_STRING
|
|
|
|
#define MICROPY_ENABLE_DOC_STRING (0)
|
|
|
|
#endif
|
|
|
|
|
2014-04-30 18:35:38 -04:00
|
|
|
// Exception messages are short static strings (TODO)
|
|
|
|
#define MICROPY_ERROR_REPORTING_TERSE (1)
|
|
|
|
// Exception messages provide basic error details
|
|
|
|
#define MICROPY_ERROR_REPORTING_NORMAL (2)
|
|
|
|
// Exception messages provide full info, e.g. object names
|
|
|
|
#define MICROPY_ERROR_REPORTING_DETAILED (3)
|
|
|
|
|
|
|
|
#ifndef MICROPY_ERROR_REPORTING
|
|
|
|
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_NORMAL)
|
|
|
|
#endif
|
|
|
|
|
2014-03-08 10:24:39 -05:00
|
|
|
// Float and complex implementation
|
|
|
|
#define MICROPY_FLOAT_IMPL_NONE (0)
|
|
|
|
#define MICROPY_FLOAT_IMPL_FLOAT (1)
|
|
|
|
#define MICROPY_FLOAT_IMPL_DOUBLE (2)
|
|
|
|
|
|
|
|
#ifndef MICROPY_FLOAT_IMPL
|
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_NONE)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
|
2014-06-01 08:32:54 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_FLOAT (1)
|
2014-03-08 10:24:39 -05:00
|
|
|
#define MICROPY_FLOAT_C_FUN(fun) fun##f
|
|
|
|
typedef float mp_float_t;
|
|
|
|
#elif MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_DOUBLE
|
2014-06-01 08:32:54 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_FLOAT (1)
|
2014-03-08 10:24:39 -05:00
|
|
|
#define MICROPY_FLOAT_C_FUN(fun) fun
|
|
|
|
typedef double mp_float_t;
|
|
|
|
#else
|
2014-06-01 08:32:54 -04:00
|
|
|
#define MICROPY_PY_BUILTINS_FLOAT (0)
|
2014-01-03 10:15:53 -05:00
|
|
|
#endif
|
2014-01-02 20:01:12 -05:00
|
|
|
|
2014-06-19 18:48:35 -04:00
|
|
|
#ifndef MICROPY_PY_BUILTINS_COMPLEX
|
|
|
|
#define MICROPY_PY_BUILTINS_COMPLEX (MICROPY_PY_BUILTINS_FLOAT)
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Enable features which improve CPython compatibility
|
|
|
|
// but may lead to more code size/memory usage.
|
|
|
|
// TODO: Originally intended as generic category to not
|
|
|
|
// add bunch of once-off options. May need refactoring later
|
|
|
|
#ifndef MICROPY_CPYTHON_COMPAT
|
|
|
|
#define MICROPY_CPYTHON_COMPAT (1)
|
2014-04-26 05:31:15 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether POSIX-semantics non-blocking streams are supported
|
|
|
|
#ifndef MICROPY_STREAMS_NON_BLOCK
|
|
|
|
#define MICROPY_STREAMS_NON_BLOCK (0)
|
2014-04-17 12:11:03 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Fine control over Python builtins, classes, modules, etc */
|
2014-04-17 12:11:03 -04:00
|
|
|
|
2014-06-12 18:05:19 -04:00
|
|
|
// Whether str object is proper unicode
|
|
|
|
#ifndef MICROPY_PY_BUILTINS_STR_UNICODE
|
|
|
|
#define MICROPY_PY_BUILTINS_STR_UNICODE (0)
|
2014-06-28 05:29:22 -04:00
|
|
|
#endif
|
2014-06-28 05:27:15 -04:00
|
|
|
|
2014-06-27 13:39:09 -04:00
|
|
|
// Whether to support bytearray object
|
|
|
|
#ifndef MICROPY_PY_BUILTINS_BYTEARRAY
|
|
|
|
#define MICROPY_PY_BUILTINS_BYTEARRAY (1)
|
2014-06-12 18:05:19 -04:00
|
|
|
#endif
|
|
|
|
|
2014-06-01 08:46:47 -04:00
|
|
|
// Whether to support set object
|
|
|
|
#ifndef MICROPY_PY_BUILTINS_SET
|
|
|
|
#define MICROPY_PY_BUILTINS_SET (1)
|
|
|
|
#endif
|
|
|
|
|
2014-06-01 08:32:54 -04:00
|
|
|
// Whether to support slice subscript operators and slice object
|
|
|
|
#ifndef MICROPY_PY_BUILTINS_SLICE
|
|
|
|
#define MICROPY_PY_BUILTINS_SLICE (1)
|
2014-05-05 19:16:43 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to support frozenset object
|
2014-06-01 08:32:54 -04:00
|
|
|
#ifndef MICROPY_PY_BUILTINS_FROZENSET
|
|
|
|
#define MICROPY_PY_BUILTINS_FROZENSET (0)
|
2014-04-03 07:57:53 -04:00
|
|
|
#endif
|
|
|
|
|
2014-06-01 08:32:54 -04:00
|
|
|
// Whether to support property object
|
|
|
|
#ifndef MICROPY_PY_BUILTINS_PROPERTY
|
|
|
|
#define MICROPY_PY_BUILTINS_PROPERTY (1)
|
2014-05-19 13:59:13 -04:00
|
|
|
#endif
|
|
|
|
|
2014-07-25 04:00:15 -04:00
|
|
|
// Whether to set __file__ for imported modules
|
|
|
|
#ifndef MICROPY_PY___FILE__
|
|
|
|
#define MICROPY_PY___FILE__ (1)
|
|
|
|
#endif
|
|
|
|
|
2014-06-27 13:39:09 -04:00
|
|
|
// Whether to provide "array" module. Note that large chunk of the
|
|
|
|
// underlying code is shared with "bytearray" builtin type, so to
|
|
|
|
// get real savings, it should be disabled too.
|
|
|
|
#ifndef MICROPY_PY_ARRAY
|
|
|
|
#define MICROPY_PY_ARRAY (1)
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "collections" module
|
|
|
|
#ifndef MICROPY_PY_COLLECTIONS
|
|
|
|
#define MICROPY_PY_COLLECTIONS (1)
|
2014-05-15 00:28:19 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "math" module
|
|
|
|
#ifndef MICROPY_PY_MATH
|
|
|
|
#define MICROPY_PY_MATH (1)
|
2014-04-09 20:45:38 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "cmath" module
|
|
|
|
#ifndef MICROPY_PY_CMATH
|
|
|
|
#define MICROPY_PY_CMATH (0)
|
2014-04-12 23:43:18 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "gc" module
|
|
|
|
#ifndef MICROPY_PY_GC
|
|
|
|
#define MICROPY_PY_GC (1)
|
2014-04-13 00:00:37 -04:00
|
|
|
#endif
|
|
|
|
|
2014-06-05 15:48:02 -04:00
|
|
|
// Whether to return number of collected objects from gc.collect()
|
|
|
|
#ifndef MICROPY_PY_GC_COLLECT_RETVAL
|
|
|
|
#define MICROPY_PY_GC_COLLECT_RETVAL (0)
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "io" module
|
|
|
|
#ifndef MICROPY_PY_IO
|
|
|
|
#define MICROPY_PY_IO (1)
|
2014-05-10 10:26:47 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "io.FileIO" class
|
|
|
|
#ifndef MICROPY_PY_IO_FILEIO
|
|
|
|
#define MICROPY_PY_IO_FILEIO (0)
|
2014-01-02 20:01:12 -05:00
|
|
|
#endif
|
2014-01-07 09:54:15 -05:00
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "io.BytesIO" class
|
|
|
|
#ifndef MICROPY_PY_IO_BYTESIO
|
|
|
|
#define MICROPY_PY_IO_BYTESIO (1)
|
2014-05-10 09:02:17 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "struct" module
|
|
|
|
#ifndef MICROPY_PY_STRUCT
|
|
|
|
#define MICROPY_PY_STRUCT (1)
|
2014-04-13 13:59:45 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "sys" module
|
|
|
|
#ifndef MICROPY_PY_SYS
|
|
|
|
#define MICROPY_PY_SYS (1)
|
2014-01-16 12:19:50 -05:00
|
|
|
#endif
|
|
|
|
|
2014-07-03 09:50:11 -04:00
|
|
|
// Whether to provide "sys.maxsize" constant
|
|
|
|
#ifndef MICROPY_PY_SYS_MAXSIZE
|
|
|
|
#define MICROPY_PY_SYS_MAXSIZE (0)
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide "sys.exit" function
|
|
|
|
#ifndef MICROPY_PY_SYS_EXIT
|
|
|
|
#define MICROPY_PY_SYS_EXIT (0)
|
2014-05-06 19:23:46 -04:00
|
|
|
#endif
|
|
|
|
|
2014-05-24 18:03:12 -04:00
|
|
|
// Whether to provide sys.{stdin,stdout,stderr} objects
|
|
|
|
#ifndef MICROPY_PY_SYS_STDFILES
|
|
|
|
#define MICROPY_PY_SYS_STDFILES (0)
|
2014-04-14 16:20:30 -04:00
|
|
|
#endif
|
|
|
|
|
2014-06-27 20:03:47 -04:00
|
|
|
|
|
|
|
// Extended modules
|
2014-08-08 15:51:40 -04:00
|
|
|
|
2014-06-27 20:03:47 -04:00
|
|
|
#ifndef MICROPY_PY_UCTYPES
|
|
|
|
#define MICROPY_PY_UCTYPES (0)
|
|
|
|
#endif
|
|
|
|
|
2014-08-08 15:51:40 -04:00
|
|
|
#ifndef MICROPY_PY_ZLIBD
|
|
|
|
#define MICROPY_PY_ZLIBD (0)
|
|
|
|
#endif
|
|
|
|
|
2014-05-21 15:32:59 -04:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Hooks for a port to add builtins */
|
|
|
|
|
2014-03-25 10:18:18 -04:00
|
|
|
// Additional builtin function definitions - see builtintables.c:builtin_object_table for format.
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_PORT_BUILTINS
|
|
|
|
#define MICROPY_PORT_BUILTINS
|
2014-02-14 05:02:34 -05:00
|
|
|
#endif
|
2014-03-25 10:18:18 -04:00
|
|
|
|
|
|
|
// Additional builtin module definitions - see builtintables.c:builtin_module_table for format.
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_PORT_BUILTIN_MODULES
|
|
|
|
#define MICROPY_PORT_BUILTIN_MODULES
|
2014-03-25 10:18:18 -04:00
|
|
|
#endif
|
|
|
|
|
2014-04-10 17:42:11 -04:00
|
|
|
// Additional constant definitions for the compiler - see compile.c:mp_constants_table.
|
2014-05-21 15:32:59 -04:00
|
|
|
#ifndef MICROPY_PORT_CONSTANTS
|
|
|
|
#define MICROPY_PORT_CONSTANTS
|
2014-04-10 17:42:11 -04:00
|
|
|
#endif
|
|
|
|
|
2014-01-07 09:54:15 -05:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Miscellaneous settings */
|
|
|
|
|
2014-07-02 02:46:53 -04:00
|
|
|
// On embedded platforms, these will typically enable/disable irqs.
|
|
|
|
#ifndef MICROPY_BEGIN_ATOMIC_SECTION
|
|
|
|
#define MICROPY_BEGIN_ATOMIC_SECTION()
|
|
|
|
#endif
|
|
|
|
#ifndef MICROPY_END_ATOMIC_SECTION
|
|
|
|
#define MICROPY_END_ATOMIC_SECTION()
|
|
|
|
#endif
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
// Allow to override static modifier for global objects, e.g. to use with
|
|
|
|
// object code analysis tools which don't support static symbols.
|
|
|
|
#ifndef STATIC
|
|
|
|
#define STATIC static
|
|
|
|
#endif
|
|
|
|
|
2014-01-12 09:10:19 -05:00
|
|
|
#define BITS_PER_BYTE (8)
|
|
|
|
#define BITS_PER_WORD (BITS_PER_BYTE * BYTES_PER_WORD)
|
2014-07-03 08:25:24 -04:00
|
|
|
// mp_int_t value with most significant bit set
|
|
|
|
#define WORD_MSBIT_HIGH (((mp_uint_t)1) << (BYTES_PER_WORD * 8 - 1))
|
2014-01-12 09:10:19 -05:00
|
|
|
|
2014-04-10 20:44:00 -04:00
|
|
|
#if !defined(MP_ENDIANNESS_LITTLE) && !defined(MP_ENDIANNESS_BIG)
|
|
|
|
// Just because most archs are such?
|
|
|
|
#define MP_ENDIANNESS_LITTLE (1)
|
|
|
|
#endif
|
2014-04-13 21:39:56 -04:00
|
|
|
// Ensure we don't accidentally set both endiannesses
|
|
|
|
#if MP_ENDIANNESS_BIG
|
|
|
|
#define MP_ENDIANNESS_LITTLE (0)
|
|
|
|
#endif
|
2014-04-10 20:44:00 -04:00
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
// printf format spec to use for mp_int_t and friends
|
2014-01-07 09:54:15 -05:00
|
|
|
#ifndef INT_FMT
|
|
|
|
#ifdef __LP64__
|
2014-07-03 08:25:24 -04:00
|
|
|
// Archs where mp_int_t == long, long != int
|
2014-01-07 09:54:15 -05:00
|
|
|
#define UINT_FMT "%lu"
|
|
|
|
#define INT_FMT "%ld"
|
|
|
|
#else
|
2014-07-03 08:25:24 -04:00
|
|
|
// Archs where mp_int_t == int
|
2014-01-07 09:54:15 -05:00
|
|
|
#define UINT_FMT "%u"
|
|
|
|
#define INT_FMT "%d"
|
|
|
|
#endif
|
|
|
|
#endif //INT_FMT
|
2014-04-29 22:35:18 -04:00
|
|
|
|
|
|
|
// Modifier for function which doesn't return
|
2014-05-05 06:18:27 -04:00
|
|
|
#ifndef NORETURN
|
2014-04-29 22:35:18 -04:00
|
|
|
#define NORETURN __attribute__((noreturn))
|
2014-05-05 06:18:27 -04:00
|
|
|
#endif
|
2014-06-21 11:24:55 -04:00
|
|
|
|
|
|
|
// Modifier for weak functions
|
|
|
|
#ifndef MP_WEAK
|
|
|
|
#define MP_WEAK __attribute__((weak))
|
|
|
|
#endif
|