Lines Matching refs:destination
129 void CfgAssembler::Poke(StackRange destination, StackRange origin,
131 DCHECK_EQ(destination.Size(), origin.Size());
132 DCHECK_LE(destination.end(), origin.begin());
141 destination.begin() + i,
191 Block* destination = instruction.Cast<GotoInstruction>().destination;
192 if (destination == block) break;
193 if (cfg_.end() && *cfg_.end() == destination) break;
194 DCHECK_GT(predecessor_count[destination->id()], 0);
195 if (predecessor_count[destination->id()] != 1) break;
197 DCHECK_GT(destination->instructions().size(), 0);
200 destination->instructions().begin(),
201 destination->instructions().end());
203 --predecessor_count[destination->id()];
204 DCHECK_EQ(predecessor_count[destination->id()], 0);