HomeSort by: relevance | last modified time | path
    Searched refs:TLBI (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64InstPrinter.cpp 853 // TLBI aliases
854 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByEncoding(Encoding);
855 if (!TLBI || !TLBI->haveFeatures(STI.getFeatureBits()))
858 NeedsReg = TLBI->NeedsReg;
859 Ins = "tlbi\t";
860 Name = std::string(TLBI->Name);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 568 struct TLBI : SysAliasReg {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 2972 /// parseSysAlias - The IC, DC, AT, and TLBI instructions are simple aliases for
3018 } else if (Mnemonic == "tlbi") {
3019 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByName(Op);
3020 if (!TLBI)
3021 return TokError("invalid operand for TLBI instruction");
3022 else if (!TLBI->haveFeatures(getSTI().getFeatureBits())) {
3023 std::string Str("TLBI " + std::string(TLBI->Name) + " requires: ");
3024 setRequiredFeatureString(TLBI->getRequiredFeatures(), Str)
    [all...]

Completed in 19 milliseconds