[aarch64-port-dev ] AArch64: C2 completes bootstrap with -Xcomp!!
Andrew Dinn
adinn at redhat.com
Mon Aug 19 02:02:53 PDT 2013
Enclosed below (after my signature) is the output from running the
latest C2 build with the following command line arguments
-server -Xcomp -XX:-UseCompressedOops -XX:-TieredCompilation
-XX:+PrintCompilation -XX:+TraceNMethodInstalls -XX:-DisableBCCheck HelloC3
n.b. the various SIGSEGVs are expected.
n.b.b. the arguments:
force C2 compilation of everything (-Xcomp -XX:-TieredCompilation)
switch off packing 64 bit oops into 32 bit slots (-XX:-UseCompressedOops)
trace compilation of each individual method (-XX:+PrintCompilation)
trace installation of each compiled method (-XX:+TraceNMethodInstalls)
HelloC3 just runs a few simple loop methods one of which invokes the
other, the latter updating some local state:
class HelloC3
{
public HelloC3 next;
public static void main(String[] args)
{
int count = 256;
if (args.length > 0) {
count = Integer.valueOf(args[0]);
}
HelloC3 h = new HelloC3();
HelloC3 h2 = new HelloC3();
h.test(h2, count);
}
public int test(HelloC3 h, int count)
{
for (int i = 0 ; i < count; i++) {
this.next = h;
count = h.test2(this, count);
}
return count;
}
public int test2(HelloC3 h, int count) {
this.next = h;
h.next = this;
return count--;
}
}
regards,
Andrew Dinn
-----------
(gdb) run
Starting program:
/ssd/home/adinn/redhat/openjdk/arm/ARM64/hg/jdk8-aarch64/build/linux-aarch64-normal-server-slowdebug/images/j2sdk-image/bin/java
-server -Xcomp -XX:-UseCompressedOops -XX:-TieredCompilation
-XX:+PrintCompilation -XX:+TraceNMethodInstalls -XX:-DisableBCCheck HelloC3
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
[New Thread 0x7ffff69aa700 (LWP 20264)]
[New Thread 0x7ffff4981700 (LWP 20265)]
[New Thread 0x7ffff4780700 (LWP 20266)]
[New Thread 0x7ffff457f700 (LWP 20267)]
[New Thread 0x7ffff437e700 (LWP 20268)]
[New Thread 0x7ffef551b700 (LWP 20269)]
[New Thread 0x7ffef5299700 (LWP 20270)]
[New Thread 0x7ffef5017700 (LWP 20271)]
[New Thread 0x7ffef4d61700 (LWP 20272)]
[New Thread 0x7ffef4b60700 (LWP 20273)]
[New Thread 0x7ffef495f700 (LWP 20274)]
2634 1 b java.lang.Thread::<init> (49 bytes)
Installing method (4)
java.lang.Thread.<init>(Ljava/lang/ThreadGroup;Ljava/lang/String;)V
2658 2 b java.lang.Thread::init (202 bytes)
Installing method (4)
java.lang.Thread.init(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;J)V
2684 3 b java.lang.System::getSecurityManager (4 bytes)
Installing method (4)
java.lang.System.getSecurityManager()Ljava/lang/SecurityManager;
2687 4 b java.lang.ThreadGroup::checkAccess (14 bytes)
Installing method (4) java.lang.ThreadGroup.checkAccess()V
2689 5 !b java.lang.ThreadGroup::addUnstarted (40 bytes)
Installing method (4) java.lang.ThreadGroup.addUnstarted()V
2696 6 b java.lang.Thread::isDaemon (5 bytes)
Installing method (4) java.lang.Thread.isDaemon()Z
2698 7 b java.lang.Thread::getPriority (5 bytes)
Installing method (4) java.lang.Thread.getPriority()I
2700 8 b java.lang.String::toCharArray (25 bytes)
Installing method (4) java.lang.String.toCharArray()[C
2708 9 b java.lang.Thread::getContextClassLoader (44 bytes)
Installing method (4)
java.lang.Thread.getContextClassLoader()Ljava/lang/ClassLoader;
2715 10 b java.security.AccessController::getContext (23
bytes)
Installing method (4)
java.security.AccessController.getContext()Ljava/security/AccessControlContext;
2721 11 n
java.security.AccessController::getStackAccessControlContext (native)
(static)
2721 12 b java.security.AccessControlContext::optimize
(319 bytes)
Installing method (4)
java.security.AccessControlContext.optimize()Ljava/security/AccessControlContext;
2772 13 n
java.security.AccessController::getInheritedAccessControlContext
(native) (static)
2772 14 b java.lang.Thread::setPriority (56 bytes)
Installing method (4) java.lang.Thread.setPriority(I)V
2776 15 b java.lang.Thread::checkAccess (14 bytes)
Installing method (4) java.lang.Thread.checkAccess()V
2780 16 b java.lang.Thread::getThreadGroup (5 bytes)
Installing method (4)
java.lang.Thread.getThreadGroup()Ljava/lang/ThreadGroup;
2781 17 b java.lang.ThreadGroup::getMaxPriority (5 bytes)
Installing method (4) java.lang.ThreadGroup.getMaxPriority()I
2783 18 n java.lang.Thread::setPriority0 (native)
2783 19 s b java.lang.Thread::nextThreadID (10 bytes)
Installing method (4) java.lang.Thread.nextThreadID()J
[New Thread 0x7ffef475e700 (LWP 20275)]
2788 20 b java.lang.System::getProperty (25 bytes)
Installing method (4)
java.lang.System.getProperty(Ljava/lang/String;)Ljava/lang/String;
2791 21 b java.lang.System::checkKey (34 bytes)
Installing method (4) java.lang.System.checkKey(Ljava/lang/String;)V
2793 22 b java.lang.String::equals (81 bytes)
Installing method (4) java.lang.String.equals(Ljava/lang/Object;)Z
2813 23 b java.util.Properties::getProperty (46 bytes)
Installing method (4)
java.util.Properties.getProperty(Ljava/lang/String;)Ljava/lang/String;
2824 24 s b java.util.Hashtable::get (70 bytes)
Installing method (4)
java.util.Hashtable.get(Ljava/lang/Object;)Ljava/lang/Object;
2837 25 b java.util.Hashtable::hash (48 bytes)
Installing method (4) java.util.Hashtable.hash(Ljava/lang/Object;)I
2847 26 b java.lang.String::hash32 (45 bytes)
Installing method (4) java.lang.String.hash32()I
2852 27 b sun.misc.Hashing::murmur3_32 (188 bytes)
Installing method (4) sun.misc.Hashing.murmur3_32(I[CII)I
2867 28 b java.lang.Integer::rotateLeft (9 bytes)
Installing method (4) java.lang.Integer.rotateLeft(II)I
[New Thread 0x7ffef455d700 (LWP 20276)]
2881 29 b sun.launcher.LauncherHelper::<clinit> (67 bytes)
Installing method (4) sun.launcher.LauncherHelper.<clinit>()V
2883 29 sun.launcher.LauncherHelper::<clinit> (67
bytes) made not entrant
2884 30 b sun.launcher.LauncherHelper::<init> (7 bytes)
Installing method (4)
sun.launcher.LauncherHelper.<init>(Ljava/lang/String;I)V
2887 31 b java.lang.Enum::<init> (15 bytes)
Installing method (4) java.lang.Enum.<init>(Ljava/lang/String;I)V
2892 32 b java.lang.Object::<init> (1 bytes)
Installing method (4) java.lang.Object.<init>()V
2896 33 b java.lang.StringBuilder::<init> (7 bytes)
Installing method (4) java.lang.StringBuilder.<init>()V
2903 34 b sun.misc.VM::getSavedProperty (27 bytes)
Installing method (4)
sun.misc.VM.getSavedProperty(Ljava/lang/String;)Ljava/lang/String;
2909 35 s b java.util.Hashtable::isEmpty (13 bytes)
Installing method (4) java.util.Hashtable.isEmpty()Z
Program received signal SIGSEGV, Segmentation fault.
2915 23 java.util.Properties::getProperty (46 bytes)
made not entrant
2915 36 b java.lang.ClassLoader::getSystemClassLoader (44
bytes)
Installing method (4)
java.lang.ClassLoader.getSystemClassLoader()Ljava/lang/ClassLoader;
2922 37 s!b java.lang.ClassLoader::initSystemClassLoader
(109 bytes)
Installing method (4) java.lang.ClassLoader.initSystemClassLoader()V
2944 38 !b sun.launcher.LauncherHelper::makePlatformString
(70 bytes)
Installing method (4)
sun.launcher.LauncherHelper.makePlatformString(Z[B)Ljava/lang/String;
2953 39 b sun.launcher.LauncherHelper::initOutput (17 bytes)
Installing method (4) sun.launcher.LauncherHelper.initOutput(Z)V
2958 40 b java.util.Properties::getProperty (46 bytes)
Installing method (4)
java.util.Properties.getProperty(Ljava/lang/String;)Ljava/lang/String;
2966 41 b java.nio.charset.Charset::isSupported (13 bytes)
Installing method (4)
java.nio.charset.Charset.isSupported(Ljava/lang/String;)Z
2969 42 b java.nio.charset.Charset::lookup (44 bytes)
Installing method (4)
java.nio.charset.Charset.lookup(Ljava/lang/String;)Ljava/nio/charset/Charset;
2974 38 ! sun.launcher.LauncherHelper::makePlatformString
(70 bytes) made not entrant
2974 43 b java.lang.String::<init> (10 bytes)
Installing method (4) java.lang.String.<init>([BLjava/lang/String;)V
2984 44 !b java.lang.StringCoding::decode (120 bytes)
Installing method (4)
java.lang.StringCoding.decode(Ljava/lang/String;[BII)[C
3003 45 b java.lang.StringCoding::deref (19 bytes)
Installing method (4)
java.lang.StringCoding.deref(Ljava/lang/ThreadLocal;)Ljava/lang/Object;
3009 46 b java.lang.ThreadLocal::get (38 bytes)
Installing method (4) java.lang.ThreadLocal.get()Ljava/lang/Object;
3015 47 b java.lang.ThreadLocal::getMap (5 bytes)
Installing method (4)
java.lang.ThreadLocal.getMap(Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;
3019 48 b
java.lang.ThreadLocal$ThreadLocalMap::access$000 (6 bytes)
Installing method (4)
java.lang.ThreadLocal$ThreadLocalMap.access$000(Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;
3021 49 b java.lang.ThreadLocal$ThreadLocalMap::getEntry
(42 bytes)
Installing method (4)
java.lang.ThreadLocal$ThreadLocalMap.getEntry(Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;
3031 50 b java.lang.ThreadLocal::access$400 (5 bytes)
Installing method (4)
java.lang.ThreadLocal.access$400(Ljava/lang/ThreadLocal;)I
3033 51 b java.lang.ref.SoftReference::get (29 bytes)
Installing method (4) java.lang.ref.SoftReference.get()Ljava/lang/Object;
3038 52 b
java.lang.StringCoding$StringDecoder::requestedCharsetName (5 bytes)
Installing method (4)
java.lang.StringCoding$StringDecoder.requestedCharsetName()Ljava/lang/String;
3040 53 !b java.lang.StringCoding$StringDecoder::decode
(179 bytes)
Installing method (4) java.lang.StringCoding$StringDecoder.decode([BII)[C
3056 54 b
java.nio.charset.CharsetDecoder::maxCharsPerByte (5 bytes)
Installing method (4) java.nio.charset.CharsetDecoder.maxCharsPerByte()F
3058 55 b java.lang.StringCoding::access$000 (6 bytes)
Installing method (4) java.lang.StringCoding.access$000(IF)I
3059 56 b java.lang.StringCoding::scale (7 bytes)
Installing method (4) java.lang.StringCoding.scale(IF)I
3060 57 b sun.nio.cs.UTF_8$Decoder::decode (759 bytes)
Installing method (4) sun.nio.cs.UTF_8$Decoder.decode([BII[C)I
3156 58 b java.lang.StringCoding::access$100 (8 bytes)
Installing method (4)
java.lang.StringCoding.access$100([CILjava/nio/charset/Charset;Z)[C
3159 59 b java.lang.StringCoding::safeTrim (24 bytes)
Installing method (4)
java.lang.StringCoding.safeTrim([CILjava/nio/charset/Charset;Z)[C
3163 60 !b sun.launcher.LauncherHelper::checkAndLoadMain
(159 bytes)
Installing method (4)
sun.launcher.LauncherHelper.checkAndLoadMain(ZILjava/lang/String;)Ljava/lang/Class;
3172 61 b java.lang.String::replace (127 bytes)
Installing method (4) java.lang.String.replace(CC)Ljava/lang/String;
3216 62 b java.lang.ClassLoader::loadClass (7 bytes)
Installing method (4)
java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;
3220 63 b sun.misc.Launcher$AppClassLoader::loadClass (40
bytes)
Installing method (4)
sun.misc.Launcher$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;
3225 64 b java.lang.String::lastIndexOf (13 bytes)
Installing method (4) java.lang.String.lastIndexOf(I)I
3227 65 b java.lang.String::lastIndexOf (52 bytes)
Installing method (4) java.lang.String.lastIndexOf(II)I
3240 66 !b java.lang.ClassLoader::loadClass (122 bytes)
Installing method (4)
java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;
3251 67 b java.lang.ClassLoader::getClassLoadingLock (35
bytes)
Installing method (4)
java.lang.ClassLoader.getClassLoadingLock(Ljava/lang/String;)Ljava/lang/Object;
3256 68 b
java.util.concurrent.ConcurrentHashMap::putIfAbsent (79 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap.putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
3266 69 b java.util.concurrent.ConcurrentHashMap::hash
(74 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap.hash(Ljava/lang/Object;)I
3277 70 b
java.util.concurrent.ConcurrentHashMap::ensureSegment (144 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap.ensureSegment(I)Ljava/util/concurrent/ConcurrentHashMap$Segment;
3298 71 !b
java.util.concurrent.ConcurrentHashMap$Segment::put (237 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap$Segment.put(Ljava/lang/Object;ILjava/lang/Object;Z)Ljava/lang/Object;
3321 72 b
java.util.concurrent.locks.ReentrantLock::tryLock (9 bytes)
Installing method (4) java.util.concurrent.locks.ReentrantLock.tryLock()Z
3324 73 b
java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (67 bytes)
Installing method (4)
java.util.concurrent.locks.ReentrantLock$Sync.nonfairTryAcquire(I)Z
3329 74 b
java.util.concurrent.locks.AbstractQueuedSynchronizer::getState (5 bytes)
Installing method (4)
java.util.concurrent.locks.AbstractQueuedSynchronizer.getState()I
3331 75 b
java.util.concurrent.locks.AbstractQueuedSynchronizer::compareAndSetState (13
bytes)
Installing method (4)
java.util.concurrent.locks.AbstractQueuedSynchronizer.compareAndSetState(II)Z
3333 76 b
java.util.concurrent.locks.AbstractOwnableSynchronizer::setExclusiveOwnerThread
(6 bytes)
Installing method (4)
java.util.concurrent.locks.AbstractOwnableSynchronizer.setExclusiveOwnerThread(Ljava/lang/Thread;)V
3336 77 b java.util.concurrent.ConcurrentHashMap::entryAt
(29 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap.entryAt([Ljava/util/concurrent/ConcurrentHashMap$HashEntry;I)Ljava/util/concurrent/ConcurrentHashMap$HashEntry;
3338 78 b
java.util.concurrent.ConcurrentHashMap::setEntryAt (19 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap.setEntryAt([Ljava/util/concurrent/ConcurrentHashMap$HashEntry;ILjava/util/concurrent/ConcurrentHashMap$HashEntry;)V
3341 79 b
java.util.concurrent.locks.ReentrantLock::unlock (10 bytes)
Installing method (4) java.util.concurrent.locks.ReentrantLock.unlock()V
3346 80 b
java.util.concurrent.locks.AbstractQueuedSynchronizer::release (33 bytes)
Installing method (4)
java.util.concurrent.locks.AbstractQueuedSynchronizer.release(I)Z
3355 81 b
java.util.concurrent.locks.ReentrantLock$Sync::tryRelease (45 bytes)
Installing method (4)
java.util.concurrent.locks.ReentrantLock$Sync.tryRelease(I)Z
3364 82 b
java.util.concurrent.locks.AbstractOwnableSynchronizer::getExclusiveOwnerThread
(5 bytes)
Installing method (4)
java.util.concurrent.locks.AbstractOwnableSynchronizer.getExclusiveOwnerThread()Ljava/lang/Thread;
3366 83 b
java.util.concurrent.locks.AbstractQueuedSynchronizer::setState (6 bytes)
Installing method (4)
java.util.concurrent.locks.AbstractQueuedSynchronizer.setState(I)V
3368 84 b java.lang.ClassLoader::findLoadedClass (16 bytes)
Installing method (4)
java.lang.ClassLoader.findLoadedClass(Ljava/lang/String;)Ljava/lang/Class;
3374 85 b java.lang.ClassLoader::checkName (43 bytes)
Installing method (4) java.lang.ClassLoader.checkName(Ljava/lang/String;)Z
3383 86 b java.lang.String::length (6 bytes)
Installing method (4) java.lang.String.length()I
3387 87 b java.lang.String::indexOf (7 bytes)
Installing method (4) java.lang.String.indexOf(I)I
3390 88 b java.lang.String::indexOf (70 bytes)
Installing method (4) java.lang.String.indexOf(II)I
3404 89 b sun.misc.VM::allowArraySyntax (4 bytes)
Installing method (4) sun.misc.VM.allowArraySyntax()Z
3405 90 b java.lang.String::charAt (29 bytes)
Installing method (4) java.lang.String.charAt(I)C
3408 91 n java.lang.ClassLoader::findLoadedClass0 (native)
3409 92 b java.lang.ClassLoader::findBootstrapClassOrNull
(16 bytes)
Installing method (4)
java.lang.ClassLoader.findBootstrapClassOrNull(Ljava/lang/String;)Ljava/lang/Class;
3412 93 n java.lang.ClassLoader::findBootstrapClass
(native)
3413 94 !b java.net.URLClassLoader::findClass (29 bytes)
Installing method (4)
java.net.URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;
3415 94 ! java.net.URLClassLoader::findClass (29 bytes)
made not entrant
3416 95 b java.net.URLClassLoader$1::<init> (15 bytes)
Installing method (4)
java.net.URLClassLoader$1.<init>(Ljava/net/URLClassLoader;Ljava/lang/String;)V
3420 96 !b java.lang.ClassLoader::findNative (86 bytes)
Installing method (4)
java.lang.ClassLoader.findNative(Ljava/lang/ClassLoader;Ljava/lang/String;)J
3432 97 s b java.util.Vector::size (5 bytes)
Installing method (4) java.util.Vector.size()I
3435 98 s b java.util.Vector::elementAt (48 bytes)
Installing method (4) java.util.Vector.elementAt(I)Ljava/lang/Object;
3439 99 b java.util.Vector::elementData (7 bytes)
Installing method (4) java.util.Vector.elementData(I)Ljava/lang/Object;
3442 100 n java.lang.ClassLoader$NativeLibrary::find
(native)
3443 101 n java.security.AccessController::doPrivileged
(native) (static)
3443 102 b java.net.URLClassLoader$1::run (5 bytes)
Installing method (4) java.net.URLClassLoader$1.run()Ljava/lang/Object;
3445 103 !b java.net.URLClassLoader$1::run (73 bytes)
Installing method (4) java.net.URLClassLoader$1.run()Ljava/lang/Class;
3456 104 b java.lang.String::concat (47 bytes)
Installing method (4)
java.lang.String.concat(Ljava/lang/String;)Ljava/lang/String;
3467 105 b java.util.Arrays::copyOf (19 bytes)
Installing method (4) java.util.Arrays.copyOf([CI)[C
3474 106 b java.lang.String::getChars (16 bytes)
Installing method (4) java.lang.String.getChars([CI)V
3479 107 b java.net.URLClassLoader::access$000 (5 bytes)
Installing method (4)
java.net.URLClassLoader.access$000(Ljava/net/URLClassLoader;)Lsun/misc/URLClassPath;
3481 108 b sun.misc.URLClassPath::getResource (74 bytes)
Installing method (4)
sun.misc.URLClassPath.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
3484 109 s!b sun.misc.URLClassPath::getLoader (154 bytes)
Installing method (4)
sun.misc.URLClassPath.getLoader(I)Lsun/misc/URLClassPath$Loader;
3497 110 b java.util.ArrayList::size (5 bytes)
Installing method (4) java.util.ArrayList.size()I
3498 111 b java.util.Stack::empty (13 bytes)
Installing method (4) java.util.Stack.empty()Z
3500 112 s b java.util.Stack::pop (19 bytes)
Installing method (4) java.util.Stack.pop()Ljava/lang/Object;
3504 113 s b java.util.Stack::peek (25 bytes)
Installing method (4) java.util.Stack.peek()Ljava/lang/Object;
3511 114 s b java.util.Vector::removeElementAt (115 bytes)
Installing method (4) java.util.Vector.removeElementAt(I)V
3521 109 s! sun.misc.URLClassPath::getLoader (154 bytes)
made not entrant
3521 115 b sun.net.util.URLUtil::urlNoFragString (114 bytes)
Installing method (4)
sun.net.util.URLUtil.urlNoFragString(Ljava/net/URL;)Ljava/lang/String;
3523 115 sun.net.util.URLUtil::urlNoFragString (114
bytes) made not entrant
3523 116 b java.net.URL::getProtocol (5 bytes)
Installing method (4) java.net.URL.getProtocol()Ljava/lang/String;
3524 117 b java.lang.String::toLowerCase (8 bytes)
Installing method (4) java.lang.String.toLowerCase()Ljava/lang/String;
3527 118 b java.util.Locale::getDefault (4 bytes)
Installing method (4) java.util.Locale.getDefault()Ljava/util/Locale;
3528 119 b java.lang.String::toLowerCase (472 bytes)
Installing method (4)
java.lang.String.toLowerCase(Ljava/util/Locale;)Ljava/lang/String;
3585 120 b java.lang.Character::toLowerCase (6 bytes)
Installing method (4) java.lang.Character.toLowerCase(C)C
3588 121 b java.lang.Character::toLowerCase (9 bytes)
Installing method (4) java.lang.Character.toLowerCase(I)I
3590 122 b java.lang.CharacterData::of (120 bytes)
Installing method (4)
java.lang.CharacterData.of(I)Ljava/lang/CharacterData;
3593 123 b java.lang.CharacterDataLatin1::toLowerCase (39
bytes)
Installing method (4) java.lang.CharacterDataLatin1.toLowerCase(I)I
3595 124 b java.lang.CharacterDataLatin1::getProperties
(11 bytes)
Installing method (4) java.lang.CharacterDataLatin1.getProperties(I)I
3596 125 b java.lang.StringBuilder::append (8 bytes)
Installing method (4)
java.lang.StringBuilder.append(Ljava/lang/String;)Ljava/lang/StringBuilder;
3598 126 b java.lang.AbstractStringBuilder::append (48 bytes)
Installing method (4)
java.lang.AbstractStringBuilder.append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;
3601 127 b
java.lang.AbstractStringBuilder::ensureCapacityInternal (16 bytes)
Installing method (4)
java.lang.AbstractStringBuilder.ensureCapacityInternal(I)V
3604 128 b java.lang.String::getChars (62 bytes)
Installing method (4) java.lang.String.getChars(II[CI)V
3615 129 b java.net.URL::getHost (5 bytes)
Installing method (4) java.net.URL.getHost()Ljava/lang/String;
3618 130 b java.net.URL::getPort (5 bytes)
Installing method (4) java.net.URL.getPort()I
3619 131 b java.net.URL::getDefaultPort (8 bytes)
Installing method (4) java.net.URL.getDefaultPort()I
3621 132 b java.net.URLStreamHandler::getDefaultPort (2 bytes)
Installing method (4) java.net.URLStreamHandler.getDefaultPort()I
3622 133 b java.net.URL::getFile (5 bytes)
Installing method (4) java.net.URL.getFile()Ljava/lang/String;
3623 134 b java.lang.AbstractStringBuilder::expandCapacity
(50 bytes)
Installing method (4) java.lang.AbstractStringBuilder.expandCapacity(I)V
3627 135 b java.lang.StringBuilder::toString (17 bytes)
Installing method (4) java.lang.StringBuilder.toString()Ljava/lang/String;
3634 136 b java.util.Arrays::copyOfRange (63 bytes)
Installing method (4) java.util.Arrays.copyOfRange([CII)[C
3641 137 b java.util.HashMap::containsKey (14 bytes)
Installing method (4) java.util.HashMap.containsKey(Ljava/lang/Object;)Z
3643 138 b java.util.HashMap::getEntry (77 bytes)
Installing method (4)
java.util.HashMap.getEntry(Ljava/lang/Object;)Ljava/util/HashMap$Entry;
3653 139 b java.util.HashMap::hash (48 bytes)
Installing method (4) java.util.HashMap.hash(Ljava/lang/Object;)I
3661 140 b java.util.HashMap::indexFor (6 bytes)
Installing method (4) java.util.HashMap.indexFor(II)I
3663 141 !b sun.misc.URLClassPath::getLoader (25 bytes)
Installing method (4)
sun.misc.URLClassPath.getLoader(Ljava/net/URL;)Lsun/misc/URLClassPath$Loader;
3666 141 ! sun.misc.URLClassPath::getLoader (25 bytes)
made not entrant
3667 142 b sun.misc.URLClassPath$3::<init> (15 bytes)
Installing method (4)
sun.misc.URLClassPath$3.<init>(Lsun/misc/URLClassPath;Ljava/net/URL;)V
3671 143 n java.security.AccessController::doPrivileged
(native) (static)
3671 144 b sun.misc.URLClassPath$3::run (5 bytes)
Installing method (4) sun.misc.URLClassPath$3.run()Ljava/lang/Object;
3674 145 b sun.misc.URLClassPath$3::run (86 bytes)
Installing method (4)
sun.misc.URLClassPath$3.run()Lsun/misc/URLClassPath$Loader;
3685 146 b java.lang.String::endsWith (17 bytes)
Installing method (4) java.lang.String.endsWith(Ljava/lang/String;)Z
3689 147 b java.lang.String::startsWith (72 bytes)
Installing method (4) java.lang.String.startsWith(Ljava/lang/String;I)Z
3704 145 sun.misc.URLClassPath$3::run (86 bytes) made
not entrant
3705 148 b sun.misc.URLClassPath::access$100 (5 bytes)
Installing method (4)
sun.misc.URLClassPath.access$100(Lsun/misc/URLClassPath;)Ljava/net/URLStreamHandler;
3707 149 b sun.misc.URLClassPath$JarLoader::<init> (141 bytes)
Installing method (4)
sun.misc.URLClassPath$JarLoader.<init>(Ljava/net/URL;Ljava/net/URLStreamHandler;Ljava/util/HashMap;)V
3708 149 sun.misc.URLClassPath$JarLoader::<init> (141
bytes) made not entrant
3708 150 b java.lang.StringBuilder::append (9 bytes)
Installing method (4)
java.lang.StringBuilder.append(Ljava/lang/Object;)Ljava/lang/StringBuilder;
3710 23 java.util.Properties::getProperty (46 bytes)
made zombie
3710 151 b java.lang.String::valueOf (14 bytes)
Installing method (4)
java.lang.String.valueOf(Ljava/lang/Object;)Ljava/lang/String;
3711 29 sun.launcher.LauncherHelper::<clinit> (67
bytes) made zombie
3711 152 b java.net.URL::toString (5 bytes)
Installing method (4) java.net.URL.toString()Ljava/lang/String;
3713 38 ! sun.launcher.LauncherHelper::makePlatformString
(70 bytes) made zombie
3713 153 b java.net.URL::toExternalForm (9 bytes)
Installing method (4) java.net.URL.toExternalForm()Ljava/lang/String;
3715 154 b java.net.URLStreamHandler::toExternalForm (219
bytes)
Installing method (4)
java.net.URLStreamHandler.toExternalForm(Ljava/net/URL;)Ljava/lang/String;
3729 155 b java.net.URL::getAuthority (5 bytes)
Installing method (4) java.net.URL.getAuthority()Ljava/lang/String;
3733 156 b java.net.URL::getPath (5 bytes)
Installing method (4) java.net.URL.getPath()Ljava/lang/String;
3735 157 b java.net.URL::getQuery (5 bytes)
Installing method (4) java.net.URL.getQuery()Ljava/lang/String;
3737 158 b java.net.URL::getRef (5 bytes)
Installing method (4) java.net.URL.getRef()Ljava/lang/String;
3739 154 java.net.URLStreamHandler::toExternalForm (219
bytes) made not entrant
3742 159 b java.lang.StringBuffer::<clinit> (53 bytes)
Installing method (4) java.lang.StringBuffer.<clinit>()V
3745 159 java.lang.StringBuffer::<clinit> (53 bytes)
made not entrant
3746 160 b java.io.ObjectStreamField::<init> (8 bytes)
Installing method (4)
java.io.ObjectStreamField.<init>(Ljava/lang/String;Ljava/lang/Class;)V
3789 161 b java.lang.StringBuilder::append (8 bytes)
Installing method (4)
java.lang.StringBuilder.append(C)Ljava/lang/StringBuilder;
3792 162 b java.lang.AbstractStringBuilder::append (29 bytes)
Installing method (4)
java.lang.AbstractStringBuilder.append(C)Ljava/lang/AbstractStringBuilder;
3796 163 n java.lang.String::intern (native)
3798 164 b java.lang.StringBuffer::<init> (6 bytes)
Installing method (4) java.lang.StringBuffer.<init>(I)V
3802 165 b java.lang.AbstractStringBuilder::<init> (12 bytes)
Installing method (4) java.lang.AbstractStringBuilder.<init>(I)V
3807 166 s b java.lang.StringBuffer::append (8 bytes)
Installing method (4)
java.lang.StringBuffer.append(Ljava/lang/String;)Ljava/lang/StringBuffer;
3816 167 s b java.lang.StringBuffer::toString (17 bytes)
Installing method (4) java.lang.StringBuffer.toString()Ljava/lang/String;
3819 167 s java.lang.StringBuffer::toString (17 bytes)
made not entrant
3820 168 b java.lang.String::<init> (67 bytes)
Installing method (4) java.lang.String.<init>([CII)V
3828 169 b java.net.URL::<init> (308 bytes)
Installing method (4)
java.net.URL.<init>(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/net/URLStreamHandler;)V
3883 170 b java.net.Parts::getPath (5 bytes)
Installing method (4) java.net.Parts.getPath()Ljava/lang/String;
3884 171 b java.net.Parts::getQuery (5 bytes)
Installing method (4) java.net.Parts.getQuery()Ljava/lang/String;
3885 172 b java.net.Parts::getRef (5 bytes)
Installing method (4) java.net.Parts.getRef()Ljava/lang/String;
3886 173 b sun.misc.URLClassPath$Loader::<init> (10 bytes)
Installing method (4) sun.misc.URLClassPath$Loader.<init>(Ljava/net/URL;)V
3890 174 b sun.misc.URLClassPath$JarLoader::isOptimizable
(10 bytes)
Installing method (4)
sun.misc.URLClassPath$JarLoader.isOptimizable(Ljava/net/URL;)Z
3894 175 !b sun.net.www.ParseUtil::decode (316 bytes)
Installing method (4)
sun.net.www.ParseUtil.decode(Ljava/lang/String;)Ljava/lang/String;
3904 176 b java.io.File::<init> (42 bytes)
Installing method (4) java.io.File.<init>(Ljava/lang/String;)V
3908 177 b java.io.UnixFileSystem::normalize (75 bytes)
Installing method (4)
java.io.UnixFileSystem.normalize(Ljava/lang/String;)Ljava/lang/String;
3920 178 b java.io.UnixFileSystem::prefixLength (25 bytes)
Installing method (4)
java.io.UnixFileSystem.prefixLength(Ljava/lang/String;)I
3926 179 b sun.misc.MetaIndex::forJar (13 bytes)
Installing method (4)
sun.misc.MetaIndex.forJar(Ljava/io/File;)Lsun/misc/MetaIndex;
3930 180 !b sun.misc.MetaIndex::getJarMap (62 bytes)
Installing method (4) sun.misc.MetaIndex.getJarMap()Ljava/util/Map;
3950 181 b java.util.HashMap::get (20 bytes)
Installing method (4)
java.util.HashMap.get(Ljava/lang/Object;)Ljava/lang/Object;
3955 182 b java.io.File::hashCode (8 bytes)
Installing method (4) java.io.File.hashCode()I
3958 183 b java.io.UnixFileSystem::hashCode (11 bytes)
Installing method (4) java.io.UnixFileSystem.hashCode(Ljava/io/File;)I
3960 184 b java.io.File::getPath (5 bytes)
Installing method (4) java.io.File.getPath()Ljava/lang/String;
3962 185 b java.lang.String::hashCode (55 bytes)
Installing method (4) java.lang.String.hashCode()I
3979 186 b java.io.File::equals (30 bytes)
Installing method (4) java.io.File.equals(Ljava/lang/Object;)Z
3982 187 b java.io.File::compareTo (9 bytes)
Installing method (4) java.io.File.compareTo(Ljava/io/File;)I
3986 188 b java.io.UnixFileSystem::compare (12 bytes)
Installing method (4)
java.io.UnixFileSystem.compare(Ljava/io/File;Ljava/io/File;)I
3993 189 b java.lang.String::compareTo (78 bytes)
Installing method (4) java.lang.String.compareTo(Ljava/lang/String;)I
4014 190 b java.util.HashMap$Entry::getValue (5 bytes)
Installing method (4) java.util.HashMap$Entry.getValue()Ljava/lang/Object;
4015 191 b java.io.File::exists (34 bytes)
Installing method (4) java.io.File.exists()Z
4018 192 b java.io.UnixFileSystem::getBooleanAttributes
(49 bytes)
Installing method (4)
java.io.UnixFileSystem.getBooleanAttributes(Ljava/io/File;)I
4024 193 n java.io.UnixFileSystem::getBooleanAttributes0
(native)
4024 194 b java.lang.String::getBytes (27 bytes)
Installing method (4) java.lang.String.getBytes(Ljava/lang/String;)[B
4032 195 !b java.lang.StringCoding::encode (120 bytes)
Installing method (4)
java.lang.StringCoding.encode(Ljava/lang/String;[CII)[B
4050 196 b
java.lang.StringCoding$StringEncoder::requestedCharsetName (5 bytes)
Installing method (4)
java.lang.StringCoding$StringEncoder.requestedCharsetName()Ljava/lang/String;
4054 197 !b java.lang.StringCoding$StringEncoder::encode
(179 bytes)
Installing method (4) java.lang.StringCoding$StringEncoder.encode([CII)[B
4066 198 b
java.nio.charset.CharsetEncoder::maxBytesPerChar (5 bytes)
Installing method (4) java.nio.charset.CharsetEncoder.maxBytesPerChar()F
4067 199 b sun.nio.cs.UTF_8$Encoder::encode (361 bytes)
Installing method (4) sun.nio.cs.UTF_8$Encoder.encode([CII[B)I
4097 200 b java.lang.StringCoding::access$300 (8 bytes)
Installing method (4)
java.lang.StringCoding.access$300([BILjava/nio/charset/Charset;Z)[B
4100 201 b java.lang.StringCoding::safeTrim (24 bytes)
Installing method (4)
java.lang.StringCoding.safeTrim([BILjava/nio/charset/Charset;Z)[B
4103 202 b java.util.Arrays::copyOf (19 bytes)
Installing method (4) java.util.Arrays.copyOf([BI)[B
4116 203 b java.io.File::getName (42 bytes)
Installing method (4) java.io.File.getName()Ljava/lang/String;
4120 204 b java.lang.String::substring (56 bytes)
Installing method (4) java.lang.String.substring(I)Ljava/lang/String;
4128 205 b sun.misc.URLClassPath$JarLoader::getClassPath
(111 bytes)
Installing method (4)
sun.misc.URLClassPath$JarLoader.getClassPath()[Ljava/net/URL;
4134 206 b java.util.HashMap::put (124 bytes)
Installing method (4)
java.util.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
4150 207 b java.util.HashMap::addEntry (69 bytes)
Installing method (4)
java.util.HashMap.addEntry(ILjava/lang/Object;Ljava/lang/Object;I)V
4158 208 b java.util.HashMap::createEntry (39 bytes)
Installing method (4)
java.util.HashMap.createEntry(ILjava/lang/Object;Ljava/lang/Object;I)V
4169 209 b java.util.ArrayList::get (11 bytes)
Installing method (4) java.util.ArrayList.get(I)Ljava/lang/Object;
4173 210 b java.util.ArrayList::rangeCheck (22 bytes)
Installing method (4) java.util.ArrayList.rangeCheck(I)V
4175 211 b java.util.ArrayList::elementData (7 bytes)
Installing method (4) java.util.ArrayList.elementData(I)Ljava/lang/Object;
4180 108 sun.misc.URLClassPath::getResource (74 bytes)
made not entrant
4181 212 !b sun.misc.URLClassPath$JarLoader::getResource
(85 bytes)
Installing method (4)
sun.misc.URLClassPath$JarLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
4194 213 b sun.misc.MetaIndex::mayContain (51 bytes)
Installing method (4) sun.misc.MetaIndex.mayContain(Ljava/lang/String;)Z
4201 214 b java.lang.String::startsWith (7 bytes)
Installing method (4) java.lang.String.startsWith(Ljava/lang/String;)Z
4202 215 s!b sun.misc.URLClassPath::getLoader (154 bytes)
Installing method (4)
sun.misc.URLClassPath.getLoader(I)Lsun/misc/URLClassPath$Loader;
4231 216 b sun.net.util.URLUtil::urlNoFragString (114 bytes)
Installing method (4)
sun.net.util.URLUtil.urlNoFragString(Ljava/net/URL;)Ljava/lang/String;
4256 217 !b sun.misc.URLClassPath::getLoader (25 bytes)
Installing method (4)
sun.misc.URLClassPath.getLoader(Ljava/net/URL;)Lsun/misc/URLClassPath$Loader;
4266 218 b sun.misc.URLClassPath$3::run (86 bytes)
Installing method (4)
sun.misc.URLClassPath$3.run()Lsun/misc/URLClassPath$Loader;
4307 219 b java.net.URLStreamHandler::toExternalForm (219
bytes)
Installing method (4)
java.net.URLStreamHandler.toExternalForm(Ljava/net/URL;)Ljava/lang/String;
4335 220 s b java.lang.StringBuffer::toString (17 bytes)
Installing method (4) java.lang.StringBuffer.toString()Ljava/lang/String;
4346 221 b java.util.ArrayList::add (29 bytes)
Installing method (4) java.util.ArrayList.add(Ljava/lang/Object;)Z
4351 222 b java.util.ArrayList::ensureCapacityInternal (26
bytes)
Installing method (4) java.util.ArrayList.ensureCapacityInternal(I)V
4402 103 ! java.net.URLClassLoader$1::run (73 bytes)
made not entrant
4402 223 b java.lang.ClassNotFoundException::<init> (7 bytes)
Installing method (4)
java.lang.ClassNotFoundException.<init>(Ljava/lang/String;)V
4405 224 b java.lang.ReflectiveOperationException::<init>
(7 bytes)
Installing method (4)
java.lang.ReflectiveOperationException.<init>(Ljava/lang/String;Ljava/lang/Throwable;)V
4406 225 b java.lang.Exception::<init> (7 bytes)
Installing method (4)
java.lang.Exception.<init>(Ljava/lang/String;Ljava/lang/Throwable;)V
4408 226 b java.lang.Throwable::<init> (39 bytes)
Installing method (4)
java.lang.Throwable.<init>(Ljava/lang/String;Ljava/lang/Throwable;)V
4411 227 s b java.lang.Throwable::fillInStackTrace (29 bytes)
Installing method (4)
java.lang.Throwable.fillInStackTrace()Ljava/lang/Throwable;
4415 228 n java.lang.Throwable::fillInStackTrace (native)
4417 229 b java.security.PrivilegedActionException::<init>
(14 bytes)
Installing method (4)
java.security.PrivilegedActionException.<init>(Ljava/lang/Exception;)V
4419 230 b java.lang.Exception::<init> (6 bytes)
Installing method (4) java.lang.Exception.<init>(Ljava/lang/Throwable;)V
4427 231 b
java.security.PrivilegedActionException::getException (5 bytes)
Installing method (4)
java.security.PrivilegedActionException.getException()Ljava/lang/Exception;
4429 232 !b java.net.URLClassLoader::findClass (29 bytes)
Installing method (4)
java.net.URLClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;
4438 233 !b java.net.URLClassLoader$1::run (73 bytes)
Installing method (4) java.net.URLClassLoader$1.run()Ljava/lang/Class;
4451 234 b sun.misc.URLClassPath::getResource (74 bytes)
Installing method (4)
sun.misc.URLClassPath.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
4463 218 sun.misc.URLClassPath$3::run (86 bytes) made
not entrant
4464 235 b sun.misc.URLClassPath$FileLoader::<init> (61 bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader.<init>(Ljava/net/URL;)V
4474 235 sun.misc.URLClassPath$FileLoader::<init> (61
bytes) made not entrant
4475 236 b java.io.UnixFileSystem::normalize (132 bytes)
Installing method (4)
java.io.UnixFileSystem.normalize(Ljava/lang/String;II)Ljava/lang/String;
4480 236 java.io.UnixFileSystem::normalize (132 bytes)
made not entrant
4481 237 b java.io.File::getCanonicalFile (21 bytes)
Installing method (4) java.io.File.getCanonicalFile()Ljava/io/File;
4485 238 b java.io.File::getCanonicalPath (14 bytes)
Installing method (4) java.io.File.getCanonicalPath()Ljava/lang/String;
4489 239 b java.io.UnixFileSystem::resolve (27 bytes)
Installing method (4)
java.io.UnixFileSystem.resolve(Ljava/io/File;)Ljava/lang/String;
4494 240 b java.io.UnixFileSystem::isAbsolute (13 bytes)
Installing method (4) java.io.UnixFileSystem.isAbsolute(Ljava/io/File;)Z
4497 241 b java.io.File::getPrefixLength (5 bytes)
Installing method (4) java.io.File.getPrefixLength()I
4498 242 b java.io.UnixFileSystem::canonicalize (232 bytes)
Installing method (4)
java.io.UnixFileSystem.canonicalize(Ljava/lang/String;)Ljava/lang/String;
4537 243 s b java.io.ExpiringCache::get (39 bytes)
Installing method (4)
java.io.ExpiringCache.get(Ljava/lang/String;)Ljava/lang/String;
4547 244 b java.io.ExpiringCache::entryFor (57 bytes)
Installing method (4)
java.io.ExpiringCache.entryFor(Ljava/lang/String;)Ljava/io/ExpiringCache$Entry;
4555 245 b java.util.LinkedHashMap::get (25 bytes)
Installing method (4)
java.util.LinkedHashMap.get(Ljava/lang/Object;)Ljava/lang/Object;
Program received signal SIGSEGV, Segmentation fault.
4565 245 java.util.LinkedHashMap::get (25 bytes) made
not entrant
Program received signal SIGSEGV, Segmentation fault.
4565 244 java.io.ExpiringCache::entryFor (57 bytes)
made not entrant
4565 246 b java.io.UnixFileSystem::parentOrNull (118 bytes)
Installing method (4)
java.io.UnixFileSystem.parentOrNull(Ljava/lang/String;)Ljava/lang/String;
4578 247 b java.lang.String::substring (79 bytes)
Installing method (4) java.lang.String.substring(II)Ljava/lang/String;
4590 248 b java.io.ExpiringCache::entryFor (57 bytes)
Installing method (4)
java.io.ExpiringCache.entryFor(Ljava/lang/String;)Ljava/io/ExpiringCache$Entry;
4597 249 b java.util.LinkedHashMap::get (25 bytes)
Installing method (4)
java.util.LinkedHashMap.get(Ljava/lang/Object;)Ljava/lang/Object;
4604 250 n java.io.UnixFileSystem::canonicalize0 (native)
4605 251 s b java.io.ExpiringCache::put (70 bytes)
Installing method (4)
java.io.ExpiringCache.put(Ljava/lang/String;Ljava/lang/String;)V
4620 252 !b sun.misc.URLClassPath$FileLoader::getResource
(164 bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;
4682 253 b sun.misc.URLClassPath$Loader::getBaseURL (5 bytes)
Installing method (4)
sun.misc.URLClassPath$Loader.getBaseURL()Ljava/net/URL;
4684 254 !b java.net.URL::<init> (543 bytes)
Installing method (4)
java.net.URL.<init>(Ljava/net/URL;Ljava/lang/String;Ljava/net/URLStreamHandler;)V
4741 255 b java.lang.String::regionMatches (149 bytes)
Installing method (4)
java.lang.String.regionMatches(ZILjava/lang/String;II)Z
4757 256 b sun.net.www.protocol.file.Handler::parseURL (18
bytes)
Installing method (4)
sun.net.www.protocol.file.Handler.parseURL(Ljava/net/URL;Ljava/lang/String;II)V
4766 257 b java.net.URLStreamHandler::parseURL (1158 bytes)
Installing method (4)
java.net.URLStreamHandler.parseURL(Ljava/net/URL;Ljava/lang/String;II)V
4816 258 b java.net.URL::getUserInfo (5 bytes)
Installing method (4) java.net.URL.getUserInfo()Ljava/lang/String;
4818 257 java.net.URLStreamHandler::parseURL (1158
bytes) made not entrant
4820 259 b java.lang.String::indexOf (7 bytes)
Installing method (4) java.lang.String.indexOf(Ljava/lang/String;)I
4822 260 b java.lang.String::indexOf (25 bytes)
Installing method (4) java.lang.String.indexOf(Ljava/lang/String;I)I
4825 94 ! java.net.URLClassLoader::findClass (29 bytes)
made zombie
4825 261 b java.lang.String::indexOf (166 bytes)
Installing method (4) java.lang.String.indexOf([CII[CIII)I
4873 115 sun.net.util.URLUtil::urlNoFragString (114
bytes) made zombie
4873 109 s! sun.misc.URLClassPath::getLoader (154 bytes)
made zombie
4874 141 ! sun.misc.URLClassPath::getLoader (25 bytes)
made zombie
4876 262 b java.net.URLStreamHandler::setURL (40 bytes)
Installing method (4)
java.net.URLStreamHandler.setURL(Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
4886 263 !b java.net.URL::set (114 bytes)
Installing method (4)
java.net.URL.set(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
4904 264 b sun.net.www.ParseUtil::encodePath (336 bytes)
Installing method (4)
sun.net.www.ParseUtil.encodePath(Ljava/lang/String;Z)Ljava/lang/String;
4977 265 b java.util.BitSet::get (69 bytes)
Installing method (4) java.util.BitSet.get(I)Z
4982 266 b java.util.BitSet::checkInvariants (111 bytes)
Installing method (4) java.util.BitSet.checkInvariants()V
4984 267 b java.util.BitSet::wordIndex (5 bytes)
Installing method (4) java.util.BitSet.wordIndex(I)I
4988 268 b java.lang.Character::toUpperCase (6 bytes)
Installing method (4) java.lang.Character.toUpperCase(C)C
4989 269 b java.lang.Character::toUpperCase (9 bytes)
Installing method (4) java.lang.Character.toUpperCase(I)I
4997 270 b java.lang.CharacterDataLatin1::toUpperCase (53
bytes)
Installing method (4) java.lang.CharacterDataLatin1.toUpperCase(I)I
5004 271 b java.net.URLStreamHandler::parseURL (1158 bytes)
Installing method (4)
java.net.URLStreamHandler.parseURL(Ljava/net/URL;Ljava/lang/String;II)V
5188 272 b java.io.UnixFileSystem::resolve (103 bytes)
Installing method (4)
java.io.UnixFileSystem.resolve(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
5213 252 ! sun.misc.URLClassPath$FileLoader::getResource
(164 bytes) made not entrant
5213 273 b sun.misc.URLClassPath$FileLoader$1::<init> (26
bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader$1.<init>(Lsun/misc/URLClassPath$FileLoader;Ljava/lang/String;Ljava/net/URL;Ljava/io/File;)V
5219 274 b sun.misc.Resource::<init> (5 bytes)
Installing method (4) sun.misc.Resource.<init>()V
5221 275 b java.net.URLClassLoader::access$100 (7 bytes)
Installing method (4)
java.net.URLClassLoader.access$100(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;
5226 276 !b java.net.URLClassLoader::defineClass (224 bytes)
Installing method (4)
java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;
5242 277 b
sun.misc.URLClassPath$FileLoader$1::getCodeSourceURL (8 bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader$1.getCodeSourceURL()Ljava/net/URL;
5247 278 b sun.misc.Resource::getByteBuffer (24 bytes)
Installing method (4)
sun.misc.Resource.getByteBuffer()Ljava/nio/ByteBuffer;
5248 279 s b sun.misc.Resource::cachedInputStream (20 bytes)
Installing method (4)
sun.misc.Resource.cachedInputStream()Ljava/io/InputStream;
5253 280 b
sun.misc.URLClassPath$FileLoader$1::getInputStream (12 bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader$1.getInputStream()Ljava/io/InputStream;
5254 280
sun.misc.URLClassPath$FileLoader$1::getInputStream (12 bytes) made not
entrant
5254 281 b java.io.FileInputStream::<init> (88 bytes)
Installing method (4) java.io.FileInputStream.<init>(Ljava/io/File;)V
5263 282 b java.lang.ref.Finalizer::register (10 bytes)
Installing method (4) java.lang.ref.Finalizer.register(Ljava/lang/Object;)V
5272 283 s b java.io.FileDescriptor::attach (73 bytes)
Installing method (4) java.io.FileDescriptor.attach(Ljava/io/Closeable;)V
5278 284 n java.io.FileInputStream::open (native)
5278 278 sun.misc.Resource::getByteBuffer (24 bytes)
made not entrant
5279 285 !b sun.misc.Resource::getBytes (242 bytes)
Installing method (4) sun.misc.Resource.getBytes()[B
5298 286 b java.lang.Thread::interrupted (8 bytes)
Installing method (4) java.lang.Thread.interrupted()Z
5300 287 b
sun.misc.URLClassPath$FileLoader$1::getContentLength (9 bytes)
Installing method (4)
sun.misc.URLClassPath$FileLoader$1.getContentLength()I
5302 288 b java.io.File::length (24 bytes)
Installing method (4) java.io.File.length()J
5305 289 n java.io.UnixFileSystem::getLength (native)
5307 290 b java.io.FileInputStream::read (8 bytes)
Installing method (4) java.io.FileInputStream.read([BII)I
5309 291 n java.io.FileInputStream::readBytes (native)
5309 292 !b java.io.FileInputStream::close (62 bytes)
Installing method (4) java.io.FileInputStream.close()V
5316 293 s!b java.io.FileDescriptor::closeAll (215 bytes)
Installing method (4) java.io.FileDescriptor.closeAll(Ljava/io/Closeable;)V
5337 294 b java.io.FileInputStream$1::close (8 bytes)
Installing method (4) java.io.FileInputStream$1.close()V
5338 295 b java.io.FileInputStream::access$000 (5 bytes)
Installing method (4)
java.io.FileInputStream.access$000(Ljava/io/FileInputStream;)V
5341 296 n java.io.FileInputStream::close0 (native)
5342 297 b sun.misc.Resource::getCodeSigners (2 bytes)
Installing method (4)
sun.misc.Resource.getCodeSigners()[Ljava/security/CodeSigner;
5343 276 ! java.net.URLClassLoader::defineClass (224
bytes) made not entrant
5344 298 b java.security.CodeSource::<init> (40 bytes)
Installing method (4)
java.security.CodeSource.<init>(Ljava/net/URL;[Ljava/security/CodeSigner;)V
5354 299 b sun.misc.PerfCounter::<clinit> (17 bytes)
Installing method (4) sun.misc.PerfCounter.<clinit>()V
5355 299 sun.misc.PerfCounter::<clinit> (17 bytes)
made not entrant
5356 300 b sun.misc.Perf$GetPerfAction::<init> (5 bytes)
Installing method (4) sun.misc.Perf$GetPerfAction.<init>()V
5357 301 n java.security.AccessController::doPrivileged
(native) (static)
5357 302 b sun.misc.Perf$GetPerfAction::run (5 bytes)
Installing method (4) sun.misc.Perf$GetPerfAction.run()Ljava/lang/Object;
5361 303 b sun.misc.Perf$GetPerfAction::run (4 bytes)
Installing method (4) sun.misc.Perf$GetPerfAction.run()Lsun/misc/Perf;
5362 303 sun.misc.Perf$GetPerfAction::run (4 bytes)
made not entrant
5363 304 b sun.misc.Perf::<clinit> (14 bytes)
Installing method (4) sun.misc.Perf.<clinit>()V
5365 305 n sun.misc.Perf::registerNatives (native) (static)
5365 304 sun.misc.Perf::<clinit> (14 bytes) made not
entrant
5365 306 b sun.misc.Perf::<init> (5 bytes)
Installing method (4) sun.misc.Perf.<init>()V
5366 307 b sun.misc.Perf::getPerf (27 bytes)
Installing method (4) sun.misc.Perf.getPerf()Lsun/misc/Perf;
5368 302 sun.misc.Perf$GetPerfAction::run (5 bytes)
made not entrant
5368 308 b sun.misc.PerfCounter::getReadClassBytesTime (4
bytes)
Installing method (4)
sun.misc.PerfCounter.getReadClassBytesTime()Lsun/misc/PerfCounter;
5370 308 sun.misc.PerfCounter::getReadClassBytesTime (4
bytes) made not entrant
5370 309 b sun.misc.PerfCounter$CoreCounters::<clinit> (49
bytes)
Installing method (4) sun.misc.PerfCounter$CoreCounters.<clinit>()V
5376 310 b sun.misc.PerfCounter::newPerfCounter (10 bytes)
Installing method (4)
sun.misc.PerfCounter.newPerfCounter(Ljava/lang/String;)Lsun/misc/PerfCounter;
5383 311 n sun.misc.Perf::createLong (native)
5386 57 sun.nio.cs.UTF_8$Decoder::decode (759 bytes)
made not entrant
5386 175 ! sun.net.www.ParseUtil::decode (316 bytes)
made not entrant
5386 310 sun.misc.PerfCounter::newPerfCounter (10 bytes)
made not entrant
5387 312 b java.nio.DirectByteBuffer::<clinit> (43 bytes)
Installing method (4) java.nio.DirectByteBuffer.<clinit>()V
5391 103 ! java.net.URLClassLoader$1::run (73 bytes)
made zombie
5391 313 !b java.lang.Class::desiredAssertionStatus (54 bytes)
Installing method (4) java.lang.Class.desiredAssertionStatus()Z
5399 314 b java.lang.Class::getClassLoader (40 bytes)
Installing method (4)
java.lang.Class.getClassLoader()Ljava/lang/ClassLoader;
5404 315 n java.lang.Class::getClassLoader0 (native)
5405 316 n java.lang.Class::desiredAssertionStatus0
(native) (static)
5405 317 b java.nio.Bits::unsafe (4 bytes)
Installing method (4) java.nio.Bits.unsafe()Lsun/misc/Unsafe;
5406 318 n sun.misc.Unsafe::arrayBaseOffset (native)
5407 319 b java.nio.Bits::unaligned (78 bytes)
Installing method (4) java.nio.Bits.unaligned()Z
5410 319 java.nio.Bits::unaligned (78 bytes) made not
entrant
5410 320 b sun.security.action.GetPropertyAction::<init>
(10 bytes)
Installing method (4)
sun.security.action.GetPropertyAction.<init>(Ljava/lang/String;)V
5411 108 sun.misc.URLClassPath::getResource (74 bytes)
made zombie
5411 321 b sun.security.action.GetPropertyAction::run (5
bytes)
Installing method (4)
sun.security.action.GetPropertyAction.run()Ljava/lang/Object;
5413 149 sun.misc.URLClassPath$JarLoader::<init> (141
bytes) made zombie
5413 322 b sun.security.action.GetPropertyAction::run (21
bytes)
Installing method (4)
sun.security.action.GetPropertyAction.run()Ljava/lang/String;
5415 145 sun.misc.URLClassPath$3::run (86 bytes) made
zombie
5416 323 b java.nio.DirectByteBuffer::<init> (24 bytes)
Installing method (4) java.nio.DirectByteBuffer.<init>(JI)V
5419 159 java.lang.StringBuffer::<clinit> (53 bytes)
made zombie
5419 154 java.net.URLStreamHandler::toExternalForm (219
bytes) made zombie
5419 167 s java.lang.StringBuffer::toString (17 bytes)
made zombie
5419 324 b java.nio.MappedByteBuffer::<init> (15 bytes)
Installing method (4) java.nio.MappedByteBuffer.<init>(IIII)V
5423 325 b java.nio.ByteBuffer::<init> (12 bytes)
Installing method (4) java.nio.ByteBuffer.<init>(IIII)V
5430 326 b java.nio.Bits::byteOrder (20 bytes)
Installing method (4) java.nio.Bits.byteOrder()Ljava/nio/ByteOrder;
5433 218 sun.misc.URLClassPath$3::run (86 bytes) made
zombie
5434 327 b java.nio.ByteOrder::nativeOrder (4 bytes)
Installing method (4) java.nio.ByteOrder.nativeOrder()Ljava/nio/ByteOrder;
5435 235 sun.misc.URLClassPath$FileLoader::<init> (61
bytes) made zombie
5435 236 java.io.UnixFileSystem::normalize (132 bytes)
made zombie
5435 244 java.io.ExpiringCache::entryFor (57 bytes)
made zombie
5435 245 java.util.LinkedHashMap::get (25 bytes) made
zombie
5435 328 b java.nio.ByteBuffer::order (48 bytes)
Installing method (4)
java.nio.ByteBuffer.order(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
5445 329 b java.nio.DirectByteBuffer::asLongBuffer (151 bytes)
Installing method (4)
java.nio.DirectByteBuffer.asLongBuffer()Ljava/nio/LongBuffer;
5449 330 b java.nio.Buffer::position (5 bytes)
Installing method (4) java.nio.Buffer.position()I
5450 331 b java.nio.Buffer::limit (5 bytes)
Installing method (4) java.nio.Buffer.limit()I
5453 329 java.nio.DirectByteBuffer::asLongBuffer (151
bytes) made not entrant
5454 332 b java.nio.DirectLongBufferU::<clinit> (43 bytes)
Installing method (4) java.nio.DirectLongBufferU.<clinit>()V
5458 333 b java.nio.Bits::unaligned (78 bytes)
Installing method (4) java.nio.Bits.unaligned()Z
5469 334 b java.nio.DirectLongBufferU::<init> (30 bytes)
Installing method (4)
java.nio.DirectLongBufferU.<init>(Lsun/nio/ch/DirectBuffer;IIIII)V
5473 335 b java.nio.LongBuffer::<init> (12 bytes)
Installing method (4) java.nio.LongBuffer.<init>(IIII)V
5474 336 b java.nio.LongBuffer::<init> (22 bytes)
Installing method (4) java.nio.LongBuffer.<init>(IIII[JI)V
5477 337 b java.nio.Buffer::<init> (121 bytes)
Installing method (4) java.nio.Buffer.<init>(IIII)V
5481 338 b java.nio.Buffer::limit (62 bytes)
Installing method (4) java.nio.Buffer.limit(I)Ljava/nio/Buffer;
5485 339 b java.nio.Buffer::position (43 bytes)
Installing method (4) java.nio.Buffer.position(I)Ljava/nio/Buffer;
5487 340 b java.nio.DirectByteBuffer::address (5 bytes)
Installing method (4) java.nio.DirectByteBuffer.address()J
5489 341 b sun.misc.PerfCounter::newPerfCounter (10 bytes)
Installing method (4)
sun.misc.PerfCounter.newPerfCounter(Ljava/lang/String;)Lsun/misc/PerfCounter;
5498 342 b java.nio.DirectByteBuffer::asLongBuffer (151 bytes)
Installing method (4)
java.nio.DirectByteBuffer.asLongBuffer()Ljava/nio/LongBuffer;
5512 343 b sun.misc.PerfCounter::addElapsedTimeFrom (10 bytes)
Installing method (4) sun.misc.PerfCounter.addElapsedTimeFrom(J)V
5515 344 s b sun.misc.PerfCounter::add (18 bytes)
Installing method (4) sun.misc.PerfCounter.add(J)V
5518 345 s b sun.misc.PerfCounter::get (9 bytes)
Installing method (4) sun.misc.PerfCounter.get()J
5521 346 b java.nio.DirectLongBufferU::get (16 bytes)
Installing method (4) java.nio.DirectLongBufferU.get(I)J
5523 347 b java.nio.Buffer::checkIndex (22 bytes)
Installing method (4) java.nio.Buffer.checkIndex(I)I
5526 348 b java.nio.DirectLongBufferU::ix (10 bytes)
Installing method (4) java.nio.DirectLongBufferU.ix(I)J
5527 349 b java.nio.DirectLongBufferU::put (18 bytes)
Installing method (4)
java.nio.DirectLongBufferU.put(IJ)Ljava/nio/LongBuffer;
5532 350 b java.security.SecureClassLoader::defineClass
(16 bytes)
Installing method (4)
java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;
5534 351 !b
java.security.SecureClassLoader::getProtectionDomain (114 bytes)
Installing method (4)
java.security.SecureClassLoader.getProtectionDomain(Ljava/security/CodeSource;)Ljava/security/ProtectionDomain;
5546 352 s b java.net.URL::hashCode (30 bytes)
Installing method (4) java.net.URL.hashCode()I
5551 353 b java.net.URLStreamHandler::hashCode (128 bytes)
Installing method (4) java.net.URLStreamHandler.hashCode(Ljava/net/URL;)I
5563 354 s!b java.net.URLStreamHandler::getHostAddress (54
bytes)
Installing method (4)
java.net.URLStreamHandler.getHostAddress(Ljava/net/URL;)Ljava/net/InetAddress;
Program received signal SIGSEGV, Segmentation fault.
5569 351 !
java.security.SecureClassLoader::getProtectionDomain (114 bytes) made
not entrant
5571 355 b
sun.misc.Launcher$AppClassLoader::getPermissions (21 bytes)
Installing method (4)
sun.misc.Launcher$AppClassLoader.getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;
5573 356 !b java.net.URLClassLoader::getPermissions (287 bytes)
Installing method (4)
java.net.URLClassLoader.getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;
5581 357 b java.security.SecureClassLoader::getPermissions
(12 bytes)
Installing method (4)
java.security.SecureClassLoader.getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;
5583 358 b java.security.SecureClassLoader::check (18 bytes)
Installing method (4) java.security.SecureClassLoader.check()V
5588 357 java.security.SecureClassLoader::getPermissions
(12 bytes) made not entrant
5589 359 b java.security.Permissions::<clinit> (38 bytes)
Installing method (4) java.security.Permissions.<clinit>()V
5591 359 java.security.Permissions::<clinit> (38 bytes)
made not entrant
5593 360 b java.lang.Class::getName (21 bytes)
Installing method (4) java.lang.Class.getName()Ljava/lang/String;
5599 361 n java.lang.Class::getName0 (native)
5603 362 b java.security.Permissions::<init> (28 bytes)
Installing method (4) java.security.Permissions.<init>()V
5608 362 java.security.Permissions::<init> (28 bytes)
made not entrant
5608 363 b java.util.HashMap::<init> (8 bytes)
Installing method (4) java.util.HashMap.<init>(I)V
5622 364 b sun.misc.Hashing::randomHashSeed (103 bytes)
Installing method (4) sun.misc.Hashing.randomHashSeed(Ljava/lang/Object;)I
5638 365 b sun.misc.VM::isBooted (4 bytes)
Installing method (4) sun.misc.VM.isBooted()Z
5639 366 b java.util.Random::nextInt (7 bytes)
Installing method (4) java.util.Random.nextInt()I
5640 367 b java.util.Random::next (47 bytes)
Installing method (4) java.util.Random.next(I)I
5646 368 b java.util.concurrent.atomic.AtomicLong::get (5
bytes)
Installing method (4) java.util.concurrent.atomic.AtomicLong.get()J
5647 369 b
java.util.concurrent.atomic.AtomicLong::compareAndSet (13 bytes)
Installing method (4)
java.util.concurrent.atomic.AtomicLong.compareAndSet(JJ)Z
5649 370 b java.lang.Float::isNaN (12 bytes)
Installing method (4) java.lang.Float.isNaN(F)Z
5652 371 b java.lang.Math::min (46 bytes)
Installing method (4) java.lang.Math.min(FF)F
5654 372 b java.util.HashMap::init (1 bytes)
Installing method (4) java.util.HashMap.init()V
5656 373 b java.security.CodeSource::getLocation (5 bytes)
Installing method (4) java.security.CodeSource.getLocation()Ljava/net/URL;
5662 374 b java.net.URL::openConnection (9 bytes)
Installing method (4) java.net.URL.openConnection()Ljava/net/URLConnection;
5666 375 s b
sun.net.www.protocol.file.Handler::openConnection (7 bytes)
Installing method (4)
sun.net.www.protocol.file.Handler.openConnection(Ljava/net/URL;)Ljava/net/URLConnection;
5674 376 s!b
sun.net.www.protocol.file.Handler::openConnection (194 bytes)
Installing method (4)
sun.net.www.protocol.file.Handler.openConnection(Ljava/net/URL;Ljava/net/Proxy;)Ljava/net/URLConnection;
5687 376 s!
sun.net.www.protocol.file.Handler::openConnection (194 bytes) made not
entrant
5687 377 !b sun.net.www.ParseUtil::decode (316 bytes)
Installing method (4)
sun.net.www.ParseUtil.decode(Ljava/lang/String;)Ljava/lang/String;
5699 378 b java.io.UnixFileSystem::normalize (132 bytes)
Installing method (4)
java.io.UnixFileSystem.normalize(Ljava/lang/String;II)Ljava/lang/String;
5719 379 b
sun.net.www.protocol.file.Handler::createFileURLConnection (10 bytes)
Installing method (4)
sun.net.www.protocol.file.Handler.createFileURLConnection(Ljava/net/URL;Ljava/io/File;)Ljava/net/URLConnection;
5723 379
sun.net.www.protocol.file.Handler::createFileURLConnection (10 bytes)
made not entrant
5725 380 b java.net.URLConnection::<clinit> (23 bytes)
Installing method (4) java.net.URLConnection.<clinit>()V
5727 380 java.net.URLConnection::<clinit> (23 bytes)
made not entrant
5727 381 b java.util.Hashtable::<init> (9 bytes)
Installing method (4) java.util.Hashtable.<init>()V
5739 382 b sun.net.www.URLConnection::<clinit> (11 bytes)
Installing method (4) sun.net.www.URLConnection.<clinit>()V
5741 382 sun.net.www.URLConnection::<clinit> (11 bytes)
made not entrant
5741 383 b java.util.HashMap::<init> (9 bytes)
Installing method (4) java.util.HashMap.<init>()V
5752 384 b
sun.net.www.protocol.file.FileURLConnection::<clinit> (21 bytes)
Installing method (4)
sun.net.www.protocol.file.FileURLConnection.<clinit>()V
5756 385 b
sun.net.www.protocol.file.FileURLConnection::<init> (38 bytes)
Installing method (4)
sun.net.www.protocol.file.FileURLConnection.<init>(Ljava/net/URL;Ljava/io/File;)V
5759 386 b sun.net.www.URLConnection::<init> (22 bytes)
Installing method (4) sun.net.www.URLConnection.<init>(Ljava/net/URL;)V
5761 387 b java.net.URLConnection::<init> (44 bytes)
Installing method (4) java.net.URLConnection.<init>(Ljava/net/URL;)V
5767 386 sun.net.www.URLConnection::<init> (22 bytes)
made not entrant
5767 388 b sun.net.www.MessageHeader::<init> (9 bytes)
Installing method (4) sun.net.www.MessageHeader.<init>()V
5770 389 b sun.net.www.MessageHeader::grow (92 bytes)
Installing method (4) sun.net.www.MessageHeader.grow()V
5797 356 ! java.net.URLClassLoader::getPermissions (287
bytes) made not entrant
5798 390 b
sun.net.www.protocol.file.FileURLConnection::getPermission (70 bytes)
Installing method (4)
sun.net.www.protocol.file.FileURLConnection.getPermission()Ljava/security/Permission;
5804 390
sun.net.www.protocol.file.FileURLConnection::getPermission (70 bytes)
made not entrant
5805 391 b java.io.FilePermission::<init> (14 bytes)
Installing method (4)
java.io.FilePermission.<init>(Ljava/lang/String;Ljava/lang/String;)V
5811 392 b java.security.Permission::<init> (10 bytes)
Installing method (4) java.security.Permission.<init>(Ljava/lang/String;)V
5814 393 b java.io.FilePermission::getMask (948 bytes)
Installing method (4) java.io.FilePermission.getMask(Ljava/lang/String;)I
5887 394 b java.io.FilePermission::init (228 bytes)
Installing method (4) java.io.FilePermission.init(I)V
5896 395 b java.security.Permission::getName (5 bytes)
Installing method (4) java.security.Permission.getName()Ljava/lang/String;
5898 394 java.io.FilePermission::init (228 bytes) made
not entrant
5898 396 b java.io.FilePermission$1::<init> (10 bytes)
Installing method (4)
java.io.FilePermission$1.<init>(Ljava/io/FilePermission;)V
5900 397 b java.io.FilePermission$1::run (5 bytes)
Installing method (4) java.io.FilePermission$1.run()Ljava/lang/Object;
5903 398 !b java.io.FilePermission$1::run (116 bytes)
Installing method (4) java.io.FilePermission$1.run()Ljava/lang/String;
5909 399 b java.io.FilePermission::access$000 (5 bytes)
Installing method (4)
java.io.FilePermission.access$000(Ljava/io/FilePermission;)Ljava/lang/String;
5910 398 ! java.io.FilePermission$1::run (116 bytes)
made not entrant
5914 400 b java.util.LinkedHashMap$Entry::recordAccess (35
bytes)
Installing method (4)
java.util.LinkedHashMap$Entry.recordAccess(Ljava/util/HashMap;)V
5920 401 b java.util.LinkedHashMap::access$000 (5 bytes)
Installing method (4)
java.util.LinkedHashMap.access$000(Ljava/util/LinkedHashMap;)Z
5922 402 b java.io.ExpiringCache$Entry::timestamp (5 bytes)
Installing method (4) java.io.ExpiringCache$Entry.timestamp()J
5923 403 b java.io.ExpiringCache$Entry::val (5 bytes)
Installing method (4) java.io.ExpiringCache$Entry.val()Ljava/lang/String;
5925 404 b java.io.FilePermission::init (228 bytes)
Installing method (4) java.io.FilePermission.init(I)V
5943 405 !b java.io.FilePermission$1::run (116 bytes)
Installing method (4) java.io.FilePermission$1.run()Ljava/lang/String;
5965 406 b sun.nio.cs.UTF_8$Decoder::decode (759 bytes)
Installing method (4) sun.nio.cs.UTF_8$Decoder.decode([BII[C)I
6063 407 b java.util.HashMap::resize (57 bytes)
Installing method (4) java.util.HashMap.resize(I)V
6070 408 b java.util.LinkedHashMap::transfer (51 bytes)
Installing method (4)
java.util.LinkedHashMap.transfer([Ljava/util/HashMap$Entry;)V
6082 409 !b java.security.Permissions::add (70 bytes)
Installing method (4)
java.security.Permissions.add(Ljava/security/Permission;)V
6088 410 b java.security.PermissionCollection::isReadOnly
(5 bytes)
Installing method (4) java.security.PermissionCollection.isReadOnly()Z
6089 411 b
java.security.Permissions::getPermissionCollection (107 bytes)
Installing method (4)
java.security.Permissions.getPermissionCollection(Ljava/security/Permission;Z)Ljava/security/PermissionCollection;
Program received signal SIGSEGV, Segmentation fault.
6096 411
java.security.Permissions::getPermissionCollection (107 bytes) made
not entrant
6096 412 b java.io.FilePermission::newPermissionCollection
(8 bytes)
Installing method (4)
java.io.FilePermission.newPermissionCollection()Ljava/security/PermissionCollection;
6100 278 sun.misc.Resource::getByteBuffer (24 bytes)
made zombie
6101 276 ! java.net.URLClassLoader::defineClass (224
bytes) made zombie
6101 410 java.security.PermissionCollection::isReadOnly
(5 bytes) made not entrant
6101 412 java.io.FilePermission::newPermissionCollection
(8 bytes) made not entrant
6101 409 ! java.security.Permissions::add (70 bytes)
made not entrant
6101 413 b java.io.FilePermissionCollection::<clinit> (23
bytes)
Installing method (4) java.io.FilePermissionCollection.<clinit>()V
6103 413 java.io.FilePermissionCollection::<clinit> (23
bytes) made not entrant
6105 414 b java.io.FilePermissionCollection::<init> (16 bytes)
Installing method (4) java.io.FilePermissionCollection.<init>()V
6108 415 b java.security.PermissionCollection::<init> (5
bytes)
Installing method (4) java.security.PermissionCollection.<init>()V
6109 414 java.io.FilePermissionCollection::<init> (16
bytes) made not entrant
6110 416 b java.util.ArrayList::<init> (7 bytes)
Installing method (4) java.util.ArrayList.<init>()V
6120 417 !b java.io.FilePermissionCollection::add (77 bytes)
Installing method (4)
java.io.FilePermissionCollection.add(Ljava/security/Permission;)V
6133 418 b java.security.PermissionCollection::isReadOnly
(5 bytes)
Installing method (4) java.security.PermissionCollection.isReadOnly()Z
6136 355
sun.misc.Launcher$AppClassLoader::getPermissions (21 bytes) made not
entrant
6137 419 b java.lang.RuntimePermission::<init> (6 bytes)
Installing method (4)
java.lang.RuntimePermission.<init>(Ljava/lang/String;)V
6145 420 !b java.security.Permissions::add (70 bytes)
Installing method (4)
java.security.Permissions.add(Ljava/security/Permission;)V
6152 421 b
java.security.Permissions::getPermissionCollection (107 bytes)
Installing method (4)
java.security.Permissions.getPermissionCollection(Ljava/security/Permission;Z)Ljava/security/PermissionCollection;
6165 422 b
java.security.BasicPermission::newPermissionCollection (12 bytes)
Installing method (4)
java.security.BasicPermission.newPermissionCollection()Ljava/security/PermissionCollection;
6167 308 sun.misc.PerfCounter::getReadClassBytesTime (4
bytes) made zombie
6169 422
java.security.BasicPermission::newPermissionCollection (12 bytes) made
not entrant
6170 423 b
java.security.BasicPermissionCollection::<clinit> (53 bytes)
Installing method (4) java.security.BasicPermissionCollection.<clinit>()V
6171 423
java.security.BasicPermissionCollection::<clinit> (53 bytes) made not
entrant
6171 252 ! sun.misc.URLClassPath$FileLoader::getResource
(164 bytes) made zombie
6171 257 java.net.URLStreamHandler::parseURL (1158
bytes) made zombie
6171 280
sun.misc.URLClassPath$FileLoader$1::getInputStream (12 bytes) made zombie
6173 424 n java.lang.Object::getClass (native)
6173 425 b java.security.BasicPermissionCollection::<init>
(28 bytes)
Installing method (4)
java.security.BasicPermissionCollection.<init>(Ljava/lang/Class;)V
6178 425 java.security.BasicPermissionCollection::<init>
(28 bytes) made not entrant
6181 299 sun.misc.PerfCounter::<clinit> (17 bytes)
made zombie
6181 304 sun.misc.Perf::<clinit> (14 bytes) made zombie
6181 303 sun.misc.Perf$GetPerfAction::run (4 bytes)
made zombie
6181 302 sun.misc.Perf$GetPerfAction::run (5 bytes)
made zombie
6182 426 !b java.security.BasicPermissionCollection::add
(168 bytes)
Installing method (4)
java.security.BasicPermissionCollection.add(Ljava/security/Permission;)V
6192 427 b java.security.BasicPermission::getCanonicalName
(17 bytes)
Installing method (4)
java.security.BasicPermission.getCanonicalName()Ljava/lang/String;
6197 428 b java.security.ProtectionDomain::<init> (99 bytes)
Installing method (4)
java.security.ProtectionDomain.<init>(Ljava/security/CodeSource;Ljava/security/PermissionCollection;Ljava/lang/ClassLoader;[Ljava/security/Principal;)V
6210 429 b java.security.PermissionCollection::setReadOnly
(6 bytes)
Installing method (4) java.security.PermissionCollection.setReadOnly()V
6213 430 b java.lang.ClassLoader::defineClass (43 bytes)
Installing method (4)
java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;
6217 431 b java.lang.ClassLoader::preDefineClass (109 bytes)
Installing method (4)
java.lang.ClassLoader.preDefineClass(Ljava/lang/String;Ljava/security/ProtectionDomain;)Ljava/security/ProtectionDomain;
6226 432 b java.security.ProtectionDomain::getCodeSource
(5 bytes)
Installing method (4)
java.security.ProtectionDomain.getCodeSource()Ljava/security/CodeSource;
6227 433 !b java.lang.ClassLoader::checkCerts (195 bytes)
Installing method (4)
java.lang.ClassLoader.checkCerts(Ljava/lang/String;Ljava/security/CodeSource;)V
6247 434 b java.security.CodeSource::getCertificates (98
bytes)
Installing method (4)
java.security.CodeSource.getCertificates()[Ljava/security/cert/Certificate;
Program received signal SIGSEGV, Segmentation fault.
6253 433 ! java.lang.ClassLoader::checkCerts (195 bytes)
made not entrant
6254 435 b
java.lang.ClassLoader::defineClassSourceLocation (28 bytes)
Installing method (4)
java.lang.ClassLoader.defineClassSourceLocation(Ljava/security/ProtectionDomain;)Ljava/lang/String;
6260 436 n java.lang.ClassLoader::defineClass1 (native)
6262 437 b
java.util.concurrent.ConcurrentHashMap$Segment::rehash (262 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap$Segment.rehash(Ljava/util/concurrent/ConcurrentHashMap$HashEntry;)V
6297 438 b
java.util.concurrent.ConcurrentHashMap$HashEntry::setNext (12 bytes)
Installing method (4)
java.util.concurrent.ConcurrentHashMap$HashEntry.setNext(Ljava/util/concurrent/ConcurrentHashMap$HashEntry;)V
6299 439 b java.lang.ClassLoader::checkPackageAccess (73
bytes)
Installing method (4)
java.lang.ClassLoader.checkPackageAccess(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V
6305 440 !b
java.util.Collections$SynchronizedCollection::add (25 bytes)
Installing method (4)
java.util.Collections$SynchronizedCollection.add(Ljava/lang/Object;)Z
6309 441 b java.util.HashSet::add (20 bytes)
Installing method (4) java.util.HashSet.add(Ljava/lang/Object;)Z
6312 442 b java.lang.ClassLoader::addClass (9 bytes)
Installing method (4) java.lang.ClassLoader.addClass(Ljava/lang/Class;)V
6314 443 s b java.util.Vector::addElement (38 bytes)
Installing method (4) java.util.Vector.addElement(Ljava/lang/Object;)V
6320 444 b java.util.Vector::ensureCapacityHelper (16 bytes)
Installing method (4) java.util.Vector.ensureCapacityHelper(I)V
6324 445 b java.lang.ClassLoader::postDefineClass (26 bytes)
Installing method (4)
java.lang.ClassLoader.postDefineClass(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V
6329 66 ! java.lang.ClassLoader::loadClass (122 bytes)
made not entrant
6329 446 b sun.misc.PerfCounter::getParentDelegationTime
(4 bytes)
Installing method (4)
sun.misc.PerfCounter.getParentDelegationTime()Lsun/misc/PerfCounter;
6331 447 b sun.misc.PerfCounter::addTime (6 bytes)
Installing method (4) sun.misc.PerfCounter.addTime(J)V
6333 448 b sun.misc.PerfCounter::getFindClassTime (4 bytes)
Installing method (4)
sun.misc.PerfCounter.getFindClassTime()Lsun/misc/PerfCounter;
6334 449 b sun.misc.PerfCounter::getFindClasses (4 bytes)
Installing method (4)
sun.misc.PerfCounter.getFindClasses()Lsun/misc/PerfCounter;
6335 450 b sun.misc.PerfCounter::increment (6 bytes)
Installing method (4) sun.misc.PerfCounter.increment()V
6338 60 ! sun.launcher.LauncherHelper::checkAndLoadMain
(159 bytes) made not entrant
6339 451 b java.lang.Object::equals (11 bytes)
Installing method (4) java.lang.Object.equals(Ljava/lang/Object;)Z
6340 452 b sun.launcher.LauncherHelper$FXHelper::<clinit>
(17 bytes)
Installing method (4) sun.launcher.LauncherHelper$FXHelper.<clinit>()V
6343 453 b
sun.launcher.LauncherHelper$FXHelper::access$100 (5 bytes)
Installing method (4)
sun.launcher.LauncherHelper$FXHelper.access$100(Ljava/lang/Class;)Z
6345 454 b
sun.launcher.LauncherHelper$FXHelper::doesExtendFXApplication (33 bytes)
Installing method (4)
sun.launcher.LauncherHelper$FXHelper.doesExtendFXApplication(Ljava/lang/Class;)Z
6354 455 !b sun.launcher.LauncherHelper::validateMainClass
(112 bytes)
Installing method (4)
sun.launcher.LauncherHelper.validateMainClass(Ljava/lang/Class;)V
6371 456 b java.lang.Class::getMethod (63 bytes)
Installing method (4)
java.lang.Class.getMethod(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
6374 457 b java.lang.ClassLoader::getCallerClassLoader (16
bytes)
Installing method (4)
java.lang.ClassLoader.getCallerClassLoader()Ljava/lang/ClassLoader;
6376 458 n sun.reflect.Reflection::getCallerClass (native)
(static)
6377 459 b java.lang.Class::checkMemberAccess (107 bytes)
Installing method (4)
java.lang.Class.checkMemberAccess(ILjava/lang/ClassLoader;Z)V
6379 460 b java.lang.Class::getMethod0 (95 bytes)
Installing method (4)
java.lang.Class.getMethod0(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
6390 461 b java.lang.Class::privateGetDeclaredMethods (67
bytes)
Installing method (4)
java.lang.Class.privateGetDeclaredMethods(Z)[Ljava/lang/reflect/Method;
6396 462 b java.lang.Class::checkInitted (19 bytes)
Installing method (4) java.lang.Class.checkInitted()V
6402 463 b java.lang.Class::reflectionData (49 bytes)
Installing method (4)
java.lang.Class.reflectionData()Ljava/lang/Class$ReflectionData;
6408 464 b java.lang.Class::newReflectionData (74 bytes)
Installing method (4)
java.lang.Class.newReflectionData(Ljava/lang/ref/SoftReference;I)Ljava/lang/Class$ReflectionData;
6432 465 b java.lang.Class$ReflectionData::compareAndSwap
(13 bytes)
Installing method (4)
java.lang.Class$ReflectionData.compareAndSwap(Ljava/lang/Class;Ljava/lang/ref/SoftReference;Ljava/lang/ref/SoftReference;)Z
6434 466 n java.lang.Class::getDeclaredMethods0 (native)
6435 467 !b java.lang.ClassLoader::loadClass (122 bytes)
Installing method (4)
java.lang.ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;
6454 468 b java.util.HashMap$Entry::recordAccess (1 bytes)
Installing method (4)
java.util.HashMap$Entry.recordAccess(Ljava/util/HashMap;)V
6455 469 b sun.reflect.Reflection::filterMethods (31 bytes)
Installing method (4)
sun.reflect.Reflection.filterMethods(Ljava/lang/Class;[Ljava/lang/reflect/Method;)[Ljava/lang/reflect/Method;
Program received signal SIGSEGV, Segmentation fault.
6467 469 sun.reflect.Reflection::filterMethods (31
bytes) made not entrant
6467 470 b java.lang.Class::searchMethods (90 bytes)
Installing method (4)
java.lang.Class.searchMethods([Ljava/lang/reflect/Method;Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
6486 471 b java.lang.reflect.Method::getName (5 bytes)
Installing method (4) java.lang.reflect.Method.getName()Ljava/lang/String;
6489 472 b java.lang.reflect.Method::getParameterTypes (11
bytes)
Installing method (4)
java.lang.reflect.Method.getParameterTypes()[Ljava/lang/Class;
6493 473 b java.lang.Class::arrayContentsEq (70 bytes)
Installing method (4)
java.lang.Class.arrayContentsEq([Ljava/lang/Object;[Ljava/lang/Object;)Z
6514 474 b java.lang.Class::getReflectionFactory (26 bytes)
Installing method (4)
java.lang.Class.getReflectionFactory()Lsun/reflect/ReflectionFactory;
6519 475 b sun.reflect.ReflectionFactory::copyMethod (10
bytes)
Installing method (4)
sun.reflect.ReflectionFactory.copyMethod(Ljava/lang/reflect/Method;)Ljava/lang/reflect/Method;
6521 476 b
sun.reflect.ReflectionFactory::langReflectAccess (15 bytes)
Installing method (4)
sun.reflect.ReflectionFactory.langReflectAccess()Lsun/reflect/LangReflectAccess;
6523 477 b java.lang.reflect.ReflectAccess::copyMethod (5
bytes)
Installing method (4)
java.lang.reflect.ReflectAccess.copyMethod(Ljava/lang/reflect/Method;)Ljava/lang/reflect/Method;
6525 478 b java.lang.reflect.Method::copy (75 bytes)
Installing method (4)
java.lang.reflect.Method.copy()Ljava/lang/reflect/Method;
6526 478 java.lang.reflect.Method::copy (75 bytes)
made not entrant
6527 479 b java.lang.reflect.Method::<init> (68 bytes)
Installing method (4)
java.lang.reflect.Method.<init>(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Class;IILjava/lang/String;[B[B[B)V
6531 480 b java.lang.reflect.Executable::<init> (5 bytes)
Installing method (4) java.lang.reflect.Executable.<init>()V
6532 481 b java.lang.reflect.Method::getModifiers (5 bytes)
Installing method (4) java.lang.reflect.Method.getModifiers()I
6534 482 b java.lang.reflect.Modifier::isStatic (13 bytes)
Installing method (4) java.lang.reflect.Modifier.isStatic(I)Z
6535 483 b java.lang.reflect.Method::getReturnType (5 bytes)
Installing method (4)
java.lang.reflect.Method.getReturnType()Ljava/lang/Class;
6537 455 ! sun.launcher.LauncherHelper::validateMainClass
(112 bytes) made not entrant
6538 484 b java.lang.Void::<clinit> (9 bytes)
Installing method (4) java.lang.Void.<clinit>()V
6543 485 n java.lang.Class::getPrimitiveClass (native)
(static)
6544 486 b
sun.launcher.LauncherHelper::getApplicationClass (4 bytes)
Installing method (4)
sun.launcher.LauncherHelper.getApplicationClass()Ljava/lang/Class;
6547 487 b HelloC3::main (43 bytes)
Installing method (4) HelloC3.main([Ljava/lang/String;)V
6553 487 HelloC3::main (43 bytes) made not entrant
6554 488 b HelloC3::<init> (5 bytes)
Installing method (4) HelloC3.<init>()V
6557 489 b HelloC3::test (27 bytes)
Installing method (4) HelloC3.test(LHelloC3;I)I
6568 490 b HelloC3::test2 (15 bytes)
Installing method (4) HelloC3.test2(LHelloC3;I)I
6583 491 b java.lang.Thread::exit (51 bytes)
Installing method (4) java.lang.Thread.exit()V
6588 492 !b java.lang.ThreadGroup::threadTerminated (63 bytes)
Installing method (4)
java.lang.ThreadGroup.threadTerminated(Ljava/lang/Thread;)V
6594 493 !b java.lang.ThreadGroup::remove (94 bytes)
Installing method (4) java.lang.ThreadGroup.remove(Ljava/lang/Thread;)V
6618 494 n java.lang.Object::notifyAll (native)
6627 495 !b java.lang.ThreadGroup::add (110 bytes)
Installing method (4) java.lang.ThreadGroup.add(Ljava/lang/Thread;)V
6642 496 b java.lang.Shutdown::<clinit> (43 bytes)
Installing method (4) java.lang.Shutdown.<clinit>()V
6653 496 java.lang.Shutdown::<clinit> (43 bytes) made
not entrant
6654 497 b java.lang.Shutdown$Lock::<init> (5 bytes)
Installing method (4)
java.lang.Shutdown$Lock.<init>(Ljava/lang/Shutdown$1;)V
6656 498 b java.lang.Shutdown$Lock::<init> (5 bytes)
Installing method (4) java.lang.Shutdown$Lock.<init>()V
6660 499 !b java.lang.Shutdown::shutdown (73 bytes)
Installing method (4) java.lang.Shutdown.shutdown()V
6673 500 !b java.lang.Shutdown::sequence (61 bytes)
Installing method (4) java.lang.Shutdown.sequence()V
6686 501 !b java.lang.Shutdown::runHooks (69 bytes)
Installing method (4) java.lang.Shutdown.runHooks()V
[Thread 0x7ffef455d700 (LWP 20276) exited]
[Thread 0x7ffef4d61700 (LWP 20272) exited]
[Thread 0x7ffef551b700 (LWP 20269) exited]
[Thread 0x7ffff69aa700 (LWP 20264) exited]
[Thread 0x7ffef5299700 (LWP 20270) exited]
[Thread 0x7ffef475e700 (LWP 20275) exited]
[Thread 0x7ffef4b60700 (LWP 20273) exited]
[Thread 0x7ffef5017700 (LWP 20271) exited]
[Thread 0x7ffff437e700 (LWP 20268) exited]
[Thread 0x7ffff457f700 (LWP 20267) exited]
[Thread 0x7ffff4780700 (LWP 20266) exited]
[Thread 0x7ffff4981700 (LWP 20265) exited]
[Thread 0x7ffff7dbf740 (LWP 20263) exited]
[Inferior 1 (process 20263) exited normally]
(gdb)
More information about the aarch64-port-dev
mailing list