Lines Matching refs:branch
2303 * Check if a conditional branch to "current_branch" with token "token" is
2304 * the branch that keeps the induction loop running (and, conversely, will
2350 HCompareNumericAndBranch* branch = HCompareNumericAndBranch::cast(end);
2352 Token::Value token = branch->token();
2356 if (block == branch->SuccessorAt(0)) {
2357 other_target = branch->SuccessorAt(1);
2359 other_target = branch->SuccessorAt(0);
2361 DCHECK(block == branch->SuccessorAt(1));
2366 data = GetInductionVariableData(branch->left());
2367 HValue* limit = branch->right();
2369 data = GetInductionVariableData(branch->right());
2371 limit = branch->left();