Home
last modified time | relevance | path

Searched refs:depth (Results 101 – 123 of 123) sorted by relevance

12345

/art/test/1923-frame-pop/src/art/
DTest1923.java190 FramePop.notifyFramePop(target, target_frame.depth); in doRecurTestWith()
/art/tools/ahat/etc/
Dhprofdump.py325 depth = readu2(hprof) variable
326 print "CONTROL SETTINGS %x %d" % (flags, depth)
/art/tools/jfuzz/
DREADME.md16 jfuzz [-s seed] [-d expr-depth] [-l stmt-length]
23 -d : defines a fuzzing depth for expressions
/art/test/1926-missed-frame-pop/src/art/
DTest1926.java202 FramePop.notifyFramePop(target, target_frame.depth); in doRecurTestWith()
/art/compiler/optimizing/
Dstack_map_stream.cc211 size_t depth = current_inline_infos_.size() - 1; in BeginInlineInfoEntry() local
214 InlineInfo inline_info = code_info.GetInlineInfosOf(stack_map)[depth]; in BeginInlineInfoEntry()
Dloop_optimization.cc276 int32_t depth = 8) { // don't search too deep in IsAddConst() argument
279 if (depth > 0) { in IsAddConst()
281 return IsAddConst(instruction->InputAt(0), a, b, c, depth - 1) && in IsAddConst()
282 IsAddConst(instruction->InputAt(1), a, b, c, depth - 1); in IsAddConst()
286 return IsAddConst(instruction->InputAt(0), a, b, c, depth - 1); in IsAddConst()
Dinduction_var_analysis.cc307 map_.find(instruction)->second.depth = low; in VisitNode()
349 return map_.find(instruction)->second.depth; in VisitDescendant()
352 return it->second.done ? global_depth_ : it->second.depth; in VisitDescendant()
Dinduction_var_range.cc1109 int32_t depth = 0; in GenerateLastValueWrapAround() local
1111 info = info->op_b, ++depth) {} in GenerateLastValueWrapAround()
1116 IsConstant(trip->op_a, kExact, &m) && m >= depth) { in GenerateLastValueWrapAround()
Dregister_allocator_graph_color.cc67 size_t depth = 0; in LoopDepthAt() local
69 ++depth; in LoopDepthAt()
72 return depth; in LoopDepthAt()
/art/tools/dexanalyze/
Ddexanalyze_strings.cc189 size_t depth = 0u; in Add() local
191 ++depth; in Add()
196 new_node->depth_ = depth; in Add()
/art/runtime/
Dstack_map.cc340 uint32_t depth = Row() - stack_map.GetInlineInfoIndex(); in Dump() local
343 << " (depth=" << depth in Dump()
Dstack_map.h360 uint32_t depth = inline_info.Row() - stack_map.GetInlineInfoIndex(); in GetInlineDexRegisterMapOf() local
364 uint32_t first = (depth == 0) in GetInlineDexRegisterMapOf()
Dthread.cc2715 bool Init(int depth) REQUIRES_SHARED(Locks::mutator_lock_) ACQUIRE(Roles::uninterruptible_) { in Init() argument
2727 mirror::ObjectArray<mirror::Object>::Alloc(hs.Self(), array_class, depth + 1))); in Init()
2735 class_linker->AllocPointerArray(self_, depth * 2); in Init()
2816 const uint32_t depth = count_visitor.GetDepth(); in CreateInternalStackTrace() local
2822 if (!build_trace_visitor.Init(depth)) { in CreateInternalStackTrace()
2827 if (depth < kMaxSavedFrames) { in CreateInternalStackTrace()
2828 for (size_t i = 0; i < depth; ++i) { in CreateInternalStackTrace()
2917 int32_t depth = soa.Decode<mirror::Array>(internal)->GetLength() - 1; in InternalStackTraceToStackTraceElementArray() local
2918 DCHECK_GE(depth, 0); in InternalStackTraceToStackTraceElementArray()
2930 depth = std::min(depth, traces_length); in InternalStackTraceToStackTraceElementArray()
[all …]
Ddebugger.cc987 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations() local
/art/runtime/hprof/
Dhprof.cc696 size_t depth = trace->GetDepth(); in WriteStackTraces() local
699 for (size_t i = 0; i < depth; ++i) { in WriteStackTraces()
736 __ AddU4(depth); in WriteStackTraces()
737 for (size_t i = 0; i < depth; ++i) { in WriteStackTraces()
859 for (size_t i = 0, depth = trace->GetDepth(); i < depth; ++i) { in PopulateAllocationTrackingTraces() local
/art/openjdkjvmti/
Dti_stack.cc790 jint depth, in GetFrameLocation() argument
812 if (depth < 0) { in GetFrameLocation()
821 GetLocationClosure closure(static_cast<size_t>(depth)); in GetFrameLocation()
1030 jvmtiError StackUtil::NotifyFramePop(jvmtiEnv* env, jthread thread, jint depth) { in NotifyFramePop() argument
1031 if (depth < 0) { in NotifyFramePop()
1067 FindFrameAtDepthVisitor visitor(target, context.get(), depth); in NotifyFramePop()
Dti_heap.cc1009 ref_info->jni_local.depth = 0; in GetReferenceKind()
1046 ref_info->stack_local.depth = static_cast<jint>(visitor->GetFrameDepth()); in GetReferenceKind()
/art/test/670-bitstring-type-check/
Dbuild59 // type checks also for the depth overflow, we provide a hierarchy 9 levels deep.
/art/test/913-heaps/
Dheaps.cc323 info_.jni_local.depth, in Java_art_Test913_followReferences()
348 if (reference_info->stack_local.depth == 6) { in Java_art_Test913_followReferences()
369 info_.stack_local.depth, in Java_art_Test913_followReferences()
/art/tools/dmtracedump/
Dtracedump.cc234 int32_t depth[MAX_THREADS]; member
1047 traceData.depth[i] = 2; // adjust for return from start function in dumpTrace()
1086 traceData.depth[threadId]++; in dumpTrace()
1093 int32_t printDepth = traceData.depth[threadId]; in dumpTrace()
1122 traceData.depth[threadId]--; /* METHOD_TRACE_EXIT or METHOD_TRACE_UNROLL */ in dumpTrace()
/art/tools/checker/
DREADME129 (of any depth, since nested branching is allowed), that variable will become global within the scope
/art/runtime/mirror/
Dclass.cc1407 uint32_t depth = 0; in Depth() local
1409 depth++; in Depth()
1411 return depth; in Depth()
/art/runtime/verifier/
Dmethod_verifier.cc1847 auto collector = [&](uint32_t dex_reg, uint32_t depth) { in HandleMonitorDexPcsWorkLine() argument
1849 depth, ::art::verifier::MethodVerifier::DexLockInfo(depth)); in HandleMonitorDexPcsWorkLine()

12345