Searched refs:MID (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/tools/tools/mid/
H A 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-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp57 bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { argument
58 unsigned Action = ItinActions[MID->getSchedClass()];
59 if (MID->getSchedClass() == 0 || Action == 0)
66 void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { argument
67 unsigned Action = ItinActions[MID->getSchedClass()];
68 if (MID->getSchedClass() == 0 || Action == 0)
76 const MCInstrDesc &MID = MI.getDesc(); local
77 return canReserveResources(&MID);
83 const MCInstrDesc &MID = MI.getDesc(); local
84 reserveResources(&MID);
[all...]
H A DMachinePipeliner.cpp2933 bool ResourceManager::canReserveResources(const MCInstrDesc *MID) const {
2940 return DFAResources->canReserveResources(MID);
2942 unsigned InsnClass = MID->getSchedClass();
2947 dbgs() << "isPseduo:" << MID->isPseudo() << "\n";
2974 void ResourceManager::reserveResources(const MCInstrDesc *MID) { argument
2980 return DFAResources->reserveResources(MID);
2982 unsigned InsnClass = MID->getSchedClass();
2987 dbgs() << "isPseduo:" << MID->isPseudo() << "\n";
H A DMachineLICM.cpp1338 const MCInstrDesc &MID = TII->get(NewOpc); local
1340 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI, MF);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h79 bool canReserveResources(const MCInstrDesc *MID);
83 void reserveResources(const MCInstrDesc *MID);
H A DMachinePipeliner.h456 bool canReserveResources(const MCInstrDesc *MID) const;
460 void reserveResources(const MCInstrDesc *MID);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp127 const MCInstrDesc &MID = MI.getDesc(); local
129 if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI))
132 if (MID.mayStore()) {
357 const MCInstrDesc &MID = MI->getDesc(); local
358 if ((!MID.mayLoad() && !MID.mayStore()) ||
363 MachineOperand BaseOp = MID.mayLoad() ? MI->getOperand(1)
369 MachineOperand OffsetOp = MID.mayLoad() ? MI->getOperand(2)
416 const MCInstrDesc &MID local
444 const MCInstrDesc &MID = MI.getDesc(); local
672 const MCInstrDesc &MID = UseMI->getDesc(); local
[all...]
H A DHexagonInstrInfo.cpp2178 const MCInstrDesc &MID = MI.getDesc(); local
2179 const uint64_t F = MID.TSFlags;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.cpp120 const MCInstrDesc &MID = MI->getDesc(); local
122 for (unsigned OpIdx = 0; OpIdx < MID.getNumOperands(); OpIdx++) {
123 const TargetRegisterClass *RC = TII->getRegClass(MID, OpIdx, TRI, MF);
126 if (OpIdx >= MID.getNumDefs() &&
127 MID.getOperandConstraint(OpIdx, MCOI::TIED_TO) != -1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp413 const MCInstrDesc &MID = MI.getDesc(); local
414 const uint64_t F = MID.TSFlags;
419 const MCInstrDesc &MID = MI.getDesc(); local
420 const uint64_t F = MID.TSFlags;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp73 Module::Module(StringRef MID, LLVMContext &C) argument
74 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") {
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dmp_locore.S282 lduw [PCPU(MID)], %g2
H A Dmp_exception.S173 lduw [PCPU(MID)], %g2
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp716 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(),
720 for (auto &InstDep : MID) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp177 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); local
178 if (MainFileID == MID) {
193 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); local
194 if (MainFileID == MID) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp678 unsigned MID = 0; local
679 if (ParseUInt32(MID))
683 if (NumberedMetadata.count(MID)) {
684 Result = NumberedMetadata[MID];
689 auto &FwdRef = ForwardRefMDNodes[MID];
693 NumberedMetadata[MID].reset(Result);

Completed in 345 milliseconds