Home
last modified time | relevance | path

Searched refs:local_size (Results 1 – 13 of 13) sorted by relevance

/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_32.c141 local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_emit_enter()
144 local_size = SLJIT_LOCALS_OFFSET + ((local_size + 7) & ~7); in sljit_emit_enter()
163 local_size = SLJIT_LOCALS_OFFSET + ((local_size + 3) & ~3); in sljit_emit_enter()
166 compiler->local_size = local_size; in sljit_emit_enter()
168 if (local_size > 1024) { in sljit_emit_enter()
172 local_size -= SLJIT_LOCALS_OFFSET; in sljit_emit_enter()
181 SLJIT_ASSERT(local_size > 0); in sljit_emit_enter()
198 compiler->local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_set_context()
201 compiler->local_size = SLJIT_LOCALS_OFFSET + ((local_size + 7) & ~7); in sljit_set_context()
203 compiler->local_size = SLJIT_LOCALS_OFFSET + ((local_size + 3) & ~3); in sljit_set_context()
[all …]
H A DsljitNativeX86_64.c169local_size = ((local_size + SLJIT_LOCALS_OFFSET + saved_register_size + 15) & ~15) - saved_registe… in sljit_emit_enter()
170 compiler->local_size = local_size; in sljit_emit_enter()
173 if (local_size > 1024) { in sljit_emit_enter()
186 local_size -= 5 * sizeof(sljit_sw); in sljit_emit_enter()
196 *(sljit_si*)inst = local_size; in sljit_emit_enter()
205 SLJIT_ASSERT(local_size > 0); in sljit_emit_enter()
206 if (local_size <= 127) { in sljit_emit_enter()
213 *inst++ = local_size; in sljit_emit_enter()
222 *(sljit_si*)inst = local_size; in sljit_emit_enter()
279 if (compiler->local_size <= 127) { in sljit_emit_return()
[all …]
H A DsljitNativeARM_64.c1075 local_size = (local_size + 15) & ~0xf; in sljit_emit_enter()
1076 compiler->local_size = local_size; in sljit_emit_enter()
1130 if (local_size > 0xfff) { in sljit_emit_enter()
1132 local_size &= 0xfff; in sljit_emit_enter()
1134 if (local_size) in sljit_emit_enter()
1160 local_size = (local_size + 15) & ~0xf; in sljit_set_context()
1161 compiler->local_size = local_size; in sljit_set_context()
1167 sljit_si local_size; in sljit_emit_return() local
1175 local_size = compiler->local_size; in sljit_emit_return()
1191 local_size &= 0xfff; in sljit_emit_return()
[all …]
H A DsljitNativeMIPS_common.c554 local_size = (local_size + 15) & ~0xf; in sljit_emit_enter()
556 local_size = (local_size + 31) & ~0x1f; in sljit_emit_enter()
558 compiler->local_size = local_size; in sljit_emit_enter()
560 if (local_size <= SIMM_MAX) { in sljit_emit_enter()
570 local_size = 0; in sljit_emit_enter()
607 compiler->local_size = (local_size + 15) & ~0xf; in sljit_set_context()
609 compiler->local_size = (local_size + 31) & ~0x1f; in sljit_set_context()
616 sljit_si local_size, i, tmp, offs; in sljit_emit_return() local
624 local_size = compiler->local_size; in sljit_emit_return()
625 if (local_size <= SIMM_MAX) in sljit_emit_return()
[all …]
H A DsljitNativeTILEGX_64.c1187 local_size = (local_size + 7) & ~7; in sljit_emit_enter()
1188 compiler->local_size = local_size; in sljit_emit_enter()
1190 if (local_size <= SIMM_16BIT_MAX) { in sljit_emit_enter()
1199 local_size = 0; in sljit_emit_enter()
1203 FAIL_IF(ADDLI(ADDR_TMP_mapped, base, local_size - 8)); in sljit_emit_enter()
1234 compiler->local_size = (local_size + 7) & ~7; in sljit_set_context()
1241 sljit_si local_size; in sljit_emit_return() local
1251 local_size = compiler->local_size; in sljit_emit_return()
1252 if (local_size <= SIMM_16BIT_MAX) in sljit_emit_return()
1258 local_size = 0; in sljit_emit_return()
[all …]
H A DsljitLir.c374 compiler->local_size = -1; in sljit_create_compiler()
558 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in set_emit_enter() argument
561 SLJIT_UNUSED_ARG(local_size); in set_emit_enter()
569 compiler->logical_local_size = local_size; in set_emit_enter()
575 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in set_set_context() argument
578 SLJIT_UNUSED_ARG(local_size); in set_set_context()
586 compiler->logical_local_size = local_size; in set_set_context()
941 CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE); in check_sljit_emit_enter()
970 CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE); in check_sljit_set_context()
1771 SLJIT_UNUSED_ARG(local_size); in sljit_emit_enter()
[all …]
H A DsljitNativePPC_common.c576 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_emit_enter() argument
616 local_size = (local_size + 15) & ~0xf; in sljit_emit_enter()
617 compiler->local_size = local_size; in sljit_emit_enter()
620 if (local_size <= SIMM_MAX) in sljit_emit_enter()
623 FAIL_IF(load_immediate(compiler, 0, -local_size)); in sljit_emit_enter()
627 if (local_size <= SIMM_MAX) in sljit_emit_enter()
630 FAIL_IF(load_immediate(compiler, 0, -local_size)); in sljit_emit_enter()
640 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
647 compiler->local_size = (local_size + 15) & ~0xf; in sljit_set_context()
660 if (compiler->local_size <= SIMM_MAX) in sljit_emit_return()
[all …]
H A DsljitNativeSPARC_common.c423 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_emit_enter() argument
426 …eck_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
427 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
429 local_size = (local_size + SLJIT_LOCALS_OFFSET + 7) & ~0x7; in sljit_emit_enter()
430 compiler->local_size = local_size; in sljit_emit_enter()
432 if (local_size <= SIMM_MAX) { in sljit_emit_enter()
433 FAIL_IF(push_inst(compiler, SAVE | D(SLJIT_SP) | S1(SLJIT_SP) | IMM(-local_size), UNMOVABLE_INS)); in sljit_emit_enter()
436 FAIL_IF(load_immediate(compiler, TMP_REG1, -local_size)); in sljit_emit_enter()
447 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
451 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
[all …]
H A DsljitNativeARM_T2_32.c1132 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_emit_enter() argument
1156 local_size = ((size + local_size + 7) & ~7) - size; in sljit_emit_enter()
1157 compiler->local_size = local_size; in sljit_emit_enter()
1158 if (local_size > 0) { in sljit_emit_enter()
1159 if (local_size <= (127 << 2)) in sljit_emit_enter()
1160 FAIL_IF(push_inst16(compiler, SUB_SP | (local_size >> 2))); in sljit_emit_enter()
1177 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
1186 compiler->local_size = ((size + local_size + 7) & ~7) - size; in sljit_set_context()
1200 if (compiler->local_size > 0) { in sljit_emit_return()
1201 if (compiler->local_size <= (127 << 2)) in sljit_emit_return()
[all …]
H A DsljitNativeARM_32.c830 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_emit_enter() argument
836 …eck_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
837 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
854 local_size = ((size + local_size + 7) & ~7) - size; in sljit_emit_enter()
855 compiler->local_size = local_size; in sljit_emit_enter()
856 if (local_size > 0) in sljit_emit_enter()
857 FAIL_IF(emit_op(compiler, SLJIT_SUB, ALLOW_IMM, SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size)); in sljit_emit_enter()
871 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
877 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
880 compiler->local_size = ((size + local_size + 7) & ~7) - size; in sljit_set_context()
[all …]
H A DsljitLir.h323 sljit_si local_size; member
523 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size);
537 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size);
H A DsljitNativeX86_common.c634 static void SLJIT_CALL sljit_grow_stack(sljit_sw local_size) in sljit_grow_stack() argument
643 *(volatile sljit_si*)alloca(local_size) = 0; in sljit_grow_stack()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_trace_mach.c21 static mach_msg_type_number_t local_size; variable
26 mach_vm_deallocate(mach_task_self(), local_page, local_size); in fpm_mach_vm_deallocate()
29 local_size = 0; in fpm_mach_vm_deallocate()
38 kr = mach_vm_read(target, page, fpm_pagesize, &local_page, &local_size); in fpm_mach_vm_read_page()

Completed in 73 milliseconds