Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td29 "ARM v8.2 UAO PState extension (psuao)">;
338 // PState instruction options.
341 class PState<string name, bits<5> encoding> : SearchableTable {
351 def : PState<"SPSel", 0b00101>;
352 def : PState<"DAIFSet", 0b11110>;
353 def : PState<"DAIFClr", 0b11111>;
356 def : PState<"PAN", 0b00100>;
360 def : PState<"UAO", 0b00011>;
363 def : PState<"DIT", 0b11010>;
366 def : PState<"SSBS", 0b11001>;
[all …]
H A DAArch64.td101 // UAO PState
103 "Enable v8.2 UAO PState">;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1497 auto PState = AArch64PState::lookupPStateByEncoding(Val); in printSystemPStateField() local
1498 if (PState && PState->haveFeatures(STI.getFeatureBits())) in printSystemPStateField()
1499 O << PState->Name; in printSystemPStateField()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1286 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1289 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1290 : PState; in expandPostRAPseudo()
1302 .addReg(PReg, PState) in expandPostRAPseudo()
1319 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1322 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1323 : PState; in expandPostRAPseudo()
1340 .addReg(PReg, PState) in expandPostRAPseudo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h441 struct PState : SysAlias{ struct
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp1822 auto PState = AArch64PState::lookupPStateByEncoding(pstate_field); in DecodeSystemPStateInstruction() local
1823 if (PState && PState->haveFeatures(Dis->getSubtargetInfo().getFeatureBits())) in DecodeSystemPStateInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3214 auto PState = AArch64PState::lookupPStateByName(Tok.getString()); in tryParseSysReg() local
3216 if (PState && PState->haveFeatures(getSTI().getFeatureBits())) in tryParseSysReg()
3217 PStateImm = PState->Encoding; in tryParseSysReg()