Home
last modified time | relevance | path

Searched refs:inst (Results 1 – 19 of 19) sorted by relevance

/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_64.c31 sljit_ub *inst; in emit_load_imm64() local
34 FAIL_IF(!inst); in emit_load_imm64()
95 sljit_ub *inst; in sljit_emit_enter() local
110 FAIL_IF(!inst); in sljit_emit_enter()
120 FAIL_IF(!inst); in sljit_emit_enter()
130 FAIL_IF(!inst); in sljit_emit_enter()
259 sljit_ub *inst; in sljit_emit_return() local
321 FAIL_IF(!inst); in sljit_emit_return()
333 sljit_ub *inst; in emit_do_imm32() local
337 FAIL_IF(!inst); in emit_do_imm32()
[all …]
H A DsljitNativeX86_common.c264 #define RET_I16(n) (*inst++ = (RET_i16), *inst++ = n, *inst++ = 0)
737 *inst = INT3; in sljit_emit_op0()
743 *inst = NOP; in sljit_emit_op0()
791 *inst = CDQ; in sljit_emit_op0()
1221 *inst++ = 2; in emit_clz()
1230 *inst++ = 3; in emit_clz()
2548 *inst++ = 0;
2549 *inst++ = 0;
2586 *inst++ = 0;
2914 *inst++ = 0;
[all …]
H A DsljitNativeX86_32.c31 sljit_ub *inst; in emit_do_imm() local
34 FAIL_IF(!inst); in emit_do_imm()
36 *inst++ = opcode; in emit_do_imm()
71 sljit_ub *inst; in sljit_emit_enter() local
87 FAIL_IF(!inst); in sljit_emit_enter()
116 *inst++ = 0x24; in sljit_emit_enter()
156 inst[9] = 6; in sljit_emit_enter()
211 sljit_ub *inst; in sljit_emit_return() local
246 FAIL_IF(!inst); in sljit_emit_return()
434 return !(flags & EX86_SHIFT_INS) ? inst : (inst + 1); in emit_x86_instruction()
[all …]
H A DsljitNativeSPARC_32.c150 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
152 inst[0] = (inst[0] & 0xffc00000) | ((new_addr >> 10) & 0x3fffff); in sljit_set_jump_addr()
153 inst[1] = (inst[1] & 0xfffffc00) | (new_addr & 0x3ff); in sljit_set_jump_addr()
154 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_jump_addr()
159 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_const() local
161 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff); in sljit_set_const()
162 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff); in sljit_set_const()
163 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_const()
H A DsljitNativePPC_64.c403 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
405 inst[0] = (inst[0] & 0xffff0000) | ((new_addr >> 48) & 0xffff); in sljit_set_jump_addr()
406 inst[1] = (inst[1] & 0xffff0000) | ((new_addr >> 32) & 0xffff); in sljit_set_jump_addr()
407 inst[3] = (inst[3] & 0xffff0000) | ((new_addr >> 16) & 0xffff); in sljit_set_jump_addr()
408 inst[4] = (inst[4] & 0xffff0000) | (new_addr & 0xffff); in sljit_set_jump_addr()
409 SLJIT_CACHE_FLUSH(inst, inst + 5); in sljit_set_jump_addr()
416 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
417 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
418 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
419 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
[all …]
H A DsljitNativeMIPS_common.c244 inst--; in detect_jump_type()
258 inst[0] = inst[-1]; in detect_jump_type()
264 inst[0] = inst[-1]; in detect_jump_type()
280 inst[0] = inst[0] ^ invert_branch(jump->flags); in detect_jump_type()
291 inst[0] = inst[-1]; in detect_jump_type()
299 inst[0] = (inst[0] & 0xffff0000) | 3; in detect_jump_type()
311 inst[0] = inst[-1]; in detect_jump_type()
333 inst[2] = inst[6]; in detect_jump_type()
334 inst[3] = inst[7]; in detect_jump_type()
343 inst[4] = inst[6]; in detect_jump_type()
[all …]
H A DsljitNativePPC_32.c255 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
257 inst[0] = (inst[0] & 0xffff0000) | ((new_addr >> 16) & 0xffff); in sljit_set_jump_addr()
258 inst[1] = (inst[1] & 0xffff0000) | (new_addr & 0xffff); in sljit_set_jump_addr()
259 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_jump_addr()
264 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_const() local
266 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
267 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
268 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_const()
H A DsljitNativeARM_32.c151 *inst = 0; in push_cpool()
177 *ptr = inst; in push_inst()
463 SLJIT_CACHE_FLUSH(inst, inst + 1); in inline_set_jump_addr()
469 SLJIT_CACHE_FLUSH(inst, inst + 2); in inline_set_jump_addr()
483 SLJIT_CACHE_FLUSH(inst, inst + 1); in inline_set_jump_addr()
488 SLJIT_CACHE_FLUSH(inst, inst + 2); in inline_set_jump_addr()
500 SLJIT_CACHE_FLUSH(inst, inst + 2); in inline_set_jump_addr()
519 SLJIT_CACHE_FLUSH(inst, inst + 1); in inline_set_const()
528 SLJIT_CACHE_FLUSH(inst, inst + 1); in inline_set_const()
541 SLJIT_CACHE_FLUSH(inst, inst + 1); in inline_set_const()
[all …]
H A DsljitNativeMIPS_64.c451 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
453 inst[0] = (inst[0] & 0xffff0000) | ((new_addr >> 48) & 0xffff); in sljit_set_jump_addr()
454 inst[1] = (inst[1] & 0xffff0000) | ((new_addr >> 32) & 0xffff); in sljit_set_jump_addr()
455 inst[3] = (inst[3] & 0xffff0000) | ((new_addr >> 16) & 0xffff); in sljit_set_jump_addr()
456 inst[5] = (inst[5] & 0xffff0000) | (new_addr & 0xffff); in sljit_set_jump_addr()
457 SLJIT_CACHE_FLUSH(inst, inst + 6); in sljit_set_jump_addr()
464 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
465 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
466 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
467 inst[5] = (inst[5] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
[all …]
H A DsljitNativeTILEGX_64.c907 sljit_ins *inst; in detect_jump_type() local
921 inst--; in detect_jump_type()
946 return inst; in detect_jump_type()
949 inst[0] = inst[0] ^ (0x7L << 55); in detect_jump_type()
956 return inst; in detect_jump_type()
962 inst[0] = (inst[0] & ~(BOFF_X1(-1))) | BOFF_X1(2); in detect_jump_type()
990 return inst; in detect_jump_type()
2461 inst = 0; in sljit_emit_jump()
2467 if (inst) { in sljit_emit_jump()
2534 SLJIT_CACHE_FLUSH(inst, inst + 3); in sljit_set_jump_addr()
[all …]
H A DsljitNativeMIPS_32.c352 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
354 inst[0] = (inst[0] & 0xffff0000) | ((new_addr >> 16) & 0xffff); in sljit_set_jump_addr()
355 inst[1] = (inst[1] & 0xffff0000) | (new_addr & 0xffff); in sljit_set_jump_addr()
356 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_jump_addr()
361 sljit_ins *inst = (sljit_ins*)addr; in sljit_set_const() local
363 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
364 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
365 SLJIT_CACHE_FLUSH(inst, inst + 2); in sljit_set_const()
H A DsljitNativeSPARC_common.c202 sljit_ins *inst; in detect_jump_type() local
221 inst[0] = inst[-1]; in detect_jump_type()
224 return inst; in detect_jump_type()
226 inst[0] = CALL; in detect_jump_type()
227 inst[1] = NOP; in detect_jump_type()
228 return inst + 1; in detect_jump_type()
236 inst--; in detect_jump_type()
242 inst--; in detect_jump_type()
245 inst[0] = inst[1] ^ (1 << 28); in detect_jump_type()
248 inst[1] = inst[0]; in detect_jump_type()
[all …]
H A DsljitNativePPC_common.c717 #define INST_CODE_AND_DST(inst, flags, reg) \ argument
721 #define INST_CODE_AND_DST(inst, flags, reg) \ argument
846 sljit_ins inst; in getput_arg_fast() local
868 inst = data_transfer_insts[inp_flags & MEM_MASK]; in getput_arg_fast()
871 …if (argw > SIMM_MAX || argw < SIMM_MIN || ((inst & INT_ALIGNED) && (argw & 0x3)) || (inst & UPDATE… in getput_arg_fast()
883 inst = data_transfer_insts[inp_flags & MEM_MASK]; in getput_arg_fast()
884 SLJIT_ASSERT(!(inst & (INT_ALIGNED | UPDATE_REQ))); in getput_arg_fast()
934 if ((inst & INT_ALIGNED) && (imm & 0x3)) { \
946 sljit_ins inst; in getput_arg() local
986 inst = data_transfer_insts[inp_flags & MEM_MASK]; in getput_arg()
[all …]
H A DsljitNativeARM_T2_32.c187 SLJIT_ASSERT(!(inst & 0xffff0000)); in push_inst16()
191 *ptr = inst; in push_inst16()
200 *ptr++ = inst >> 16; in push_inst32()
201 *ptr = inst; in push_inst32()
216 sljit_si dst = inst[1] & 0x0f00; in modify_imm32_const()
217 …SLJIT_ASSERT(((inst[0] & 0xfbf0) == (MOVW >> 16)) && ((inst[2] & 0xfbf0) == (MOVT >> 16)) && dst =… in modify_imm32_const()
2080 sljit_uh *inst = (sljit_uh*)addr; in sljit_set_jump_addr() local
2081 modify_imm32_const(inst, new_addr); in sljit_set_jump_addr()
2082 SLJIT_CACHE_FLUSH(inst, inst + 4); in sljit_set_jump_addr()
2087 sljit_uh *inst = (sljit_uh*)addr; in sljit_set_const() local
[all …]
H A DsljitNativeARM_64.c146 sljit_si dst = inst[0] & 0x1f; in modify_imm64_const()
147 SLJIT_ASSERT((inst[0] & 0xffe00000) == MOVZ && (inst[1] & 0xffe00000) == (MOVK | (1 << 21))); in modify_imm64_const()
148 inst[0] = MOVZ | dst | ((new_imm & 0xffff) << 5); in modify_imm64_const()
149 inst[1] = MOVK | dst | (((new_imm >> 16) & 0xffff) << 5) | (1 << 21); in modify_imm64_const()
151 inst[3] = MOVK | dst | ((new_imm >> 48) << 5) | (3 << 21); in modify_imm64_const()
2040 sljit_ins* inst = (sljit_ins*)addr; in sljit_set_jump_addr() local
2041 modify_imm64_const(inst, new_addr); in sljit_set_jump_addr()
2042 SLJIT_CACHE_FLUSH(inst, inst + 4); in sljit_set_jump_addr()
2047 sljit_ins* inst = (sljit_ins*)addr; in sljit_set_const() local
2048 modify_imm64_const(inst, new_constant); in sljit_set_const()
[all …]
/PHP-5.5/ext/standard/
H A Dfilters.c388 if (inst->lbchars_dup && inst->lbchars != NULL) { in php_conv_base64_encode_dtor()
414 memcpy(pd, inst->lbchars, inst->lbchars_len); in php_conv_base64_encode_flush()
437 memcpy(pd, inst->lbchars, inst->lbchars_len); in php_conv_base64_encode_flush()
547 memcpy(pd, inst->lbchars, inst->lbchars_len); in php_conv_base64_encode_convert()
567 inst->erem[inst->erem_len++] = *(ps++); in php_conv_base64_encode_convert()
645 if (inst->eos || inst->urem_nbits == 0) { in php_conv_base64_decode_convert()
991 inst->lb_cnt = inst->lb_ptr = 0; in php_conv_qprint_encode_ctor()
1194 inst->lb_ptr = inst->lb_cnt = 0; in php_conv_qprint_decode_ctor()
1530 pefree(inst->cd, inst->persistent); in php_convert_filter_dtor()
1534 pefree(inst->filtername, inst->persistent); in php_convert_filter_dtor()
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY543 2005/08/23: [inst] fix Makefile.in for make ctest/ptest.
795 2004/11/29: [inst] add make target "19up".
842 2004/11/09: [inst] (thanks Hiroki YAGITA)
904 2004/09/04: [inst] (thanks Isao Sonobe)
1432 2003/08/19: [inst] change re.c.180.patch.
1541 2003/06/19: [inst] rename regex.h to oniguruma.h.
1649 2003/03/11: [inst] add regparse.[ch] in win32/Makefile.
1822 2003/01/24: [inst] add rback target to Makefile.in.
1871 2003/01/07: [inst] add new test script (test.rb).
1873 2002/12/28: [inst] add rtest target to Makefile.in.
[all …]
/PHP-5.5/ext/iconv/
H A Diconv.c2826 php_iconv_stream_filter *inst; in php_iconv_stream_filter_factory_create() local
2849 if (NULL == (inst = pemalloc(sizeof(php_iconv_stream_filter), persistent))) { in php_iconv_stream_filter_factory_create()
2853 …if (php_iconv_stream_filter_ctor(inst, to_charset, to_charset_len, from_charset, from_charset_len,… in php_iconv_stream_filter_factory_create()
2854 pefree(inst, persistent); in php_iconv_stream_filter_factory_create()
2858 if (NULL == (retval = php_stream_filter_alloc(&php_iconv_stream_filter_ops, inst, persistent))) { in php_iconv_stream_filter_factory_create()
2859 php_iconv_stream_filter_dtor(inst); in php_iconv_stream_filter_factory_create()
2860 pefree(inst, persistent); in php_iconv_stream_filter_factory_create()
/PHP-5.5/
H A Dltmain.sh1545 -inst-prefix-dir)

Completed in 133 milliseconds