Home
last modified time | relevance | path

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

/external/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp1462 auto PState = AArch64PState::lookupPStateByEncoding(Val); in printSystemPStateField() local
1463 if (PState && PState->haveFeatures(STI.getFeatureBits())) in printSystemPStateField()
1464 O << PState->Name; in printSystemPStateField()
/external/llvm/lib/Target/AArch64/
DAArch64SystemOperands.td173 // PState instruction options.
176 class PState<string name, bits<5> encoding> : SearchableTable {
186 def : PState<"SPSel", 0b00101>;
187 def : PState<"DAIFSet", 0b11110>;
188 def : PState<"DAIFClr", 0b11111>;
191 def : PState<"PAN", 0b00100>;
194 def : PState<"UAO", 0b00011>;
/external/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.h328 struct PState { struct
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64Disassembler.cpp1528 auto PState = AArch64PState::lookupPStateByEncoding(pstate_field); in DecodeSystemPStateInstruction() local
1529 if (PState && PState->haveFeatures(Dis->getSubtargetInfo().getFeatureBits())) in DecodeSystemPStateInstruction()
/external/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp2788 auto PState = AArch64PState::lookupPStateByName(Tok.getString()); in tryParseSysReg() local
2790 if (PState && PState->haveFeatures(getSTI().getFeatureBits())) in tryParseSysReg()
2791 PStateImm = PState->Encoding; in tryParseSysReg()