| /src/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCInst.cpp | 87 StringRef InstName = Printer ? Printer->getOpcodeName(getOpcode()) : ""; in dump_pretty() local 88 dump_pretty(OS, InstName, Separator, RegInfo); in dump_pretty()
|
| /src/contrib/llvm-project/llvm/utils/TableGen/Common/ |
| H A D | VarLenCodeEmitterGen.cpp | 298 std::string InstName = in run() local 302 CaseMap[Case].push_back(std::move(InstName)); in run() 315 for (const auto &InstName : InstList) in run() local 316 OS << LS << " case " << InstName << ":"; in run()
|
| H A D | CodeGenSchedule.cpp | 138 StringRef InstName = Inst->TheDef->getName(); in apply() local 139 if (InstName.starts_with(Prefix) && in apply() 140 (!Regexpr || Regexpr->match(InstName.substr(Prefix.size())))) { in apply() 166 StringRef InstName = Inst->TheDef->getName(); in apply() local 167 if (!Regexpr || Regexpr->match(InstName.substr(Prefix.size()))) { in apply() 907 StringRef InstName = Inst->TheDef->getName(); in collectSchedClasses() local 925 dbgs() << "Itinerary for " << InstName << ": " in collectSchedClasses() 931 dbgs() << "SchedRW machine model for " << InstName; in collectSchedClasses() 945 << InstName); in collectSchedClasses()
|
| H A D | CodeGenDAGPatterns.cpp | 2434 static void emitTooManyOperandsError(TreePattern &TP, StringRef InstName, in emitTooManyOperandsError() argument 2436 TP.error("Instruction '" + InstName + "' was provided " + Twine(Actual) + in emitTooManyOperandsError() 2440 static void emitTooFewOperandsError(TreePattern &TP, StringRef InstName, in emitTooFewOperandsError() argument 2442 TP.error("Instruction '" + InstName + "' expects more than the provided " + in emitTooFewOperandsError()
|
| /src/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 432 bool checkForP2AlignIfLoadStore(OperandVector &Operands, StringRef InstName) { in checkForP2AlignIfLoadStore() argument 434 auto IsLoadStore = InstName.contains(".load") || in checkForP2AlignIfLoadStore() 435 InstName.contains(".store") || in checkForP2AlignIfLoadStore() 436 InstName.contains("prefetch"); in checkForP2AlignIfLoadStore() 437 auto IsAtomic = InstName.contains("atomic."); in checkForP2AlignIfLoadStore() 453 auto IsLoadStoreLane = InstName.contains("_lane"); in checkForP2AlignIfLoadStore()
|
| /src/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeEmitterGen.cpp | 547 std::string InstName = in run() local 552 CaseMap[Case].push_back(InstName); in run() 553 BitOffsetCaseMap[BitOffsetCase].push_back(std::move(InstName)); in run()
|
| H A D | GlobalISelCombinerEmitter.cpp | 1209 for (auto InstName : FI->copy_flags()) { in checkSemantics() local 1210 auto It = MatchPats.find(InstName); in checkSemantics() 1212 PrintError("unknown instruction '$" + InstName + in checkSemantics() 1219 "'$" + InstName + in checkSemantics() 2003 for (StringRef InstName : FI->copy_flags()) in emitInstructionApplyPattern() local 2004 DstMI.addCopiedMIFlags(M.getInstructionMatcher(InstName)); in emitInstructionApplyPattern() 2107 StringRef InstName = CGP->getInst().TheDef->getName(); in isLiteralImm() local 2108 return (InstName == "G_CONSTANT" || InstName == "G_FCONSTANT") && in isLiteralImm()
|
| H A D | GlobalISelEmitter.cpp | 1828 StringRef InstName = Inst.TheDef->getName(); in inferRegClassFromPattern() local 1829 bool IsRegSequence = InstName == "REG_SEQUENCE"; in inferRegClassFromPattern() 1830 if (IsRegSequence || InstName == "COPY_TO_REGCLASS") { in inferRegClassFromPattern() 1838 if (InstName == "INSERT_SUBREG") { in inferRegClassFromPattern() 1844 if (InstName == "EXTRACT_SUBREG") { in inferRegClassFromPattern()
|
| /src/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEInstrPatternsVec.td | 123 class Mask_Binary<ValueType MaskVT, SDPatternOperator MaskOp, string InstName> : 124 Pat<(MaskVT (MaskOp MaskVT:$ma, MaskVT:$mb)), (!cast<Instruction>(InstName#"mm") $ma, $mb)>;
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_neon.td | 351 let InstName = "vcge" in 354 let InstName = "vcgt" in 356 let InstName = "vacge" in { 360 let InstName = "vacgt" in { 505 let InstName = "vmov" in 511 let InstName = "vmov" in 523 let InstName = "vmov" in { 531 let InstName = "" in 546 let InstName = "vmov" in { 575 let InstName = "vtbl" in { [all …]
|
| H A D | arm_neon_incl.td | 285 string InstName = "";
|
| /src/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVEmitIntrinsics.cpp | 1008 std::string InstName = I.hasName() ? I.getName().str() : ""; in visitBitCastInst() local 1011 NewI->setName(InstName); in visitBitCastInst() 1231 std::string InstName = I.hasName() ? I.getName().str() : ""; in visitInsertElementInst() local 1234 NewI->setName(InstName); in visitInsertElementInst() 1246 std::string InstName = I.hasName() ? I.getName().str() : ""; in visitExtractElementInst() local 1249 NewI->setName(InstName); in visitExtractElementInst() 1341 std::string InstName = I.hasName() ? I.getName().str() : ""; in visitAllocaInst() local 1344 NewI->setName(InstName); in visitAllocaInst()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | Debugify.cpp | 442 auto InstName = Instruction::getOpcodeName(Instr->getOpcode()); in checkInstructions() local 450 {"instr", InstName}, in checkInstructions() 467 {"instr", InstName}, in checkInstructions()
|
| /src/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | Patterns.cpp | 326 void MIFlagsInfo::addCopyFlag(StringRef InstName) { CopyF.insert(InstName); } in addCopyFlag() argument
|
| H A D | Patterns.h | 411 void addCopyFlag(StringRef InstName);
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | TreeTransform.h | 1142 TemplateName InstName = getDerived().RebuildTemplateName( in RebuildDependentTemplateSpecializationType() local 1146 if (InstName.isNull()) in RebuildDependentTemplateSpecializationType() 1150 if (InstName.getAsDependentTemplateName()) in RebuildDependentTemplateSpecializationType() 1158 getDerived().RebuildTemplateSpecializationType(InstName, NameLoc, Args); in RebuildDependentTemplateSpecializationType()
|