Lines Matching refs:jump_destination
214 void FixJump(int jump_source, int jump_destination);
706 int jump_destination = jump_edge_iter->second;
708 jump_edges_mapped_.emplace(Length(), jump_destination);
712 auto jump_count_iter = jump_usage_counts_.find(jump_destination);
731 int jump_destination = jump_edge_iter->second;
735 auto jump_count_iter = jump_usage_counts_.find(jump_destination);
771 int jump_destination = jump_iter->second;
772 if (jump_destination > start_pc && jump_destination < preserve_from) {
773 preserve_from = jump_destination;
839 int jump_destination = jump_edge.second;
841 jump_edges_.emplace(jump_source, jump_destination);
842 jump_usage_counts_[jump_destination]++;
855 int jump_destination = jump_edge.second;
864 FixJump(jump_source, jump_destination);
871 int jump_destination = jump_edge.second;
873 FixJump(jump_source, jump_destination);
877 void RegExpBytecodePeephole::FixJump(int jump_source, int jump_destination) {
879 jump_destination +
880 (--jump_destination_fixups_.upper_bound(jump_destination))->second;
890 if (jump_destination != fixed_jump_destination) {