Home
last modified time | relevance | path

Searched refs:allocation_tracker_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/profiler/
Dheap-profiler.cc131 allocation_tracker_.reset(new AllocationTracker(ids_.get(), names_.get())); in StartHeapObjectsTracking()
148 allocation_tracker_.reset(); in StopHeapObjectsTracking()
186 if (!known_object && allocation_tracker_) { in ObjectMoveEvent()
187 allocation_tracker_->address_to_trace()->MoveObject(from, to, size); in ObjectMoveEvent()
194 if (allocation_tracker_) { in AllocationEvent()
195 allocation_tracker_->AllocationEvent(addr, size); in AllocationEvent()
Dheap-profiler.h43 return allocation_tracker_.get(); in allocation_tracker()
75 bool is_tracking_allocations() const { return !!allocation_tracker_; } in is_tracking_allocations()
90 std::unique_ptr<AllocationTracker> allocation_tracker_; variable
/external/tensorflow/tensorflow/compiler/xla/service/
Dservice.cc151 allocation_tracker_(execute_backend.get()), in Service()
202 return allocation_tracker_.Unregister(arg->data()); in Unregister()
210 allocation_tracker_.DeconstructTuple(arg->tuple_handle())); in DeconstructTuple()
240 auto buffer_status = allocation_tracker_.Resolve(*arguments[i]); in ResolveAndValidateArguments()
561 allocation_tracker_.Register(std::move(result), result_tags[i])); in ExecuteParallelAndRegisterResult()
679 return allocation_tracker_.Register(std::move(result), result_tag); in ExecuteAndRegisterResult()
901 allocation_tracker_.Resolve(result->output())); in Execute()
987 allocation_tracker_.Register(std::move(result_buffer), in ExecuteAsync()
1016 allocation_tracker_.Resolve(arg->data())); in TransferToClient()
1105 allocation_tracker_.Register(std::move(shaped_buffer), in TransferToServer()
[all …]
Dservice.h366 AllocationTracker allocation_tracker_; variable