/PHP-7.2/Zend/ |
H A D | zend_vm_opcodes.c | 426 ZEND_API const char* zend_get_opcode_name(zend_uchar opcode) { in zend_get_opcode_name() 429 ZEND_API uint32_t zend_get_opcode_flags(zend_uchar opcode) { in zend_get_opcode_flags()
|
H A D | zend_operators.h | 825 #define ZEND_TRY_BINARY_OP1_OBJECT_OPERATION(opcode, binary_op) … argument 845 #define ZEND_TRY_BINARY_OP2_OBJECT_OPERATION(opcode) … argument 852 #define ZEND_TRY_BINARY_OBJECT_OPERATION(opcode, binary_op) … argument 857 #define ZEND_TRY_UNARY_OBJECT_OPERATION(opcode) … argument
|
H A D | zend_opcode.c | 704 ZEND_API unary_op_type get_unary_op(int opcode) in get_unary_op() 716 ZEND_API binary_op_type get_binary_op(int opcode) in get_binary_op()
|
H A D | zend_ast.h | 261 static zend_always_inline zend_ast *zend_ast_create_binary_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_binary_op() 264 static zend_always_inline zend_ast *zend_ast_create_assign_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_assign_op()
|
H A D | zend_compile.c | 58 zend_uchar opcode; member 2134 static zend_op *zend_emit_op(znode *result, zend_uchar opcode, znode *op1, znode *op2) /* {{{ */ in zend_emit_op() 2160 static zend_op *zend_emit_op_tmp(znode *result, zend_uchar opcode, znode *op1, znode *op2) /* {{{ */ in zend_emit_op_tmp() 2246 static inline uint32_t zend_emit_cond_jump(zend_uchar opcode, znode *cond, uint32_t opnum_target) /… in zend_emit_cond_jump() 2289 static inline zend_op *zend_delayed_emit_op(znode *result, zend_uchar opcode, znode *op1, znode *op… in zend_delayed_emit_op() 3100 uint32_t opcode = ast->attr; in zend_compile_compound_assign() local 3157 zend_uchar opcode; in zend_compile_args() local 5486 zend_uchar opcode; in zend_compile_params() local 6933 static inline void zend_ct_eval_unary_op(zval *result, uint32_t opcode, zval *op) /* {{{ */ in zend_ct_eval_unary_op() 7047 uint32_t opcode = ast->attr; in zend_compile_binary_op() local [all …]
|
H A D | zend_vm_gen.php | 978 function gen_handler($f, $spec, $kind, $name, $op1, $op2, $use, $code, $lineno, $opcode, $extra_spe…
|
/PHP-7.2/ext/pcre/pcrelib/sljit/ |
H A D | sljitNativeTILEGX_64.c | 118 const struct tilegx_opcode* opcode; member 382 #define PB3(opcode, dst, srca, srcb) \ argument 385 #define PB2(opcode, dst, src) \ argument 515 tilegx_pipeline get_any_valid_pipe(const struct tilegx_opcode* opcode) in get_any_valid_pipe() 526 const struct tilegx_opcode* opcode = NULL; in insert_nop() local 610 const struct tilegx_opcode* opcode = inst->opcode; in get_bundle_bit() local 749 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc]; in push_4_buffer() local 769 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc]; in push_3_buffer() local 830 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc]; in push_2_buffer() local 875 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc]; in push_0_buffer() local [all …]
|
H A D | sljitNativeX86_32.c | 29 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm) in emit_do_imm()
|
H A D | sljitNativeX86_64.c | 324 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32()
|
H A D | sljitNativeSPARC_common.c | 117 #define OPC1(opcode) ((opcode) << 30) argument 118 #define OPC2(opcode) ((opcode) << 22) argument 119 #define OPC3(opcode) ((opcode) << 19) argument
|
H A D | sljitNativeARM_32.c | 893 #define EMIT_DATA_PROCESS_INS(opcode, set_flags, dst, src1, src2) \ argument 1005 #define EMIT_SHIFT_INS_AND_RETURN(opcode) \ argument 1808 #define EMIT_FPU_OPERATION(opcode, mode, dst, src1, src2) \ argument
|
H A D | sljitNativeX86_common.c | 1103 static sljit_s32 emit_unary(struct sljit_compiler *compiler, sljit_u8 opcode, in emit_unary() 2247 static sljit_s32 emit_sse2(struct sljit_compiler *compiler, sljit_u8 opcode, 2259 static sljit_s32 emit_sse2_logic(struct sljit_compiler *compiler, sljit_u8 opcode,
|
H A D | sljitNativeMIPS_common.c | 88 #define HI(opcode) ((opcode) << 26) argument 89 #define LO(opcode) (opcode) argument
|
H A D | sljitNativePPC_common.c | 133 #define HI(opcode) ((opcode) << 26) argument 134 #define LO(opcode) ((opcode) << 1) argument
|
/PHP-7.2/ext/opcache/Optimizer/ |
H A D | zend_optimizer.c | 56 zend_uchar zend_compound_assign_to_binary_op(zend_uchar opcode) in zend_compound_assign_to_binary_op() 75 int zend_optimizer_eval_binary_op(zval *result, zend_uchar opcode, zval *op1, zval *op2) /* {{{ */ in zend_optimizer_eval_binary_op() 130 int zend_optimizer_eval_unary_op(zval *result, zend_uchar opcode, zval *op1) /* {{{ */ in zend_optimizer_eval_unary_op()
|
H A D | zend_cfg.c | 44 zend_uchar opcode = opcodes[b->start + b->len - 1].opcode; in zend_mark_reachable() local
|
H A D | zend_inference.c | 548 static inline zend_uchar get_compound_assign_op(zend_uchar opcode) { in get_compound_assign_op() 568 zend_op *opline, zend_ssa_op *ssa_op, zend_uchar opcode, zend_ssa_range *tmp) { in zend_inference_calc_binary_op_range() 2127 zend_ssa *ssa, zend_uchar opcode, uint32_t t1, uint32_t t2, uint32_t result_var) { in binary_op_result_type()
|
H A D | sccp.c | 518 static inline int ct_eval_incdec(zval *result, zend_uchar opcode, zval *op1) { in ct_eval_incdec()
|
/PHP-7.2/sapi/phpdbg/ |
H A D | phpdbg_print.c | 61 uint32_t opcode = 0, in phpdbg_print_function_helper() local
|
H A D | xml.md | 53 opcode section
|
H A D | phpdbg.c | 486 static zend_always_inline zend_bool phpdbg_is_ignored_opcode(zend_uchar opcode) { in phpdbg_is_ignored_opcode() 513 zend_uchar opcode = cur->opcode; in phpdbg_oplog_fill_executable() local
|
H A D | phpdbg_bp.c | 1019 static inline phpdbg_breakbase_t *phpdbg_find_breakpoint_opcode(zend_uchar opcode) /* {{{ */ in phpdbg_find_breakpoint_opcode()
|
/PHP-7.2/ext/pcre/pcrelib/ |
H A D | pcre_jit_compile.c | 7263 pcre_uchar opcode; in compile_assert_matchingpath() local 7807 pcre_uchar opcode; in compile_bracket_matchingpath() local 8352 pcre_uchar opcode; in compile_bracketpos_matchingpath() local 8631 … *get_iterator_parameters(compiler_common *common, pcre_uchar *cc, pcre_uchar *opcode, pcre_uchar … in get_iterator_parameters() 8780 pcre_uchar opcode; in compile_iterator_matchingpath() local 9238 pcre_uchar opcode = *cc; in compile_control_verb_matchingpath() local 9627 pcre_uchar opcode; in compile_iterator_backtrackingpath() local 9872 int opcode, stacksize, alt_count, alt_max; in compile_bracket_backtrackingpath() local 10397 pcre_uchar opcode = *current->cc; in compile_control_verb_backtrackingpath() local
|
/PHP-7.2/ext/mbstring/oniguruma/src/ |
H A D | regcomp.c | 201 add_opcode(regex_t* reg, int opcode) in add_opcode() 271 add_opcode_rel_addr(regex_t* reg, int opcode, int addr) in add_opcode_rel_addr() 296 add_opcode_option(regex_t* reg, int opcode, OnigOptionType option) in add_opcode_option() 5803 op2name(int opcode) in op2name() 5815 op2arg_type(int opcode) in op2arg_type()
|
/PHP-7.2/ext/gmp/ |
H A D | gmp.c | 492 static int gmp_do_operation_ex(zend_uchar opcode, zval *result, zval *op1, zval *op2) /* {{{ */ in gmp_do_operation_ex() 529 static int gmp_do_operation(zend_uchar opcode, zval *result, zval *op1, zval *op2) /* {{{ */ in gmp_do_operation()
|