| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MIRPrinter.cpp | 127 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, 131 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, 134 const MachineFunction &MF, ModuleSlotTracker &MST); 137 ModuleSlotTracker &MST); 147 ModuleSlotTracker &MST; member in llvm::MIPrinter 157 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, in MIPrinter() argument 160 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), in MIPrinter() 218 ModuleSlotTracker MST(MF.getFunction().getParent()); in print() local 219 MST.incorporateFunction(MF.getFunction()); in print() 220 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()); in print() [all …]
|
| H A D | MachineOperand.cpp | 452 ModuleSlotTracker &MST) { in printIRBlockReference() argument 460 if (F == MST.getCurrentFunction()) { in printIRBlockReference() 461 Slot = MST.getLocalSlot(&BB); in printIRBlockReference() 734 void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument 811 getCImm()->printAsOperand(OS, /*PrintType=*/true, MST); in print() 814 getFPImm()->printAsOperand(OS, /*PrintType=*/true, MST); in print() 846 getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST); in print() 863 MST); in print() 865 printIRBlockReference(OS, *getBlockAddress()->getBasicBlock(), MST); in print() 915 getMetadata()->printAsOperand(OS, MST); in print() [all …]
|
| H A D | MachineInstr.cpp | 1589 ModuleSlotTracker MST(M); in print() local 1591 MST.incorporateFunction(*F); in print() 1592 print(OS, MST, IsStandalone, SkipOpers, SkipDebugLoc, AddNewLine, TII); in print() 1595 void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument 1631 MO.print(OS, MST, TypeToPrint, StartOp, /*PrintDef=*/false, IsStandalone, in print() 1688 getOperand(OpIdx).print(OS, MST, TypeToPrint, OpIdx, /*PrintDef=*/true, IsStandalone, in print() 1727 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1738 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1776 MO.print(OS, MST, TypeToPrint, i, /*PrintDef=*/true, IsStandalone, in print() 1805 HeapAllocMarker->printAsOperand(OS, MST); in print() [all …]
|
| H A D | MachineBasicBlock.cpp | 343 ModuleSlotTracker MST(M); in print() local 344 MST.incorporateFunction(F); in print() 345 print(OS, MST, Indexes, IsStandalone); in print() 348 void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument 361 printName(OS, PrintNameIr | PrintNameAttributes, &MST); in print() 442 MI.print(OS, MST, IsStandalone, /*SkipOpers=*/false, /*SkipDebugLoc=*/false, in print()
|
| H A D | MachineFunction.cpp | 556 ModuleSlotTracker MST(getFunction().getParent()); in print() local 557 MST.incorporateFunction(getFunction()); in print() 561 BB.print(OS, MST, Indexes, /*IsStandalone=*/true); in print()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | MaximumSpanningTree.h | 35 MaxSpanTree MST; variable 93 MST.push_back(e); in MaximumSpanningTree() 99 return MST.begin(); in begin() 103 return MST.end(); in end()
|
| H A D | GCOVProfiling.cpp | 756 static BasicBlock *getInstrBB(CFGMST<Edge, BBInfo> &MST, Edge &E, in getInstrBB() argument 793 MST.addEdge(SrcBB, InstrBB, 0); in getInstrBB() 794 MST.addEdge(InstrBB, DestBB, 0).InMST = true; in getInstrBB() 801 static void dumpEdges(CFGMST<Edge, BBInfo> &MST, GCOVFunction &GF) { in dumpEdges() argument 803 for (auto &E : make_pointee_range(MST.AllEdges)) { in dumpEdges() 865 CFGMST<Edge, BBInfo> MST(F, /*InstrumentFuncEntry_=*/false, BPI, BFI); in emitProfileNotes() local 868 for (size_t I : llvm::seq<size_t>(0, MST.AllEdges.size())) { in emitProfileNotes() 869 auto &E = *MST.AllEdges[I]; in emitProfileNotes() 874 E.Place = getInstrBB(MST, E, ExecBlocks); in emitProfileNotes() 884 llvm::erase_if(MST.AllEdges, [](std::unique_ptr<Edge> &E) { in emitProfileNotes() [all …]
|
| H A D | PGOInstrumentation.cpp | 586 CFGMST<Edge, BBInfo> MST; member in __anon333165960211::FuncPGOInstrumentation 597 BBInfo &getBBInfo(const BasicBlock *BB) const { return MST.getBBInfo(BB); } in getBBInfo() 600 BBInfo *findBBInfo(const BasicBlock *BB) const { return MST.findBBInfo(BB); } in findBBInfo() 604 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " + in dumpInfo() 616 MST(F, InstrumentFuncEntry, BPI, BFI) { in FuncPGOInstrumentation() 623 NumOfPGOBB += MST.BBInfos.size(); in FuncPGOInstrumentation() 628 NumOfCSPGOBB += MST.BBInfos.size(); in FuncPGOInstrumentation() 637 for (auto &E : MST.AllEdges) { in FuncPGOInstrumentation() 680 (uint64_t)MST.AllEdges.size() << 32 | JC.getCRC(); in computeCFGHash() 691 updateJCH((uint64_t)MST.AllEdges.size()); in computeCFGHash() [all …]
|
| /netbsd-src/external/historical/nawk/dist/testdir/ |
| H A D | funstack.in | 6 %%% time = "08:21:19 MST", 399 bibdate = "Tue Mar 25 13:26:09 MST 1997", 420 bibdate = "Tue Mar 25 13:26:09 MST 1997", 439 bibdate = "Tue Mar 25 13:26:09 MST 1997", 457 bibdate = "Tue Mar 25 13:26:09 MST 1997", 476 bibdate = "Tue Mar 25 13:26:09 MST 1997", 496 bibdate = "Tue Mar 25 13:26:09 MST 1997", 515 bibdate = "Tue Mar 25 13:26:09 MST 1997", 533 bibdate = "Tue Mar 25 13:26:09 MST 1997", 551 bibdate = "Tue Mar 25 13:26:09 MST 1997", [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | MIRFormatter.h | 58 printCustomPseudoSourceValue(raw_ostream &OS, ModuleSlotTracker &MST, in printCustomPseudoSourceValue() argument 75 ModuleSlotTracker &MST);
|
| H A D | MachineMemOperand.h | 296 void print(raw_ostream &OS, ModuleSlotTracker &MST,
|
| H A D | MachineOperand.h | 302 void print(raw_ostream &os, ModuleSlotTracker &MST, LLT TypeToPrint,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 4556 void NamedMDNode::print(raw_ostream &ROS, ModuleSlotTracker &MST, in print() argument 4560 if (auto *ST = MST.getMachine()) in print() 4630 ModuleSlotTracker MST(getModuleFromVal(this), ShouldInitializeAllMetadata); in print() local 4631 print(ROS, MST, IsForDebug); in print() 4634 void Value::print(raw_ostream &ROS, ModuleSlotTracker &MST, in print() argument 4639 MST.getMachine() ? *MST.getMachine() : EmptySlotTable; in print() 4642 MST.incorporateFunction(*F); in print() 4662 V->getMetadata()->print(ROS, MST, getModuleFromVal(V)); in print() 4667 WriteConstantInternal(OS, C, TypePrinter, MST.getMachine(), nullptr); in print() 4669 this->printAsOperand(OS, /* PrintType */ true, MST); in print() [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() 379 BB.printAsOperand(*OS, true, MST); in verify()
|
| /netbsd-src/external/public-domain/tz/dist/ |
| 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 | 127 CA +4906-11631 America/Creston MST - BC (Creston) 128 CA +5546-12014 America/Dawson_Creek MST - BC (Dawson Cr, Ft St John) 129 CA +5848-12242 America/Fort_Nelson MST - BC (Ft Nelson) 130 CA +6043-13503 America/Whitehorse MST - Yukon (east) 131 CA +6404-13925 America/Dawson MST - Yukon (west) 421 US +332654-1120424 America/Phoenix MST - AZ (except Navajo)
|
| H A D | zone1970.tab | 118 CA +5546-12014 America/Dawson_Creek MST - BC (Dawson Cr, Ft St John) 119 CA +5848-12242 America/Fort_Nelson MST - BC (Ft Nelson) 120 CA +6043-13503 America/Whitehorse MST - Yukon (east) 121 CA +6404-13925 America/Dawson MST - Yukon (west) 333 US,CA +332654-1120424 America/Phoenix MST - AZ (most areas), Creston BC
|
| H A D | northamerica | 788 # Arizona mostly uses MST. 812 -7:00 - MST 1944 Apr 1 0:01 814 -7:00 - MST 1967 816 -7:00 - MST 840 -7:00 - MST 1974 Feb 3 2:00 1119 # previously split between MST and CST) ... 1990-10 1121 # Oliver County, ND (from MST to CST) ... 1992-10 1122 # West Wendover, NV (from PST TO MST) ... 1999-10 1271 # -7 HNR MST HAP PDT 1806 # Some western towns (e.g. Swift Current) switched from MST/MD [all...] |
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 347 static void mapValueToSlot(const Value *V, ModuleSlotTracker &MST, in mapValueToSlot() argument 349 int Slot = MST.getLocalSlot(V); in mapValueToSlot() 358 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2Values() local 359 MST.incorporateFunction(F); in initSlots2Values() 361 mapValueToSlot(&Arg, MST, Slots2Values); in initSlots2Values() 363 mapValueToSlot(&BB, MST, Slots2Values); in initSlots2Values() 365 mapValueToSlot(&I, MST, Slots2Values); in initSlots2Values() 3166 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2BasicBlocks() local 3167 MST.incorporateFunction(F); in initSlots2BasicBlocks() 3171 int Slot = MST.getLocalSlot(&BB); in initSlots2BasicBlocks()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGDumper.cpp | 515 ModuleSlotTracker MST(M); in printMemOperand() local 517 MST.incorporateFunction(MF->getFunction()); in printMemOperand() 519 MMO.print(OS, MST, SSNs, Ctx, MFI, TII); in printMemOperand()
|
| H A D | LegalizeVectorTypes.cpp | 4895 MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N); in WidenVecOp_MSTORE() local 4896 SDValue Mask = MST->getMask(); in WidenVecOp_MSTORE() 4898 SDValue StVal = MST->getValue(); in WidenVecOp_MSTORE() 4926 return DAG.getMaskedStore(MST->getChain(), dl, StVal, MST->getBasePtr(), in WidenVecOp_MSTORE() 4927 MST->getOffset(), Mask, MST->getMemoryVT(), in WidenVecOp_MSTORE() 4928 MST->getMemOperand(), MST->getAddressingMode(), in WidenVecOp_MSTORE() 4929 false, MST->isCompressingStore()); in WidenVecOp_MSTORE()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Value.h | 238 void print(raw_ostream &O, ModuleSlotTracker &MST, 252 ModuleSlotTracker &MST) const;
|
| H A D | Metadata.h | 126 void print(raw_ostream &OS, ModuleSlotTracker &MST, const Module *M = nullptr, 138 void printAsOperand(raw_ostream &OS, ModuleSlotTracker &MST, 1465 void print(raw_ostream &ROS, ModuleSlotTracker &MST,
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/ |
| H A D | TODO | 70 12. drm_modeset_lock in MST should no longer be needed in recent kernels
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/ |
| H A D | Kconfig | 101 bool "Enable refcount backtrace history in the DP MST helpers" 108 Enables debug tracing for topology refs in DRM's DP MST helpers. A
|