Lines Matching defs:methodOffset
170 bool IsSkippedMethod(uint32_t methodOffset) const
172 if (skippedMethods_.find(methodOffset) == skippedMethods_.end()) {
183 void AddSkippedMethod(uint32_t methodOffset)
185 skippedMethods_.insert(methodOffset);
188 void EraseSkippedMethod(uint32_t methodOffset)
190 if (skippedMethods_.find(methodOffset) != skippedMethods_.end()) {
191 skippedMethods_.erase(methodOffset);
195 bool FindMethodOffsetToRecordName(uint32_t methodOffset)
197 return methodOffsetToRecordName_.find(methodOffset) != methodOffsetToRecordName_.end();
200 void AddMethodOffsetToRecordName(uint32_t methodOffset, CString recordName)
202 methodOffsetToRecordName_.emplace(methodOffset, recordName);
220 void SetClassTypeOffsetAndDefMethod(uint32_t classLiteralOffset, uint32_t methodOffset)
223 classTypeLOffsetToDefMethod_.emplace(classLiteralOffset, methodOffset);
236 void SetFunctionTypeIDAndMethodOffset(uint32_t functionTypeId, uint32_t methodOffset)
239 functionTypeIdToMethodOffset_.emplace(functionTypeId, methodOffset);
243 FastCallInfo IterateMethodOffsetToFastCallInfo(uint32_t methodOffset, bool *isValid)
245 auto iter = methodOffsetToFastCallInfos_.find(methodOffset);
254 void SetMethodOffsetToFastCallInfo(uint32_t methodOffset, bool canFastCall, bool noGC)
256 if (methodOffsetToFastCallInfos_.find(methodOffset) == methodOffsetToFastCallInfos_.end()) {
257 methodOffsetToFastCallInfos_.emplace(methodOffset, FastCallInfo { canFastCall, noGC });
261 void ModifyMethodOffsetToCanFastCall(uint32_t methodOffset, bool canFastCall)
263 auto iter = methodOffsetToFastCallInfos_.find(methodOffset);
268 methodOffsetToFastCallInfos_.erase(methodOffset);
269 if (methodOffsetToFastCallInfos_.find(methodOffset) == methodOffsetToFastCallInfos_.end()) {
270 methodOffsetToFastCallInfos_.emplace(methodOffset, FastCallInfo { canFastCall, isNoGC });
328 bool IsSkippedMethod(uint32_t methodOffset) const
330 return bytecodeInfo_.IsSkippedMethod(methodOffset);
359 uint32_t methodOffset = method.first;
360 cb(methodOffset);
374 uint32_t methodOffset, const std::shared_ptr<CString> recordNamePtr);
376 void SetMethodPcInfoIndex(uint32_t methodOffset, const std::pair<size_t, uint32_t> &processedMethodInfo,