Lines Matching defs:store

286   // If the target is deprecated, the object will be updated on first store. If
287 // the source for that store equals the target, this will invalidate the
919 // store IC handlers.
2984 // - Copy all existing properties in, in the following order: backing store
2987 // * Copy inobject properties from the backing store back into the object.
2989 // frees inobject properties that moved to the backing store.
2990 // * If there are properties left in the backing store, trim of the space used
2991 // to temporarily store the inobject properties.
2992 // * If there are properties left in the backing store, install the backing
2993 // store.
3030 // space. Extend the backing store.
3045 DCHECK(!index.is_inobject()); // Must be a backing store index.
3075 // We use this array to temporarily store the inobject properties.
3180 // We are storing the new map using release store after creating a filler for
3278 // We are storing the new map using release store after creating a filler for
3529 // If there's an interceptor, try to store the property with the
4965 // Load/StoreGlobalIC handlers that load/store from global object's prototype
4967 // Note, that the normal Load/StoreICs that load/store through the global object
5292 static int HoleyElementsUsage(JSObject object, BackingStore store) {
5295 : store.length();
5298 if (!store.is_the_hole(isolate, i)) ++used;
5304 FixedArrayBase store = elements();
5313 : store.length();
5315 store = SloppyArgumentsElements::cast(store).arguments();
5323 return HoleyElementsUsage(*this, FixedArray::cast(store));
5326 return HoleyElementsUsage(*this, FixedDoubleArray::cast(store));
5383 // Load/StoreGlobalICs that load/store through global object's prototype.