Home | History | Annotate | Download | only in src

Lines Matching refs:boilerplate

1670 HValue* HGraphBuilder::BuildCloneShallowArray(HValue* boilerplate,
1704 Add<HLoadNamedField>(boilerplate, access));
1714 // Get hold of the elements array of the boilerplate and setup the
1716 HValue* boilerplate_elements = AddLoadElements(boilerplate, NULL);
4047 // Determines whether the given array or object literal boilerplate satisfies
4050 static bool IsFastLiteral(Handle<JSObject> boilerplate,
4055 if (boilerplate->map()->is_deprecated()) {
4056 Handle<Object> result = JSObject::TryMigrateInstance(boilerplate);
4063 Isolate* isolate = boilerplate->GetIsolate();
4064 Handle<FixedArrayBase> elements(boilerplate->elements());
4067 if (boilerplate->HasFastDoubleElements()) {
4069 } else if (boilerplate->HasFastObjectElements()) {
4092 Handle<FixedArray> properties(boilerplate->properties());
4097 boilerplate->map()->instance_descriptors());
4098 int limit = boilerplate->map()->NumberOfOwnDescriptors();
4105 Handle<Object> value(boilerplate->InObjectPropertyAt(index), isolate);
4121 *pointer_size += boilerplate->map()->instance_size();
4134 // Check whether to use fast or slow deep-copying for boilerplate.
4303 // Check whether to use fast or slow deep-copying for boilerplate.
4327 // Boilerplate already exists and constant elements are never accessed,
8293 // be filled in as a valid (boilerplate) array.
8431 // The access for the store depends on the type of the boilerplate.