Searched refs:property_details (Results 1 - 15 of 15) sorted by relevance

/external/v8/src/
H A Dlookup.h226 PropertyDetails property_details() const { function in class:v8::internal::BASE_EMBEDDED
231 return property_details().attributes();
233 bool IsConfigurable() const { return property_details().IsConfigurable(); }
234 bool IsReadOnly() const { return property_details().IsReadOnly(); }
235 bool IsEnumerable() const { return property_details().IsEnumerable(); }
237 return property_details().representation();
239 PropertyLocation location() const { return property_details().location(); }
240 PropertyConstness constness() const { return property_details().constness(); }
H A Dlookup.cc230 property_details_ = cell->property_details();
297 property_details_ = cell->property_details();
504 if (property_details().attributes() == attributes) {
837 property_details_ = cell->property_details();
H A Dobjects-printer.cc1116 property_details().PrintAsSlowTo(os);
1117 PropertyCellType cell_type = property_details().cell_type();
H A Dobjects-inl.h2000 PropertyDetails PropertyCell::property_details() {
7839 return cell->property_details();
H A Dbootstrapper.cc4697 PropertyDetails details = cell->property_details();
H A Dobjects.cc17088 PropertyCellType original_cell_type = cell->property_details().cell_type();
19362 PropertyDetails details = cell->property_details();
19444 const PropertyDetails original_details = cell->property_details();
H A Dobjects.h10185 // [property_details]: details of the global property.
10193 inline PropertyDetails property_details();
/external/v8/src/ic/
H A Dhandler-compiler.cc167 PropertyDetails details = it->property_details();
280 DCHECK_EQ(kData, it->property_details().kind());
281 DCHECK_EQ(kField, it->property_details().location());
H A Dic.cc1369 DCHECK_EQ(kData, lookup->property_details().kind());
1391 if (lookup->property_details().location() == kField) {
1402 DCHECK_EQ(kDescriptor, lookup->property_details().location());
2003 DCHECK_EQ(kData, lookup->property_details().kind());
2014 if (lookup->property_details().location() == kField) {
2024 DCHECK_EQ(kDescriptor, lookup->property_details().location());
2122 PropertyCell::UpdatedType(cell, value, lookup->property_details());
/external/v8/src/compiler/
H A Djs-native-context-specialization.cc330 PropertyDetails property_details = property_cell->property_details(); local
332 PropertyCellType property_cell_type = property_details.cell_type();
336 if (property_details.IsReadOnly()) {
371 if (!property_details.IsConfigurable() && property_details.IsReadOnly()) {
377 if (property_details.cell_type() != PropertyCellType::kMutable ||
378 property_details.IsConfigurable()) {
383 if (property_details.cell_type() == PropertyCellType::kConstant ||
384 property_details
[all...]
H A Djs-create-lowering.cc1152 PropertyDetails const property_details = local
1154 if (property_details.location() != kField) continue;
1155 DCHECK_EQ(kData, property_details.kind());
1178 } else if (property_details.representation().IsDouble()) {
1188 } else if (property_details.representation().IsSmi()) {
/external/v8/src/runtime/
H A Druntime-object.cc74 if (cell->property_details().kind() == kData) {
H A Druntime-debug.cc368 : it.property_details();
/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc1591 PropertyDetails details = cell->property_details();
/external/v8/src/crankshaft/
H A Dhydrogen.cc5191 auto cell_type = it->property_details().cell_type();
6461 auto cell_type = it->property_details().cell_type();

Completed in 3414 milliseconds