Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc195 DeoptimizationReturnValueRecord* record = new DeoptimizationReturnValueRecord( in PushAndClearDeoptimizationReturnValue() local
199 tlsPtr_.deoptimization_return_value_stack = record; in PushAndClearDeoptimizationReturnValue()
204 DeoptimizationReturnValueRecord* record = tlsPtr_.deoptimization_return_value_stack; in PopDeoptimizationReturnValue() local
205 DCHECK(record != nullptr); in PopDeoptimizationReturnValue()
206 tlsPtr_.deoptimization_return_value_stack = record->GetLink(); in PopDeoptimizationReturnValue()
207 JValue ret_val(record->GetReturnValue()); in PopDeoptimizationReturnValue()
208 delete record; in PopDeoptimizationReturnValue()
213 StackedShadowFrameRecord* record = new StackedShadowFrameRecord( in PushStackedShadowFrame() local
215 tlsPtr_.stacked_shadow_frame_record = record; in PushStackedShadowFrame()
219 StackedShadowFrameRecord* record = tlsPtr_.stacked_shadow_frame_record; in PopStackedShadowFrame() local
[all …]
Ddebugger.cc4882 record(record_in), in AllocRecordStackVisitor()
4893 record->StackElement(depth)->SetMethod(m); in VisitFrame()
4894 record->StackElement(depth)->SetDexPc(GetDexPc()); in VisitFrame()
4903 record->StackElement(depth)->SetMethod(nullptr); in ~AllocRecordStackVisitor()
4904 record->StackElement(depth)->SetDexPc(0); in ~AllocRecordStackVisitor()
4908 AllocRecord* record; member
4925 AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; in RecordAllocation() local
4926 record->SetType(type); in RecordAllocation()
4927 record->SetByteCount(byte_count); in RecordAllocation()
4928 record->SetThinLockId(self->GetThreadId()); in RecordAllocation()
[all …]
/art/tools/
Dart60 PERF="record"
89 invoke_with="perf record -o $ANDROID_DATA/perf.data -e cycles:u $invoke_with"