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 32 uint8_t inlining_depth) {
39 current_entry_.inlining_depth = inlining_depth;
51 if (inlining_depth > 0) {
248 for (size_t j = 0; j < entry.inlining_depth; ++j) {
374 if (entry.inlining_depth != 0) {
380 next_inline_info_index += entry.inlining_depth;
382 inline_info.SetDepth(encoding.inline_info.encoding, entry.inlining_depth);
383 DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size());
385 for (size_t depth = 0; depth < entry.inlining_depth; ++depth)
    [all...]
stack_map_stream.h 117 uint8_t inlining_depth; member in struct:art::StackMapStream::StackMapEntry
142 uint8_t inlining_depth);
code_generator.cc 797 uint32_t inlining_depth = 0; local
805 inlining_depth++;
929 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)) {
74 if (inlining_depth != 0) {
79 inlining_depth - 1);
    [all...]

Completed in 211 milliseconds