Home
last modified time | relevance | path

Searched refs:re_opcode_t (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-bytecode.h95 } re_opcode_t; typedef
111 void re_append_opcode (re_compiler_ctx_t *re_ctx_p, const re_opcode_t opcode);
116 void re_insert_opcode (re_compiler_ctx_t *re_ctx_p, const uint32_t offset, const re_opcode_t opcode…
121 re_opcode_t re_get_opcode (const uint8_t **bc_p);
Dre-bytecode.c115 const re_opcode_t opcode) /**< input opcode */ in re_append_opcode()
126 const re_opcode_t opcode) /**< input opcode */ in re_insert_opcode()
136 inline re_opcode_t JERRY_ATTR_ALWAYS_INLINE
139 return (re_opcode_t) re_get_byte (bc_p); in re_get_opcode()
384 re_opcode_t op = *bytecode_p++; in re_dump_bytecode()
Dre-parser.c42 static re_opcode_t
53 static re_opcode_t
168 const re_opcode_t opcode = (negative) ? RE_OP_ASSERT_LOOKAHEAD_NEG : RE_OP_ASSERT_LOOKAHEAD_POS; in re_insert_assertion_lookahead()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c615 const re_opcode_t op = re_get_opcode (&bc_p); in ecma_regexp_run()