Home
last modified time | relevance | path

Searched refs:JERRY_DEBUG_MSG (Results 1 – 10 of 10) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-bytecode.c374 JERRY_DEBUG_MSG ("Flags: 0x%x ", compiled_code_p->header.status_flags); in re_dump_bytecode()
375 JERRY_DEBUG_MSG ("Capturing groups: %d ", compiled_code_p->captures_count); in re_dump_bytecode()
376 JERRY_DEBUG_MSG ("Non-capturing groups: %d\n", compiled_code_p->non_captures_count); in re_dump_bytecode()
383 JERRY_DEBUG_MSG ("[%3u] ", (uint32_t) ((uintptr_t) bytecode_p - (uintptr_t) bytecode_start_p)); in re_dump_bytecode()
389 JERRY_DEBUG_MSG ("ALTERNATIVE_START "); in re_dump_bytecode()
391 JERRY_DEBUG_MSG ("tail offset: [%3u]\n", offset); in re_dump_bytecode()
396 JERRY_DEBUG_MSG ("ALTERNATIVE_NEXT "); in re_dump_bytecode()
398 JERRY_DEBUG_MSG ("tail offset: [%3u]\n", offset); in re_dump_bytecode()
403 JERRY_DEBUG_MSG ("NO_ALTERNATIVES\n"); in re_dump_bytecode()
408 JERRY_DEBUG_MSG ("CAPTURING_GROUP_START "); in re_dump_bytecode()
[all …]
/third_party/jerryscript/jerry-core/parser/js/
Dcommon.c63 JERRY_DEBUG_MSG ("%c", *char_p++); in util_print_chars()
77 JERRY_DEBUG_MSG ("%s", str_buf); in util_print_number()
88 JERRY_DEBUG_MSG ("ident("); in util_print_literal()
93 JERRY_DEBUG_MSG ("function"); in util_print_literal()
98 JERRY_DEBUG_MSG ("string("); in util_print_literal()
103 JERRY_DEBUG_MSG ("number("); in util_print_literal()
108 JERRY_DEBUG_MSG ("regexp"); in util_print_literal()
113 JERRY_DEBUG_MSG ("unknown"); in util_print_literal()
117 JERRY_DEBUG_MSG (")"); in util_print_literal()
Djs-parser.c551 JERRY_DEBUG_MSG (" arg:%d", literal_index); in parse_print_literal()
557 JERRY_DEBUG_MSG (" reg:%d", literal_index); in parse_print_literal()
573 JERRY_DEBUG_MSG (" ident:%d->", literal_index); in parse_print_literal()
577 JERRY_DEBUG_MSG (" lit:%d->", literal_index); in parse_print_literal()
636 JERRY_DEBUG_MSG ("\nFinal byte code dump:\n\n Maximum stack depth: %d\n Flags: [", in parse_print_final_cbc()
641 JERRY_DEBUG_MSG ("small_lit_enc"); in parse_print_final_cbc()
647 JERRY_DEBUG_MSG ("full_lit_enc"); in parse_print_final_cbc()
654 JERRY_DEBUG_MSG (",uint16_arguments"); in parse_print_final_cbc()
659 JERRY_DEBUG_MSG (",strict_mode"); in parse_print_final_cbc()
664 JERRY_DEBUG_MSG (",mapped_arguments_needed"); in parse_print_final_cbc()
[all …]
Djs-parser-util.c122 JERRY_DEBUG_MSG (in_scope_literal ? " IDX:%d->" : " idx:%d->", literal_index); in parser_print_literal()
130 JERRY_DEBUG_MSG (" reg:%d", (int) (literal_index - PARSER_REGISTER_START)); in parser_print_literal()
134 JERRY_DEBUG_MSG (" REG:%d->", (int) (literal_index - PARSER_REGISTER_START)); in parser_print_literal()
233 JERRY_DEBUG_MSG (" [%3d] %s", in parser_flush_cbc()
258 JERRY_DEBUG_MSG (" number:%d", (int) context_p->last_cbc.value + 1); in parser_flush_cbc()
263 JERRY_DEBUG_MSG (" number:%d", -((int) context_p->last_cbc.value + 1)); in parser_flush_cbc()
267 JERRY_DEBUG_MSG (" byte_arg:%d", (int) context_p->last_cbc.value); in parser_flush_cbc()
271 JERRY_DEBUG_MSG ("\n"); in parser_flush_cbc()
481 JERRY_DEBUG_MSG (" [%3d] CBC_EXT_LINE %d\n", (int) context_p->stack_depth, line); in parser_emit_line_info()
563 JERRY_DEBUG_MSG (" [%3d] %s\n", in parser_emit_cbc_forward_branch()
[all …]
Djs-scanner.c2277 JERRY_DEBUG_MSG ("\n--- Scanning start ---\n\n"); in scanner_scan_all()
3247 JERRY_DEBUG_MSG (" END_ARGUMENTS\n"); in scanner_scan_all()
3261 JERRY_DEBUG_MSG (" FUNCTION: flags: 0x%x declarations: %d", in scanner_scan_all()
3269 JERRY_DEBUG_MSG (" BLOCK:"); in scanner_scan_all()
3272 JERRY_DEBUG_MSG (" source:%d\n", (int) (info_p->source_p - source_start_p)); in scanner_scan_all()
3280 JERRY_DEBUG_MSG (" VAR "); in scanner_scan_all()
3286 JERRY_DEBUG_MSG (" LET "); in scanner_scan_all()
3291 JERRY_DEBUG_MSG (" CONST "); in scanner_scan_all()
3296 JERRY_DEBUG_MSG (" LOCAL "); in scanner_scan_all()
3303 JERRY_DEBUG_MSG (" IMPORT "); in scanner_scan_all()
[all …]
Djs-parser-statm.c2700 JERRY_DEBUG_MSG (" Note: switch to strict mode\n\n"); in parser_parse_statements()
/third_party/jerryscript/jerry-core/jrt/
Djrt.h117 #define JERRY_DEBUG_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_DEBUG, __VA_ARGS__) macro
122 #define JERRY_DEBUG_MSG(...) do { if (false) { JERRY_UNUSED_ALL (__VA_ARGS__); } } while (0) macro
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c711JERRY_DEBUG_MSG("debugger server: received [%s] from client\n", jerry_debugger_package_type_string… in jerry_debugger_process_message()
939 JERRY_DEBUG_MSG ("Stop at exception disabled\n"); in jerry_debugger_process_message()
944 JERRY_DEBUG_MSG ("Stop at exception enabled\n"); in jerry_debugger_process_message()
958 JERRY_DEBUG_MSG ("Waiting after parsing enabled\n"); in jerry_debugger_process_message()
963 JERRY_DEBUG_MSG ("Waiting after parsing disabled\n"); in jerry_debugger_process_message()
/third_party/jerryscript/jerry-core/jmem/
Djmem-heap.c746 JERRY_DEBUG_MSG ("Heap stats:\n"); in jmem_heap_stats_print()
748 JERRY_DEBUG_MSG (" Heap size = %"PRI_SIZET" bytes\n", in jmem_heap_stats_print()
751 JERRY_DEBUG_MSG (" Allocated = %"PRI_SIZET" bytes\n" in jmem_heap_stats_print()
/third_party/jerryscript/jerry-core/api/
Djerry.c2884 JERRY_DEBUG_MSG ("resume"); in jerry_call_function()