forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heap.h
75 lines (56 loc) · 2.42 KB
/
heap.h
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef CARBON_EXPLORER_INTERPRETER_HEAP_H_
#define CARBON_EXPLORER_INTERPRETER_HEAP_H_
#include <vector>
#include "common/ostream.h"
#include "explorer/common/nonnull.h"
#include "explorer/common/source_location.h"
#include "explorer/interpreter/address.h"
#include "explorer/interpreter/heap_allocation_interface.h"
#include "explorer/interpreter/value.h"
namespace Carbon {
// A Heap represents the abstract machine's dynamically allocated memory.
class Heap : public HeapAllocationInterface {
public:
enum class ValueState {
Uninitialized,
Alive,
Dead,
};
// Constructs an empty Heap.
explicit Heap(Nonnull<Arena*> arena) : arena_(arena){};
Heap(const Heap&) = delete;
auto operator=(const Heap&) -> Heap& = delete;
// Returns the value at the given address in the heap after
// checking that it is alive.
auto Read(const Address& a, SourceLocation source_loc) const
-> ErrorOr<Nonnull<const Value*>>;
// Writes the given value at the address in the heap after
// checking that the address is alive.
auto Write(const Address& a, Nonnull<const Value*> v,
SourceLocation source_loc) -> ErrorOr<Success>;
// Put the given value on the heap and mark its state.
// Mark UninitializedValue as uninitialized and other values as alive.
auto AllocateValue(Nonnull<const Value*> v) -> AllocationId override;
// Marks this allocation, and all of its sub-objects, as dead.
void Deallocate(AllocationId allocation) override;
void Deallocate(const Address& a);
// Print all the values on the heap to the stream `out`.
void Print(llvm::raw_ostream& out) const;
LLVM_DUMP_METHOD void Dump() const { Print(llvm::errs()); }
auto arena() const -> Arena& override { return *arena_; }
private:
// Signal an error if the allocation is no longer alive.
auto CheckAlive(AllocationId allocation, SourceLocation source_loc) const
-> ErrorOr<Success>;
// Signal an error if the allocation has not been initialized.
auto CheckInit(AllocationId allocation, SourceLocation source_loc) const
-> ErrorOr<Success>;
Nonnull<Arena*> arena_;
std::vector<Nonnull<const Value*>> values_;
std::vector<ValueState> states_;
};
} // namespace Carbon
#endif // CARBON_EXPLORER_INTERPRETER_HEAP_H_