Searched refs:record (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/ |
D | allocation_record.cc | 60 AllocRecord& record = it->second; in VisitRoots() local 62 buffered_visitor.VisitRootIfNonNull(record.GetClassGcRoot()); in VisitRoots() 67 for (size_t i = 0, depth = record.GetDepth(); i < depth; ++i) { in VisitRoots() 68 const AllocRecordStackTraceElement& element = record.StackElement(i); in VisitRoots() 75 static inline void SweepClassObject(AllocRecord* record, IsMarkedVisitor* visitor) in SweepClassObject() argument 78 GcRoot<mirror::Class>& klass = record->GetClassGcRoot(); in SweepClassObject() 101 AllocRecord& record = it->second; in SweepAllocationRecords() local 106 SweepClassObject(&record, visitor); in SweepAllocationRecords() 117 SweepClassObject(&record, visitor); in SweepAllocationRecords()
|
D | allocation_record.h | 229 void Put(mirror::Object* obj, AllocRecord&& record) in Put() argument 235 entries_.push_back(EntryPair(GcRoot<mirror::Object>(obj), std::move(record))); in Put()
|
/art/test/652-deopt-intrinsic/ |
D | info.txt | 2 record inline caches when seeing an intrinsic.
|
/art/tools/ahat/etc/ |
D | README.txt | 3 ROOT_DEBUGGER records manually changed to a ROOT_FINALIZING record.
|
/art/runtime/ |
D | reference_table.cc | 223 gc::AllocRecord& record = it->second; in Dump() local 226 const gc::AllocRecordStackTrace* trace = record.GetStackTrace(); in Dump()
|
D | debugger.cc | 4868 const gc::AllocRecord* record = &it->second; in DumpRecentAllocations() local 4870 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations() 4871 << mirror::Class::PrettyClass(record->GetClass()); in DumpRecentAllocations() 4873 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { in DumpRecentAllocations() 4874 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); in DumpRecentAllocations() 5075 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local 5077 const char* class_descr = record->GetClassDescriptor(&temp); in GetRecentAllocations() 5083 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations() 5084 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations() 5091 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); in GetRecentAllocations() [all …]
|
/art/test/VerifierDeps/ |
D | Main.smali | 419 # TODO: Maybe we should not record dependency if the invoke type does not match the lookup type. 428 # TODO: Maybe we should not record dependency if the invoke type does not match the lookup type.
|
/art/tools/ |
D | art | 354 PERF="record" 548 …LAUNCH_WRAPPER="perf record -g --call-graph dwarf -F 10000 -o $ANDROID_DATA/perf.data -e cycles:u …
|