HomeSort by relevance Sort by last modified time
    Searched refs:AllocationProfile (Results 1 - 7 of 7) sorted by null

  /external/v8/src/profiler/
sampling-heap-profiler.h 25 class AllocationProfile : public v8::AllocationProfile {
27 AllocationProfile() : nodes_() {}
29 v8::AllocationProfile::Node* GetRootNode() override {
33 std::deque<v8::AllocationProfile::Node>& nodes() { return nodes_; }
36 std::deque<v8::AllocationProfile::Node> nodes_;
38 DISALLOW_COPY_AND_ASSIGN(AllocationProfile);
47 v8::AllocationProfile* GetAllocationProfile();
128 // Methods that construct v8::AllocationProfile.
131 // AllocationProfile::Node. The newly created AllocationProfile::Node is adde
    [all...]
sampling-heap-profiler.cc 44 v8::AllocationProfile::Allocation SamplingHeapProfiler::ScaleSample(
210 v8::AllocationProfile::Node* SamplingHeapProfiler::TranslateAllocationNode(
211 AllocationProfile* profile, SamplingHeapProfiler::AllocationNode* node,
218 int line = v8::AllocationProfile::kNoLineNumberInfo;
219 int column = v8::AllocationProfile::kNoColumnNumberInfo;
220 std::vector<v8::AllocationProfile::Allocation> allocations;
242 profile->nodes().push_back(v8::AllocationProfile::Node(
246 std::vector<v8::AllocationProfile::Node*>(), allocations}));
247 v8::AllocationProfile::Node* current = &profile->nodes().back();
260 v8::AllocationProfile* SamplingHeapProfiler::GetAllocationProfile()
    [all...]
heap-profiler.h 37 AllocationProfile* GetAllocationProfile();
heap-profiler.cc 104 v8::AllocationProfile* HeapProfiler::GetAllocationProfile() {
  /external/v8/include/
v8-profiler.h 429 * AllocationProfile is a sampled profile of allocations done by the program.
432 class V8_EXPORT AllocationProfile {
488 * AllocationProfile.
501 * containing AllocationProfile.
505 virtual ~AllocationProfile() {}
662 AllocationProfile* GetAllocationProfile();
  /external/v8/test/cctest/
test-heap-profiler.cc     [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 163 milliseconds