Home
last modified time | relevance | path

Searched refs:PState (Results 1 – 13 of 13) 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp1397 auto PState = AArch64PState::lookupPStateByEncoding(Val); in printSystemPStateField() local
1398 if (PState && PState->haveFeatures(STI.getFeatureBits())) in printSystemPStateField()
1399 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64SystemOperands.td276 // PState instruction options.
279 class PState<string name, bits<5> encoding> : SearchableTable {
289 def : PState<"SPSel", 0b00101>;
290 def : PState<"DAIFSet", 0b11110>;
291 def : PState<"DAIFClr", 0b11111>;
294 def : PState<"PAN", 0b00100>;
297 def : PState<"UAO", 0b00011>;
300 def : PState<"DIT", 0b11010>;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.cpp1253 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1256 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1257 : PState; in expandPostRAPseudo()
1269 .addReg(PReg, PState) in expandPostRAPseudo()
1287 unsigned PState = getRegState(Op1); in expandPostRAPseudo() local
1290 unsigned S = Op0.getReg() != Op3.getReg() ? PState & ~RegState::Kill in expandPostRAPseudo()
1291 : PState; in expandPostRAPseudo()
1309 .addReg(PReg, PState) in expandPostRAPseudo()
/external/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.h328 struct PState { struct
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.h376 struct PState : SysAlias{ 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64Disassembler.cpp1726 auto PState = AArch64PState::lookupPStateByEncoding(pstate_field); in DecodeSystemPStateInstruction() local
1727 if (PState && PState->haveFeatures(Dis->getSubtargetInfo().getFeatureBits())) in DecodeSystemPStateInstruction()
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/AArch64/
DAArch64GenSystemOperands.inc1676 const PState *lookupPStateByName(StringRef Name);
1677 const PState *lookupPStateByEncoding(uint8_t Encoding);
1681 const PState PStatesList[] = {
1690 const PState *lookupPStateByName(StringRef Name) {
1723 const PState *lookupPStateByEncoding(uint8_t Encoding) {
/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()
/external/capstone/bindings/ocaml/
Darm64_const.ml155 (* System PState Field (MSR instruction) *)
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp2913 auto PState = AArch64PState::lookupPStateByName(Tok.getString()); in tryParseSysReg() local
2915 if (PState && PState->haveFeatures(getSTI().getFeatureBits())) in tryParseSysReg()
2916 PStateImm = PState->Encoding; in tryParseSysReg()