Searched refs:parser_branch_node_t (Results 1 - 3 of 3) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/ |
H A D | js-parser-util.c | 600 parser_branch_node_t * 603 parser_branch_node_t *next_p) /**< next branch */ in parser_emit_cbc_forward_branch_item() 606 parser_branch_node_t *new_item; in parser_emit_cbc_forward_branch_item() 612 new_item = (parser_branch_node_t *) parser_malloc (context_p, sizeof (parser_branch_node_t)); in parser_emit_cbc_forward_branch_item() 768 parser_branch_node_t *current_p) /**< branch list */ in parser_set_breaks_to_current_position() 772 parser_branch_node_t *next_p = current_p->next_p; in parser_set_breaks_to_current_position() 778 parser_free (current_p, sizeof (parser_branch_node_t)); in parser_set_breaks_to_current_position() 788 parser_branch_node_t *current_p) /**< branch list */ in parser_set_continues_to_current_position()
|
H A D | js-parser-internal.h | 375 typedef struct parser_branch_node_t struct 377 struct parser_branch_node_t *next_p; /**< next linked list node */ 379 } parser_branch_node_t; typedef 652 parser_branch_node_t *parser_emit_cbc_forward_branch_item (parser_context_t *context_p, uint16_t opcode, 653 parser_branch_node_t *next_p); 656 void parser_set_breaks_to_current_position (parser_context_t *context_p, parser_branch_node_t *current_p); 657 void parser_set_continues_to_current_position (parser_context_t *context_p, parser_branch_node_t *current_p);
|
H A D | js-parser-statm.c | 154 parser_branch_node_t *branch_list_p; /**< list of breaks and continues targeting this statement */ 163 parser_branch_node_t *break_list_p; /**< list of breaks targeting this label */ 180 parser_branch_node_t *branch_list_p; /**< branches of case statements */ 1682 parser_branch_node_t *case_branches_p = NULL; in parser_parse_switch_statement_start() 1805 parser_branch_node_t *new_case_p = parser_emit_cbc_forward_branch_item (context_p, opcode, NULL); in parser_parse_switch_statement_start() 2077 parser_branch_node_t *branch_p; in parser_parse_case_statement() 2114 parser_free (branch_p, sizeof (parser_branch_node_t)); in parser_parse_case_statement() 3362 parser_branch_node_t *branch_list_p = NULL; in parser_free_jumps() 3397 parser_branch_node_t *next_p = branch_list_p->next_p; in parser_free_jumps() 3398 parser_free (branch_list_p, sizeof (parser_branch_node_t)); in parser_free_jumps() [all...] |
Completed in 7 milliseconds