Lines Matching defs:slotId
57 uint8_t slotId = READ_INST_8_0();
58 CHECK_SLOTID_BREAK(slotId);
59 ConvertICByName(bcOffset, slotId, BCType::LOAD);
68 uint16_t slotId = READ_INST_16_0();
69 ConvertICByName(bcOffset, slotId, BCType::LOAD);
78 uint8_t slotId = READ_INST_8_0();
79 CHECK_SLOTID_BREAK(slotId);
80 ConvertICByValue(bcOffset, slotId, BCType::LOAD);
89 uint16_t slotId = READ_INST_16_0();
90 ConvertICByValue(bcOffset, slotId, BCType::LOAD);
101 uint8_t slotId = READ_INST_8_0();
102 CHECK_SLOTID_BREAK(slotId);
103 ConvertICByName(bcOffset, slotId, BCType::STORE);
112 uint16_t slotId = READ_INST_16_0();
113 ConvertICByName(bcOffset, slotId, BCType::STORE);
123 uint8_t slotId = READ_INST_8_0();
124 CHECK_SLOTID_BREAK(slotId);
125 ConvertICByValue(bcOffset, slotId, BCType::STORE);
135 uint16_t slotId = READ_INST_16_0();
136 ConvertICByValue(bcOffset, slotId, BCType::STORE);
169 uint8_t slotId = READ_INST_8_0();
170 CHECK_SLOTID_BREAK(slotId);
171 ConvertOpType(slotId, bcOffset);
189 uint8_t slotId = READ_INST_8_0();
190 CHECK_SLOTID_BREAK(slotId);
191 ConvertCall(slotId, bcOffset);
199 uint8_t slotId = READ_INST_8_1();
200 CHECK_SLOTID_BREAK(slotId);
201 ConvertCall(slotId, bcOffset);
214 uint8_t slotId = READ_INST_8_0();
215 CHECK_SLOTID_BREAK(slotId);
216 ConvertNewObjRange(slotId, bcOffset);
224 uint16_t slotId = READ_INST_16_0();
225 ConvertNewObjRange(slotId, bcOffset);
233 uint8_t slotId = READ_INST_8_0();
234 CHECK_SLOTID_BREAK(slotId);
235 (void) slotId;
239 uint16_t slotId = READ_INST_16_0();
240 (void) slotId;
244 uint8_t slotId = READ_INST_8_0();
245 CHECK_SLOTID_BREAK(slotId);
249 uint16_t slotId = READ_INST_16_0();
250 (void) slotId;
262 uint8_t slotId = READ_INST_8_0();
263 CHECK_SLOTID_BREAK(slotId);
264 ConvertCreateObject(slotId, bcOffset, traceId);
276 uint16_t slotId = READ_INST_16_0();
277 ConvertCreateObject(slotId, bcOffset, traceId);
285 uint8_t slotId = READ_INST_8_0();
286 CHECK_SLOTID_BREAK(slotId);
287 ConvertGetIterator(slotId, bcOffset);
295 uint16_t slotId = READ_INST_16_0();
296 ConvertGetIterator(slotId, bcOffset);
305 uint8_t slotId = READ_INST_8_0();
306 CHECK_SLOTID_BREAK(slotId);
307 ConvertInstanceof(bcOffset, slotId);
319 void JITProfiler::ConvertOpType(uint32_t slotId, long bcOffset)
321 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
328 void JITProfiler::ConvertCall(uint32_t slotId, long bcOffset)
330 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
348 ->UpdateFuncSlotIdMap(calleeMethodId, methodId_.GetOffset(), slotId);
357 void JITProfiler::ConvertNewObjRange(uint32_t slotId, long bcOffset)
359 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
393 void JITProfiler::ConvertGetIterator(uint32_t slotId, long bcOffset)
398 JSTaggedValue value = profileTypeInfo_->Get(slotId);
409 void JITProfiler::ConvertCreateObject(uint32_t slotId, long bcOffset, [[maybe_unused]]int32_t traceId)
411 JSTaggedValue slotValue = profileTypeInfo_->Get(slotId);
436 void JITProfiler::ConvertICByName(int32_t bcOffset, uint32_t slotId, BCType type)
439 JSTaggedValue firstValue = profileTypeInfo_->Get(slotId);
450 JSTaggedValue secondValue = profileTypeInfo_->Get(slotId + 1);
452 ConvertICByNameWithHandler(abcId_, bcOffset, hclass, secondValue, type, slotId + 1);
456 ConvertICByNameWithPoly(abcId_, bcOffset, firstValue, type, slotId);
461 JSTaggedValue secondValue, BCType type, uint32_t slotId)
464 HandleLoadType(abcId, bcOffset, hclass, secondValue, slotId);
468 HandleOtherTypes(abcId, bcOffset, hclass, secondValue, slotId);
472 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
477 HandleLoadTypePrototypeHandler(abcId, bcOffset, hclass, secondValue, slotId);
497 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
526 ->UpdateFuncSlotIdMap(accessorMethodId, methodId_.GetOffset(), slotId);
535 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
544 HandleOtherTypesPrototypeHandler(abcId, bcOffset, hclass, secondValue, slotId);
581 JSHClass *hclass, JSTaggedValue &secondValue, uint32_t slotId)
602 ->UpdateFuncSlotIdMap(accessorMethodId, methodId_.GetOffset(), slotId);
623 uint32_t slotId)
642 ConvertICByNameWithHandler(abcId, bcOffset, hclass, handler, type, slotId);
646 void JITProfiler::ConvertICByValue(int32_t bcOffset, uint32_t slotId, BCType type)
649 JSTaggedValue firstValue = profileTypeInfo_->Get(slotId);
660 JSTaggedValue secondValue = profileTypeInfo_->Get(slotId + 1);
815 void JITProfiler::ConvertInstanceof(int32_t bcOffset, uint32_t slotId)
817 JSTaggedValue firstValue = profileTypeInfo_->Get(slotId);