OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SLJIT_UNUSED
(Results
1 - 15
of
15
) sorted by relevancy
/src/sys/external/bsd/sljit/dist/test_src/
sljitTest.c
87
sljit_emit_op_flags(compiler, SLJIT_MOV, dst, dstw,
SLJIT_UNUSED
, 0, type);
206
sljit_emit_op1(compiler, SLJIT_MOV,
SLJIT_UNUSED
, 0, SLJIT_MEM0(), (sljit_sw)&buf);
264
sljit_emit_op1(compiler, SLJIT_NOT,
SLJIT_UNUSED
, 0, SLJIT_MEM0(), (sljit_sw)&buf);
304
sljit_emit_op1(compiler, SLJIT_NEG,
SLJIT_UNUSED
, 0, SLJIT_MEM1(SLJIT_S0), 0);
346
sljit_emit_op2(compiler, SLJIT_ADD,
SLJIT_UNUSED
, 0, SLJIT_IMM, 16, SLJIT_IMM, 16);
347
sljit_emit_op2(compiler, SLJIT_ADD,
SLJIT_UNUSED
, 0, SLJIT_IMM, 255, SLJIT_IMM, 255);
348
sljit_emit_op2(compiler, SLJIT_ADD,
SLJIT_UNUSED
, 0, SLJIT_S0, 0, SLJIT_S0, 0);
554
sljit_emit_op2(compiler, SLJIT_SUB | SLJIT_SET_Z,
SLJIT_UNUSED
, 0, SLJIT_IMM, 6, SLJIT_IMM, 5);
555
sljit_emit_op_flags(compiler, SLJIT_MOV, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_sw),
SLJIT_UNUSED
, 0, SLJIT_NOT_EQUAL);
556
sljit_emit_op_flags(compiler, SLJIT_MOV, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_sw) * 2,
SLJIT_UNUSED
, 0, SLJIT_EQUAL)
[
all
...]
/src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeARM_32.c
912
FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, SLJIT_S0,
SLJIT_UNUSED
, RM(SLJIT_R0))));
914
FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, SLJIT_S1,
SLJIT_UNUSED
, RM(SLJIT_R1))));
916
FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, SLJIT_S2,
SLJIT_UNUSED
, RM(SLJIT_R2))));
990
dst,
SLJIT_UNUSED
, (compiler->shift_imm << 7) | (opcode << 5) | RM(src2))); \
991
return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst,
SLJIT_UNUSED
, RM(src2))); \
994
dst,
SLJIT_UNUSED
, (reg_map[(flags & ARGS_SWAPPED) ? src1 : src2] << 8) | (opcode << 5) | 0x10 | RM((flags & ARGS_SWAPPED) ? src2 : src1)));
1005
dst,
SLJIT_UNUSED
, src2));
1007
return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst,
SLJIT_UNUSED
, RM(src2)));
1018
FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst,
SLJIT_UNUSED
, (24 << 7) | RM(src2))));
1019
return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst,
SLJIT_UNUSED
, (24 << 7) | (op == SLJIT_MOV_U8 ? 0x20 : 0x40) | RM(dst)))
[
all
...]
sljitNativeX86_32.c
362
if ((b & REG_MASK) ==
SLJIT_UNUSED
)
375
if ((b & OFFS_REG_MASK) !=
SLJIT_UNUSED
)
443
else if ((b & REG_MASK) !=
SLJIT_UNUSED
) {
444
if ((b & OFFS_REG_MASK) ==
SLJIT_UNUSED
|| (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP)) {
452
if ((b & OFFS_REG_MASK) ==
SLJIT_UNUSED
)
544
if (dst ==
SLJIT_UNUSED
)
sljitNativeX86_64.c
396
if ((b & REG_MASK) ==
SLJIT_UNUSED
)
412
if ((b & OFFS_REG_MASK) !=
SLJIT_UNUSED
) {
493
else if ((b & REG_MASK) !=
SLJIT_UNUSED
) {
494
if ((b & OFFS_REG_MASK) ==
SLJIT_UNUSED
|| (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP)) {
502
if ((b & OFFS_REG_MASK) ==
SLJIT_UNUSED
)
595
if (dst ==
SLJIT_UNUSED
)
695
if (dst ==
SLJIT_UNUSED
&& !(src & SLJIT_MEM))
sljitLir.c
675
((r) ==
SLJIT_UNUSED
|| \
699
CHECK_ARGUMENT(((p) & REG_MASK) !=
SLJIT_UNUSED
); \
718
CHECK_ARGUMENT(((p) & REG_MASK) !=
SLJIT_UNUSED
); \
738
CHECK_ARGUMENT(((p) & REG_MASK) !=
SLJIT_UNUSED
); \
959
if (op !=
SLJIT_UNUSED
) {
969
if (op ==
SLJIT_UNUSED
)
1080
if ((src & REG_MASK) !=
SLJIT_UNUSED
) {
1082
CHECK_ARGUMENT((src & OFFS_REG_MASK) ==
SLJIT_UNUSED
|| srcw == 0);
1084
if ((dst & REG_MASK) !=
SLJIT_UNUSED
) {
1086
CHECK_ARGUMENT((dst & OFFS_REG_MASK) ==
SLJIT_UNUSED
|| dstw == 0)
[
all
...]
sljitNativeX86_common.c
645
if (dst ==
SLJIT_UNUSED
) {
867
if (dst ==
SLJIT_UNUSED
&& !(src & SLJIT_MEM))
1009
if (dst ==
SLJIT_UNUSED
&& !(src & SLJIT_MEM))
1055
if (dst ==
SLJIT_UNUSED
) {
1094
if (dst ==
SLJIT_UNUSED
) {
1136
if (SLJIT_UNLIKELY(dst ==
SLJIT_UNUSED
)) {
1444
if (dst ==
SLJIT_UNUSED
) {
1560
if (dst ==
SLJIT_UNUSED
) {
1997
if (dst ==
SLJIT_UNUSED
) {
2140
if (dst ==
SLJIT_UNUSED
)
[
all
...]
sljitNativeSPARC_common.c
667
if (SLJIT_UNLIKELY(dst ==
SLJIT_UNUSED
)) {
985
if (dst ==
SLJIT_UNUSED
)
1202
if (dst ==
SLJIT_UNUSED
)
1397
if (dst ==
SLJIT_UNUSED
)
sljitNativeARM_64.c
1409
if (dst ==
SLJIT_UNUSED
)
1462
if (dst ==
SLJIT_UNUSED
)
1628
if (dst_r == TMP_REG1 && dst !=
SLJIT_UNUSED
)
1787
if (dst ==
SLJIT_UNUSED
)
1988
if (dst ==
SLJIT_UNUSED
)
sljitNativePPC_common.c
1155
if (SLJIT_UNLIKELY(dst ==
SLJIT_UNUSED
)) {
1550
if (dst ==
SLJIT_UNUSED
)
1587
if (dst ==
SLJIT_UNUSED
&& GET_FLAG_TYPE(op) != GET_FLAG_TYPE(SLJIT_SET_CARRY)
1744
if (dst ==
SLJIT_UNUSED
)
1758
if (dst ==
SLJIT_UNUSED
)
2037
if (dst ==
SLJIT_UNUSED
)
2244
if (dst ==
SLJIT_UNUSED
)
sljitLir.h
165
/* When
SLJIT_UNUSED
is specified as destination, the result is discarded. */
166
#define
SLJIT_UNUSED
0
237
/* Note:
SLJIT_UNUSED
as destination is not valid for floating point
562
/* Return from machine code. The op argument can be
SLJIT_UNUSED
which means the
565
is
SLJIT_UNUSED
, otherwise see below the description about source and
643
For destination, you can use
SLJIT_UNUSED
as well. */
1136
an SLJIT_SUB operation (with
SLJIT_UNUSED
destination and setting
1182
Src must be
SLJIT_UNUSED
, and srcw must be 0
1189
Note: sljit_emit_op_flags does nothing, if dst is
SLJIT_UNUSED
(regardless of op). */
sljitNativeARM_T2_32.c
1375
if (dst ==
SLJIT_UNUSED
)
1482
if (dst ==
SLJIT_UNUSED
)
1645
if (dst ==
SLJIT_UNUSED
)
1822
if (dst ==
SLJIT_UNUSED
)
sljitNativeMIPS_common.c
895
if (SLJIT_UNLIKELY(dst ==
SLJIT_UNUSED
)) {
1290
if (dst ==
SLJIT_UNUSED
)
1528
if (dst ==
SLJIT_UNUSED
)
1907
if (dst ==
SLJIT_UNUSED
)
sljitNativeTILEGX_64.c
1559
if (dst ==
SLJIT_UNUSED
)
1977
if (SLJIT_UNLIKELY(dst ==
SLJIT_UNUSED
)) {
2097
if (dst ==
SLJIT_UNUSED
)
/src/sys/external/bsd/sljit/dist/doc/tutorial/
brainfuck.c
216
sljit_emit_return(C,
SLJIT_UNUSED
, 0, 0);
/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);
1468
EMIT_OP2(SLJIT_SUB | SLJIT_SET_GREATER_EQUAL,
SLJIT_UNUSED
, 0, SLJIT_MEM1(R_NEXT_STATE), offset + 3 * sizeof(sljit_sw), R_TEMP, 0);
2188
CHECK(sljit_emit_return(compiler_common.compiler,
SLJIT_UNUSED
, 0, 0));
Completed in 29 milliseconds
Indexes created Thu Nov 06 21:09:53 GMT 2025