Lines Matching refs:chunk_
795 HConstant* constant = chunk_->LookupConstant(op); in ToRepresentation()
808 HConstant* constant = chunk_->LookupConstant(op); in ToHandle()
809 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged()); in ToHandle()
815 HConstant* constant = chunk_->LookupConstant(op); in ToDouble()
822 HConstant* constant = chunk_->LookupConstant(op); in ToExternalReference()
829 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32(); in IsInteger32()
834 return chunk_->LookupLiteralRepresentation(op).IsSmi(); in IsSmi()
1018 chunk_->LookupConstant(LConstantOperand::cast(context)); in LoadContextFromDeferred()
2211 int left_block = instr->TrueDestination(chunk_); in EmitBranch()
2212 int right_block = instr->FalseDestination(chunk_); in EmitBranch()
2219 __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block)); in EmitBranch()
2221 __ j(cc, chunk_->GetAssemblyLabel(left_block)); in EmitBranch()
2223 __ j(cc, chunk_->GetAssemblyLabel(left_block)); in EmitBranch()
2224 __ jmp(chunk_->GetAssemblyLabel(right_block)); in EmitBranch()
2231 int true_block = instr->TrueDestination(chunk_); in EmitTrueBranch()
2233 __ jmp(chunk_->GetAssemblyLabel(true_block)); in EmitTrueBranch()
2235 __ j(cc, chunk_->GetAssemblyLabel(true_block)); in EmitTrueBranch()
2242 int false_block = instr->FalseDestination(chunk_); in EmitFalseBranch()
2244 __ jmp(chunk_->GetAssemblyLabel(false_block)); in EmitFalseBranch()
2246 __ j(cc, chunk_->GetAssemblyLabel(false_block)); in EmitFalseBranch()
2291 __ j(equal, instr->FalseLabel(chunk_)); in DoBranch()
2296 __ j(equal, instr->TrueLabel(chunk_)); in DoBranch()
2299 __ j(equal, instr->FalseLabel(chunk_)); in DoBranch()
2304 __ j(equal, instr->FalseLabel(chunk_)); in DoBranch()
2310 __ j(equal, instr->FalseLabel(chunk_)); in DoBranch()
2311 __ JumpIfSmi(reg, instr->TrueLabel(chunk_)); in DoBranch()
2328 __ j(not_zero, instr->FalseLabel(chunk_)); in DoBranch()
2335 __ j(above_equal, instr->TrueLabel(chunk_)); in DoBranch()
2344 __ j(not_zero, instr->TrueLabel(chunk_)); in DoBranch()
2345 __ jmp(instr->FalseLabel(chunk_)); in DoBranch()
2352 __ j(equal, instr->TrueLabel(chunk_)); in DoBranch()
2358 __ j(equal, instr->TrueLabel(chunk_)); in DoBranch()
2370 __ j(zero, instr->FalseLabel(chunk_)); in DoBranch()
2371 __ jmp(instr->TrueLabel(chunk_)); in DoBranch()
2387 __ jmp(chunk_->GetAssemblyLabel(LookupDestination(block))); in EmitGoto()
2447 instr->TrueDestination(chunk_) : instr->FalseDestination(chunk_); in DoCompareNumericAndBranch()
2455 __ j(parity_even, instr->FalseLabel(chunk_)); in DoCompareNumericAndBranch()
2567 reg, temp, instr->FalseLabel(chunk_), check_needed); in DoIsStringAndBranch()
2587 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoIsUndetectableAndBranch()
2654 __ JumpIfSmi(input, instr->FalseLabel(chunk_)); in DoHasInstanceTypeAndBranch()
2737 EmitClassOfTest(instr->TrueLabel(chunk_), instr->FalseLabel(chunk_), in DoClassOfTestAndBranch()
5681 Label* true_label = instr->TrueLabel(chunk_); in EmitTypeofIs()
5682 Label* false_label = instr->FalseLabel(chunk_); in EmitTypeofIs()
5684 int left_block = instr->TrueDestination(chunk_); in EmitTypeofIs()
5685 int right_block = instr->FalseDestination(chunk_); in EmitTypeofIs()