/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/ |
MaximumSpanningTree.h | 25 /// MaximumSpanningTree - A MST implementation. 60 MaxSpanTree MST; 91 // the edge to the MST. 92 MST.push_back(e); 98 return MST.begin(); 102 return MST.end();
|
/external/llvm/lib/Transforms/Instrumentation/ |
MaximumSpanningTree.h | 25 /// MaximumSpanningTree - A MST implementation. 36 MaxSpanTree MST; 94 // the edge to the MST. 95 MST.push_back(e); 101 return MST.begin(); 105 return MST.end();
|
PGOInstrumentation.cpp | 1 //===-- PGOInstrumentation.cpp - MST-based PGO Instrumentation ------------===// 47 // The MST implementation is in Class CFGMST (CFGMST.h). 199 /// \brief An MST based instrumentation for PGO 201 /// Implements a Minimum Spanning Tree (MST) based instrumentation for PGO 249 CFGMST<Edge, BBInfo> MST; 256 BBInfo &getBBInfo(const BasicBlock *BB) const { return MST.getBBInfo(BB); } 260 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " + 267 : F(Func), FunctionHash(0), MST(F, BPI, BFI) { 272 NumOfPGOBB += MST.BBInfos.size(); 273 for (auto &E : MST.AllEdges) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
MaximumSpanningTree.h | 25 /// MaximumSpanningTree - A MST implementation. 36 MaxSpanTree MST; 94 // the edge to the MST. 95 MST.push_back(e); 101 return MST.begin(); 105 return MST.end();
|
PGOInstrumentation.cpp | 1 //===- PGOInstrumentation.cpp - MST-based PGO Instrumentation -------------===// 47 // The MST implementation is in Class CFGMST (CFGMST.h). 452 /// An MST based instrumentation for PGO 454 /// Implements a Minimum Spanning Tree (MST) based instrumentation for PGO 512 CFGMST<Edge, BBInfo> MST; 519 BBInfo &getBBInfo(const BasicBlock *BB) const { return MST.getBBInfo(BB); } 522 BBInfo *findBBInfo(const BasicBlock *BB) const { return MST.findBBInfo(BB); } 526 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " + 536 SIVisitor(Func), MIVisitor(Func), MST(F, BPI, BFI) { 551 NumOfPGOBB += MST.BBInfos.size() [all...] |
/device/linaro/bootloader/edk2/Omap35xxPkg/Include/Omap3530/ |
Omap3530I2c.h | 46 #define MST BIT10
|
/external/llvm/lib/CodeGen/ |
MIRPrinter.cpp | 83 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, 87 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, 91 ModuleSlotTracker &MST, 102 ModuleSlotTracker &MST; 107 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, 110 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), 180 ModuleSlotTracker MST(MF.getFunction()->getParent()); 181 MST.incorporateFunction(*MF.getFunction()); 182 convert(MST, YamlMF.FrameInfo, *MF.getFrameInfo()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
MIRPrinter.cpp | 123 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI, 127 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI, 130 const MachineFunction &MF, ModuleSlotTracker &MST); 140 ModuleSlotTracker &MST; 150 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST, 153 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds), 209 ModuleSlotTracker MST(MF.getFunction().getParent()); 210 MST.incorporateFunction(MF.getFunction()); 211 convert(MST, YamlMF.FrameInfo, MF.getFrameInfo()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | 549 const MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N); 550 ID.AddInteger(MST->getMemoryVT().getRawBits()); 551 ID.AddInteger(MST->getRawSubclassData()); 552 ID.AddInteger(MST->getPointerInfo().getAddrSpace()); [all...] |
LegalizeVectorTypes.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorTypes.cpp | [all...] |
/external/llvm/lib/IR/ |
Verifier.cpp | 89 Optional<ModuleSlotTracker> MST; 115 V->print(*OS, *MST); 118 V->printAsOperand(*OS, true, *MST); 129 MD->print(*OS, *MST, M); 140 NMD->print(*OS, *MST); 261 MST.emplace(NewM); 294 BB.printAsOperand(*OS, true, *MST); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
Verifier.cpp | 123 ModuleSlotTracker MST; 135 : OS(OS), M(M), MST(&M), DL(M.getDataLayout()), Context(M.getContext()) {} 146 V->print(*OS, MST); 149 V->printAsOperand(*OS, true, MST); 161 MD->print(*OS, MST, &M); 172 NMD->print(*OS, MST); 341 BB.printAsOperand(*OS, true, MST); [all...] |