Home
last modified time | relevance | path

Searched refs:property_cell (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Djs-global-object-specialization.cc78 Handle<PropertyCell> property_cell = it.GetPropertyCell(); in ReduceJSLoadGlobal() local
79 PropertyDetails property_details = property_cell->property_details(); in ReduceJSLoadGlobal()
80 Handle<Object> property_cell_value(property_cell->value(), isolate()); in ReduceJSLoadGlobal()
95 dependencies()->AssumePropertyCell(property_cell); in ReduceJSLoadGlobal()
124 jsgraph()->HeapConstant(property_cell), effect, control); in ReduceJSLoadGlobal()
159 Handle<PropertyCell> property_cell = it.GetPropertyCell(); in ReduceJSStoreGlobal() local
160 PropertyDetails property_details = property_cell->property_details(); in ReduceJSStoreGlobal()
161 Handle<Object> property_cell_value(property_cell->value(), isolate()); in ReduceJSStoreGlobal()
172 dependencies()->AssumePropertyCell(property_cell); in ReduceJSStoreGlobal()
183 dependencies()->AssumePropertyCell(property_cell); in ReduceJSStoreGlobal()
[all …]
/external/v8/src/
Dcode-stub-assembler.cc1968 Node* property_cell = in LoadPropertyFromGlobalDictionary() local
1971 Node* value = LoadObjectField(property_cell, PropertyCell::kValueOffset); in LoadPropertyFromGlobalDictionary()
1977 SmiToWord32(LoadObjectField(property_cell, PropertyCell::kDetailsOffset)); in LoadPropertyFromGlobalDictionary()
2645 Node* property_cell = LoadWeakCellValue(weak_cell, &try_handler); in LoadGlobalIC() local
2646 AssertInstanceType(property_cell, PROPERTY_CELL_TYPE); in LoadGlobalIC()
2648 Node* value = LoadObjectField(property_cell, PropertyCell::kValueOffset); in LoadGlobalIC()