Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 25 of 30) sorted by relevance

12

/qemu/tests/tcg/i386/
H A Dtest-i386.h35 res = s0; in exec_opq()
44 res = s0; in exec_opl()
52 res = s0; in exec_opw()
60 res = s0; in exec_opb()
69 res = s0; in exec_opq()
78 res = s0; in exec_opl()
86 res = s0; in exec_opw()
94 res = s0; in exec_opb()
102 s0 = i2l(s0); in exec_op()
105 exec_opq(s0, s1, 0); in exec_op()
[all …]
H A Dtest-i386-shift.h34 res = s0; in exec_opq()
48 res = s0; in exec_opl()
61 res = s0; in exec_opw()
85 res = s0; in exec_opq()
99 res = s0; in exec_opl()
112 res = s0; in exec_opw()
128 res = s0; in exec_opb()
142 s0 = i2l(s0); in exec_op()
144 exec_opq(s2, s0, s1, 0); in exec_op()
153 exec_opb(s0, s1, 0); in exec_op()
[all …]
H A Dtest-i386-pcmpistri.c11 union u s0 = { .uc = { 0 } }; variable
20 if (_mm_cmpistri(s0.x, s0.x, 0x4c) != 15) { in main()
H A Dtest-i386-muldiv.h4 long res, s1, s0, flags; in glue() local
5 s0 = op0; in glue()
7 res = s0; in glue()
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK); in glue()
H A Dtest-i386.c512 long res, s1, s0, flags; in test_imulw2() local
513 s0 = op0; in test_imulw2()
515 res = s0; in test_imulw2()
525 "imulw", s0, s1, res, flags & CC_MASK); in test_imulw2()
530 long res, s1, s0, flags; in test_imull2() local
531 s0 = op0; in test_imull2()
533 res = s0; in test_imull2()
543 "imull", s0, s1, res, flags & CC_MASK); in test_imull2()
549 long res, s1, s0, flags; in test_imulq2() local
550 s0 = op0; in test_imulq2()
[all …]
/qemu/crypto/
H A Daes.c1463 s0 = GETU32(in ) ^ rk[0]; in AES_encrypt()
1545 AES_Te0[(s0 >> 24) ] ^ in AES_encrypt()
1554 AES_Te3[(s0 ) & 0xff] ^ in AES_encrypt()
1559 AES_Te2[(s0 >> 8) & 0xff] ^ in AES_encrypt()
1574 s0 = in AES_encrypt()
1604 s0 = in AES_encrypt()
1610 PUTU32(out , s0); in AES_encrypt()
1654 s0 = GETU32(in ) ^ rk[0]; in AES_decrypt()
1765 s0 = in AES_decrypt()
1795 s0 = in AES_decrypt()
[all …]
/qemu/common-user/host/mips/
H A Dsafe-syscall.inc.S48 REG_S s0, OFS_S0(sp)
49 .cfi_rel_offset s0, OFS_S0
63 move s0, a0 /* signal_pending pointer */
90 move s0, a0 /* signal_pending pointer */
110 lw t1, 0(s0)
116 REG_L s0, OFS_S0(sp)
120 .cfi_restore s0
126 2: REG_L s0, OFS_S0(sp)
129 .cfi_restore s0
/qemu/
H A Djob.c210 JobStatus s0 = job->status; in job_state_transition_locked() local
213 JobSTT[s0][s1] ? "allowed" : "disallowed", in job_state_transition_locked()
214 JobStatus_str(s0), JobStatus_str(s1)); in job_state_transition_locked()
215 assert(JobSTT[s0][s1]); in job_state_transition_locked()
218 if (!job_is_internal(job) && s1 != s0) { in job_state_transition_locked()
225 JobStatus s0 = job->status; in job_apply_verb_locked() local
227 trace_job_apply_verb(job, JobStatus_str(s0), JobVerb_str(verb), in job_apply_verb_locked()
228 JobVerbTable[verb][s0] ? "allowed" : "prohibited"); in job_apply_verb_locked()
229 if (JobVerbTable[verb][s0]) { in job_apply_verb_locked()
233 job->id, JobStatus_str(s0), JobVerb_str(verb)); in job_apply_verb_locked()
H A Dtrace-events46 job_state_transition(void *job, int ret, const char *legal, const char *s0, const char *s1) "job %…
/qemu/tests/unit/
H A Dcheck-qobject.c249 g_autoptr(QString) s0 = qstring_from_str("0"); in qobject_is_equal_conversion_test()
254 check_unequal(u0, s0, s_empty, bfalse, qnull(), NULL); in qobject_is_equal_conversion_test()
255 check_unequal(i0, s0, s_empty, bfalse, qnull(), NULL); in qobject_is_equal_conversion_test()
256 check_unequal(d0, s0, s_empty, bfalse, qnull(), NULL); in qobject_is_equal_conversion_test()
/qemu/linux-user/riscv/
H A Dtarget_syscall.h20 abi_long s0; member
/qemu/linux-headers/asm-riscv/
H A Dptrace.h33 unsigned long s0; member
/qemu/target/s390x/tcg/
H A Dmem_helper.c2576 uint8_t s0, s1, s2, s3; in decode_utf8() local
2583 if (s0 <= 0x7f) { in decode_utf8()
2586 c = s0; in decode_utf8()
2590 } else if (s0 <= 0xdf) { in decode_utf8()
2597 c = s0 & 0x1f; in decode_utf8()
2602 } else if (s0 <= 0xef) { in decode_utf8()
2610 c = s0 & 0x0f; in decode_utf8()
2632 c = s0 & 0x07; in decode_utf8()
2659 uint16_t s0, s1; in decode_utf16() local
2666 if ((s0 & 0xfc00) != 0xd800) { in decode_utf16()
[all …]
/qemu/bsd-user/
H A Delfload.c353 static int symfind(const void *s0, const void *s1) in symfind() argument
356 __typeof(sym->st_value) addr = *(uint64_t *)s0; in symfind()
387 static int symcmp(const void *s0, const void *s1) in symcmp() argument
389 struct elf_sym *sym0 = (struct elf_sym *)s0; in symcmp()
/qemu/tests/tcg/loongarch64/system/
H A Dregdef.h33 #define s0 $r23 /* callee saved */ macro
/qemu/target/arm/tcg/
H A Dcrypto_helper.c287 static uint32_t s0(uint32_t x) in s0() function
366 CR_ST_WORD(d, 0) += s0(CR_ST_WORD(d, 1)); in HELPER()
367 CR_ST_WORD(d, 1) += s0(CR_ST_WORD(d, 2)); in HELPER()
368 CR_ST_WORD(d, 2) += s0(CR_ST_WORD(d, 3)); in HELPER()
369 CR_ST_WORD(d, 3) += s0(CR_ST_WORD(m, 0)); in HELPER()
/qemu/target/i386/tcg/
H A Ddecode-new.h248 X86OpSize s0:8; member
H A Ddecode-new.c.inc113 .s0 = glue(X86_SIZE_, s0_), \
122 #define X86_OP_GROUP2(op, op0, s0, op1, s1, ...) \
123 X86_OP_GROUP3(op, op0, s0, 2op, s0, op1, s1, ## __VA_ARGS__)
130 .s0 = glue(X86_SIZE_, s0_), \
143 #define X86_OP_ENTRY2(op, op0, s0, op1, s1, ...) \
144 X86_OP_ENTRY3(op, op0, s0, 2op, s0, op1, s1, ## __VA_ARGS__)
145 #define X86_OP_ENTRYw(op, op0, s0, ...) \
146 X86_OP_ENTRY3(op, op0, s0, None, None, None, None, ## __VA_ARGS__)
147 #define X86_OP_ENTRYr(op, op0, s0, ...) \
148 X86_OP_ENTRY3(op, None, None, None, None, op0, s0, ## __VA_ARGS__)
[all …]
/qemu/tcg/tci/
H A DREADME75 target (le) | s0, u0 s1, u1 s?, u? s?, u?
91 s0 = bios works
/qemu/include/hw/
H A Delf_ops.h.inc70 static int glue(symfind, SZ)(const void *s0, const void *s1)
72 hwaddr addr = *(hwaddr *)s0;
98 static int glue(symcmp, SZ)(const void *s0, const void *s1)
100 struct elf_sym *sym0 = (struct elf_sym *)s0;
/qemu/net/
H A Dvhost-vdpa.c534 VhostVDPAState *s, *s0; in vhost_vdpa_net_cvq_start() local
545 s0 = vhost_vdpa_net_first_nc_vdpa(s); in vhost_vdpa_net_cvq_start()
546 v->shadow_vqs_enabled = s0->vhost_vdpa.shadow_vqs_enabled; in vhost_vdpa_net_cvq_start()
1854 VhostVDPAState *s0 = DO_UPCAST(VhostVDPAState, nc, ncs[0]); in net_init_vhost_vdpa() local
1855 VhostVDPAShared *shared = s0->vhost_vdpa.shared; in net_init_vhost_vdpa()
/qemu/target/i386/
H A Dops_sse.h1108 float32 s0, s1; in helper_ucomiss() local
1110 s0 = d->ZMM_S(0); in helper_ucomiss()
1112 ret = float32_compare_quiet(s0, s1, &env->sse_status); in helper_ucomiss()
1119 float32 s0, s1; in helper_comiss() local
1121 s0 = d->ZMM_S(0); in helper_comiss()
1123 ret = float32_compare(s0, s1, &env->sse_status); in helper_comiss()
1886 int s0 = (j * 2) + ((offset & 3) << 2); in glue() local
1890 r[i] += abs1(v->B(d0 + 0) - s->B(s0 + 0)); in glue()
1891 r[i] += abs1(v->B(d0 + 1) - s->B(s0 + 1)); in glue()
1892 r[i] += abs1(v->B(d0 + 2) - s->B(s0 + 2)); in glue()
[all …]
/qemu/target/mips/tcg/
H A Dmxu_translate.c3242 TCGv s0 = tcg_temp_new(); in gen_mxu_q16acc() local
3257 tcg_gen_add_tl(s0, t0, t2); in gen_mxu_q16acc()
3263 tcg_gen_add_tl(s0, t0, t2); in gen_mxu_q16acc()
3269 tcg_gen_sub_tl(s0, t0, t2); in gen_mxu_q16acc()
3275 tcg_gen_sub_tl(s0, t0, t2); in gen_mxu_q16acc()
3280 tcg_gen_add_tl(t0, mxu_gpr[XRa - 1], s0); in gen_mxu_q16acc()
/qemu/linux-user/
H A Delfload.c3565 static int symfind(const void *s0, const void *s1) in symfind() argument
3568 __typeof(sym->st_value) addr = *(uint64_t *)s0; in symfind()
3599 static int symcmp(const void *s0, const void *s1) in symcmp() argument
3601 struct elf_sym *sym0 = (struct elf_sym *)s0; in symcmp()
/qemu/tcg/aarch64/
H A Dtcg-target.c.inc1088 int s0, s1;
1156 s0 = ctz64(t0) & (63 & -16);
1157 t1 = t0 & ~(0xffffull << s0);
1161 tcg_out_insn_3405(s, opc, type, rd, t0 >> s0, s0);

12