Home | History | Annotate | Download | only in compiler

Lines Matching full:branch

416       // Assemble a branch after this instruction.
422 // redundant branch.
433 BranchInfo branch;
434 branch.condition = condition;
435 branch.true_label = GetLabel(true_rpo);
436 branch.false_label = GetLabel(false_rpo);
437 branch.fallthru = IsNextInAssemblyOrder(false_rpo);
438 // Assemble architecture-specific branch.
439 AssembleArchBranch(instr, &branch);
449 BranchInfo branch;
450 branch.condition = condition;
451 branch.true_label = exit->label();
452 branch.false_label = &continue_label;
453 branch.fallthru = true;
454 // Assemble architecture-specific branch.
455 AssembleArchBranch(instr, &branch);