Home
last modified time | relevance | path

Searched refs:record (Results 1 – 7 of 7) sorted by relevance

/art/runtime/gc/
Dallocation_record.cc107 AllocRecord& record = it->second; in VisitRoots() local
109 buffered_visitor.VisitRootIfNonNull(record.GetClassGcRoot()); in VisitRoots()
114 for (size_t i = 0, depth = record.GetDepth(); i < depth; ++i) { in VisitRoots()
115 const AllocRecordStackTraceElement& element = record.StackElement(i); in VisitRoots()
122 static inline void SweepClassObject(AllocRecord* record, IsMarkedVisitor* visitor) in SweepClassObject() argument
125 GcRoot<mirror::Class>& klass = record->GetClassGcRoot(); in SweepClassObject()
148 AllocRecord& record = it->second; in SweepAllocationRecords() local
153 SweepClassObject(&record, visitor); in SweepAllocationRecords()
164 SweepClassObject(&record, visitor); in SweepAllocationRecords()
Dallocation_record.h224 void Put(mirror::Object* obj, AllocRecord&& record) in Put() argument
230 entries_.push_back(EntryPair(GcRoot<mirror::Object>(obj), std::move(record))); in Put()
/art/runtime/
Dthread.cc230 DeoptimizationContextRecord* record = new DeoptimizationContextRecord( in PushDeoptimizationContext() local
236 tlsPtr_.deoptimization_context_stack = record; in PushDeoptimizationContext()
243 DeoptimizationContextRecord* record = tlsPtr_.deoptimization_context_stack; in PopDeoptimizationContext() local
244 tlsPtr_.deoptimization_context_stack = record->GetLink(); in PopDeoptimizationContext()
245 result->SetJ(record->GetReturnValue().GetJ()); in PopDeoptimizationContext()
246 *exception = record->GetPendingException(); in PopDeoptimizationContext()
247 *from_code = record->GetFromCode(); in PopDeoptimizationContext()
248 delete record; in PopDeoptimizationContext()
257 StackedShadowFrameRecord* record = new StackedShadowFrameRecord( in PushStackedShadowFrame() local
259 tlsPtr_.stacked_shadow_frame_record = record; in PushStackedShadowFrame()
[all …]
Ddebugger.cc4901 const gc::AllocRecord* record = &it->second; in DumpRecentAllocations() local
4903 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations()
4904 << mirror::Class::PrettyClass(record->GetClass()); in DumpRecentAllocations()
4906 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { in DumpRecentAllocations()
4907 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); in DumpRecentAllocations()
5041 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
5043 class_names.Add(record->GetClassDescriptor(&temp)); in GetRecentAllocations()
5044 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations()
5045 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations()
5092 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
[all …]
/art/test/652-deopt-intrinsic/
Dinfo.txt2 record inline caches when seeing an intrinsic.
/art/tools/
Dart164 PERF="record"
217 LAUNCH_WRAPPER="perf record -g -o $ANDROID_DATA/perf.data -e cycles:u $LAUNCH_WRAPPER"
/art/compiler/optimizing/
Dnodes.h1535 HInstruction* operator()(HUserRecord<HInstruction*>& record) const { in operator()
1536 return record.GetInstruction(); in operator()
1538 const HInstruction* operator()(const HUserRecord<HInstruction*>& record) const { in operator()
1539 return record.GetInstruction(); in operator()