mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
There are quite a few configuration macros in the project. As discussed in the #2520 issue there are a few awkward constructs. Main changes: * Renamed all CONFIG_DISABLE_<name>_BUILTIN macro to JERRY_BUILTIN_<name> format. * The special JERRY_BUILTINS macro specifies the basic config for all es5.1 builtins. * Renamed all CONFIG_DISABLE_ES2015_<name> to JERRY_ES2015_<name> format. * The special JERRY_ES2015 macro specifies the basic config for all es2015 builtins. * Renamed UNICODE_CASE_CONVERSION to JERRY_UNICODE_CASE_CONVERSION. * Renamed ENABLE_REGEXP_STRICT_MODE to JERRY_REGEXP_STRICT_MODE. * All options (in this change) can have a value of 0 or 1. * Renamed ENABLE_REGEXP_STRICT_MODE to JERRY_REGEXP_STRICT_MODE. JERRY_REGEXP_STRICT_MODE is set to 0 by default. * Reworked CONFIG_ECMA_NUMBER_TYPE macro to JERRY_NUMBER_TYPE_FLOAT64 name and now it uses the value 1 for 64 bit floating point numbers and 0 for 32 bit floating point number. By default the 64-bit floating point number mode is enabled. * All new JERRY_ defines can be used wit the `#if ENABLED (JERRY_...)` construct to test if the feature is enabled or not. * Added/replaced a few config.h includes to correctly propagate the macro values. * Added sanity checks for each macro to avoid incorrectly set values. * Updated profile documentation. * The CMake feature names are not updated at this point. JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.u-szeged@partner.samsung.com
118 lines
3.4 KiB
C
118 lines
3.4 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef RE_PARSER_H
|
|
#define RE_PARSER_H
|
|
|
|
#if ENABLED (JERRY_BUILTIN_REGEXP)
|
|
|
|
/** \addtogroup parser Parser
|
|
* @{
|
|
*
|
|
* \addtogroup regexparser Regular expression
|
|
* @{
|
|
*
|
|
* \addtogroup regexparser_bytecode Bytecode
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* RegExp token type definitions
|
|
*/
|
|
typedef enum
|
|
{
|
|
RE_TOK_EOF, /**< EOF */
|
|
RE_TOK_BACKREFERENCE, /**< "\[0..9]" */
|
|
RE_TOK_CHAR, /**< any character */
|
|
RE_TOK_ALTERNATIVE, /**< "|" */
|
|
RE_TOK_ASSERT_START, /**< "^" */
|
|
RE_TOK_ASSERT_END, /**< "$" */
|
|
RE_TOK_PERIOD, /**< "." */
|
|
RE_TOK_START_CAPTURE_GROUP, /**< "(" */
|
|
RE_TOK_START_NON_CAPTURE_GROUP, /**< "(?:" */
|
|
RE_TOK_END_GROUP, /**< ")" */
|
|
RE_TOK_ASSERT_START_POS_LOOKAHEAD, /**< "(?=" */
|
|
RE_TOK_ASSERT_START_NEG_LOOKAHEAD, /**< "(?!" */
|
|
RE_TOK_ASSERT_WORD_BOUNDARY, /**< "\b" */
|
|
RE_TOK_ASSERT_NOT_WORD_BOUNDARY, /**< "\B" */
|
|
RE_TOK_DIGIT, /**< "\d" */
|
|
RE_TOK_NOT_DIGIT, /**< "\D" */
|
|
RE_TOK_WHITE, /**< "\s" */
|
|
RE_TOK_NOT_WHITE, /**< "\S" */
|
|
RE_TOK_WORD_CHAR, /**< "\w" */
|
|
RE_TOK_NOT_WORD_CHAR, /**< "\W" */
|
|
RE_TOK_START_CHAR_CLASS, /**< "[ ]" */
|
|
RE_TOK_START_INV_CHAR_CLASS, /**< "[^ ]" */
|
|
} re_token_type_t;
|
|
|
|
/**
|
|
* @}
|
|
*
|
|
* \addtogroup regexparser_parser Parser
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* RegExp constant of infinite
|
|
*/
|
|
#define RE_ITERATOR_INFINITE ((uint32_t) - 1)
|
|
|
|
/**
|
|
* Maximum number of decimal escape digits
|
|
*/
|
|
#define RE_MAX_RE_DECESC_DIGITS 9
|
|
|
|
/**
|
|
* RegExp token type
|
|
*/
|
|
typedef struct
|
|
{
|
|
re_token_type_t type; /**< type of the token */
|
|
uint32_t value; /**< value of the token */
|
|
uint32_t qmin; /**< minimum number of token iterations */
|
|
uint32_t qmax; /**< maximum number of token iterations */
|
|
bool greedy; /**< type of iteration */
|
|
} re_token_t;
|
|
|
|
/**
|
|
* RegExp parser context
|
|
*/
|
|
typedef struct
|
|
{
|
|
const lit_utf8_byte_t *input_start_p; /**< start of input pattern */
|
|
const lit_utf8_byte_t *input_curr_p; /**< current position in input pattern */
|
|
const lit_utf8_byte_t *input_end_p; /**< end of input pattern */
|
|
int num_of_groups; /**< number of groups */
|
|
uint32_t num_of_classes; /**< number of character classes */
|
|
} re_parser_ctx_t;
|
|
|
|
typedef void (*re_char_class_callback) (void *re_ctx_p, ecma_char_t start, ecma_char_t end);
|
|
|
|
ecma_value_t
|
|
re_parse_char_class (re_parser_ctx_t *parser_ctx_p, re_char_class_callback append_char_class, void *re_ctx_p,
|
|
re_token_t *out_token_p);
|
|
|
|
ecma_value_t
|
|
re_parse_next_token (re_parser_ctx_t *parser_ctx_p, re_token_t *out_token_p);
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
* @}
|
|
*/
|
|
|
|
#endif /* ENABLED (JERRY_BUILTIN_REGEXP) */
|
|
#endif /* !RE_PARSER_H */
|