Lines Matching refs:false_label
1367 Label false_label(this); in GotoIf() local
1368 Branch(condition, true_label, &false_label); in GotoIf()
1369 Bind(&false_label); in GotoIf()
1373 Label* false_label) { in GotoIfNot() argument
1375 Branch(condition, &true_label, false_label); in GotoIfNot()
1380 Label* false_label) { in Branch() argument
1384 (false_label->is_used() || false_label->is_bound())) { in Branch()
1385 return Goto(constant ? true_label : false_label); in Branch()
1389 false_label->MergeVariables(); in Branch()
1391 false_label->label_); in Branch()
1427 Label* false_label) { in Branch() argument
1430 return constant ? true_body() : Goto(false_label); in Branch()
1434 Branch(condition, &vtrue, false_label); in Branch()