Lines Matching refs:true_label
1479 Label* true_label = chunk_->GetAssemblyLabel(true_block); in DoBranch() local
1494 __ Branch(true_label, eq, reg, Operand(at)); in DoBranch()
1507 __ JumpIfSmi(reg, true_label); in DoBranch()
1528 __ Branch(true_label, ge, at, Operand(FIRST_SPEC_OBJECT_TYPE)); in DoBranch()
1537 __ Branch(true_label, ne, at, Operand(zero_reg)); in DoBranch()
1549 __ BranchF(true_label, false_label, ne, dbl_scratch, kDoubleRegZero); in DoBranch()
1702 Label* true_label = chunk_->GetAssemblyLabel(true_block); in DoIsNilAndBranch() local
1704 __ Branch(USE_DELAY_SLOT, true_label, eq, reg, Operand(at)); in DoIsNilAndBranch()
1706 __ Branch(USE_DELAY_SLOT, true_label, eq, reg, Operand(at)); in DoIsNilAndBranch()
1751 Label* true_label = chunk_->GetAssemblyLabel(true_block); in DoIsObjectAndBranch() local
1755 EmitIsObject(reg, temp1, temp2, false_label, true_label); in DoIsObjectAndBranch()
1990 Label* true_label = chunk_->GetAssemblyLabel(true_block); in DoClassOfTestAndBranch() local
1993 EmitClassOfTest(true_label, false_label, class_name, input, temp, temp2); in DoClassOfTestAndBranch()
2011 Label true_label, done; in DoInstanceOf() local
2020 __ Branch(&true_label, eq, result, Operand(zero_reg)); in DoInstanceOf()
2023 __ bind(&true_label); in DoInstanceOf()
4703 Label* true_label = chunk_->GetAssemblyLabel(true_block); in DoTypeofIsAndBranch() local
4709 Condition final_branch_condition = EmitTypeofIs(true_label, in DoTypeofIsAndBranch()
4725 Condition LCodeGen::EmitTypeofIs(Label* true_label, in EmitTypeofIs() argument
4737 __ JumpIfSmi(input, true_label); in EmitTypeofIs()
4759 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input)); in EmitTypeofIs()
4773 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input)); in EmitTypeofIs()
4789 __ Branch(true_label, eq, input, Operand(JS_FUNCTION_TYPE)); in EmitTypeofIs()
4798 __ Branch(USE_DELAY_SLOT, true_label, eq, at, Operand(input)); in EmitTypeofIs()