Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/vm/
Dopcodes.h117 opfunc_create_executable_object (vm_frame_ctx_t *frame_ctx_p);
129 opfunc_push_class_environment (vm_frame_ctx_t *frame_ctx_p, ecma_value_t **vm_stack_top, ecma_valu…
132 opfunc_init_class (vm_frame_ctx_t *frame_context_p, ecma_value_t *stack_top_p);
135 opfunc_pop_lexical_environment (vm_frame_ctx_t *frame_ctx_p);
138 opfunc_finalize_class (vm_frame_ctx_t *frame_ctx_p, ecma_value_t **vm_stack_top_p, ecma_value_t cla…
141 opfunc_form_super_reference (ecma_value_t **vm_stack_top_p, vm_frame_ctx_t *frame_ctx_p, ecma_value…
145 opfunc_assign_super_reference (ecma_value_t **vm_stack_top_p, vm_frame_ctx_t *frame_ctx_p, uint32_t…
Dvm-defines.h41 typedef struct vm_frame_ctx_t struct
49 struct vm_frame_ctx_t *prev_context_p; /**< previous context */ argument
65 } vm_frame_ctx_t; argument
83 vm_frame_ctx_t frame_ctx; /**< frame context part */
Dvm-utils.c57 vm_get_function_name_string (vm_frame_ctx_t *context_p) in vm_get_function_name_string()
61 vm_frame_ctx_t* prev_ctx_p = context_p->prev_context_p; in vm_get_function_name_string()
111 vm_frame_ctx_t *context_p = JERRY_CONTEXT (vm_top_context_p); in vm_get_backtrace()
Dvm-stack.h101 ecma_value_t *vm_stack_context_abort (vm_frame_ctx_t *frame_ctx_p, ecma_value_t *vm_stack_top_p);
102 bool vm_stack_find_finally (vm_frame_ctx_t *frame_ctx_p, ecma_value_t **vm_stack_top_ref_p,
Dopcodes.c579 opfunc_create_executable_object (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in opfunc_create_executable_object()
616 vm_frame_ctx_t *new_frame_ctx_p = &(executable_object_p->frame_ctx); in opfunc_create_executable_object()
905 opfunc_push_class_environment (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in opfunc_push_class_environment()
933 opfunc_init_class (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in opfunc_init_class()
1115 opfunc_pop_lexical_environment (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in opfunc_pop_lexical_environment()
1128 opfunc_finalize_class (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in opfunc_finalize_class()
1179 vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in opfunc_form_super_reference()
1246 vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in opfunc_assign_super_reference()
Dvm-stack.c39 vm_stack_context_abort (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in vm_stack_context_abort()
160 vm_stack_find_finally (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in vm_stack_find_finally()
Dvm.c441 vm_construct_literal_object (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in vm_construct_literal_object()
541 vm_super_call (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in vm_super_call()
658 vm_spread_operation (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in vm_spread_operation()
753 opfunc_call (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in opfunc_call()
845 opfunc_construct (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in opfunc_construct()
975 vm_loop (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in vm_loop()
4258 vm_init_exec (vm_frame_ctx_t *frame_ctx_p, /**< frame context */ in vm_init_exec()
4362 vm_execute (vm_frame_ctx_t *frame_ctx_p) /**< frame context */ in vm_execute()
4447 vm_frame_ctx_t *frame_ctx_p; in vm_run()
4465 frame_size = frame_size * sizeof (ecma_value_t) + sizeof (vm_frame_ctx_t); in vm_run()
[all …]
Dvm.h446 ecma_value_t vm_execute (vm_frame_ctx_t *frame_ctx_p);
/third_party/jerryscript/jerry-core/jcontext/
Djcontext.h158 vm_frame_ctx_t *vm_top_context_p; /**< top (current) interpreter context */
204vm_frame_ctx_t *debugger_stop_context; /**< stop only if the current context is equal to this cont…
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c139 vm_frame_ctx_t *iter_frame_ctx_p = JERRY_CONTEXT (vm_top_context_p); in jerry_debugger_send_backtrace()
158 vm_frame_ctx_t *frame_ctx_p = JERRY_CONTEXT (vm_top_context_p); in jerry_debugger_send_backtrace()
219 vm_frame_ctx_t *iter_frame_ctx_p = JERRY_CONTEXT (vm_top_context_p); in jerry_debugger_send_scope_chain()
439 vm_frame_ctx_t *iter_frame_ctx_p = JERRY_CONTEXT (vm_top_context_p); in jerry_debugger_send_scope_variables()
1221 vm_frame_ctx_t *frame_ctx_p = JERRY_CONTEXT (vm_top_context_p); in jerry_debugger_breakpoint_hit()