Home
last modified time | relevance | path

Searched refs:PSB (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTOptions.td29 Desc<"This value defines the period in which PSB packets will be "
30 "generated. A PSB packet is a synchronization packet that "
36 "the PSB period will be defined by the processor. If supported, "
44 "PSB "
46 "PSB "
107 Desc<"This value defines the period in which PSB packets will be "
108 "generated. A PSB packet is a synchronization packet that "
114 "the PSB period will be defined by the processor. If supported, "
122 "PSB "
124 "PSB "
H A DTraceIntelPTProperties.td14 "PSB block is stopped. An error is hence emitted in the trace and "
15 "decoding is resumed in the next PSB block.">;
22 "corresponding PSB block. An error is hence emitted in the trace and "
23 "decoding is resumed in the next PSB block.">;
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1458 auto PSB = AArch64PSBHint::lookupPSBByEncoding(psbhintop); in printPSBHintOp() local
1459 if (PSB) in printPSBHintOp()
1460 O << PSB->Name; in printPSBHintOp()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h591 struct PSB : SysAlias { struct
/openbsd-src/sys/arch/hppa/conf/
H A Dfiles.hppa246 # PSB 2160-N based 8bit mono audio (705, 710, 745i/*, 747i/*)
/openbsd-src/gnu/llvm/lldb/docs/
H A Dlldb-gdb-remote.txt325 // with PSB (synchronization) packets, whose frequency can be configured
329 // This value defines the period in which PSB packets will be generated.
330 // A PSB packet is a synchronization packet that contains a TSC
337 // is 1. Otherwise, the PSB period will be defined by the processor.
347 // raw trace bytes between PSB packets as:
351 // e.g. value 3 means 16KiB between PSB packets. Defaults to
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td471 // PSB instruction options.
474 class PSB<string name, bits<5> encoding> : SearchableTable {
483 def : PSB<"csync", 0x11>;
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3097 auto PSB = AArch64PSBHint::lookupPSBByName(Tok.getString()); in tryParsePSBHint() local
3098 if (!PSB) { in tryParsePSBHint()
3104 PSB->Encoding, Tok.getString(), S, getContext())); in tryParsePSBHint()