Home
last modified time | relevance | path

Searched refs:MID (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp55 bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { in canReserveResources() argument
56 unsigned Action = ItinActions[MID->getSchedClass()]; in canReserveResources()
57 if (MID->getSchedClass() == 0 || Action == 0) in canReserveResources()
64 void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument
65 unsigned Action = ItinActions[MID->getSchedClass()]; in reserveResources()
66 if (MID->getSchedClass() == 0 || Action == 0) in reserveResources()
74 const MCInstrDesc &MID = MI.getDesc(); in canReserveResources() local
75 return canReserveResources(&MID); in canReserveResources()
81 const MCInstrDesc &MID = MI.getDesc(); in reserveResources() local
82 reserveResources(&MID); in reserveResources()
H A DMachineLICM.cpp1422 const MCInstrDesc &MID = TII->get(NewOpc); in ExtractHoistableLoad() local
1424 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI, MF); in ExtractHoistableLoad()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp136 const MCInstrDesc &MID = MI.getDesc(); in INITIALIZE_PASS_DEPENDENCY() local
138 if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI)) in INITIALIZE_PASS_DEPENDENCY()
141 if (MID.mayStore()) { in INITIALIZE_PASS_DEPENDENCY()
406 const MCInstrDesc &MID = MI->getDesc(); in getBaseOpPosition() local
419 return MID.mayLoad() ? 1 : 0; in getBaseOpPosition()
428 const MCInstrDesc &MID = MI->getDesc(); in getOffsetOpPosition() local
441 return MID.mayLoad() ? 2 : 1; in getOffsetOpPosition()
454 const MCInstrDesc &MID = LoadStoreMI->getDesc(); in usedInLoadStore() local
455 if ((MID.mayLoad() || MID.mayStore()) && in usedInLoadStore()
709 const MCInstrDesc &MID = MI->getDesc(); in processAddUses() local
[all …]
H A DHexagonInstrInfo.cpp2290 const MCInstrDesc &MID = MI.getDesc(); in isExtendable() local
2291 const uint64_t F = MID.TSFlags; in isExtendable()
/freebsd/sys/contrib/device-tree/src/arm/vt8500/
H A Dwm8650-mid.dts3 * wm8650-mid.dts - Device tree file for Wondermedia WM8650-MID Tablet
12 model = "Wondermedia WM8650-MID Tablet";
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.cpp120 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()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp393 for (const ModuleID &MID : ClangModuleDeps) { in collectModuleMapFiles() local
394 ModuleDeps *MD = ModuleDepsByID.lookup(MID); in collectModuleMapFiles()
410 for (const ModuleID &MID : ClangModuleDeps) { in addModuleMapFiles() local
411 ModuleDeps *MD = ModuleDepsByID.lookup(MID); in addModuleMapFiles()
419 for (const ModuleID &MID : ClangModuleDeps) { in addModuleFiles() local
420 ModuleDeps *MD = ModuleDepsByID.lookup(MID); in addModuleFiles()
428 {MID.ModuleName, std::move(PCMPath)}); in addModuleFiles()
434 for (const ModuleID &MID : ClangModuleDeps) { in addModuleFiles() local
435 ModuleDeps *MD = ModuleDepsByID.lookup(MID); in addModuleFiles()
443 {MID.ModuleName, std::move(PCMPath)}); in addModuleFiles()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h103 bool canReserveResources(const MCInstrDesc *MID);
107 void reserveResources(const MCInstrDesc *MID);
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp415 const MCInstrDesc &MID = MI.getDesc(); in isPostIncrement() local
416 const uint64_t F = MID.TSFlags; in isPostIncrement()
421 const MCInstrDesc &MID = MI.getDesc(); in isPreIncrement() local
422 const uint64_t F = MID.TSFlags; in isPreIncrement()
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Drenesas,shdma.txt76 - dmas: a list of <[DMA multiplexer phandle] [MID/RID value]> pairs,
77 where MID/RID values are fixed handles, specified in the SoC
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLatencyMutations.cpp431 const MCInstrDesc &MID = TII->get(MI); in markDPProducersConsumers() local
432 auto Operands = MID.operands(); in markDPProducersConsumers()
433 for (unsigned OI = 0, OIE = MID.getNumOperands(); OI != OIE; ++OI) { in markDPProducersConsumers()
464 if (OI < MID.getNumDefs()) in markDPProducersConsumers()
470 if (OI < MID.getNumDefs()) in markDPProducersConsumers()
476 if (OI < MID.getNumDefs()) in markDPProducersConsumers()
/freebsd/contrib/llvm-project/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp364 for (const ModuleID &MID : V) in toJSONSorted() local
366 JOS.attribute("context-hash", StringRef(MID.ContextHash)); in toJSONSorted()
367 JOS.attribute("module-name", StringRef(MID.ModuleName)); in toJSONSorted()
751 static std::string constructPCMPath(ModuleID MID, StringRef OutputDir) { in constructPCMPath() argument
753 llvm::sys::path::append(ExplicitPCMPath, MID.ContextHash, in constructPCMPath()
754 MID.ModuleName + "-" + MID.ContextHash + ".pcm"); in constructPCMPath()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp72 Module::Module(StringRef MID, LLVMContext &C) in Module() argument
74 ModuleID(std::string(MID)), SourceFileName(std::string(MID)) { in Module()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp713 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(), in processLoop() local
717 for (const auto &InstDep : MID) { in processLoop()
/freebsd/contrib/file/magic/Magdir/
H A Dgeo141 0 string $@MID@$ elog journal entry
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp173 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping() local
174 if (MainFileID == MID) { in getBufferForFileHandlingRemapping()
189 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping() local
190 if (MainFileID == MID) { in getBufferForFileHandlingRemapping()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp927 unsigned MID = 0; in parseMDNodeID() local
928 if (parseUInt32(MID)) in parseMDNodeID()
932 auto [It, Inserted] = NumberedMetadata.try_emplace(MID); in parseMDNodeID()
939 auto &FwdRef = ForwardRefMDNodes[MID]; in parseMDNodeID()
/freebsd/sys/contrib/dev/acpica/
H A Dchanges.txt6184 1) The MTMR table (MID Timer Table)
/freebsd/crypto/krb5/src/lib/krb5/unicode/
H A DUnicodeData.txt713 02E7;MODIFIER LETTER MID TONE BAR;Sk;0;ON;;;;;N;;;;;
/freebsd/crypto/heimdal/lib/wind/
H A DUnicodeData.txt719 02E7;MODIFIER LETTER MID TONE BAR;Sk;0;ON;;;;;N;;;;;
H A DNormalizationTest.txt6416 BBFF;BBFF;1106 1175 11AE;BBFF;1106 1175 11AE; # (믿; 믿; 믿; 믿; 믿; ) HANGUL SYLLABLE MID