Home
last modified time | relevance | path

Searched defs:PGOEdge (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp492 struct PGOEdge { struct
493 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() argument
504 std::string infoString() const { in infoString()