Lines Matching defs:true_label
1258 void CodeAssembler::GotoIf(TNode<IntegralT> condition, Label* true_label) {
1260 Branch(condition, true_label, &false_label);
1265 Label true_label(this);
1266 Branch(condition, &true_label, false_label);
1267 Bind(&true_label);
1270 void CodeAssembler::Branch(TNode<IntegralT> condition, Label* true_label,
1274 if ((true_label->is_used() || true_label->is_bound()) &&
1276 return Goto(constant ? true_label : false_label);
1279 true_label->MergeVariables();
1281 return raw_assembler()->Branch(condition, true_label->label_,
1303 void CodeAssembler::Branch(TNode<BoolT> condition, Label* true_label,
1307 return constant ? Goto(true_label) : false_body();
1311 Branch(condition, true_label, &vfalse);