Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dstack_map_stream.cc32 uint8_t inlining_depth) { in BeginStackMapEntry() argument
39 current_entry_.inlining_depth = inlining_depth; in BeginStackMapEntry()
51 if (inlining_depth > 0) { in BeginStackMapEntry()
248 for (size_t j = 0; j < entry.inlining_depth; ++j) { in ComputeInlineInfoEncoding()
374 if (entry.inlining_depth != 0) { in FillInCodeInfo()
380 next_inline_info_index += entry.inlining_depth; in FillInCodeInfo()
382 inline_info.SetDepth(encoding.inline_info.encoding, entry.inlining_depth); in FillInCodeInfo()
383 DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size()); in FillInCodeInfo()
385 for (size_t depth = 0; depth < entry.inlining_depth; ++depth) { in FillInCodeInfo()
649 DCHECK_EQ(stack_map.HasInlineInfo(stack_map_encoding), (entry.inlining_depth != 0)); in CheckCodeInfo()
[all …]
Dstack_map_stream.h117 uint8_t inlining_depth; member
142 uint8_t inlining_depth);
Dcode_generator.cc773 uint32_t inlining_depth = 0; in RecordPcInfo() local
781 inlining_depth++; in RecordPcInfo()
817 inlining_depth); in RecordPcInfo()
837 (inlining_depth == 0)) { in RecordPcInfo()
905 uint32_t inlining_depth = 0; // Inlining of catch blocks is not supported at the moment. in RecordCatchBlockInfo() local
918 inlining_depth); in RecordCatchBlockInfo()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h51 uint8_t inlining_depth) in GetResolvedMethod() argument
58 if (inline_info.EncodesArtMethodAtDepth(encoding, inlining_depth)) { in GetResolvedMethod()
59 return inline_info.GetArtMethodAtDepth(encoding, inlining_depth); in GetResolvedMethod()
62 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, method_info, inlining_depth); in GetResolvedMethod()
63 if (inline_info.GetDexPcAtDepth(encoding, inlining_depth) == static_cast<uint32_t>(-1)) { in GetResolvedMethod()
72 if (inlining_depth != 0) { in GetResolvedMethod()
77 inlining_depth - 1); in GetResolvedMethod()