Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c265 ext_func_p->u.function.bytecode_cp = ECMA_NULL_POINTER; in ecma_op_create_function_object()
271 ECMA_SET_INTERNAL_VALUE_POINTER (ext_func_p->u.function.bytecode_cp, bytecode_data_p); in ecma_op_create_function_object()
467 arrow_func_p->header.u.function.bytecode_cp = ECMA_NULL_POINTER; in ecma_op_create_arrow_function_object()
473 ECMA_SET_INTERNAL_VALUE_POINTER (arrow_func_p->header.u.function.bytecode_cp, bytecode_data_p); in ecma_op_create_arrow_function_object()
531 if (function_p->u.function.bytecode_cp != ECMA_NULL_POINTER) in ecma_op_function_get_compiled_code()
534 function_p->u.function.bytecode_cp); in ecma_op_function_get_compiled_code()
542 function_p->u.function.bytecode_cp); in ecma_op_function_get_compiled_code()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c1227 if (ext_func_p->u.function.bytecode_cp != ECMA_NULL_POINTER) in ecma_gc_free_object()
1231 … ext_func_p->u.function.bytecode_cp)); in ecma_gc_free_object()
Decma-globals.h870 ecma_value_t bytecode_cp; /**< function byte code */ member