Home
last modified time | relevance | path

Searched refs:FIXED_LOCALS_OFFSET (Results 1 – 7 of 7) sorted by relevance

/external/pcre/dist/sljit/
DsljitNativeX86_32.c144 …SLJIT_COMPILE_ASSERT(FIXED_LOCALS_OFFSET >= (2 + 4) * sizeof(sljit_uw), require_at_least_two_words… in sljit_emit_enter()
149 local_size = ((FIXED_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_emit_enter()
151 local_size = FIXED_LOCALS_OFFSET + ((local_size + sizeof(sljit_uw) - 1) & ~(sizeof(sljit_uw) - 1)); in sljit_emit_enter()
160 local_size -= FIXED_LOCALS_OFFSET; in sljit_emit_enter()
163 SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, FIXED_LOCALS_OFFSET)); in sljit_emit_enter()
193 compiler->local_size = ((FIXED_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_set_context()
195 …compiler->local_size = FIXED_LOCALS_OFFSET + ((local_size + sizeof(sljit_uw) - 1) & ~(sizeof(sljit… in sljit_set_context()
DsljitLir.c243 #define FIXED_LOCALS_OFFSET ((2 + 4) * sizeof(sljit_sw)) macro
246 #define FIXED_LOCALS_OFFSET ((3 + 4) * sizeof(sljit_sw)) macro
254 #define FIXED_LOCALS_OFFSET ((4 + 2) * sizeof(sljit_sw)) macro
256 #define FIXED_LOCALS_OFFSET (sizeof(sljit_sw)) macro
267 #define FIXED_LOCALS_OFFSET ((6 + 8) * sizeof(sljit_sw)) macro
269 #define FIXED_LOCALS_OFFSET (3 * sizeof(sljit_sw)) macro
275 #define FIXED_LOCALS_OFFSET ((6 + 8) * sizeof(sljit_sw)) macro
280 #define FIXED_LOCALS_OFFSET (4 * sizeof(sljit_sw)) macro
285 #define FIXED_LOCALS_OFFSET 0 macro
290 #define FIXED_LOCALS_OFFSET (23 * sizeof(sljit_sw)) macro
[all …]
DsljitNativeX86_64.c176 …local_size = ((local_size + FIXED_LOCALS_OFFSET + saved_register_size + 16 - 1) & ~(16 - 1)) - sav… in sljit_emit_enter()
266 …compiler->local_size = ((local_size + FIXED_LOCALS_OFFSET + saved_register_size + 16 - 1) & ~(16 -… in sljit_set_context()
DsljitNativeSPARC_common.c437 local_size = (local_size + FIXED_LOCALS_OFFSET + 7) & ~0x7; in sljit_emit_enter()
469 compiler->local_size = (local_size + FIXED_LOCALS_OFFSET + 7) & ~0x7; in sljit_set_context()
DsljitNativeMIPS_common.c560 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET; in sljit_emit_enter()
621 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET; in sljit_set_context()
DsljitNativePPC_common.c623 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET; in sljit_emit_enter()
662 local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1) + FIXED_LOCALS_OFFSET; in sljit_set_context()
DsljitNativeX86_common.c75 w = FIXED_LOCALS_OFFSET + ((p) - (SLJIT_R3 + 4)) * sizeof(sljit_sw); \