Home
last modified time | relevance | path

Searched refs:inlining_depth (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dstack_map_stream.cc33 uint8_t inlining_depth) { in BeginStackMapEntry() argument
39 current_entry_.inlining_depth = inlining_depth; in BeginStackMapEntry()
54 if (inlining_depth > 0) { in BeginStackMapEntry()
257 for (size_t j = 0; j < entry.inlining_depth; ++j) { in ComputeInlineInfoEncoding()
383 if (entry.inlining_depth != 0) { in FillInCodeInfo()
389 next_inline_info_index += entry.inlining_depth; in FillInCodeInfo()
391 inline_info.SetDepth(encoding.inline_info.encoding, entry.inlining_depth); in FillInCodeInfo()
392 DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size()); in FillInCodeInfo()
394 for (size_t depth = 0; depth < entry.inlining_depth; ++depth) { in FillInCodeInfo()
658 DCHECK_EQ(stack_map.HasInlineInfo(stack_map_encoding), (entry.inlining_depth != 0)); in CheckCodeInfo()
[all …]
Dstack_map_stream.h116 uint8_t inlining_depth; member
141 uint8_t inlining_depth);
Dcode_generator.cc1007 uint32_t inlining_depth = 0; in RecordPcInfo() local
1013 ++inlining_depth; in RecordPcInfo()
1023 inlining_depth); in RecordPcInfo()
1040 (inlining_depth == 0)) { in RecordPcInfo()
1110 uint32_t inlining_depth = 0; // Inlining of catch blocks is not supported at the moment. in RecordCatchBlockInfo() local
1123 inlining_depth); in RecordCatchBlockInfo()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h51 uint8_t inlining_depth) in GetResolvedMethod() argument
60 if (inline_info.EncodesArtMethodAtDepth(encoding, inlining_depth)) { in GetResolvedMethod()
61 return inline_info.GetArtMethodAtDepth(encoding, inlining_depth); in GetResolvedMethod()
64 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, method_info, inlining_depth); in GetResolvedMethod()
65 if (inline_info.GetDexPcAtDepth(encoding, inlining_depth) == static_cast<uint32_t>(-1)) { in GetResolvedMethod()
75 for (uint32_t depth = 0, end = inlining_depth + 1u; depth != end; ++depth) { in GetResolvedMethod()