Lines Matching refs:Jump
195 for (std::pair<Block *, uint64_t> Jump : OutJumps) { in hasOutJump()
196 if (Jump.first == Other) in hasOutJump()
203 for (std::pair<Block *, uint64_t> Jump : InJumps) { in hasInJump()
204 if (Jump.first == Other) in hasInJump()
523 for (std::pair<class Block *, uint64_t> &Jump : Block.OutJumps) { in initialize()
524 class Block *const SuccBlock = Jump.first; in initialize()
529 CurEdge->appendJump(&Block, SuccBlock, Jump.second); in initialize()
533 AllEdges.emplace_back(&Block, SuccBlock, Jump.second); in initialize()
682 for (const std::pair<std::pair<Block *, Block *>, uint64_t> &Jump : Jumps) { in score() local
683 const Block *SrcBlock = Jump.first.first; in score()
684 const Block *DstBlock = Jump.first.second; in score()
686 DstBlock->EstimatedAddr, Jump.second); in score()