/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_wait_release.h | 636 flag->mwait(th_gtid); 836 void mwait(int th_gtid) { __kmp_mwait_32(th_gtid, this); } 872 void mwait(int th_gtid) { __kmp_mwait_64(th_gtid, this); } 909 void mwait(int th_gtid) { __kmp_atomic_mwait_64(th_gtid, this); } 1002 void mwait(int th_gtid) { __kmp_mwait_oncore(th_gtid, this); }
|
/freebsd/sys/dev/usb/net/ |
H A D | uhso.c | 1662 struct mbuf *m, *m0, *mwait; in uhso_if_rxflush() local 1671 mwait = sc->sc_mwait; in uhso_if_rxflush() 1682 if (mwait != NULL) { in uhso_if_rxflush() 1683 m0 = mwait; in uhso_if_rxflush() 1684 mwait = NULL; in uhso_if_rxflush() 1767 mwait = m; in uhso_if_rxflush() 1784 sc->sc_mwait = mwait; in uhso_if_rxflush()
|
/freebsd/contrib/processor-trace/libipt/test/src/ |
H A D | ptunit-packet.c | 408 static struct ptunit_result mwait(struct packet_fixture *pfix) in mwait() function 411 pfix->packet[0].payload.mwait.hints = 0xc; in mwait() 412 pfix->packet[0].payload.mwait.ext = 0x1; in mwait() 622 ptu_run_f(suite, mwait, pfix); in main()
|
/freebsd/contrib/processor-trace/libipt/include/ |
H A D | intel-pt.h | 884 struct pt_packet_mwait mwait; member 1379 } mwait; member
|
H A D | intel-pt.h.in | 883 /** Packet: mwait. */ 884 struct pt_packet_mwait mwait; member 1360 /** Event: mwait. */ 1362 /** The address of the instruction causing the mwait. 1368 /** The mwait hints (eax). 1374 /** The mwait extensions (ecx). 1379 } mwait; member
|
/freebsd/contrib/processor-trace/libipt/src/ |
H A D | pt_encoder.c | 591 pos = pt_encode_int(pos, packet->payload.mwait.hints, in pt_enc_next() 593 pos = pt_encode_int(pos, packet->payload.mwait.ext, in pt_enc_next()
|
H A D | pt_insn_decoder.c | 1159 decoder->ip != ev->variant.mwait.ip) in pt_insn_check_ip_event() 1715 decoder->ip != ev->variant.mwait.ip) in pt_insn_event()
|
H A D | pt_packet_decoder.c | 672 size = pt_pkt_read_mwait(&packet->payload.mwait, decoder->pos, in pt_pkt_decode_mwait()
|
H A D | pt_block_decoder.c | 1604 ev->variant.mwait.ip); in pt_blk_proceed_event() 2977 decoder->ip != ev->variant.mwait.ip) in pt_blk_proceed_trailing_event() 3444 decoder->ip != ev->variant.mwait.ip) in pt_blk_event()
|
H A D | pt_query_decoder.c | 1617 return pt_qry_event_ip(&ev->variant.mwait.ip, ev, decoder); in pt_qry_event_fup() 3551 event->variant.mwait.hints = packet.hints; in pt_qry_decode_mwait() 3552 event->variant.mwait.ext = packet.ext; in pt_qry_decode_mwait()
|
/freebsd/sys/sys/ |
H A D | signalvar.h | 383 ksiginfo_t *ksiginfo_alloc(int mwait);
|
/freebsd/sys/kern/ |
H A D | kern_sig.c | 383 ksiginfo_alloc(int mwait) in ksiginfo_alloc() argument 385 MPASS(mwait == M_WAITOK || mwait == M_NOWAIT); in ksiginfo_alloc() 389 return (uma_zalloc(ksiginfo_zone, mwait | M_ZERO)); in ksiginfo_alloc()
|
/freebsd/sys/amd64/vmm/intel/ |
H A D | vmx.c | 297 SDT_PROBE_DEFINE3(vmm, vmx, exit, mwait, 2817 SDT_PROBE3(vmm, vmx, exit, mwait, vmx, vcpuid, vmexit); in vmx_exit_process()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrSSE.td | 4993 def MWAITrr : I<0x01, MRM_C9, (outs), (ins), "mwait", 4997 def : InstAlias<"mwait\t{%eax, %ecx|ecx, eax}", (MWAITrr)>, Requires<[Not64BitMode]>; 4998 def : InstAlias<"mwait\t{%rax, %rcx|rcx, rax}", (MWAITrr)>, Requires<[In64BitMode]>;
|