summaryrefslogtreecommitdiff
path: root/deps/v8/src/libplatform/tracing/perfetto-shared-memory.cc
blob: 6c31c05070596e1d022f4cc9eb3dc5432ad77921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/libplatform/tracing/perfetto-shared-memory.h"

#include "src/base/platform/platform.h"
#include "src/base/template-utils.h"

namespace v8 {
namespace platform {
namespace tracing {

PerfettoSharedMemory::PerfettoSharedMemory(size_t size)
    : size_(size),
      paged_memory_(::perfetto::base::PagedMemory::Allocate(size)) {
  // TODO(956543): Find a cross-platform solution.
  // TODO(petermarshall): Don't assume that size is page-aligned.
}

std::unique_ptr<::perfetto::SharedMemory>
PerfettoSharedMemoryFactory::CreateSharedMemory(size_t size) {
  return base::make_unique<PerfettoSharedMemory>(size);
}

}  // namespace tracing
}  // namespace platform
}  // namespace v8