• Home
  • Raw
  • Download

Lines Matching refs:chunk_

411     HConstant* constant = chunk_->LookupConstant(const_op);  in EmitLoadRegister()
413 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadRegister()
447 HConstant* constant = chunk_->LookupConstant(const_op); in EmitLoadDoubleRegister()
449 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadDoubleRegister()
474 HConstant* constant = chunk_->LookupConstant(op); in ToHandle()
475 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged()); in ToHandle()
481 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32(); in IsInteger32()
486 return chunk_->LookupLiteralRepresentation(op).IsSmi(); in IsSmi()
497 HConstant* constant = chunk_->LookupConstant(op); in ToRepresentation()
506 HConstant* constant = chunk_->LookupConstant(op); in ToSmi()
512 HConstant* constant = chunk_->LookupConstant(op); in ToDouble()
522 Representation r = chunk_->LookupLiteralRepresentation(const_op); in ToOperand()
734 chunk_->LookupConstant(LConstantOperand::cast(context)); in LoadContextFromDeferred()
2028 int left_block = instr->TrueDestination(chunk_); in EmitBranch()
2029 int right_block = instr->FalseDestination(chunk_); in EmitBranch()
2036 __ b(NegateCondition(condition), chunk_->GetAssemblyLabel(right_block)); in EmitBranch()
2038 __ b(condition, chunk_->GetAssemblyLabel(left_block)); in EmitBranch()
2040 __ b(condition, chunk_->GetAssemblyLabel(left_block)); in EmitBranch()
2041 __ b(chunk_->GetAssemblyLabel(right_block)); in EmitBranch()
2048 int true_block = instr->TrueDestination(chunk_); in EmitTrueBranch()
2049 __ b(condition, chunk_->GetAssemblyLabel(true_block)); in EmitTrueBranch()
2055 int false_block = instr->FalseDestination(chunk_); in EmitFalseBranch()
2056 __ b(condition, chunk_->GetAssemblyLabel(false_block)); in EmitFalseBranch()
2115 __ b(eq, instr->FalseLabel(chunk_)); in DoBranch()
2120 __ b(eq, instr->TrueLabel(chunk_)); in DoBranch()
2122 __ b(eq, instr->FalseLabel(chunk_)); in DoBranch()
2127 __ b(eq, instr->FalseLabel(chunk_)); in DoBranch()
2133 __ b(eq, instr->FalseLabel(chunk_)); in DoBranch()
2134 __ JumpIfSmi(reg, instr->TrueLabel(chunk_)); in DoBranch()
2149 __ b(ne, instr->FalseLabel(chunk_)); in DoBranch()
2156 __ b(ge, instr->TrueLabel(chunk_)); in DoBranch()
2166 __ b(ne, instr->TrueLabel(chunk_)); in DoBranch()
2167 __ b(instr->FalseLabel(chunk_)); in DoBranch()
2174 __ b(eq, instr->TrueLabel(chunk_)); in DoBranch()
2180 __ b(eq, instr->TrueLabel(chunk_)); in DoBranch()
2192 __ b(eq, instr->FalseLabel(chunk_)); // +0, -0 -> false. in DoBranch()
2193 __ b(instr->TrueLabel(chunk_)); in DoBranch()
2209 __ jmp(chunk_->GetAssemblyLabel(LookupDestination(block))); in EmitGoto()
2264 instr->TrueDestination(chunk_) : instr->FalseDestination(chunk_); in DoCompareNumericAndBranch()
2273 __ b(vs, instr->FalseLabel(chunk_)); in DoCompareNumericAndBranch()
2377 EmitIsString(reg, temp1, instr->FalseLabel(chunk_), check_needed); in DoIsStringAndBranch()
2395 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoIsUndetectableAndBranch()
2462 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoHasInstanceTypeAndBranch()
2548 EmitClassOfTest(instr->TrueLabel(chunk_), instr->FalseLabel(chunk_), in DoClassOfTestAndBranch()
5234 Condition final_branch_condition = EmitTypeofIs(instr->TrueLabel(chunk_), in DoTypeofIsAndBranch()
5235 instr->FalseLabel(chunk_), in DoTypeofIsAndBranch()