|
| 1 | +/* |
| 2 | + * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +package org.openjdk.bench.vm.runtime; |
| 25 | + |
| 26 | +import org.openjdk.jmh.annotations.*; |
| 27 | +import org.openjdk.jmh.infra.Blackhole; |
| 28 | + |
| 29 | +import jdk.internal.misc.Unsafe; |
| 30 | +import java.util.concurrent.TimeUnit; |
| 31 | + |
| 32 | +/** |
| 33 | + * The purpose of these microbenchmarks is to get the overhead of NMT in disable/summary/detail mode. |
| 34 | + */ |
| 35 | + |
| 36 | +@BenchmarkMode(Mode.AverageTime) |
| 37 | +@OutputTimeUnit(TimeUnit.MILLISECONDS) |
| 38 | +@State(Scope.Benchmark) |
| 39 | +@Warmup(iterations = 2, time = 1, timeUnit = TimeUnit.SECONDS) |
| 40 | +@Measurement(iterations = 5, time = 1, timeUnit = TimeUnit.SECONDS) |
| 41 | +public abstract class NMTBenchmark { |
| 42 | + static final int S = 1024; |
| 43 | + |
| 44 | + Unsafe unsafe; |
| 45 | + long addresses[]; |
| 46 | + |
| 47 | + //@Param({"100000", "1000000"}) |
| 48 | + @Param({"100000"}) |
| 49 | + public int N; |
| 50 | + |
| 51 | + @Param({"0", "4"}) |
| 52 | + public int THREADS; |
| 53 | + |
| 54 | + // Each TestThread instance allocates/frees a portion (`start` to `end`) of the `addresses` array. |
| 55 | + // The thread index and a flag for doing allocate or freeing it are sent to the constructor. |
| 56 | + private class TestThread extends Thread { |
| 57 | + private int thr_index; |
| 58 | + private int count; |
| 59 | + private int start, end; |
| 60 | + private boolean allocate; |
| 61 | + |
| 62 | + public TestThread(int index, boolean alloc_or_free) { |
| 63 | + thr_index = index; |
| 64 | + count = N / THREADS; |
| 65 | + start = thr_index * count; |
| 66 | + end = start + count; |
| 67 | + allocate = alloc_or_free; |
| 68 | + } |
| 69 | + |
| 70 | + public void run() { |
| 71 | + for (int i = start; i < end; i++) { |
| 72 | + if (allocate) { |
| 73 | + alloc(i); |
| 74 | + } else { |
| 75 | + deallocate(i); |
| 76 | + } |
| 77 | + } |
| 78 | + } |
| 79 | + |
| 80 | + // make a deeper and different stack trace |
| 81 | + // NMT uses hash of stack trace to store them in a static table. |
| 82 | + // So, if all allocations come from the same call-site, they all hashed into one entry in that table. |
| 83 | + private void alloc(int i) { |
| 84 | + if (i % 3 == 0) alloc0(i); |
| 85 | + if (i % 3 == 1) alloc1(i); |
| 86 | + if (i % 3 == 2) alloc2(i); |
| 87 | + } |
| 88 | + private void alloc0(int i) { |
| 89 | + if (unsafe == null) return; |
| 90 | + addresses[i] = unsafe.allocateMemory(S); |
| 91 | + } |
| 92 | + private void alloc1(int i) { alloc0(i); } |
| 93 | + private void alloc2(int i) { alloc1(i); } |
| 94 | + |
| 95 | + private void deallocate(int i) { |
| 96 | + if (unsafe == null) |
| 97 | + return; |
| 98 | + |
| 99 | + if (addresses[i] != 0) { |
| 100 | + unsafe.freeMemory(addresses[i]); |
| 101 | + addresses[i] = 0; |
| 102 | + } |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + @Benchmark |
| 107 | + public void mixAallocateFreeMemory(Blackhole bh) throws InterruptedException{ |
| 108 | + |
| 109 | + Unsafe unsafe = Unsafe.getUnsafe(); |
| 110 | + if (unsafe == null) { |
| 111 | + throw new InterruptedException(); |
| 112 | + } |
| 113 | + |
| 114 | + addresses = new long[N]; |
| 115 | + if (THREADS != 0) { // Multi-threaded |
| 116 | + TestThread threads[] = new TestThread[THREADS]; |
| 117 | + |
| 118 | + for (int t = 0; t < THREADS; t++) { |
| 119 | + // One half of threads allocate and the other half free the memory |
| 120 | + threads[t] = new TestThread(t, t < (THREADS / 2) ? true : false); |
| 121 | + threads[t].start(); |
| 122 | + } |
| 123 | + |
| 124 | + for (int t = 0; t < THREADS; t++) { |
| 125 | + try { |
| 126 | + threads[t].join(); |
| 127 | + } catch (InterruptedException ie) { |
| 128 | + // do nothing |
| 129 | + } |
| 130 | + } |
| 131 | + } else { // No threads used. |
| 132 | + |
| 133 | + for (int i = 0; i < N; i++) { |
| 134 | + addresses[i] = unsafe.allocateMemory(S); |
| 135 | + //Mixing alloc/free |
| 136 | + if (i % 3 == 0) { |
| 137 | + if (addresses[i] != 0) { |
| 138 | + unsafe.freeMemory(addresses[i]); |
| 139 | + addresses[i] = 0; |
| 140 | + } |
| 141 | + } |
| 142 | + } |
| 143 | + |
| 144 | + for (int i = 0; i < N; i++) { |
| 145 | + if (i % 2 == 0) { |
| 146 | + if (addresses[i] != 0) { |
| 147 | + unsafe.freeMemory(addresses[i]); |
| 148 | + addresses[i] = 0; |
| 149 | + } |
| 150 | + } |
| 151 | + } |
| 152 | + |
| 153 | + // free the rest of allocations |
| 154 | + for (int i = 0; i < N; i++) { |
| 155 | + if (addresses[i] != 0) { |
| 156 | + unsafe.freeMemory(addresses[i]); |
| 157 | + addresses[i] = 0; |
| 158 | + } |
| 159 | + } |
| 160 | + } |
| 161 | + } |
| 162 | + |
| 163 | + @Benchmark |
| 164 | + public void onlyAllocateMemory() throws InterruptedException { |
| 165 | + Unsafe unsafe = Unsafe.getUnsafe(); |
| 166 | + if (unsafe == null) { |
| 167 | + throw new InterruptedException(); |
| 168 | + } |
| 169 | + |
| 170 | + addresses = new long[N]; |
| 171 | + if (THREADS != 0) { // Multi-threaded |
| 172 | + TestThread threads[] = new TestThread[THREADS]; |
| 173 | + |
| 174 | + for (int t = 0; t < THREADS; t++) { |
| 175 | + // One half of threads allocate and the other half free the memory |
| 176 | + threads[t] = new TestThread(t, t < (THREADS / 2) ? true : false); |
| 177 | + threads[t].start(); |
| 178 | + } |
| 179 | + |
| 180 | + for (int t = 0; t < THREADS; t++) { |
| 181 | + try { |
| 182 | + threads[t].join(); |
| 183 | + } catch (InterruptedException ie) { |
| 184 | + // do nothing |
| 185 | + } |
| 186 | + } |
| 187 | + } else { // No threads used. |
| 188 | + for (int i = 0; i < N; i++) { |
| 189 | + addresses[i] = unsafe.allocateMemory(S); |
| 190 | + } |
| 191 | + } |
| 192 | + } |
| 193 | + |
| 194 | + @Benchmark |
| 195 | + public void mixAllocateReallocateMemory() throws InterruptedException { |
| 196 | + Unsafe unsafe = Unsafe.getUnsafe(); |
| 197 | + if (unsafe == null) { |
| 198 | + throw new InterruptedException(); |
| 199 | + } |
| 200 | + |
| 201 | + addresses = new long[N]; |
| 202 | + if (THREADS != 0) { // Multi-threaded |
| 203 | + TestThread threads[] = new TestThread[THREADS]; |
| 204 | + |
| 205 | + for (int t = 0; t < THREADS; t++) { |
| 206 | + // One half of threads allocate and the other half free the memory |
| 207 | + threads[t] = new TestThread(t, t < (THREADS / 2) ? true : false); |
| 208 | + threads[t].start(); |
| 209 | + } |
| 210 | + |
| 211 | + for (int t = 0; t < THREADS; t++) { |
| 212 | + try { |
| 213 | + threads[t].join(); |
| 214 | + } catch (InterruptedException ie) { |
| 215 | + // do nothing |
| 216 | + } |
| 217 | + } |
| 218 | + } else { // No threads used. |
| 219 | + for (int i = 0; i < N; i++) { |
| 220 | + addresses[i] = unsafe.allocateMemory(S); |
| 221 | + //Mixing alloc/realloc |
| 222 | + if (i % 3 == 0) { |
| 223 | + if (addresses[i] != 0) { |
| 224 | + unsafe.reallocateMemory(addresses[i], S * 2); |
| 225 | + addresses[i] = 0; |
| 226 | + } |
| 227 | + } |
| 228 | + } |
| 229 | + |
| 230 | + for (int i = 0; i < N; i++) { |
| 231 | + if (i % 2 == 0) { |
| 232 | + if (addresses[i] != 0) { |
| 233 | + unsafe.reallocateMemory(addresses[i], S / 2); |
| 234 | + addresses[i] = 0; |
| 235 | + } |
| 236 | + } |
| 237 | + } |
| 238 | + } |
| 239 | + } |
| 240 | + |
| 241 | + public static final String ADD_EXPORTS = "--add-exports"; |
| 242 | + public static final String MISC_PACKAGE = "java.base/jdk.internal.misc=ALL-UNNAMED"; // used for Unsafe API |
| 243 | + |
| 244 | + @Fork(value = 2, jvmArgsPrepend = { "-XX:NativeMemoryTracking=off", ADD_EXPORTS, MISC_PACKAGE}) |
| 245 | + public static class NMTOff extends NMTBenchmark { } |
| 246 | + |
| 247 | + @Fork(value = 2, jvmArgsPrepend = { "-XX:NativeMemoryTracking=summary", ADD_EXPORTS, MISC_PACKAGE}) |
| 248 | + public static class NMTSummary extends NMTBenchmark { } |
| 249 | + |
| 250 | + @Fork(value = 2, jvmArgsPrepend = { "-XX:NativeMemoryTracking=detail", ADD_EXPORTS, MISC_PACKAGE}) |
| 251 | + public static class NMTDetail extends NMTBenchmark { } |
| 252 | +} |
0 commit comments