Home
last modified time | relevance | path

Searched refs:ct (Results 1 – 23 of 23) sorted by relevance

/qemu/
H A Dqemu-io-cmds.c79 if (argc - 1 < ct->argmin || (ct->argmax != -1 && argc - 1 > ct->argmax)) { in command()
84 } else if (ct->argmin == ct->argmax) { in command()
91 argc-1, cmd, ct->argmin, ct->argmax); in command()
134 cmdinfo_t *ct; in find_command() local
136 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { in find_command()
138 (ct->altname && strcmp(ct->altname, cmd) == 0)) in find_command()
151 cmdinfo_t *ct; in qemuio_complete_command() local
154 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { in qemuio_complete_command()
2670 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { in help_all()
2671 help_oneline(ct->name, ct); in help_all()
[all …]
/qemu/tests/qemu-iotests/sample_images/
H A Dparallels-with-bitmap.sh21 CT=parallels-with-bitmap-ct
29 prlctl create $CT --vmtype ct
/qemu/tcg/
H A Dtcg-op-vec.c729 TCGTemp *ct = tcgv_vec_temp(c); in tcg_gen_bitsel_vec() local
734 tcg_debug_assert(ct->base_type >= type); in tcg_gen_bitsel_vec()
738 temp_arg(rt), temp_arg(at), temp_arg(bt), temp_arg(ct)); in tcg_gen_bitsel_vec()
754 TCGTemp *ct = tcgv_vec_temp(c); in tcg_gen_cmpsel_vec() local
759 TCGArg ci = temp_arg(ct); in tcg_gen_cmpsel_vec()
767 tcg_debug_assert(ct->base_type >= type); in tcg_gen_cmpsel_vec()
H A Dtcg.c176 static bool tcg_target_const_match(int64_t val, int ct,
3027 tcg_debug_assert(!def->args_ct[o].ct); in process_op_defs()
3044 tcg_debug_assert(!def->args_ct[o].ct); in process_op_defs()
3060 def->args_ct[i].ct |= TCG_CT_CONST; in process_op_defs()
3067 case CASE: def->args_ct[i].ct |= MASK; break; in process_op_defs()
3924 const TCGArgConstraint *ct = &def->args_ct[i]; in liveness_pass_1() local
3931 set &= ct->regs; in liveness_pass_1()
3932 if (ct->ialias) { in liveness_pass_1()
3933 set &= output_pref(op, ct->alias_index); in liveness_pass_1()
3937 set = ct->regs; in liveness_pass_1()
[all …]
/qemu/include/hw/intc/
H A Darm_gicv3_its_common.h80 TableDesc ct; member
/qemu/hw/ppc/
H A Dppc405.h63 uint32_t ct[4]; member
H A Dppc440_uc.c525 uint32_t ct; member
551 val = dma->ch[chnl].ct; in dcr_read_dma()
596 int count = dma->ch[chnl].ct & 0xffff; in dcr_write_dma()
642 dma->ch[chnl].ct = val; in dcr_write_dma()
H A Dppc405_uc.c253 dma->ct[i] = 0x00000000; in ppc405_dma_reset()
/qemu/block/
H A Dvmdk.c1323 char ct[128]; in vmdk_open_desc_file() local
1326 if (vmdk_parse_description(buf, "createType", ct, sizeof(ct))) { in vmdk_open_desc_file()
1331 if (strcmp(ct, "monolithicFlat") && in vmdk_open_desc_file()
1332 strcmp(ct, "vmfs") && in vmdk_open_desc_file()
1333 strcmp(ct, "vmfsSparse") && in vmdk_open_desc_file()
1334 strcmp(ct, "seSparse") && in vmdk_open_desc_file()
1335 strcmp(ct, "twoGbMaxExtentSparse") && in vmdk_open_desc_file()
1336 strcmp(ct, "twoGbMaxExtentFlat")) { in vmdk_open_desc_file()
1337 error_setg(errp, "Unsupported image type '%s'", ct); in vmdk_open_desc_file()
1341 s->create_type = g_strdup(ct); in vmdk_open_desc_file()
/qemu/hw/intc/
H A Darm_gicv3_its.c184 uint64_t entry_addr = table_entry_addr(s, &s->ct, icid, &res); in get_cte()
416 if (icid >= s->ct.num_entries) { in lookup_cte()
613 if (icid >= s->ct.num_entries) { in process_mapti()
616 __func__, icid, s->ct.num_entries); in process_mapti()
747 entry_addr = table_entry_addr(s, &s->ct, icid, &res); in update_cte()
776 if (icid >= s->ct.num_entries) { in process_mapc()
1463 td = &s->ct; in extract_table_params()
/qemu/crypto/
H A Daes.c42 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((s… argument
/qemu/tcg/loongarch64/
H A Dtcg-target.c.inc186 static bool tcg_target_const_match(int64_t val, int ct,
189 if (ct & TCG_CT_CONST) {
192 if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
195 if ((ct & TCG_CT_CONST_S12) && val == sextreg(val, 0, 12)) {
198 if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
201 if ((ct & TCG_CT_CONST_U12) && val >= 0 && val <= 0xfff) {
204 if ((ct & TCG_CT_CONST_C12) && ~val >= 0 && ~val <= 0xfff) {
207 if ((ct & TCG_CT_CONST_WSZ) && val == (type == TCG_TYPE_I32 ? 32 : 64)) {
211 if ((ct & TCG_CT_CONST_VCMP) && -0x10 <= vec_val && vec_val <= 0x1f) {
214 if ((ct & TCG_CT_CONST_VADD) && -0x1f <= vec_val && vec_val <= 0x1f) {
/qemu/tcg/s390x/
H A Dtcg-target.c.inc552 static bool tcg_target_const_match(int64_t val, int ct,
557 if (ct & TCG_CT_CONST) {
565 if (ct & TCG_CT_CONST_CMP) {
575 ct |= TCG_CT_CONST_S32; /* CGFI */
581 ct |= TCG_CT_CONST_U32; /* CLGFI */
597 if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
600 if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) {
603 if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
606 if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
610 if (ct & TCG_CT_CONST_INV) {
[all …]
/qemu/tcg/riscv/
H A Dtcg-target.c.inc148 static bool tcg_target_const_match(int64_t val, int ct,
151 if (ct & TCG_CT_CONST) {
154 if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
161 if ((ct & TCG_CT_CONST_S12) && val >= -0x800 && val <= 0x7ff) {
168 if ((ct & TCG_CT_CONST_N12) && val >= -0x7ff && val <= 0x800) {
176 if ((ct & TCG_CT_CONST_M12) && val >= -0x7ff && val <= 0x7ff) {
183 if ((ct & TCG_CT_CONST_J12) && ~val >= -0x800 && ~val <= 0x7ff) {
/qemu/tcg/mips/
H A Dtcg-target.c.inc191 static bool tcg_target_const_match(int64_t val, int ct,
194 if (ct & TCG_CT_CONST) {
196 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
198 } else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val) {
200 } else if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
202 } else if ((ct & TCG_CT_CONST_N16) && val >= -32767 && val <= 32767) {
204 } else if ((ct & TCG_CT_CONST_P2M1)
207 } else if ((ct & TCG_CT_CONST_WSZ)
/qemu/target/s390x/tcg/
H A Dinsn-data.h.inc284 D(0xb972, CRT, RRF_c, GIE, r1_32s, r2_32s, 0, 0, ct, 0, 0)
285 D(0xb960, CGRT, RRF_c, GIE, r1_o, r2_o, 0, 0, ct, 0, 0)
286 D(0xec72, CIT, RIE_a, GIE, r1_32s, i2, 0, 0, ct, 0, 0)
287 D(0xec70, CGIT, RIE_a, GIE, r1_o, i2, 0, 0, ct, 0, 0)
289 D(0xb973, CLRT, RRF_c, GIE, r1_32u, r2_32u, 0, 0, ct, 0, 1)
290 D(0xb961, CLGRT, RRF_c, GIE, r1_o, r2_o, 0, 0, ct, 0, 1)
291 D(0xeb23, CLT, RSY_b, MIE, r1_32u, m2_32u, 0, 0, ct, 0, 1)
292 D(0xeb2b, CLGT, RSY_b, MIE, r1_o, m2_64, 0, 0, ct, 0, 1)
293 D(0xec73, CLFIT, RIE_a, GIE, r1_32u, i2_16u, 0, 0, ct, 0, 1)
294 D(0xec71, CLGIT, RIE_a, GIE, r1_o, i2_16u, 0, 0, ct, 0, 1)
/qemu/tcg/aarch64/
H A Dtcg-target.c.inc288 static bool tcg_target_const_match(int64_t val, int ct,
291 if (ct & TCG_CT_CONST) {
298 if (ct & TCG_CT_CONST_CMP) {
300 ct |= TCG_CT_CONST_LIMM;
302 ct |= TCG_CT_CONST_AIMM;
306 if ((ct & TCG_CT_CONST_AIMM) && (is_aimm(val) || is_aimm(-val))) {
309 if ((ct & TCG_CT_CONST_LIMM) && is_limm(val)) {
312 if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
315 if ((ct & TCG_CT_CONST_MONE) && val == -1) {
319 switch (ct & (TCG_CT_CONST_ORRI | TCG_CT_CONST_ANDI)) {
/qemu/tcg/ppc/
H A Dtcg-target.c.inc290 static bool tcg_target_const_match(int64_t sval, int ct,
296 if (ct & TCG_CT_CONST) {
305 if (ct & TCG_CT_CONST_CMP) {
309 ct |= TCG_CT_CONST_S16 | TCG_CT_CONST_U16;
315 ct |= TCG_CT_CONST_S16;
321 ct |= TCG_CT_CONST_U16;
339 if ((ct & TCG_CT_CONST_S16) && sval == (int16_t)sval) {
342 if ((ct & TCG_CT_CONST_U16) && uval == (uint16_t)uval) {
345 if ((ct & TCG_CT_CONST_S32) && sval == (int32_t)sval) {
351 if ((ct & TCG_CT_CONST_ZERO) && sval == 0) {
[all …]
/qemu/tcg/sparc64/
H A Dtcg-target.c.inc325 static bool tcg_target_const_match(int64_t val, int ct,
328 if (ct & TCG_CT_CONST) {
336 if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
338 } else if ((ct & TCG_CT_CONST_S11) && check_fit_tl(val, 11)) {
340 } else if ((ct & TCG_CT_CONST_S13) && check_fit_tl(val, 13)) {
/qemu/tcg/arm/
H A Dtcg-target.c.inc504 static bool tcg_target_const_match(int64_t val, int ct,
507 if (ct & TCG_CT_CONST) {
509 } else if ((ct & TCG_CT_CONST_ARM) && check_fit_imm(val)) {
511 } else if ((ct & TCG_CT_CONST_INV) && check_fit_imm(~val)) {
513 } else if ((ct & TCG_CT_CONST_NEG) && check_fit_imm(-val)) {
515 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
519 switch (ct & (TCG_CT_CONST_ORRI | TCG_CT_CONST_ANDI)) {
/qemu/include/tcg/
H A Dtcg.h801 unsigned ct : 16; member
/qemu/tcg/tci/
H A Dtcg-target.c.inc916 static bool tcg_target_const_match(int64_t val, int ct,
919 return ct & TCG_CT_CONST;
/qemu/tcg/i386/
H A Dtcg-target.c.inc199 static bool tcg_target_const_match(int64_t val, int ct,
202 if (ct & TCG_CT_CONST) {
206 if (ct & (TCG_CT_CONST_S32 | TCG_CT_CONST_U32 |
211 if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
214 if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) {
217 if ((ct & TCG_CT_CONST_I32) && ~val == (int32_t)~val) {
226 if ((ct & TCG_CT_CONST_TST)
232 if ((ct & TCG_CT_CONST_WSZ) && val == (type == TCG_TYPE_I32 ? 32 : 64)) {