Lines Matching refs:var_length
1602 VARIABLE(var_length, ParameterRepresentation(mode)); in ExtendPropertiesBackingStore()
1616 var_length.Bind(IntPtrOrSmiConstant(0, mode)); in ExtendPropertiesBackingStore()
1631 var_length.Bind(length); in ExtendPropertiesBackingStore()
1643 GotoIf(UintPtrLessThan(index, ParameterToIntPtr(var_length.value(), mode)), in ExtendPropertiesBackingStore()
1647 Node* new_capacity = IntPtrOrSmiAdd(var_length.value(), delta, mode); in ExtendPropertiesBackingStore()
1664 FillPropertyArrayWithUndefined(new_properties, var_length.value(), in ExtendPropertiesBackingStore()
1670 var_length.value(), SKIP_WRITE_BARRIER, mode); in ExtendPropertiesBackingStore()
1745 VARIABLE(var_length, MachineType::PointerRepresentation()); in EmitFastElementsBoundsCheck()
1747 Label if_array(this), length_loaded(this, &var_length); in EmitFastElementsBoundsCheck()
1750 var_length.Bind(SmiUntag(LoadFixedArrayBaseLength(elements))); in EmitFastElementsBoundsCheck()
1755 var_length.Bind(SmiUntag(LoadFastJSArrayLength(object))); in EmitFastElementsBoundsCheck()
1759 GotoIfNot(UintPtrLessThan(intptr_index, var_length.value()), miss); in EmitFastElementsBoundsCheck()