Home
last modified time | relevance | path

Searched refs:call_arguments (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-internal.h649 void parser_emit_cbc_call (parser_context_t *context_p, uint16_t opcode, size_t call_arguments);
666 #define parser_emit_cbc_ext_call(context_p, opcode, call_arguments) \ argument
667 parser_emit_cbc_call ((context_p), PARSER_TO_EXT_OPCODE (opcode), (call_arguments))
668 #define parser_emit_cbc_ext_call(context_p, opcode, call_arguments) \ argument
669 parser_emit_cbc_call ((context_p), PARSER_TO_EXT_OPCODE (opcode), (call_arguments))
Djs-parser-expr.c1415 uint32_t call_arguments = 0; in parser_parse_tagged_template_literal() local
1440 call_arguments++; in parser_parse_tagged_template_literal()
1448 if (++call_arguments > CBC_MAXIMUM_BYTE_VALUE) in parser_parse_tagged_template_literal()
1469 return call_arguments; in parser_parse_tagged_template_literal()
2014 size_t call_arguments = 0; in parser_process_unary_expression() local
2070 call_arguments = parser_parse_tagged_template_literal (context_p); in parser_process_unary_expression()
2078 if (++call_arguments > CBC_MAXIMUM_BYTE_VALUE) in parser_process_unary_expression()
2086 call_arguments++; in parser_process_unary_expression()
2114 if (++call_arguments > CBC_MAXIMUM_BYTE_VALUE) in parser_process_unary_expression()
2193 parser_emit_cbc_ext_call (context_p, spread_opcode, call_arguments); in parser_process_unary_expression()
[all …]
Djs-parser-util.c374 size_t call_arguments) /**< number of arguments */ in parser_emit_cbc_call() argument
377 JERRY_ASSERT (call_arguments <= CBC_MAXIMUM_BYTE_VALUE); in parser_emit_cbc_call()
385 context_p->last_cbc.value = (uint16_t) call_arguments; in parser_emit_cbc_call()