Home
last modified time | relevance | path

Searched refs:EMIT_MOV (Results 1 – 4 of 4) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitNativeX86_common.c663 #define EMIT_MOV(compiler, dst, dstw, src, srcw) \ macro
787 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_R1, 0); in sljit_emit_op0()
798 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_R1, 0); in sljit_emit_op0()
869 EMIT_MOV(compiler, SLJIT_R1, 0, TMP_REG1, 0); in sljit_emit_op0()
872 EMIT_MOV(compiler, SLJIT_R1, 0, TMP_REG1, 0); in sljit_emit_op0()
925 EMIT_MOV(compiler, TMP_REG1, 0, src, 0); in emit_mov_byte()
938 EMIT_MOV(compiler, dst, 0, src, 0); in emit_mov_byte()
946 EMIT_MOV(compiler, dst, 0, src, 0); in emit_mov_byte()
1121 EMIT_MOV(compiler, dst, 0, src, srcw); in emit_unary()
1129 EMIT_MOV(compiler, TMP_REG1, 0, src, srcw); in emit_unary()
[all …]
DsljitNativeX86_32.c180 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096); in sljit_emit_enter()
182 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096 * 2); in sljit_emit_enter()
184 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096 * 3); in sljit_emit_enter()
187 EMIT_MOV(compiler, SLJIT_R0, 0, SLJIT_SP, 0); in sljit_emit_enter()
188 EMIT_MOV(compiler, SLJIT_R1, 0, SLJIT_IMM, (local_size - 1) >> 12); in sljit_emit_enter()
192 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_R0), -4096); in sljit_emit_enter()
206 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -local_size); in sljit_emit_enter()
214 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_SP, 0); in sljit_emit_enter()
299 EMIT_MOV(compiler, SLJIT_SP, 0, SLJIT_MEM1(SLJIT_SP), compiler->local_size) in sljit_emit_return()
560EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), compiler->saveds_offset - sizeof(sljit_sw)); in c_fast_call_with_args()
[all …]
DsljitNativeX86_64.c175 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096); in sljit_emit_enter()
177 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096 * 2); in sljit_emit_enter()
179 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -4096 * 3); in sljit_emit_enter()
182 EMIT_MOV(compiler, SLJIT_R0, 0, SLJIT_SP, 0); in sljit_emit_enter()
183 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_IMM, (local_size - 1) >> 12); in sljit_emit_enter()
187 EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_MEM1(SLJIT_R0), -4096); in sljit_emit_enter()
201 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), -local_size); in sljit_emit_enter()
580 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in call_with_args()
587 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_R2, 0); in call_with_args()
628 EMIT_MOV(compiler, TMP_REG2, 0, src, 0); in call_with_args()
[all …]
DsljitNativePPC_common.c1104 #define EMIT_MOV(type, type_flags, type_cast) \ macro
1170 return EMIT_MOV(SLJIT_MOV_U32, INT_DATA, (sljit_u32)); in sljit_emit_op1()
1173 return EMIT_MOV(SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, (sljit_s32)); in sljit_emit_op1()
1177 return EMIT_MOV(SLJIT_MOV_U8, BYTE_DATA, (sljit_u8)); in sljit_emit_op1()
1180 return EMIT_MOV(SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA, (sljit_s8)); in sljit_emit_op1()
1183 return EMIT_MOV(SLJIT_MOV_U16, HALF_DATA, (sljit_u16)); in sljit_emit_op1()
1186 return EMIT_MOV(SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA, (sljit_s16)); in sljit_emit_op1()
1205 #undef EMIT_MOV