HomeSort by: relevance | last modified time | path
    Searched defs:MST (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 24 /// MaximumSpanningTree - A MST implementation.
35 MaxSpanTree MST;
92 // the edge to the MST.
93 MST.push_back(e);
99 return MST.begin();
103 return MST.end();
PGOInstrumentation.cpp 1 //===- PGOInstrumentation.cpp - MST-based PGO Instrumentation -------------===//
46 // The MST implementation is in Class CFGMST (CFGMST.h).
516 /// An MST based instrumentation for PGO
518 /// Implements a Minimum Spanning Tree (MST) based instrumentation for PGO
586 CFGMST<Edge, BBInfo> MST;
597 BBInfo &getBBInfo(const BasicBlock *BB) const { return MST.getBBInfo(BB); }
600 BBInfo *findBBInfo(const BasicBlock *BB) const { return MST.findBBInfo(BB); }
604 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " +
616 MST(F, InstrumentFuncEntry, BPI, BFI) {
623 NumOfPGOBB += MST.BBInfos.size()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
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;
157 MIPrinter(raw_ostream &OS, ModuleSlotTracker &MST,
160 : OS(OS), MST(MST), RegisterMaskIds(RegisterMaskIds),
218 ModuleSlotTracker MST(MF.getFunction().getParent());
219 MST.incorporateFunction(MF.getFunction())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 4895 MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N);
4896 SDValue Mask = MST->getMask();
4898 SDValue StVal = MST->getValue();
4926 return DAG.getMaskedStore(MST->getChain(), dl, StVal, MST->getBasePtr(),
4927 MST->getOffset(), Mask, MST->getMemoryVT(),
4928 MST->getMemOperand(), MST->getAddressingMode(),
4929 false, MST->isCompressingStore())
    [all...]
DAGCombiner.cpp 9696 MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N);
9697 SDValue Mask = MST->getMask();
9698 SDValue Chain = MST->getChain();
9708 MST->isUnindexed() && !MST->isCompressingStore() &&
9709 !MST->isTruncatingStore())
9710 return DAG.getStore(MST->getChain(), SDLoc(N), MST->getValue(),
9711 MST->getBasePtr(), MST->getMemOperand())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 128 ModuleSlotTracker MST;
141 : OS(OS), M(M), MST(&M), TT(M.getTargetTriple()), DL(M.getDataLayout()),
156 V.print(*OS, MST);
159 V.printAsOperand(*OS, true, MST);
167 MD->print(*OS, MST, &M);
178 NMD->print(*OS, MST);
379 BB.printAsOperand(*OS, true, MST);

Completed in 72 milliseconds