Searched refs:MST (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsReginfo.cpp45 const MipsSubtarget &MST) const
56 if (MST.isABI_O32()) {
65 else if (MST.isABI_N64()) {
H A DMipsReginfo.h25 const MipsSubtarget &MST) const;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h25 /// MaximumSpanningTree - A MST implementation.
36 MaxSpanTree MST; member in class:llvm::MaximumSpanningTree
94 // the edge to the MST.
95 MST.push_back(e);
101 return MST.begin();
105 return MST.end();
H A DOptimalEdgeProfiling.cpp126 // Instrument all of the edges not in MST...
137 // actual MST is returned but the edges _not_ in the MST.
142 MaximumSpanningTree<BasicBlock> MST(EdgeVector);
143 std::stable_sort(MST.begin(), MST.end());
145 // Check if (0,entry) not in the MST. If not, instrument edge
147 // the edge is in the MST the counter is initialised to -1.
151 if (!std::binary_search(MST.begin(), MST
[all...]

Completed in 183 milliseconds