Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Dmethod.h231 uint64_t literalInfo = GetLiteralInfo(); in GetHotnessCounter() local
232 return MethodLiteral::GetHotnessCounter(literalInfo); in GetHotnessCounter()
237 uint64_t literalInfo = GetLiteralInfo(); in SetHotnessCounter() local
238 uint64_t newValue = MethodLiteral::SetHotnessCounter(literalInfo, counter); in SetHotnessCounter()
244 uint64_t literalInfo = GetLiteralInfo(); in GetMethodId() local
245 return MethodLiteral::GetMethodId(literalInfo); in GetMethodId()
250 uint64_t literalInfo = GetLiteralInfo(); in GetSlotSize() local
251 return MethodLiteral::GetSlotSize(literalInfo); in GetSlotSize()
254 uint8_t GetBuiltinId(uint64_t literalInfo) const in GetBuiltinId() argument
256 return BuiltinIdBits::Decode(literalInfo); in GetBuiltinId()
[all …]
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h277 static inline int16_t GetHotnessCounter(uint64_t literalInfo) in GetHotnessCounter()
279 return HotnessCounterBits::Decode(literalInfo); in GetHotnessCounter()
282 static uint64_t SetHotnessCounter(uint64_t literalInfo, int16_t counter) in SetHotnessCounter()
284 return HotnessCounterBits::Update(literalInfo, counter); in SetHotnessCounter()
297 static EntityId GetMethodId(uint64_t literalInfo) in GetMethodId()
299 return EntityId(MethodIdBits::Decode(literalInfo)); in GetMethodId()
302 static uint16_t GetSlotSize(uint64_t literalInfo) in GetSlotSize()
304 return SlotSizeBits::Decode(literalInfo); in GetSlotSize()