Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTOptions.td24 Desc<"This value defines the period in which PSB packets will be "
25 "generated. A PSB packet is a synchronization packet that contains a "
29 "the PSB period will be defined by the processor. If supported, valid "
34 "converted to the approximate number of raw trace bytes between PSB "
35 "packets as: 2 ^ (value + 11), e.g. value 3 means 16KiB between PSB "
79 Desc<"This value defines the period in which PSB packets will be "
80 "generated. A PSB packet is a synchronization packet that contains a "
84 "the PSB period will be defined by the processor. If supported, valid "
89 "converted to the approximate number of raw trace bytes between PSB "
90 "packets as: 2 ^ (value + 11), e.g. value 3 means 16KiB between PSB "
/llvm-project-15.0.7/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1217 auto PSB = AArch64PSBHint::lookupPSBByEncoding(psbhintop); in printPSBHintOp() local
1218 if (PSB) in printPSBHintOp()
1219 O << PSB->Name; in printPSBHintOp()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h533 struct PSB : SysAlias { struct
/llvm-project-15.0.7/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
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td392 // PSB instruction options.
395 class PSB<string name, bits<5> encoding> : SearchableTable {
404 def : PSB<"csync", 0x11>;
/llvm-project-15.0.7/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp2795 auto PSB = AArch64PSBHint::lookupPSBByName(Tok.getString()); in tryParsePSBHint() local
2796 if (!PSB) { in tryParsePSBHint()
2802 PSB->Encoding, Tok.getString(), S, getContext())); in tryParsePSBHint()