| /llvm-project-15.0.7/clang/unittests/StaticAnalyzer/ |
| H A D | RangeSetTest.cpp | 306 this->checkNegate({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() 750 this->template checkCastTo<F, T>({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() 760 this->template checkCastTo<F, T>({{MID, MID}, {C, C}}, {{MID, MID}, {C, C}}); in TYPED_TEST() 761 this->template checkCastTo<F, T>({{B, B}, {MID, MID}}, {{B, B}, {MID, MID}}); in TYPED_TEST() 792 this->template checkCastTo<F, T>({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() 802 this->template checkCastTo<F, T>({{MID, MID}, {C, C}}, {{MID, MID}, {C, C}}); in TYPED_TEST() 803 this->template checkCastTo<F, T>({{B, B}, {MID, MID}}, {{B, B}, {MID, MID}}); in TYPED_TEST() 842 this->template checkCastTo<F, T>({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() 921 this->template checkCastTo<F, T>({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() 966 this->template checkCastTo<F, T>({{MID, MID}}, {{MID, MID}}); in TYPED_TEST() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/LowOverheadLoops/ |
| H A D | branch-targets.ll | 7 ; CHECK-MID: bb.0.entry: 9 ; CHECK-MID: bb.1.for.header: 50 ; CHECK-MID: bb.0.entry: 94 ; CHECK-MID: bb.0.entry: 138 ; CHECK-MID: bb.0.entry: 183 ; CHECK-MID: bb.0.entry: 227 ; CHECK-MID: bb.0.entry: 406 ; CHECK-MID: tB %bb.1 409 ; CHECk-MID: tB %bb.2 440 ; CHECK-MID: tB %bb.1 [all …]
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | DFAPacketizer.cpp | 57 bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { in canReserveResources() argument 58 unsigned Action = ItinActions[MID->getSchedClass()]; in canReserveResources() 59 if (MID->getSchedClass() == 0 || Action == 0) in canReserveResources() 66 void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument 67 unsigned Action = ItinActions[MID->getSchedClass()]; in reserveResources() 68 if (MID->getSchedClass() == 0 || Action == 0) in reserveResources() 76 const MCInstrDesc &MID = MI.getDesc(); in canReserveResources() local 77 return canReserveResources(&MID); in canReserveResources() 83 const MCInstrDesc &MID = MI.getDesc(); in reserveResources() local 84 reserveResources(&MID); in reserveResources()
|
| H A D | MachinePipeliner.cpp | 3066 bool ResourceManager::canReserveResources(const MCInstrDesc *MID) const { in canReserveResources() 3073 return DFAResources->canReserveResources(MID); in canReserveResources() 3075 unsigned InsnClass = MID->getSchedClass(); in canReserveResources() 3080 dbgs() << "isPseudo:" << MID->isPseudo() << "\n"; in canReserveResources() 3107 void ResourceManager::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument 3113 return DFAResources->reserveResources(MID); in reserveResources() 3115 unsigned InsnClass = MID->getSchedClass(); in reserveResources() 3120 dbgs() << "isPseudo:" << MID->isPseudo() << "\n"; in reserveResources()
|
| H A D | MachineLICM.cpp | 1260 const MCInstrDesc &MID = TII->get(NewOpc); in ExtractHoistableLoad() local 1262 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI, MF); in ExtractHoistableLoad()
|
| /llvm-project-15.0.7/clang/tools/clang-scan-deps/ |
| H A D | ClangScanDeps.cpp | 268 for (const ModuleID &MID : V) in toJSONSorted() local 270 {{"module-name", MID.ModuleName}, {"context-hash", MID.ContextHash}})); in toJSONSorted() 299 ? FD.getCommandLine([&](const ModuleID &MID, ModuleOutputKind MOK) { in mergeDeps() argument 300 return lookupModuleOutput(MID, MOK); in mergeDeps() 335 [&](const ModuleID &MID, ModuleOutputKind MOK) { in printFullOutput() 336 return lookupModuleOutput(MID, MOK); in printFullOutput() 364 std::string lookupModuleOutput(const ModuleID &MID, ModuleOutputKind MOK) { in lookupModuleOutput() argument 367 auto PCMPath = PCMPaths.insert({MID, ""}); in lookupModuleOutput() 369 PCMPath.first->second = constructPCMPath(MID); in lookupModuleOutput() 385 std::string constructPCMPath(ModuleID MID) const { in constructPCMPath() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonOptAddrMode.cpp | 129 const MCInstrDesc &MID = MI.getDesc(); in INITIALIZE_PASS_DEPENDENCY() local 131 if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI)) in INITIALIZE_PASS_DEPENDENCY() 134 if (MID.mayStore()) { in INITIALIZE_PASS_DEPENDENCY() 376 const MCInstrDesc &MID = MI->getDesc(); in getBaseOpPosition() local 389 return MID.mayLoad() ? 1 : 0; in getBaseOpPosition() 398 const MCInstrDesc &MID = MI->getDesc(); in getOffsetOpPosition() local 411 return MID.mayLoad() ? 2 : 1; in getOffsetOpPosition() 426 if ((!MID.mayLoad() && !MID.mayStore()) || in processAddUses() 521 if ((MID.mayLoad() || MID.mayStore())) { in analyzeUses() 751 if (MID.mayLoad()) in xformUseMI() [all …]
|
| H A D | HexagonInstrInfo.cpp | 2276 const MCInstrDesc &MID = MI.getDesc(); in isExtendable() local 2277 const uint64_t F = MID.TSFlags; in isExtendable()
|
| /llvm-project-15.0.7/llvm/lib/Target/SystemZ/ |
| H A D | SystemZHazardRecognizer.cpp | 120 const MCInstrDesc &MID = MI->getDesc(); in has4RegOps() local 122 for (unsigned OpIdx = 0; OpIdx < MID.getNumOperands(); OpIdx++) { in has4RegOps() 123 const TargetRegisterClass *RC = TII->getRegClass(MID, OpIdx, TRI, MF); in has4RegOps() 126 if (OpIdx >= MID.getNumDefs() && in has4RegOps() 127 MID.getOperandConstraint(OpIdx, MCOI::TIED_TO) != -1) in has4RegOps()
|
| /llvm-project-15.0.7/clang/include/clang/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.h | 63 std::size_t operator()(const ModuleID &MID) const { in operator() 64 return llvm::hash_combine(MID.ModuleName, MID.ContextHash); in operator()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | DFAPacketizer.h | 78 bool canReserveResources(const MCInstrDesc *MID); 82 void reserveResources(const MCInstrDesc *MID);
|
| H A D | MachinePipeliner.h | 471 bool canReserveResources(const MCInstrDesc *MID) const; 475 void reserveResources(const MCInstrDesc *MID);
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_sort.c | 30 #define MID(lo, hi) (lo + ((hi - lo) >> 1)) macro 60 mid = MID (low, high); in msort()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARC/ |
| H A D | ARCInstrInfo.cpp | 413 const MCInstrDesc &MID = MI.getDesc(); in isPostIncrement() local 414 const uint64_t F = MID.TSFlags; in isPostIncrement() 419 const MCInstrDesc &MID = MI.getDesc(); in isPreIncrement() local 420 const uint64_t F = MID.TSFlags; in isPreIncrement()
|
| /llvm-project-15.0.7/mlir/test/Dialect/Async/ |
| H A D | async-parallel-for-async-dispatch.mlir | 55 // CHECK: %[[MID:.*]] = arith.addi %[[S1]], %[[HALF]] 59 // CHECK: scf.yield %[[S1]], %[[MID]]
|
| /llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.cpp | 21 for (ModuleID MID : ClangModuleDeps) { in getCommandLine() local 22 auto PCM = LookupModuleOutput(MID, ModuleOutputKind::ModuleFile); in getCommandLine()
|
| H A D | ModuleDepCollector.cpp | 152 for (ModuleID MID : ClangModuleDeps) in getCanonicalCommandLine() local 154 LookupModuleOutput(MID, ModuleOutputKind::ModuleFile)); in getCanonicalCommandLine()
|
| /llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.require/ |
| H A D | bullet_7.pass.cpp | 173 typedef MethodID<CallSig ClassType::*> MID; in run() typedef 174 BasicTest<MID, Arity, ObjCaster, ArgCaster> t; in run()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Module.cpp | 72 Module::Module(StringRef MID, LLVMContext &C) in Module() argument 74 ModuleID(std::string(MID)), SourceFileName(std::string(MID)), DL("") { in Module()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | LoopDistribute.cpp | 716 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(), in processLoop() local 720 for (auto &InstDep : MID) { in processLoop()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopUnroll/ |
| H A D | scevunroll.ll | 358 ; CHECK-NEXT: br i1 [[EC_1_PEEL]], label [[MID:%.*]], label [[LOOP_1_PEEL_NEXT:%.*]] 373 ; CHECK-NEXT: br label [[MID]]
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 178 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping() local 179 if (MainFileID == MID) { in getBufferForFileHandlingRemapping() 194 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping() local 195 if (MainFileID == MID) { in getBufferForFileHandlingRemapping()
|
| /llvm-project-15.0.7/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 743 unsigned MID = 0; in parseMDNodeID() local 744 if (parseUInt32(MID)) in parseMDNodeID() 748 if (NumberedMetadata.count(MID)) { in parseMDNodeID() 749 Result = NumberedMetadata[MID]; in parseMDNodeID() 754 auto &FwdRef = ForwardRefMDNodes[MID]; in parseMDNodeID() 758 NumberedMetadata[MID].reset(Result); in parseMDNodeID()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ConfusableTable/ |
| H A D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 7008 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7018 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7022 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7028 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7032 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|