HomeSort by relevance Sort by last modified time
    Searched refs:inlining_depth (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
stack_map_stream.cc 33 uint8_t inlining_depth) {
39 current_entry_.inlining_depth = inlining_depth;
54 if (inlining_depth > 0) {
257 for (size_t j = 0; j < entry.inlining_depth; ++j) {
383 if (entry.inlining_depth != 0) {
389 next_inline_info_index += entry.inlining_depth;
391 inline_info.SetDepth(encoding.inline_info.encoding, entry.inlining_depth);
392 DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size());
394 for (size_t depth = 0; depth < entry.inlining_depth; ++depth)
    [all...]
stack_map_stream.h 116 uint8_t inlining_depth; member in struct:art::StackMapStream::StackMapEntry
141 uint8_t inlining_depth);
code_generator.cc 1007 uint32_t inlining_depth = 0; local
1110 uint32_t inlining_depth = 0; \/\/ Inlining of catch blocks is not supported at the moment. local
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 51 uint8_t inlining_depth)
60 if (inline_info.EncodesArtMethodAtDepth(encoding, inlining_depth)) {
61 return inline_info.GetArtMethodAtDepth(encoding, inlining_depth);
64 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, method_info, inlining_depth);
65 if (inline_info.GetDexPcAtDepth(encoding, inlining_depth) == static_cast<uint32_t>(-1)) {
75 for (uint32_t depth = 0, end = inlining_depth + 1u; depth != end; ++depth) {
    [all...]

Completed in 257 milliseconds