Home | History | Annotate | Download | only in x64

Lines Matching refs:properties

83 // This function is safe to call if the receiver has fast properties.
111 // Load properties array.
112 Register properties = r0;
113 __ movq(properties, FieldOperand(receiver, JSObject::kPropertiesOffset));
115 // Check that the properties array is a dictionary.
116 __ CompareRoot(FieldOperand(properties, HeapObject::kMapOffset),
135 // property. It's true even if some slots represent deleted properties
138 // r0 points to properties hash.
142 __ SmiToInteger32(index, FieldOperand(properties, kCapacityOffset));
154 __ movq(entity_name, Operand(properties, index, times_pointer_size,
355 // Load a fast property out of a holder object (src). In-object properties
356 // are loaded directly otherwise the property is loaded from the properties
361 // Adjust for the number of properties stored in the holder.
368 // Calculate the offset into the properties array.
779 // The properties must be extended before we can store the value.
780 // We jump to a runtime call that extends the properties array.
801 // Adjust for the number of properties stored in the object. Even in the
803 // object and the number of in-object properties is not going to change.
816 // Write to the properties array.
818 // Get the properties array (optimistically).
1021 // Get the value from the properties.
3103 // Fill the initialized properties with a constant value or a passed argument