Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DDFAPacketizer.cpp57 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()
DMachinePipeliner.cpp3007 bool ResourceManager::canReserveResources(const MCInstrDesc *MID) const { in canReserveResources()
3014 return DFAResources->canReserveResources(MID); in canReserveResources()
3016 unsigned InsnClass = MID->getSchedClass(); in canReserveResources()
3021 dbgs() << "isPseduo:" << MID->isPseudo() << "\n"; in canReserveResources()
3048 void ResourceManager::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument
3054 return DFAResources->reserveResources(MID); in reserveResources()
3056 unsigned InsnClass = MID->getSchedClass(); in reserveResources()
3061 dbgs() << "isPseduo:" << MID->isPseudo() << "\n"; in reserveResources()
DMachineLICM.cpp1245 const MCInstrDesc &MID = TII->get(NewOpc); in ExtractHoistableLoad() local
1247 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI, MF); in ExtractHoistableLoad()
/freebsd-12-stable/tools/tools/mid/
Dmid-index16 open(MID, "| sort -u -o $name.mid") || die "open sort > $name.mid: $!\n";
53 print MID "$1 $file $bytes2\n";
55 print MID "$1 $file $bytes2\n";
67 close MID || warn "close: MID\n";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonOptAddrMode.cpp127 const MCInstrDesc &MID = MI.getDesc(); in INITIALIZE_PASS_DEPENDENCY() local
129 if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI)) in INITIALIZE_PASS_DEPENDENCY()
132 if (MID.mayStore()) { in INITIALIZE_PASS_DEPENDENCY()
357 const MCInstrDesc &MID = MI->getDesc(); in processAddUses() local
358 if ((!MID.mayLoad() && !MID.mayStore()) || in processAddUses()
363 MachineOperand BaseOp = MID.mayLoad() ? MI->getOperand(1) in processAddUses()
369 MachineOperand OffsetOp = MID.mayLoad() ? MI->getOperand(2) in processAddUses()
416 const MCInstrDesc &MID = UseMI->getDesc(); in updateAddUses() local
418 MachineOperand &BaseOp = MID.mayLoad() ? UseMI->getOperand(1) in updateAddUses()
420 MachineOperand &OffsetOp = MID.mayLoad() ? UseMI->getOperand(2) in updateAddUses()
[all …]
DHexagonInstrInfo.cpp2206 const MCInstrDesc &MID = MI.getDesc(); in isExtendable() local
2207 const uint64_t F = MID.TSFlags; in isExtendable()
/freebsd-12-stable/sys/gnu/dts/arm/
Dwm8650-mid.dts3 * wm8650-mid.dts - Device tree file for Wondermedia WM8650-MID Tablet
12 model = "Wondermedia WM8650-MID Tablet";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
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-12-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
DModuleDepCollector.cpp94 for (const ModuleID &MID : Modules) { in collectPCMAndModuleMapPaths() local
95 if (!AlreadyAdded.insert(MID.ModuleName + MID.ContextHash).second) in collectPCMAndModuleMapPaths()
97 const ModuleDeps &M = LookupModuleDeps(MID); in collectPCMAndModuleMapPaths()
100 PCMPaths.push_back(LookupPCMPath(MID).str()); in collectPCMAndModuleMapPaths()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
DModuleDepCollector.h64 std::size_t operator()(const ModuleID &MID) const { in operator()
65 return llvm::hash_combine(MID.ModuleName, MID.ContextHash); in operator()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DDFAPacketizer.h79 bool canReserveResources(const MCInstrDesc *MID);
83 void reserveResources(const MCInstrDesc *MID);
DMachinePipeliner.h462 bool canReserveResources(const MCInstrDesc *MID) const;
466 void reserveResources(const MCInstrDesc *MID);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARC/
DARCInstrInfo.cpp413 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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DModule.cpp74 Module::Module(StringRef MID, LLVMContext &C) in Module() argument
76 Materializer(), ModuleID(std::string(MID)), in Module()
77 SourceFileName(std::string(MID)), DL("") { in Module()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dgeo105 0 string $@MID@$ elog journal entry
/freebsd-12-stable/sys/sparc64/sparc64/
Dmp_locore.S282 lduw [PCPU(MID)], %g2
Dmp_exception.S173 lduw [PCPU(MID)], %g2
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp717 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(), in processLoop() local
721 for (auto &InstDep : MID) { in processLoop()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
DASTUnit.cpp178 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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
DLLParser.cpp711 unsigned MID = 0; in parseMDNodeID() local
712 if (parseUInt32(MID)) in parseMDNodeID()
716 if (NumberedMetadata.count(MID)) { in parseMDNodeID()
717 Result = NumberedMetadata[MID]; in parseMDNodeID()
722 auto &FwdRef = ForwardRefMDNodes[MID]; in parseMDNodeID()
726 NumberedMetadata[MID].reset(Result); in parseMDNodeID()
/freebsd-12-stable/sys/contrib/dev/acpica/
Dchanges.txt5215 1) The MTMR table (MID Timer Table)
/freebsd-12-stable/crypto/heimdal/lib/wind/
DUnicodeData.txt719 02E7;MODIFIER LETTER MID TONE BAR;Sk;0;ON;;;;;N;;;;;
DNormalizationTest.txt6416 BBFF;BBFF;1106 1175 11AE;BBFF;1106 1175 11AE; # (믿; 믿; 믿; 믿; 믿; ) HANGUL SYLLABLE MID