OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SLJIT_SET_Z
(Results
1 - 9
of
9
) sorted by relevancy
/src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeMIPS_32.c
45
if (op &
SLJIT_SET_Z
) \
51
if (op &
SLJIT_SET_Z
) \
59
if (op &
SLJIT_SET_Z
) \
65
if (op &
SLJIT_SET_Z
) \
126
if (op &
SLJIT_SET_Z
)
135
if (op &
SLJIT_SET_Z
)
154
if (op &
SLJIT_SET_Z
)
170
else if (op &
SLJIT_SET_Z
)
188
else if (op &
SLJIT_SET_Z
)
206
if (op &
SLJIT_SET_Z
)
[
all
...]
sljitNativeMIPS_64.c
128
if (op &
SLJIT_SET_Z
) \
134
if (op &
SLJIT_SET_Z
) \
149
if (op &
SLJIT_SET_Z
) \
156
if (op &
SLJIT_SET_Z
) \
217
if (op &
SLJIT_SET_Z
)
226
if (op &
SLJIT_SET_Z
)
245
if (op &
SLJIT_SET_Z
)
261
else if (op &
SLJIT_SET_Z
)
279
else if (op &
SLJIT_SET_Z
)
297
if (op &
SLJIT_SET_Z
)
[
all
...]
sljitLir.c
96
((op) & ~(SLJIT_I32_OP |
SLJIT_SET_Z
| VARIABLE_FLAG_MASK))
99
((op) & (
SLJIT_SET_Z
| VARIABLE_FLAG_MASK))
102
((op) & (SLJIT_I32_OP |
SLJIT_SET_Z
| VARIABLE_FLAG_MASK))
518
if ((current_flags & ~(VARIABLE_FLAG_MASK | SLJIT_I32_OP |
SLJIT_SET_Z
)) == 0) {
519
compiler->last_flags = GET_FLAG_TYPE(current_flags) | (current_flags & (SLJIT_I32_OP |
SLJIT_SET_Z
));
1064
CHECK_ARGUMENT(!(op & (SLJIT_I32_OP |
SLJIT_SET_Z
| VARIABLE_FLAG_MASK)));
1068
CHECK_ARGUMENT(!(op & (
SLJIT_SET_Z
| VARIABLE_FLAG_MASK)));
1076
compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_I32_OP |
SLJIT_SET_Z
));
1101
!(op &
SLJIT_SET_Z
) ? "" : ".z", !(op & VARIABLE_FLAG_MASK) ? "" : ".",
1137
CHECK_ARGUMENT(!(op &
SLJIT_SET_Z
));
[
all
...]
sljitLir.h
708
sljit_op2(..., SLJIT_ADD |
SLJIT_SET_Z
, ...)
720
sljit_op2(..., SLJIT_ADD |
SLJIT_SET_Z
| SLJIT_SET_CARRY, ...)
741
#define
SLJIT_SET_Z
0x0200
sljitNativeARM_32.c
2240
return (flags &
SLJIT_SET_Z
) ? push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, SET_FLAGS, TMP_REG1, SLJIT_UNUSED, RM(dst))) : SLJIT_SUCCESS;
2256
return (flags &
SLJIT_SET_Z
) ? push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, SET_FLAGS, TMP_REG2, SLJIT_UNUSED, RM(dst_reg))) : SLJIT_SUCCESS;
sljitNativeARM_T2_32.c
1849
if (flags &
SLJIT_SET_Z
) {
1881
if (flags &
SLJIT_SET_Z
) {
sljitNativeX86_common.c
1388
if (SLJIT_UNLIKELY(op_flags &
SLJIT_SET_Z
))
2909
CHECK_ARGUMENT(compiler->last_flags &
SLJIT_SET_Z
);
/src/sys/external/bsd/sljit/dist/test_src/
sljitTest.c
554
sljit_emit_op2(compiler, SLJIT_SUB |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_IMM, 6, SLJIT_IMM, 5);
566
sljit_emit_op2(compiler, SLJIT_SUB |
SLJIT_SET_Z
| SLJIT_SET_OVERFLOW, SLJIT_UNUSED, 0, SLJIT_R0, 0, SLJIT_R1, 0);
567
sljit_emit_op2(compiler, SLJIT_SUB |
SLJIT_SET_Z
| SLJIT_SET_OVERFLOW, SLJIT_UNUSED, 0, SLJIT_MEM1(SLJIT_S0), 0, SLJIT_R0, 0);
568
sljit_emit_op1(compiler, SLJIT_NEG |
SLJIT_SET_Z
| SLJIT_SET_OVERFLOW, SLJIT_UNUSED, 0, SLJIT_IMM, -(sljit_sw)(~(sljit_uw)0 >> 1) - 1);
571
sljit_emit_op1(compiler, SLJIT_NOT |
SLJIT_SET_Z
, SLJIT_R1, 0, SLJIT_R0, 0);
573
sljit_emit_op1(compiler, SLJIT_NOT |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_R1, 0);
575
sljit_emit_op2(compiler, SLJIT_AND |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_IMM, 0xffff, SLJIT_R0, 0);
576
sljit_emit_op2(compiler, SLJIT_AND |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_R0, 0, SLJIT_IMM, 0xffff);
578
sljit_emit_op2(compiler, SLJIT_AND |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_IMM, 0xffff, SLJIT_R1, 0);
579
sljit_emit_op2(compiler, SLJIT_AND |
SLJIT_SET_Z
, SLJIT_UNUSED, 0, SLJIT_R1, 0, SLJIT_IMM, 0xffff)
[
all
...]
/src/sys/external/bsd/sljit/dist/regex_src/
regexJIT.c
1454
EMIT_OP2(SLJIT_SUB |
SLJIT_SET_Z
| SLJIT_SET_LESS, SLJIT_UNUSED, 0, SLJIT_MEM1(R_NEXT_STATE), offset + 2 * sizeof(sljit_sw), R_TEMP, 0);
2027
EMIT_OP2(SLJIT_SUB |
SLJIT_SET_Z
, R_LENGTH, 0, R_LENGTH, 0, SLJIT_IMM, 1);
2115
EMIT_OP2(SLJIT_SUB |
SLJIT_SET_Z
, R_NEXT_STATE, 0, R_NEXT_STATE, 0, SLJIT_IMM, 1);
Completed in 23 milliseconds
Indexes created Sun Oct 19 02:09:48 GMT 2025