Home
last modified time | relevance | path

Searched refs:CBC_CODE_FLAGS_STRICT_MODE (Results 1 – 7 of 7) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c839 if (!(status_flags & CBC_CODE_FLAGS_STRICT_MODE)) in ecma_op_function_call_simple()
1438 if (!(bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE)) in ecma_op_function_try_to_lazy_instantiate_property()
1450 if (bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) in ecma_op_function_try_to_lazy_instantiate_property()
1632 bool append_caller_and_arguments = !(bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE); in ecma_op_function_list_lazy_property_names()
1634 bool append_caller_and_arguments = (bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE); in ecma_op_function_list_lazy_property_names()
Decma-objects-arguments.c50 bool is_strict = (bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) != 0; in ecma_op_create_arguments_object()
/third_party/jerryscript/jerry-core/vm/
Dvm-utils.c34 …urn JERRY_CONTEXT (vm_top_context_p)->bytecode_header_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE; in vm_is_strict_mode()
Dopcodes.c1267 bool is_strict = (frame_ctx_p->bytecode_header_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) != 0; in opfunc_assign_super_reference()
Dvm.c397 if ((bytecode_data_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) != 0) in vm_run_eval()
992 …bool is_strict = ((frame_ctx_p->bytecode_header_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) != 0… in vm_loop()
/third_party/jerryscript/jerry-core/parser/js/
Dbyte-code.h810 CBC_CODE_FLAGS_STRICT_MODE = (1u << 3), /**< strict mode is enabled */ enumerator
Djs-parser.c657 if (compiled_code_p->status_flags & CBC_CODE_FLAGS_STRICT_MODE) in parse_print_final_cbc()
1292 compiled_code_p->status_flags |= CBC_CODE_FLAGS_STRICT_MODE; in parser_post_processing()