Home
last modified time | relevance | path

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

/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_32.c269 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
274 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
275 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativePPC_64.c489 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
493 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
494 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
495 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
496 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeSPARC_32.c277 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
282 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff); in sljit_set_const()
283 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff); in sljit_set_const()
H A DsljitNativeMIPS_64.c537 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
541 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const()
542 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const()
543 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
544 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()
2747 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2749 inline_set_const(addr, executable_offset, new_constant, 1); in sljit_set_const()
H A DsljitNativeMIPS_32.c436 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
441 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const()
442 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
H A DsljitNativeTILEGX_64.c2539 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) in sljit_set_const() argument
2543 inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((new_constant >> 48) & 0xFFFFL) << 43); in sljit_set_const()
2544 inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((new_constant >> 32) & 0xFFFFL) << 43); in sljit_set_const()
2545 inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((new_constant >> 16) & 0xFFFFL) << 43); in sljit_set_const()
2546 inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((new_constant & 0xFFFFL) << 43); in sljit_set_const()
H A DsljitLir.h1391 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut…
H A DsljitNativeARM_64.c2042 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2045 modify_imm64_const(inst, new_constant); in sljit_set_const()
H A DsljitLir.c2686 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2689 SLJIT_UNUSED_ARG(new_constant); in sljit_set_const()
H A DsljitNativeARM_T2_32.c2374 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument
2377 modify_imm32_const(inst, new_constant); in sljit_set_const()
H A DsljitNativeX86_common.c3133 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… argument
3136 sljit_unaligned_store_sw((void*)addr, new_constant);

Completed in 60 milliseconds