Searched refs:methodOffsets (Results 1 – 5 of 5) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | literal_data_extractor.h | 62 std::vector<uint32_t> &methodOffsets); 65 std::vector<uint32_t> &methodOffsets);
|
| D | literal_data_extractor.cpp | 315 std::vector<uint32_t> &methodOffsets) in GetMethodOffsets() argument 318 …lda.EnumerateLiteralVals(index, [&methodOffsets](const LiteralValue &value, const LiteralTag &tag)… in GetMethodOffsets() 324 methodOffsets.emplace_back(std::get<uint32_t>(value)); in GetMethodOffsets() 335 std::vector<uint32_t> &methodOffsets) in GetMethodOffsets() argument 338 … lda.EnumerateLiteralVals(id, [&methodOffsets](const LiteralValue &value, const LiteralTag &tag) { in GetMethodOffsets() 344 methodOffsets.emplace_back(std::get<uint32_t>(value)); in GetMethodOffsets()
|
| /arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
| D | js_stackinfo.h | 53 …string BuildInlinedMethodTrace(const JSPandaFile *pf, std::map<uint32_t, uint32_t> &methodOffsets);
|
| D | js_stackinfo.cpp | 80 …ckInfo::BuildInlinedMethodTrace(const JSPandaFile *pf, std::map<uint32_t, uint32_t> &methodOffsets) in BuildInlinedMethodTrace() argument 84 for (it = methodOffsets.rbegin(); it != methodOffsets.rend(); it++) { in BuildInlinedMethodTrace() 122 std::map<uint32_t, uint32_t> methodOffsets = it.GetInlinedMethodInfo(); in BuildJsStackTrace() local 123 data += BuildInlinedMethodTrace(pf, methodOffsets); in BuildJsStackTrace()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | bytecode_info_collector.cpp | 435 std::vector<uint32_t> methodOffsets; in CollectInnerMethodsFromLiteral() local 436 LiteralDataExtractor::GetMethodOffsets(jsPandaFile_, index, methodOffsets); in CollectInnerMethodsFromLiteral() 437 for (auto methodOffset : methodOffsets) { in CollectInnerMethodsFromLiteral() 461 std::vector<uint32_t> methodOffsets; in CollectInnerMethodsFromNewLiteral() local 462 LiteralDataExtractor::GetMethodOffsets(jsPandaFile_, literalId, methodOffsets); in CollectInnerMethodsFromNewLiteral() 463 for (auto methodOffset : methodOffsets) { in CollectInnerMethodsFromNewLiteral()
|