-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCreateSampleDump.java
More file actions
221 lines (190 loc) · 5.56 KB
/
CreateSampleDump.java
File metadata and controls
221 lines (190 loc) · 5.56 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*******************************************************************************
* Copyright (c) 2008 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.mat.tests;
import java.lang.ref.SoftReference;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
public class CreateSampleDump
{
public static void main(String[] args) throws Exception
{
DominatorTestData dominatorTestData = new DominatorTestData();
ReferenceTestData referenceTestData = new ReferenceTestData();
System.out.println("Acquire Heap Dump NOW (then press any key to terminate program)");
int c = System.in.read();
// Control-break causes read to return early, so try again for another key to wait
// for the dump to complete
if (c == -1)
System.in.read();
System.out.println(dominatorTestData);
System.out.println(referenceTestData);
}
// //////////////////////////////////////////////////////////////
// dominator tree
// //////////////////////////////////////////////////////////////
static class DominatorTestData
{
R r;
DominatorTestData()
{
// Create Lengauer & Tarjan Paper Tree
A a = new A();
B b = new B();
C c = new C();
D d = new D();
E e = new E();
F f = new F();
G g = new G();
H h = new H();
I i = new I();
J j = new J();
K k = new K();
L l = new L();
r = new R();
a.d = d;
b.a = a;
b.d = d;
b.e = e;
c.f = f;
c.g = g;
d.l = l;
e.h = h;
f.i = i;
g.i = i;
g.j = j;
h.e = e;
h.k = k;
i.k = k;
j.i = i;
k.i = i;
k.r = r;
l.h = h;
r.a = a;
r.b = b;
r.c = c;
}
static class A
{
D d;
}
static class B
{
A a;
D d;
E e;
}
static class C
{
F f;
G g;
}
static class D
{
L l;
}
static class E
{
H h;
}
static class F
{
I i;
}
static class G
{
I i;
J j;
}
static class H
{
E e;
K k;
}
static class I
{
K k;
}
static class J
{
I i;
}
static class K
{
I i;
R r;
}
static class L
{
H h;
}
static class R
{
A a;
B b;
C c;
}
}
// //////////////////////////////////////////////////////////////
// paths tests
// //////////////////////////////////////////////////////////////
static class ReferenceTestData
{
@SuppressWarnings("unchecked")
SoftReference clearedSoftReference;
@SuppressWarnings("unchecked")
SoftReference availableSoftReference;
@SuppressWarnings("unchecked")
WeakReference clearedWeakReference;
@SuppressWarnings("unchecked")
WeakReference availableWeakReference;
String keptWeakReference;
ReferenceTestData()
{
// Soft reference
int size = (int) Runtime.getRuntime().totalMemory();
byte[] lostSoftReference = null;
while (lostSoftReference == null)
{
size -= (1 << 20);
try
{
lostSoftReference = new byte[size];
}
catch (OutOfMemoryError ignore)
{}
}
clearedSoftReference = new SoftReference<byte[]>(lostSoftReference);
lostSoftReference = null;
@SuppressFBWarnings("UC_UCELESS_OBJECT")
ArrayList<byte[]> garbage = new ArrayList<byte[]>();
while (clearedSoftReference.get() != null)
{
try
{
garbage.add(new byte[size - (1 << 10)]);
}
catch (OutOfMemoryError ignore)
{
// $JL-EXC$
}
}
availableSoftReference = new SoftReference<String>(new String("availableSoftReference"));
// Weak reference
String lostWeakReference = new String("clearedWeakReference");
clearedWeakReference = new WeakReference<String>(lostWeakReference);
keptWeakReference = new String("keptWeakReference");
availableWeakReference = new WeakReference<String>(keptWeakReference);
}
}
}