Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td368 // 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 DAArch64Features.td344 "Enable SLC target for PRFM instruction">;
H A DAArch64InstrInfo.td3706 defm PRFM : PrefetchRO<0b11, 0, 0b10, "prfm">;
10551 // RPRFM overlaps with PRFM (reg), when the decoder method of PRFM returns
H A DAArch64InstrFormats.td4352 // PRFM (reg) aliases with RPRFM added to the base A64 instruction set. When
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1458 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 DAArch64BaseInfo.h493 struct PRFM : SysAlias { struct
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3196 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()