Home
last modified time | relevance | path

Searched refs:opcode (Results 26 – 49 of 49) sorted by relevance

12

/PHP-5.4/ext/pcre/pcrelib/sljit/
H A DsljitNativeSPARC_common.c113 #define OPC1(opcode) ((opcode) << 30) argument
114 #define OPC2(opcode) ((opcode) << 22) argument
115 #define OPC3(opcode) ((opcode) << 19) argument
H A DsljitNativeX86_common.c1059 static sljit_si emit_unary(struct sljit_compiler *compiler, sljit_ub opcode, in emit_unary() argument
1070 *inst |= opcode; in emit_unary()
1078 *inst |= opcode; in emit_unary()
1086 *inst |= opcode; in emit_unary()
1093 *inst |= opcode; in emit_unary()
2276 static sljit_si emit_sse2(struct sljit_compiler *compiler, sljit_ub opcode, argument
2284 *inst = opcode;
2288 static sljit_si emit_sse2_logic(struct sljit_compiler *compiler, sljit_ub opcode, argument
2296 *inst = opcode;
H A DsljitNativeX86_64.c331 static sljit_si emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit… in emit_do_imm32() argument
341 *inst++ = opcode; in emit_do_imm32()
H A DsljitNativeTILEGX-encoder.c662 const struct tilegx_opcode *opcode; member
9550 d->opcode = opc; in parse_insn_tilegx()
10090 if (!decoded[i].opcode->can_bundle) in print_insn_tilegx()
10101 const struct tilegx_opcode *opcode = decoded[i].opcode; in print_insn_tilegx() local
10107 if (opcode->mnemonic == padding_mnemonic in print_insn_tilegx()
10115 name = opcode->name; in print_insn_tilegx()
10120 for (j = 0; j < opcode->num_operands; j++) in print_insn_tilegx()
H A DsljitNativeMIPS_common.c93 #define HI(opcode) ((opcode) << 26) argument
94 #define LO(opcode) (opcode) argument
H A DsljitNativePPC_common.c129 #define HI(opcode) ((opcode) << 26) argument
130 #define LO(opcode) ((opcode) << 1) argument
/PHP-5.4/Zend/
H A Dzend_compile.h113 zend_uchar opcode; member
449 ZEND_API unary_op_type get_unary_op(int opcode);
450 ZEND_API binary_op_type get_binary_op(int opcode);
H A Dzend_execute_API.c72 active_opline->opcode,
407 if(EG(exception) && EG(opline_ptr) && active_opline->opcode == ZEND_HANDLE_EXCEPTION && in zend_get_executed_lineno()
1281 ret_opline->opcode = ZEND_RETURN; in execute_new_code()
1300 switch (opline->opcode) { in execute_new_code()
H A Dzend_exceptions.c120 (EG(current_execute_data)->opline+1)->opcode == ZEND_HANDLE_EXCEPTION) { in zend_throw_exception_internal()
H A Dzend_vm_def.h2532 if (UNEXPECTED(opline->opcode == ZEND_INCLUDE_OR_EVAL)) { in ZEND_VM_HELPER()
3306 switch (brk_opline->opcode) {
5050 switch (brk_opline->opcode) {
5100 ret = zend_user_opcode_handlers[opline->opcode](ZEND_OPCODE_HANDLER_ARGS_PASSTHRU_INTERNAL);
5113 ZEND_VM_DISPATCH(opline->opcode, opline);
H A Dzend_vm_execute.h302 static opcode_handler_t zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op);
326 #define ZEND_VM_DISPATCH(opcode, opline) return zend_vm_get_opcode_handler(opcode, opline)(ZEND_OPC… argument
490 if (UNEXPECTED(opline->opcode == ZEND_INCLUDE_OR_EVAL)) { in zend_leave_helper_SPEC()
1090 switch (brk_opline->opcode) { in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
1140 ret = zend_user_opcode_handlers[opline->opcode](ZEND_OPCODE_HANDLER_ARGS_PASSTHRU_INTERNAL); in ZEND_USER_OPCODE_SPEC_HANDLER()
1153 ZEND_VM_DISPATCH(opline->opcode, opline); in ZEND_USER_OPCODE_SPEC_HANDLER()
1422 switch (brk_opline->opcode) { in ZEND_GOTO_SPEC_CONST_HANDLER()
36578 …zend_error_noreturn(E_ERROR, "Invalid opcode %d/%d/%d.", OPLINE->opcode, OPLINE->op1_type, OPLINE-… in ZEND_NULL_HANDLER()
40564 static opcode_handler_t zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op) in zend_vm_get_opcode_handler() argument
40585 …return zend_opcode_handlers[opcode * 25 + zend_vm_decode[op->op1_type] * 5 + zend_vm_decode[op->op… in zend_vm_get_opcode_handler()
[all …]
/PHP-5.4/ext/mbstring/oniguruma/
H A DHISTORY598 2004/11/26: [impl] add opcode OP_CCLASS_NODE.
1289 add opcode OP_BACKREFN_IC and OP_BACKREF_MULTI_IC.
1291 2003/07/07: [impl] add opcode OP_ANYCHAR_ML, OP_ANYCHAR_ML_STAR and
1370 add OP_POP opcode.
1509 2003/02/28: [impl] add opcode OP_CALL, OP_RETURN.
1613 to ignore case opcode.
1760 2002/03/08: [impl] add a new opcode OP_PUSH_IF_PEEK_NEXT.
1761 2002/03/08: [impl] add a new opcode OP_ANYCHAR_STAR_PEEK_NEXT.
1785 2002/03/02: [impl] add new opcode OP_FINISH and new stack type
1787 2002/03/02: [impl] add new opcode OP_EXACT1_IC, OP_EXACTN_IC
[all …]
H A Dregcomp.c179 add_opcode(regex_t* reg, int opcode) in add_opcode() argument
181 BBUF_ADD1(reg, opcode); in add_opcode()
249 add_opcode_rel_addr(regex_t* reg, int opcode, int addr) in add_opcode_rel_addr() argument
253 r = add_opcode(reg, opcode); in add_opcode_rel_addr()
278 r = add_opcode(reg, opcode); in add_opcode_option()
5563 op2name(int opcode) in op2name() argument
5567 for (i = 0; OnigOpInfo[i].opcode >= 0; i++) { in op2name()
5568 if (opcode == OnigOpInfo[i].opcode) in op2name()
5575 op2arg_type(int opcode) in op2arg_type() argument
5579 for (i = 0; OnigOpInfo[i].opcode >= 0; i++) { in op2arg_type()
[all …]
H A Dregexec.c1291 #define STAT_OP_IN(opcode) do {\ argument
1292 if (opcode == OpPrevTarget) OpPrevCounter[OpCurr]++;\
1293 OpCurr = opcode;\
1294 OpCounter[opcode]++;\
1333 for (i = 0; OnigOpInfo[i].opcode >= 0; i++) { in onig_print_statistics()
1349 #define STAT_OP_IN(opcode) argument
H A Dregint.h805 short int opcode; member
/PHP-5.4/sapi/litespeed/
H A DREADME125 shared memory block for the opcode cache.
/PHP-5.4/ext/sqlite3/libsqlite/
H A Dsqlite3.c65188 int opcode = pOp->opcode;
65189 if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename
65190 || ((opcode==OP_Halt || opcode==OP_HaltIfNull)
65235 u8 opcode = pOp->opcode;
65354 pOut->opcode = pIn->opcode;
72735 assert( pOp->opcode==OP_Eq || pOp->opcode==OP_Ne );
75541 assert( pOp->opcode!=OP_Next || pOp->opcode!=OP_NextIfOpen
75544 assert( pOp->opcode!=OP_Prev || pOp->opcode!=OP_PrevIfOpen
75763 assert( pOp->opcode==OP_IdxLE || pOp->opcode==OP_IdxGT );
77316 assert( pOp->opcode==OP_Noop || pOp->opcode==OP_Explain );
[all …]
/PHP-5.4/main/
H A Dmain.c733 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL in php_verror()
1148 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL && in php_error_cb()
/PHP-5.4/ext/spl/
H A Dphp_spl.c361 if (active_opline->opcode != ZEND_FETCH_CLASS) { in PHP_FUNCTION()
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c684 if ((op->opcode == ZEND_RECV || op->opcode == ZEND_RECV_INIT) in _get_recv_op()
725 if (precv && precv->opcode == ZEND_RECV_INIT && precv->op2_type != IS_UNUSED) { in _parameter_string()
1492 if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) { in _reflection_param_get_default_precv()
2566 if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) { in ZEND_METHOD()
/PHP-5.4/
H A DNEWS1113 . Fixed bug #64529 (Ran out of opcode space). (Dmitry)
2034 (this may affect opcode caches!)
2060 . Added ability to reset user opcode handlers (Yoram).
2062 opcode operands into a separate literal table. (Dmitry)
4580 ZEND_HANDLE_EXCEPTION opcode in the end. (Dmitry)
4584 ZEND_ADD_INTERFACE opcode. (Dmitry)
4587 . Optimized interpolated strings to use one less opcode. (Matt)
7865 - Added user opcode API that allow overloading of opcode handlers. (Dmitry)
8233 opcode). (Dmitry)
8388 - Fixed bug #32833 (Invalid opcode). (Dmitry)
[all …]
H A DINSTALL562 avoided with PHP. PHP manages its own children and opcode caches like
/PHP-5.4/ext/pcre/pcrelib/
H A DChangeLog27 6. Catch a bad opcode during auto-possessification after compiling a bad UTF
1168 error to occur if an unknown opcode is encountered while checking for fixed
2492 pattern, with a new opcode that causes them to be skipped at execution
2524 16. The implementation of 13c above involved the invention of a new opcode,
4140 is now matched using a separate opcode. However, there may be more than one
/PHP-5.4/ext/pcre/pcrelib/doc/
H A Dpcre.txt2479 70 internal error: unknown opcode in find_fixedlength()

Completed in 676 milliseconds

12