Home
last modified time | relevance | path

Searched refs:new_constant (Results 1 – 12 of 12) sorted by relevance

/PHP-7.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_32.c268 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
272 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
273 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeSPARC_32.c276 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
280 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff); in sljit_set_const()
281 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff); in sljit_set_const()
H A DsljitNativePPC_64.c492 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
496 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
497 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
498 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
499 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeMIPS_64.c529 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
533 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
534 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
535 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
536 inst[5] = (inst[5] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeARM_32.c524 … inline_set_const(sljit_uw addr, sljit_sw executable_offset, sljit_sw new_constant, sljit_s32 flus… in inline_set_const() argument
532 src2 = get_imm(new_constant); in inline_set_const()
542 src2 = get_imm(~new_constant); in inline_set_const()
564 *ptr = new_constant; in inline_set_const()
568 inst[0] = MOVW | (inst[0] & 0xf000) | ((new_constant << 4) & 0xf0000) | (new_constant & 0xfff); in inline_set_const()
569 …inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0… in inline_set_const()
2671 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2673 inline_set_const(addr, executable_offset, new_constant, 1); in sljit_set_const()
H A DsljitNativeMIPS_32.c429 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
433 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
434 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeTILEGX_64.c2531 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) in sljit_set_const() argument
2535 inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((new_constant >> 48) & 0xFFFFL) << 43); in sljit_set_const()
2536 inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((new_constant >> 32) & 0xFFFFL) << 43); in sljit_set_const()
2537 inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((new_constant >> 16) & 0xFFFFL) << 43); in sljit_set_const()
2538 inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((new_constant & 0xFFFFL) << 43); in sljit_set_const()
H A DsljitLir.h1331 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut…
H A DsljitNativeARM_64.c1958 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
1961 modify_imm64_const(inst, new_constant); in sljit_set_const()
H A DsljitLir.c2591 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2594 SLJIT_UNUSED_ARG(new_constant); in sljit_set_const()
H A DsljitNativeARM_T2_32.c2322 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2325 modify_imm32_const(inst, new_constant); in sljit_set_const()
H A DsljitNativeX86_common.c2855 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… argument
2858 sljit_unaligned_store_sw((void*)addr, new_constant);

Completed in 126 milliseconds