Searched refs:record (Results 1 – 10 of 10) sorted by relevance
/art/runtime/gc/ |
D | allocation_record.cc | 109 AllocRecord& record = it->second; in VisitRoots() local 111 buffered_visitor.VisitRootIfNonNull(record.GetClassGcRoot()); in VisitRoots() 116 for (size_t i = 0, depth = record.GetDepth(); i < depth; ++i) { in VisitRoots() 117 const AllocRecordStackTraceElement& element = record.StackElement(i); in VisitRoots() 124 static inline void SweepClassObject(AllocRecord* record, IsMarkedVisitor* visitor) in SweepClassObject() argument 127 GcRoot<mirror::Class>& klass = record->GetClassGcRoot(); in SweepClassObject() 150 AllocRecord& record = it->second; in SweepAllocationRecords() local 155 SweepClassObject(&record, visitor); in SweepAllocationRecords() 166 SweepClassObject(&record, visitor); in SweepAllocationRecords()
|
D | allocation_record.h | 224 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/test/652-deopt-intrinsic/ |
D | info.txt | 2 record inline caches when seeing an intrinsic.
|
/art/runtime/ |
D | thread.cc | 247 DeoptimizationContextRecord* record = new DeoptimizationContextRecord( in PushDeoptimizationContext() local 254 tlsPtr_.deoptimization_context_stack = record; in PushDeoptimizationContext() 262 DeoptimizationContextRecord* record = tlsPtr_.deoptimization_context_stack; in PopDeoptimizationContext() local 263 tlsPtr_.deoptimization_context_stack = record->GetLink(); in PopDeoptimizationContext() 264 result->SetJ(record->GetReturnValue().GetJ()); in PopDeoptimizationContext() 265 *exception = record->GetPendingException(); in PopDeoptimizationContext() 266 *from_code = record->GetFromCode(); in PopDeoptimizationContext() 267 *method_type = record->GetDeoptimizationMethodType(); in PopDeoptimizationContext() 268 delete record; in PopDeoptimizationContext() 277 StackedShadowFrameRecord* record = new StackedShadowFrameRecord( in PushStackedShadowFrame() local [all …]
|
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 | 5010 const gc::AllocRecord* record = &it->second; in DumpRecentAllocations() local 5012 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations() 5013 << mirror::Class::PrettyClass(record->GetClass()); in DumpRecentAllocations() 5015 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { in DumpRecentAllocations() 5016 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); in DumpRecentAllocations() 5217 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local 5219 const char* class_descr = record->GetClassDescriptor(&temp); in GetRecentAllocations() 5225 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations() 5226 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations() 5233 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); in GetRecentAllocations() [all …]
|
/art/tools/ahat/etc/ |
D | README.txt | 3 ROOT_DEBUGGER records manually changed to a ROOT_FINALIZING record.
|
/art/tools/ |
D | art | 299 PERF="record" 360 LAUNCH_WRAPPER="perf record -g -o $ANDROID_DATA/perf.data -e cycles:u $LAUNCH_WRAPPER"
|
/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/compiler/optimizing/ |
D | nodes.h | 1601 HInstruction* operator()(HUserRecord<HInstruction*>& record) const { in operator() 1602 return record.GetInstruction(); in operator() 1604 const HInstruction* operator()(const HUserRecord<HInstruction*>& record) const { in operator() 1605 return record.GetInstruction(); in operator()
|