Lines Matching refs:chunk_
474 chunk_->LookupConstant(LConstantOperand::cast(context)); in LoadContextFromDeferred()
1091 HConstant* constant = chunk_->LookupConstant(op); in ToSmi()
1107 Representation r = chunk_->LookupLiteralRepresentation(const_op); in ToOperand()
1138 Representation r = chunk_->LookupLiteralRepresentation(const_op); in ToOperand32()
1199 HConstant* constant = chunk_->LookupConstant(op); in ToHandle()
1200 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged()); in ToHandle()
1219 return chunk_->LookupLiteralRepresentation(op).IsSmi(); in IsSmi()
1224 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32(); in IsInteger32Constant()
1229 HConstant* constant = chunk_->LookupConstant(op); in ToInteger32()
1235 HConstant* constant = chunk_->LookupConstant(op); in ToDouble()
1276 int left_block = instr->TrueDestination(chunk_); in EmitBranchGeneric()
1277 int right_block = instr->FalseDestination(chunk_); in EmitBranchGeneric()
1284 branch.EmitInverted(chunk_->GetAssemblyLabel(right_block)); in EmitBranchGeneric()
1286 branch.Emit(chunk_->GetAssemblyLabel(left_block)); in EmitBranchGeneric()
1288 __ B(chunk_->GetAssemblyLabel(right_block)); in EmitBranchGeneric()
1738 Label* true_label = instr->TrueLabel(chunk_); in DoBranch()
1739 Label* false_label = instr->FalseLabel(chunk_); in DoBranch()
2253 Label* true_label = instr->TrueLabel(chunk_); in DoClassOfTestAndBranch()
2254 Label* false_label = instr->FalseLabel(chunk_); in DoClassOfTestAndBranch()
2308 __ B(vc, instr->FalseLabel(chunk_)); in DoCmpHoleAndBranchD()
2364 instr->TrueDestination(chunk_) : instr->FalseDestination(chunk_); in DoCompareNumericAndBranch()
2372 __ B(vs, instr->FalseLabel(chunk_)); in DoCompareNumericAndBranch()
2765 __ B(chunk_->GetAssemblyLabel(LookupDestination(block))); in EmitGoto()
2827 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoHasInstanceTypeAndBranch()
2867 __ JumpIfSmi(object, instr->FalseLabel(chunk_)); in DoHasInPrototypeChainAndBranch()
2886 __ B(eq, instr->TrueLabel(chunk_)); in DoHasInPrototypeChainAndBranch()
2888 __ B(eq, instr->FalseLabel(chunk_)); in DoHasInPrototypeChainAndBranch()
2948 EmitIsString(val, scratch, instr->FalseLabel(chunk_), check_needed); in DoIsStringAndBranch()
2966 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoIsUndetectableAndBranch()
5531 Label* true_label = instr->TrueLabel(chunk_); in DoTypeofIsAndBranch()
5532 Label* false_label = instr->FalseLabel(chunk_); in DoTypeofIsAndBranch()
5539 int true_block = instr->TrueDestination(chunk_); in DoTypeofIsAndBranch()
5540 int false_block = instr->FalseDestination(chunk_); in DoTypeofIsAndBranch()
5546 __ JumpIfNotHeapNumber(value, chunk_->GetAssemblyLabel(false_block)); in DoTypeofIsAndBranch()
5548 __ JumpIfHeapNumber(value, chunk_->GetAssemblyLabel(true_block)); in DoTypeofIsAndBranch()
5550 __ B(chunk_->GetAssemblyLabel(false_block)); in DoTypeofIsAndBranch()