Welcome to mirror list, hosted at ThFree Co, Russian Federation.

heap.cc « cppgc « heap « src « v8 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e60cb155738568d071bf4d8610b3239bbbfbc00b (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 2020 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/heap/cppgc/heap.h"

#include <memory>

#include "src/heap/cppgc/heap-object-header.h"

namespace cppgc {

std::unique_ptr<Heap> Heap::Create() {
  return std::make_unique<internal::Heap>();
}

namespace internal {

void Heap::CollectGarbage() {
  for (HeapObjectHeader* header : objects_) {
    header->Finalize();
    free(header);
  }
  objects_.clear();
}

}  // namespace internal
}  // namespace cppgc