Searched refs:PRFM (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SystemOperands.td | 368 // PRFM (prefetch) instruction options. 371 class PRFM<string type, bits<2> type_encoding, 384 let FilterClass = "PRFM"; 390 let FilterClass = "PRFM"; 402 def : PRFM<"pld", 0b00, "l1", 0b00, "keep", 0b0>; 403 def : PRFM<"pld", 0b00, "l1", 0b00, "strm", 0b1>; 404 def : PRFM<"pld", 0b00, "l2", 0b01, "keep", 0b0>; 405 def : PRFM<"pld", 0b00, "l2", 0b01, "strm", 0b1>; 406 def : PRFM<"pld", 0b00, "l3", 0b10, "keep", 0b0>; 407 def : PRFM<"pld", 0b00, "l3", 0b10, "strm", 0b1>; [all …]
|
| H A D | AArch64Features.td | 344 "Enable SLC target for PRFM instruction">;
|
| H A D | AArch64InstrInfo.td | 3706 defm PRFM : PrefetchRO<0b11, 0, 0b10, "prfm">; 10551 // RPRFM overlaps with PRFM (reg), when the decoder method of PRFM returns
|
| H A D | AArch64InstrFormats.td | 4352 // PRFM (reg) aliases with RPRFM added to the base A64 instruction set. When
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 1458 if (auto PRFM = AArch64RPRFM::lookupRPRFMByEncoding(prfop)) { in printRPRFMOperand() local 1459 O << PRFM->Name; in printRPRFMOperand() 1472 if (auto PRFM = AArch64SVEPRFM::lookupSVEPRFMByEncoding(prfop)) { in printPrefetchOp() local 1473 O << PRFM->Name; in printPrefetchOp() 1477 auto PRFM = AArch64PRFM::lookupPRFMByEncoding(prfop); in printPrefetchOp() local 1478 if (PRFM && PRFM->haveFeatures(STI.getFeatureBits())) { in printPrefetchOp() 1479 O << PRFM->Name; in printPrefetchOp()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.h | 493 struct PRFM : SysAlias { struct
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 3196 auto PRFM = LookupByEncoding(MCE->getValue()); in tryParsePrefetch() local 3197 Operands.push_back(AArch64Operand::CreatePrefetch(prfop, PRFM.value_or(""), in tryParsePrefetch() 3205 auto PRFM = LookupByName(Tok.getString()); in tryParsePrefetch() local 3206 if (!PRFM) in tryParsePrefetch() 3210 *PRFM, Tok.getString(), S, getContext())); in tryParsePrefetch()
|