/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | MIRPrinter.cpp | 137 ModuleSlotTracker &MST; member in llvm::MIPrinter 150 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), in MIPrinter() 219 MachineModuleSlotTracker MST(&MF); in print() local 222 convertStackObjects(YamlMF, MF, MST); in print() 223 convertCallSiteObjects(YamlMF, MF, MST); in print() 299 Metas[i]->printAsOperand(StrOS, MST); in printStackObjectDbgInfo() 547 MST.collectMachineMDNodes(MDList); in convertMachineMetadataNodes() 665 &MST); in print() 827 PCSections->printAsOperand(OS, MST); in print() 849 DL->printAsOperand(OS, MST); in print() [all …]
|
H A D | MachineOperand.cpp | 487 ModuleSlotTracker &MST) { in printIRBlockReference() argument 495 if (F == MST.getCurrentFunction()) { in printIRBlockReference() 496 Slot = MST.getLocalSlot(&BB); in printIRBlockReference() 907 MST); in print() 959 getMetadata()->printAsOperand(OS, MST); in print() 1183 MIRFormatter::printIRValue(OS, *Val, MST); in print() 1209 OS, /*PrintType=*/false, MST); in print() 1242 AAInfo.TBAA->printAsOperand(OS, MST); in print() 1246 AAInfo.Scope->printAsOperand(OS, MST); in print() 1250 AAInfo.NoAlias->printAsOperand(OS, MST); in print() [all …]
|
H A D | MachineInstr.cpp | 1588 ModuleSlotTracker MST(M); in print() local 1590 MST.incorporateFunction(*F); in print() 1591 print(OS, MST, IsStandalone, SkipOpers, SkipDebugLoc, AddNewLine, TII); in print() 1594 void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument 1726 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1737 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1775 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1804 HeapAllocMarker->printAsOperand(OS, MST); in print() 1812 PCSections->printAsOperand(OS, MST); in print() 1831 DL->printAsOperand(OS, MST); in print() [all …]
|
H A D | MachineBasicBlock.cpp | 345 ModuleSlotTracker MST(M); in print() local 346 MST.incorporateFunction(F); in print() 347 print(OS, MST, Indexes, IsStandalone); in print() 350 void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument 363 printName(OS, PrintNameIr | PrintNameAttributes, &MST); in print() 444 MI.print(OS, MST, IsStandalone, /*SkipOpers=*/false, /*SkipDebugLoc=*/false, in print()
|
H A D | MachineFunction.cpp | 616 ModuleSlotTracker MST(getFunction().getParent()); in print() local 617 MST.incorporateFunction(getFunction()); in print() 621 BB.print(OS, MST, Indexes, /*IsStandalone=*/true); in print()
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | SSAContext.cpp | 99 ModuleSlotTracker MST{BB->getParent()->getParent(), false}; in print() local 100 MST.incorporateFunction(*BB->getParent()); in print() 101 Out << MST.getLocalSlot(BB); in print()
|
H A D | AsmWriter.cpp | 4632 if (auto *ST = MST.getMachine()) in print() 4703 print(ROS, MST, IsForDebug); in print() 4711 MST.getMachine() ? *MST.getMachine() : EmptySlotTable; in print() 4714 MST.incorporateFunction(*F); in print() 4768 TypePrinting TypePrinter(MST.getModule()); in printAsOperandImpl() 4774 AsmWriterContext WriterCtx(&TypePrinter, MST.getMachine(), MST.getModule()); in printAsOperandImpl() 4789 ModuleSlotTracker MST(Machine, M); in printAsOperand() local 4796 if (printWithoutType(*this, O, MST.getMachine(), MST.getModule())) in printAsOperand() 4885 ModuleSlotTracker MST(M, isa<MDNode>(this)); in printAsOperand() local 4896 ModuleSlotTracker MST(M, isa<MDNode>(this)); in print() local [all …]
|
H A D | Verifier.cpp | 128 ModuleSlotTracker MST; member 141 : OS(OS), M(M), MST(&M), TT(M.getTargetTriple()), DL(M.getDataLayout()), in VerifierSupport() 156 V.print(*OS, MST); in Write() 159 V.printAsOperand(*OS, true, MST); in Write() 167 MD->print(*OS, MST, &M); in Write() 178 NMD->print(*OS, MST); in Write() 385 BB.printAsOperand(*OS, true, MST); in verify()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 743 MST.addEdge(SrcBB, InstrBB, 0); in getInstrBB() 744 MST.addEdge(InstrBB, DestBB, 0).InMST = true; in getInstrBB() 753 for (auto &E : make_pointee_range(MST.AllEdges)) { in dumpEdges() 824 auto &E = *MST.AllEdges[I]; in emitProfileNotes() 829 E.Place = getInstrBB(MST, E, ExecBlocks); in emitProfileNotes() 844 MST.AllEdges.begin(), MST.AllEdges.end(), in emitProfileNotes() 846 MST.AllEdges.begin(); in emitProfileNotes() 848 Edge &E = *MST.AllEdges[I]; in emitProfileNotes() 857 MST.AllEdges.begin(), MST.AllEdges.begin() + Measured, in emitProfileNotes() 875 LLVM_DEBUG(dumpEdges(MST, Func)); in emitProfileNotes() [all …]
|
H A D | PGOInstrumentation.cpp | 535 CFGMST<Edge, BBInfo> MST; member in __anon080c85980211::FuncPGOInstrumentation 565 MST(F, InstrumentFuncEntry, BPI, BFI) { in FuncPGOInstrumentation() 572 NumOfPGOBB += MST.BBInfos.size(); in FuncPGOInstrumentation() 577 NumOfCSPGOBB += MST.BBInfos.size(); in FuncPGOInstrumentation() 586 for (auto &E : MST.AllEdges) { in FuncPGOInstrumentation() 640 updateJCH((uint64_t)MST.AllEdges.size()); in computeCFGHash() 735 EdgeList.reserve(MST.AllEdges.size()); in getInstrumentBBs() 736 for (auto &E : MST.AllEdges) in getInstrumentBBs() 746 for (auto &E : MST.AllEdges) { in getInstrumentBBs() 805 MST.addEdge(SrcBB, InstrBB, 0); in getInstrBB() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | MIRFormatter.h | 56 printCustomPseudoSourceValue(raw_ostream &OS, ModuleSlotTracker &MST, in printCustomPseudoSourceValue() argument 73 ModuleSlotTracker &MST);
|
H A D | MachineMemOperand.h | 332 void print(raw_ostream &OS, ModuleSlotTracker &MST,
|
H A D | MachineOperand.h | 307 void print(raw_ostream &os, ModuleSlotTracker &MST, LLT TypeToPrint,
|
/openbsd/share/zoneinfo/datfiles/ |
H A D | zonenow.tab | 61 # -07 - MST 62 XX +332654-1120424 America/Phoenix Mountain Standard ("MST") - Arizona; western Mexico; Yukon 64 # -07/-06 - MST/MDT (North America DST) 65 XX +394421-1045903 America/Denver Mountain ("MST/MDT") - US & Canada; Mexico near US border
|
H A D | zone.tab | 128 CA +4906-11631 America/Creston MST - BC (Creston) 129 CA +5546-12014 America/Dawson_Creek MST - BC (Dawson Cr, Ft St John) 130 CA +5848-12242 America/Fort_Nelson MST - BC (Ft Nelson) 131 CA +6043-13503 America/Whitehorse MST - Yukon (east) 132 CA +6404-13925 America/Dawson MST - Yukon (west) 422 US +332654-1120424 America/Phoenix MST - AZ (except Navajo)
|
H A D | zone1970.tab | 119 CA +5546-12014 America/Dawson_Creek MST - BC (Dawson Cr, Ft St John) 120 CA +5848-12242 America/Fort_Nelson MST - BC (Ft Nelson) 121 CA +6043-13503 America/Whitehorse MST - Yukon (east) 122 CA +6404-13925 America/Dawson MST - Yukon (west) 334 US,CA +332654-1120424 America/Phoenix MST - AZ (most areas), Creston BC
|
H A D | northamerica | 815 -7:00 - MST 1967 817 -7:00 - MST 1965 -7:00 - MST 1971 -7:00 - MST 1976 -7:00 - MST 2338 -7:00 - MST 2344 -7:00 - MST 2753 -7:00 - MST 1996 2755 -7:00 - MST 2763 -7:00 - MST 1970 [all …]
|
H A D | backward | 107 Link America/Phoenix MST
|
/openbsd/gnu/usr.bin/perl/ext/File-Glob/ |
H A D | Changes | 6 0.90 Tue Dec 17 13:58:32 MST 1996
|
/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | Metadata.h | 125 void print(raw_ostream &OS, ModuleSlotTracker &MST, const Module *M = nullptr, 137 void printAsOperand(raw_ostream &OS, ModuleSlotTracker &MST, 1189 void printTree(raw_ostream &OS, ModuleSlotTracker &MST, 1666 void print(raw_ostream &ROS, ModuleSlotTracker &MST,
|
H A D | Value.h | 237 void print(raw_ostream &O, ModuleSlotTracker &MST, 251 ModuleSlotTracker &MST) const;
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGDumper.cpp | 532 ModuleSlotTracker MST(M); in printMemOperand() local 534 MST.incorporateFunction(MF->getFunction()); in printMemOperand() 536 MMO.print(OS, MST, SSNs, Ctx, MFI, TII); in printMemOperand()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 342 static void mapValueToSlot(const Value *V, ModuleSlotTracker &MST, in mapValueToSlot() argument 344 int Slot = MST.getLocalSlot(V); in mapValueToSlot() 353 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2Values() local 354 MST.incorporateFunction(F); in initSlots2Values() 356 mapValueToSlot(&Arg, MST, Slots2Values); in initSlots2Values() 358 mapValueToSlot(&BB, MST, Slots2Values); in initSlots2Values() 360 mapValueToSlot(&I, MST, Slots2Values); in initSlots2Values() 3505 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2BasicBlocks() local 3506 MST.incorporateFunction(F); in initSlots2BasicBlocks() 3510 int Slot = MST.getLocalSlot(&BB); in initSlots2BasicBlocks()
|
/openbsd/sys/dev/pci/drm/amd/display/ |
H A D | TODO | 70 12. drm_modeset_lock in MST should no longer be needed in recent kernels
|
/openbsd/usr.bin/calendar/calendars/ |
H A D | calendar.openbsd | 89 Sep 26 OpenSSH born, Sunday 11:56 MST, 1999
|