Home
last modified time | relevance | path

Searched refs:PropertyCellConstantType (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/
Dcode-stubs.h901 Maybe<PropertyCellConstantType> constant_type, in StoreGlobalStub()
904 PropertyCellConstantType encoded_constant_type = in StoreGlobalStub()
905 constant_type.FromMaybe(PropertyCellConstantType::kSmi); in StoreGlobalStub()
938 PropertyCellConstantType constant_type() const { in constant_type()
948 : public BitField<PropertyCellConstantType, CellTypeBits::kNext, 2> {};
Dproperty-details.h223 enum class PropertyCellConstantType { enum
Dobjects-printer.cc1143 case PropertyCellConstantType::kSmi: in PropertyCellPrint()
1146 case PropertyCellConstantType::kStableMap: in PropertyCellPrint()
Dcode-stubs.cc1550 case PropertyCellConstantType::kSmi: in GenerateAssembly()
1554 case PropertyCellConstantType::kStableMap: { in GenerateAssembly()
Dobjects.cc19403 PropertyCellConstantType PropertyCell::GetConstantType() { in GetConstantType()
19404 if (value()->IsSmi()) return PropertyCellConstantType::kSmi; in GetConstantType()
19405 return PropertyCellConstantType::kStableMap; in GetConstantType()
Dobjects.h10199 PropertyCellConstantType GetConstantType();
/external/v8/src/crankshaft/
Dhydrogen.cc5205 case PropertyCellConstantType::kSmi: in InlineGlobalPropertyLoad()
5208 case PropertyCellConstantType::kStableMap: { in InlineGlobalPropertyLoad()
6490 case PropertyCellConstantType::kSmi: in InlineGlobalPropertyStore()
6493 case PropertyCellConstantType::kStableMap: { in InlineGlobalPropertyStore()
/external/v8/src/ic/
Dic.cc1902 auto constant_type = Nothing<PropertyCellConstantType>(); in PropertyCellStoreHandler()