We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a6319c commit 09f6d98Copy full SHA for 09f6d98
openjdk/mmtkHeap.hpp
@@ -25,6 +25,7 @@
25
#ifndef MMTK_OPENJDK_MMTK_HEAP_HPP
26
#define MMTK_OPENJDK_MMTK_HEAP_HPP
27
28
+#include "mmtkBarrierSet.hpp"
29
#include "gc/shared/collectedHeap.hpp"
30
#include "gc/shared/collectorPolicy.hpp"
31
#include "gc/shared/gcPolicyCounters.hpp"
@@ -98,6 +99,10 @@ class MMTkHeap : public CollectedHeap {
98
99
bool is_in_reserved(const void* p) const;
100
bool supports_tlab_allocation() const;
101
102
+ bool supports_inline_contig_alloc() const {
103
+ return MMTK_ENABLE_ALLOCATION_FASTPATH;
104
+ }
105
+
106
// The amount of space available for thread-local allocation buffers.
107
size_t tlab_capacity(Thread *thr) const;
108
0 commit comments