Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td30 "ARM v8.2 UAO PState extension (psuao)">;
319 // PState instruction options.
322 class PState<string name, bits<5> encoding> : SearchableTable {
332 def : PState<"SPSel", 0b00101>;
333 def : PState<"DAIFSet", 0b11110>;
334 def : PState<"DAIFClr", 0b11111>;
337 def : PState<"PAN", 0b00100>;
341 def : PState<"UAO", 0b00011>;
344 def : PState<"DIT", 0b11010>;
347 def : PState<"SSBS", 0b11001>;
[all …]
H A DAArch64.td97 // UAO PState
99 "Enable v8.2 UAO PState">;
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp1433 auto PState = AArch64PState::lookupPStateByEncoding(Val); in printSystemPStateField() local
1434 if (PState && PState->haveFeatures(STI.getFeatureBits())) in printSystemPStateField()
1435 O << PState->Name; in printSystemPStateField()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1252 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1255 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1256 : PState; in expandPostRAPseudo()
1268 .addReg(PReg, PState) in expandPostRAPseudo()
1286 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1289 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1290 : PState; in expandPostRAPseudo()
1307 .addReg(PReg, PState) in expandPostRAPseudo()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h376 struct PState : SysAlias{ struct
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp1743 auto PState = AArch64PState::lookupPStateByEncoding(pstate_field); in DecodeSystemPStateInstruction() local
1744 if (PState && PState->haveFeatures(Dis->getSubtargetInfo().getFeatureBits())) in DecodeSystemPStateInstruction()
/freebsd-12.1/contrib/ntp/ntpq/
H A Dntpq.c3230 enum PState { sDone, sInit, sName, sValU, sValQ }; in nextvar() enum
3238 enum PState st; in nextvar()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3057 auto PState = AArch64PState::lookupPStateByName(Tok.getString()); in tryParseSysReg() local
3059 if (PState && PState->haveFeatures(getSTI().getFeatureBits())) in tryParseSysReg()
3060 PStateImm = PState->Encoding; in tryParseSysReg()