|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * Copyright (c) 2017, 2022, Red Hat, Inc. All rights reserved.
|
4 | 4 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
5 | 5 | *
|
@@ -124,14 +124,15 @@ HeapWord* EpsilonHeap::allocate_work(size_t size, bool verbose) {
|
124 | 124 | }
|
125 | 125 |
|
126 | 126 | // Expand and loop back if space is available
|
| 127 | + size_t size_in_bytes = size * HeapWordSize; |
127 | 128 | size_t space_left = max_capacity() - capacity();
|
128 |
| - size_t want_space = MAX2(size, EpsilonMinHeapExpand); |
| 129 | + size_t want_space = MAX2(size_in_bytes, EpsilonMinHeapExpand); |
129 | 130 |
|
130 | 131 | if (want_space < space_left) {
|
131 | 132 | // Enough space to expand in bulk:
|
132 | 133 | bool expand = _virtual_space.expand_by(want_space);
|
133 | 134 | assert(expand, "Should be able to expand");
|
134 |
| - } else if (size < space_left) { |
| 135 | + } else if (size_in_bytes < space_left) { |
135 | 136 | // No space to expand in bulk, and this allocation is still possible,
|
136 | 137 | // take all the remaining space:
|
137 | 138 | bool expand = _virtual_space.expand_by(space_left);
|
|
0 commit comments