Searched defs:PGOEdge (Results 1 – 1 of 1) sorted by relevance
492 struct PGOEdge { struct493 BasicBlock *SrcBB;494 BasicBlock *DestBB;495 uint64_t Weight;496 bool InMST = false;497 bool Removed = false;498 bool IsCritical = false;500 PGOEdge(BasicBlock *Src, BasicBlock *Dest, uint64_t W = 1) in PGOEdge() argument504 std::string infoString() const { in infoString()