Home
last modified time | relevance | path

Searched refs:PropertyCellType (Results 1 – 24 of 24) sorted by relevance

/external/v8/src/
Dproperty-details.h207 enum class PropertyCellType { enum
235 PropertyCellType cell_type) { in PropertyDetails()
254 PropertyCellType cell_type = PropertyCellType::kNoCell) {
264 PropertyDetails set_cell_type(PropertyCellType type) const { in set_cell_type()
328 PropertyCellType cell_type() const { in cell_type()
346 : public BitField<PropertyCellType, AttributesField::kNext, 2> {};
Dlookup.cc290 PropertyDetails details(kData, attributes, 0, PropertyCellType::kMutable); in ReconfigureDataProperty()
348 global, name(), PropertyCellType::kUninitialized, &entry); in PrepareTransitionToDataProperty()
359 PropertyCellType::kUninitialized); in PrepareTransitionToDataProperty()
360 PropertyCellType new_type = in PrepareTransitionToDataProperty()
369 PropertyDetails(kData, attributes, 0, PropertyCellType::kNoCell); in PrepareTransitionToDataProperty()
383 PropertyDetails(kData, attributes, 0, PropertyCellType::kNoCell); in PrepareTransitionToDataProperty()
532 PropertyDetails details(kAccessor, attributes, 0, PropertyCellType::kMutable); in TransitionToAccessorPair()
Dobjects-printer.cc1117 PropertyCellType cell_type = property_details().cell_type(); in PropertyCellPrint()
1121 case PropertyCellType::kUninitialized: in PropertyCellPrint()
1124 case PropertyCellType::kInvalidated: in PropertyCellPrint()
1133 case PropertyCellType::kUndefined: in PropertyCellPrint()
1136 case PropertyCellType::kConstant: in PropertyCellPrint()
1139 case PropertyCellType::kConstantType: in PropertyCellPrint()
1152 case PropertyCellType::kMutable: in PropertyCellPrint()
Dapi-natives.cc551 PropertyDetails details(kData, attributes, 0, PropertyCellType::kNoCell); in AddDataProperty()
563 PropertyDetails details(kData, attributes, 0, PropertyCellType::kNoCell); in AddDataProperty()
576 PropertyDetails details(kAccessor, attributes, 0, PropertyCellType::kNoCell); in AddAccessorProperty()
Dcode-stubs.h900 StoreGlobalStub(Isolate* isolate, PropertyCellType type, in StoreGlobalStub()
934 PropertyCellType cell_type() const { in cell_type()
939 DCHECK(PropertyCellType::kConstantType == cell_type()); in constant_type()
946 class CellTypeBits : public BitField<PropertyCellType, 0, 2> {};
Delements.cc1297 return PropertyDetails(kData, NONE, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
1301 return PropertyDetails(kData, NONE, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
1468 PropertyCellType::kNoCell); in ReconfigureImpl()
1475 PropertyDetails details(kData, attributes, 0, PropertyCellType::kNoCell); in AddImpl()
2774 return PropertyDetails(kData, DONT_DELETE, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
2779 return PropertyDetails(kData, DONT_DELETE, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
3150 return PropertyDetails(kData, NONE, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
3339 PropertyDetails details(kData, attributes, 0, PropertyCellType::kNoCell); in AddImpl()
3371 PropertyDetails details(kData, attributes, 0, PropertyCellType::kNoCell); in ReconfigureImpl()
3550 return PropertyDetails(kData, attributes, 0, PropertyCellType::kNoCell); in GetDetailsImpl()
Dcode-stubs.cc1500 cell_type(), PropertyCellType::kConstantType == cell_type() in GenerateAssembly()
1537 PropertyCellType cell_type = this->cell_type(); in GenerateAssembly()
1538 if (cell_type == PropertyCellType::kConstant || in GenerateAssembly()
1539 cell_type == PropertyCellType::kUndefined) { in GenerateAssembly()
1548 if (cell_type == PropertyCellType::kConstantType) { in GenerateAssembly()
Dobjects.cc1936 ? PropertyCellType::kUndefined in SetNormalizedProperty()
1937 : PropertyCellType::kConstant; in SetNormalizedProperty()
3671 PropertyCellType::kNoCell); in MigrateFastToSlow()
5936 PropertyDetails::Empty(PropertyCellType::kUninitialized)); in DeleteNormalizedProperty()
6912 PropertyDetails details(kData, DONT_ENUM, 0, PropertyCellType::kNoCell); in SetPrivateProperty()
17100 PropertyCellType cell_type, int* entry_out) { in EnsureEmptyPropertyCell()
17111 PropertyCellType original_cell_type = cell->property_details().cell_type(); in EnsureEmptyPropertyCell()
17112 DCHECK(original_cell_type == PropertyCellType::kInvalidated || in EnsureEmptyPropertyCell()
17113 original_cell_type == PropertyCellType::kUninitialized); in EnsureEmptyPropertyCell()
17115 if (original_cell_type == PropertyCellType::kInvalidated) { in EnsureEmptyPropertyCell()
[all …]
Dfactory.cc1787 PropertyCellType::kMutable); in NewJSGlobalObject()
Dobjects.h8171 PropertyCellType cell_type, int* entry_out = nullptr);
10203 static PropertyCellType UpdatedType(Handle<PropertyCell> cell,
Dbootstrapper.cc4670 PropertyCellType::kMutable); in TransferNamedProperties()
Dcode-stub-assembler.cc4627 PropertyDetails d(kData, NONE, kInitialIndex, PropertyCellType::kNoCell); in InsertEntry()
/external/v8/src/compiler/
Djs-native-context-specialization.cc332 PropertyCellType property_cell_type = property_details.cell_type(); in ReduceGlobalAccess()
339 } else if (property_cell_type == PropertyCellType::kUndefined) { in ReduceGlobalAccess()
342 } else if (property_cell_type == PropertyCellType::kConstantType) { in ReduceGlobalAccess()
377 if (property_details.cell_type() != PropertyCellType::kMutable || in ReduceGlobalAccess()
383 if (property_details.cell_type() == PropertyCellType::kConstant || in ReduceGlobalAccess()
384 property_details.cell_type() == PropertyCellType::kUndefined) { in ReduceGlobalAccess()
391 if (property_details.cell_type() == PropertyCellType::kConstantType) { in ReduceGlobalAccess()
425 case PropertyCellType::kUndefined: { in ReduceGlobalAccess()
429 case PropertyCellType::kConstant: { in ReduceGlobalAccess()
440 case PropertyCellType::kConstantType: { in ReduceGlobalAccess()
[all …]
/external/v8/src/ic/
Dic.cc910 global, name, PropertyCellType::kInvalidated); in InitPrototypeChecks()
933 global, name, PropertyCellType::kInvalidated); in InitPrototypeChecks()
1901 Handle<Name> name, Handle<PropertyCell> cell, PropertyCellType type) { in PropertyCellStoreHandler()
1903 if (type == PropertyCellType::kConstantType) { in PropertyCellStoreHandler()
2058 lookup->name(), cell, PropertyCellType::kConstant); in CompileHandler()
/external/v8/src/ic/x64/
Dhandler-compiler-x64.cc202 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/ia32/
Dhandler-compiler-ia32.cc228 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/arm64/
Dhandler-compiler-arm64.cc93 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/s390/
Dhandler-compiler-s390.cc179 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/mips64/
Dhandler-compiler-mips64.cc183 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/mips/
Dhandler-compiler-mips.cc183 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/arm/
Dhandler-compiler-arm.cc191 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/x87/
Dhandler-compiler-x87.cc228 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/ic/ppc/
Dhandler-compiler-ppc.cc186 global, name, PropertyCellType::kInvalidated); in GenerateCheckPropertyCell()
/external/v8/src/crankshaft/
Dhydrogen.cc5192 if (cell_type == PropertyCellType::kConstant || in InlineGlobalPropertyLoad()
5193 cell_type == PropertyCellType::kUndefined) { in InlineGlobalPropertyLoad()
5203 if (cell_type == PropertyCellType::kConstantType) { in InlineGlobalPropertyLoad()
6462 if (cell_type == PropertyCellType::kConstant || in InlineGlobalPropertyStore()
6463 cell_type == PropertyCellType::kUndefined) { in InlineGlobalPropertyStore()
6488 if (cell_type == PropertyCellType::kConstantType) { in InlineGlobalPropertyStore()