Home
last modified time | relevance | path

Searched refs:PARSER_STACK_PAGE_SIZE (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-mem.c346 parser_data_init (&context_p->stack, PARSER_STACK_PAGE_SIZE); in parser_stack_init()
357 sizeof (parser_mem_page_t *) + PARSER_STACK_PAGE_SIZE); in parser_stack_free()
362 sizeof (parser_mem_page_t *) + PARSER_STACK_PAGE_SIZE); in parser_stack_free()
381 if (context_p->stack.last_position >= PARSER_STACK_PAGE_SIZE) in parser_stack_push_uint8()
390 size_t size = sizeof (parser_mem_page_t *) + PARSER_STACK_PAGE_SIZE; in parser_stack_push_uint8()
419 context_p->stack.last_position = PARSER_STACK_PAGE_SIZE; in parser_stack_pop_uint8()
428 sizeof (parser_mem_page_t *) + PARSER_STACK_PAGE_SIZE); in parser_stack_pop_uint8()
446 if (context_p->stack.last_position + 2 <= PARSER_STACK_PAGE_SIZE) in parser_stack_push_uint16()
502 uint32_t fragment_length = PARSER_STACK_PAGE_SIZE - context_p->stack.last_position; in parser_stack_push()
506 JERRY_ASSERT (length < PARSER_STACK_PAGE_SIZE && length > 0); in parser_stack_push()
[all …]
Djs-parser-internal.h223 #define PARSER_STACK_PAGE_SIZE \ macro
Djs-parser-expr.c392 iterator.current_position = PARSER_STACK_PAGE_SIZE; in parser_append_object_literal_item()
401 iterator.current_position = PARSER_STACK_PAGE_SIZE; in parser_append_object_literal_item()
410 iterator.current_position = PARSER_STACK_PAGE_SIZE; in parser_append_object_literal_item()
Djs-parser-statm.c325 …RY_ASSERT (iterator->current_position > 0 && iterator->current_position <= PARSER_STACK_PAGE_SIZE); in parser_stack_iterator_read_uint8()