Searched refs:TLBI (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64SystemOperands.td | 503 // TLBI (translation lookaside buffer invalidate) instruction options. 522 let CppTypeName = "TLBI"; 536 multiclass TLBI<string name, bits<3> op1, bits<4> crn, bits<4> crm, 545 defm : TLBI<"IPAS2E1IS", 0b100, 0b1000, 0b0000, 0b001>; 546 defm : TLBI<"IPAS2LE1IS", 0b100, 0b1000, 0b0000, 0b101>; 547 defm : TLBI<"VMALLE1IS", 0b000, 0b1000, 0b0011, 0b000, 0>; 548 defm : TLBI<"ALLE2IS", 0b100, 0b1000, 0b0011, 0b000, 0>; 549 defm : TLBI<"ALLE3IS", 0b110, 0b1000, 0b0011, 0b000, 0>; 550 defm : TLBI<"VAE1IS", 0b000, 0b1000, 0b0011, 0b001>; 551 defm : TLBI<"VAE2IS", 0b100, 0b1000, 0b0011, 0b001>; [all …]
|
| H A D | AArch64.td | 670 // Named operands for MRS/MSR/TLBI/...
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 972 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByEncoding(Encoding); in printSysAlias() local 973 if (!TLBI || !TLBI->haveFeatures(STI.getFeatureBits())) in printSysAlias() 976 NeedsReg = TLBI->NeedsReg; in printSysAlias() 978 Name = std::string(TLBI->Name); in printSysAlias() 1031 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByEncoding(Encoding); in printSyspAlias() local 1032 if (!TLBI || !TLBI->haveFeatures(STI.getFeatureBits())) in printSyspAlias() 1036 Name = std::string(TLBI->Name); in printSyspAlias()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 3797 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByName(Op); in parseSysAlias() local 3798 if (!TLBI) in parseSysAlias() 3800 else if (!TLBI->haveFeatures(getSTI().getFeatureBits())) { in parseSysAlias() 3801 std::string Str("TLBI " + std::string(TLBI->Name) + " requires: "); in parseSysAlias() 3802 setRequiredFeatureString(TLBI->getRequiredFeatures(), Str); in parseSysAlias() 3805 createSysAlias(TLBI->Encoding, Operands, S); in parseSysAlias() 3876 const AArch64TLBI::TLBI *TLBIorig = AArch64TLBI::lookupTLBIByName(Op); in parseSyspAlias() 3879 const AArch64TLBI::TLBI TLBI( in parseSyspAlias() local 3885 if (!TLBI.haveFeatures(getSTI().getFeatureBits())) { in parseSyspAlias() 3887 std::string(TLBI.Name) + (HasnXSQualifier ? "nXS" : ""); in parseSyspAlias() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.h | 712 struct TLBI : SysAliasReg { struct
|