Home
last modified time | relevance | path

Searched refs:MST (Results 1 – 25 of 45) sorted by relevance

12

/external/llvm/lib/CodeGen/
DMIRPrinter.cpp83 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
87 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
91 ModuleSlotTracker &MST,
102 ModuleSlotTracker &MST; member in llvm::MIPrinter
107 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, in MIPrinter() argument
110 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), in MIPrinter()
180 ModuleSlotTracker MST(MF.getFunction()->getParent()); in print() local
181 MST.incorporateFunction(*MF.getFunction()); in print()
182 convert(MST, YamlMF.FrameInfo, *MF.getFrameInfo()); in print()
183 convertStackObjects(YamlMF, *MF.getFrameInfo(), MF.getMMI(), MST, in print()
[all …]
DMachineInstr.cpp313 void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument
408 getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST); in print()
419 getBlockAddress()->printAsOperand(OS, /*PrintType=*/false, MST); in print()
448 getMetadata()->printAsOperand(OS, MST); in print()
548 void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST) const { in print()
564 V->printAsOperand(OS, /*PrintType=*/false, MST); in print()
592 TBAAInfo->getOperand(0)->printAsOperand(OS, MST); in print()
603 ScopeInfo->getOperand(i)->printAsOperand(OS, MST); in print()
617 NoAliasInfo->getOperand(i)->printAsOperand(OS, MST); in print()
1675 ModuleSlotTracker MST(M); in print() local
[all …]
DMachineBasicBlock.cpp243 ModuleSlotTracker MST(M); in print() local
244 print(OS, MST, Indexes); in print()
247 void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, in print() argument
264 LBB->printAsOperand(OS, /*PrintType=*/false, MST); in print()
304 I.print(OS, MST); in print()
DMachineFunction.cpp443 ModuleSlotTracker MST(getFunction()->getParent()); in print() local
444 MST.incorporateFunction(*getFunction()); in print()
447 BB.print(OS, MST, Indexes); in print()
/external/llvm/unittests/IR/
DValueTest.cpp135 ModuleSlotTracker MST(M.get()); in TEST() local
148 INST->print(OS, MST); \ in TEST()
167 INST->printAsOperand(OS, TYPE, MST); \ in TEST()
205 ModuleSlotTracker MST(M.get()); in TEST() local
206 MST.incorporateFunction(*F); in TEST()
207 EXPECT_EQ(MST.getLocalSlot(I0), 0); in TEST()
208 EXPECT_EQ(MST.getLocalSlot(I1), 1); in TEST()
209 EXPECT_EQ(MST.getLocalSlot(&EntryBB), -1); in TEST()
210 EXPECT_EQ(MST.getLocalSlot(BB2), 2); in TEST()
233 ModuleSlotTracker MST(M.get()); in TEST() local
[all …]
DMetadataTest.cpp363 ModuleSlotTracker MST(&M); in TEST_F() local
364 EXPECT_PRINTER_EQ("!0 = distinct !{}", N0->print(OS, MST)); in TEST_F()
365 EXPECT_PRINTER_EQ("!1 = distinct !{}", N1->print(OS, MST)); in TEST_F()
395 ModuleSlotTracker MST(&M); in TEST_F() local
396 EXPECT_PRINTER_EQ("!0 = distinct !{}", MAV0->print(OS, MST)); in TEST_F()
397 EXPECT_PRINTER_EQ("!1 = distinct !{}", MAV1->print(OS, MST)); in TEST_F()
398 EXPECT_PRINTER_EQ("!0", MAV0->printAsOperand(OS, false, MST)); in TEST_F()
399 EXPECT_PRINTER_EQ("!1", MAV1->printAsOperand(OS, false, MST)); in TEST_F()
400 EXPECT_PRINTER_EQ("metadata !0", MAV0->printAsOperand(OS, true, MST)); in TEST_F()
401 EXPECT_PRINTER_EQ("metadata !1", MAV1->printAsOperand(OS, true, MST)); in TEST_F()
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DOptimalEdgeProfiling.cpp142 MaximumSpanningTree<BasicBlock> MST(EdgeVector); in runOnModule() local
143 std::stable_sort(MST.begin(), MST.end()); in runOnModule()
151 if (!std::binary_search(MST.begin(), MST.end(), edge)) { in runOnModule()
174 if (!std::binary_search(MST.begin(), MST.end(), edge)) { in runOnModule()
185 if (!std::binary_search(MST.begin(), MST.end(), edge)) { in runOnModule()
DMaximumSpanningTree.h60 MaxSpanTree MST; variable
92 MST.push_back(e); in MaximumSpanningTree()
98 return MST.begin(); in begin()
102 return MST.end(); in end()
/external/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h36 MaxSpanTree MST; variable
95 MST.push_back(e); in MaximumSpanningTree()
101 return MST.begin(); in begin()
105 return MST.end(); in end()
DPGOInstrumentation.cpp249 CFGMST<Edge, BBInfo> MST; member in __anon10d6878d0211::FuncPGOInstrumentation
256 BBInfo &getBBInfo(const BasicBlock *BB) const { return MST.getBBInfo(BB); } in getBBInfo()
260 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " + in dumpInfo()
267 : F(Func), FunctionHash(0), MST(F, BPI, BFI) { in FuncPGOInstrumentation()
272 NumOfPGOBB += MST.BBInfos.size(); in FuncPGOInstrumentation()
273 for (auto &E : MST.AllEdges) { in FuncPGOInstrumentation()
302 FunctionHash = (uint64_t)MST.AllEdges.size() << 32 | JC.getCRC(); in computeCFGHash()
348 for (auto &E : FuncInfo.MST.AllEdges) { in instrumentOneFunc()
355 for (auto &E : FuncInfo.MST.AllEdges) { in instrumentOneFunc()
540 for (auto &E : FuncInfo.MST.AllEdges) in setInstrumentedCounts()
[all …]
/external/icu/icu4c/source/data/zone/
Den_MO.txt14 sg{"MST"}
15 ss{"MST"}
Den_CA.txt30 ss{"MST"}
Des_US.txt45 ss{"MST"}
DtzdbNames.txt72 ss{"MST"}
471 ss{"MST"}
/external/llvm/lib/IR/
DAsmWriter.cpp3322 void NamedMDNode::print(raw_ostream &ROS, ModuleSlotTracker &MST, in print() argument
3326 if (auto *ST = MST.getMachine()) in print()
3396 ModuleSlotTracker MST(getModuleFromVal(this), ShouldInitializeAllMetadata); in print() local
3397 print(ROS, MST, IsForDebug); in print()
3400 void Value::print(raw_ostream &ROS, ModuleSlotTracker &MST, in print() argument
3405 MST.getMachine() ? *MST.getMachine() : EmptySlotTable; in print()
3408 MST.incorporateFunction(*F); in print()
3428 V->getMetadata()->print(ROS, MST, getModuleFromVal(V)); in print()
3433 WriteConstantInternal(OS, C, TypePrinter, MST.getMachine(), nullptr); in print()
3435 this->printAsOperand(OS, /* PrintType */ true, MST); in print()
[all …]
/external/libmicrohttpd/
DNEWS1 Tue Jan 9 20:52:48 MST 2007
DChangeLog1325 Mon Mar 2 23:44:08 MST 2009
1330 Wed Feb 18 08:13:56 MST 2009
1333 Mon Feb 16 21:12:21 MST 2009
1337 Sun Feb 8 21:15:30 MST 2009
1340 Thu Feb 5 22:43:45 MST 2009
1354 Thu Feb 5 20:21:08 MST 2009
1358 Mon Feb 2 22:21:48 MST 2009
1362 Fri Jan 23 16:57:21 MST 2009
1366 Fri Dec 26 23:08:04 MST 2008
1371 Sat Dec 6 18:36:17 MST 2008
[all …]
/external/icu/icu4c/source/test/testdata/
Dte.txt148 "MST",
158 "MST",
/external/icu/icu4c/source/tools/tzcode/
Dicuzones32 Zone SystemV/MST7 -7:00 - MST
64 ####Link America/Denver MST # Defined as -07:00
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1929 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2BasicBlocks() local
1930 MST.incorporateFunction(F); in initSlots2BasicBlocks()
1934 int Slot = MST.getLocalSlot(&BB); in initSlots2BasicBlocks()
1964 static void mapValueToSlot(const Value *V, ModuleSlotTracker &MST, in mapValueToSlot() argument
1966 int Slot = MST.getLocalSlot(V); in mapValueToSlot()
1975 ModuleSlotTracker MST(F.getParent(), /*ShouldInitializeAllMetadata=*/false); in initSlots2Values() local
1976 MST.incorporateFunction(F); in initSlots2Values()
1978 mapValueToSlot(&Arg, MST, Slots2Values); in initSlots2Values()
1980 mapValueToSlot(&BB, MST, Slots2Values); in initSlots2Values()
1982 mapValueToSlot(&I, MST, Slots2Values); in initSlots2Values()
/external/llvm/include/llvm/CodeGen/
DMachineMemOperand.h211 void print(raw_ostream &OS, ModuleSlotTracker &MST) const;
/external/llvm/include/llvm/IR/
DValue.h209 void print(raw_ostream &O, ModuleSlotTracker &MST,
223 ModuleSlotTracker &MST) const;
DMetadata.h107 void print(raw_ostream &OS, ModuleSlotTracker &MST, const Module *M = nullptr,
119 void printAsOperand(raw_ostream &OS, ModuleSlotTracker &MST,
1318 void print(raw_ostream &ROS, ModuleSlotTracker &MST,
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTimeZoneAliases.txt94 MST ; America/Phoenix
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneAliases.txt94 MST ; America/Phoenix

12