From f545054a094e0b5cf3dea5844c72f65c61532635 Mon Sep 17 00:00:00 2001 From: jheiska Date: Tue, 1 Aug 2017 21:19:44 +0300 Subject: [PATCH 1/8] hyvin etenee --- .nrepl-port | 1 + src/structured_data.clj | 39 +++++++++++++++++++++++++++++---------- 2 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 .nrepl-port diff --git a/.nrepl-port b/.nrepl-port new file mode 100644 index 00000000..46bbf38d --- /dev/null +++ b/.nrepl-port @@ -0,0 +1 @@ +51848 \ No newline at end of file diff --git a/src/structured_data.clj b/src/structured_data.clj index ebfe1ce4..49894b58 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -1,37 +1,56 @@ (ns structured-data) (defn do-a-thing [x] - :-) + (let [numero (+ x x)] + (Math/pow numero numero))) (defn spiff [v] - :-) + (+ (get v 0) (get v 2))) (defn cutify [v] - :-) + (conj v "<3")) (defn spiff-destructuring [v] - :-) + (let [[x y z] v] + (+ x z) + )) + + (defn point [x y] - [x y]) + [x y]) (defn rectangle [bottom-left top-right] [bottom-left top-right]) (defn width [rectangle] - :-) + (let [[[x1 y1] [x2 y2]] rectangle] + (- x2 x1) + )) (defn height [rectangle] - :-) + (let [[[x1 y1] [x2 y2]] rectangle] + (- y2 y1) + )) (defn square? [rectangle] - :-) + (let [[[x1 y1] [x2 y2]] rectangle] + (if (== (- x2 x1) (- y2 y1)) true false)) + ) (defn area [rectangle] - :-) + (let [[[x1 y1] [x2 y2]] rectangle] + (* (- x2 x1) (- y2 y1))) + ) (defn contains-point? [rectangle point] - :-) + (let [[[x1 y1] [x2 y2]] rectangle + x3 (get point 0) + y3 (get point 1)] + (if(and (<= x1 x3 x2) (<= y1 y3 y2)) true false) + )) + + (defn contains-rectangle? [outer inner] :-) From 1b603f299afa97889555373c7bb80f67919c9096 Mon Sep 17 00:00:00 2001 From: jheiska Date: Mon, 7 Aug 2017 18:59:15 +0300 Subject: [PATCH 2/8] ... --- .nrepl-port | 2 +- src/structured_data.clj | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.nrepl-port b/.nrepl-port index 46bbf38d..bed9c01d 100644 --- a/.nrepl-port +++ b/.nrepl-port @@ -1 +1 @@ -51848 \ No newline at end of file +56094 \ No newline at end of file diff --git a/src/structured_data.clj b/src/structured_data.clj index 49894b58..c490fed2 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -43,6 +43,11 @@ (* (- x2 x1) (- y2 y1))) ) +; (defn area [rec] + ; (* ((height (rec))) ((width (rec)))) + ;) + + (defn contains-point? [rectangle point] (let [[[x1 y1] [x2 y2]] rectangle x3 (get point 0) @@ -53,7 +58,12 @@ (defn contains-rectangle? [outer inner] - :-) + (let [[[x1 y1] [x2 y2]] outer + [[xx1 yy1] [xx2 yy2]] inner + ] + (if(and (contains-point? (outer) (point xx1 yy1)) (contains-point? (outer) (point xx2 yy2)) ) true false) + )) + (defn title-length [book] :-) From 31948305dd23d3df695a809496f36cdbf2bac533 Mon Sep 17 00:00:00 2001 From: jheiska Date: Mon, 7 Aug 2017 20:00:20 +0300 Subject: [PATCH 3/8] =?UTF-8?q?nimien=20lis=C3=A4ys=20ei=20toimi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nrepl-port | 1 - hs_err_pid10320.log | 369 ++++++++++++++++++++++++++++++++++++++++ hs_err_pid11076.log | 281 ++++++++++++++++++++++++++++++ src/structured_data.clj | 18 +- 4 files changed, 663 insertions(+), 6 deletions(-) delete mode 100644 .nrepl-port create mode 100644 hs_err_pid10320.log create mode 100644 hs_err_pid11076.log diff --git a/.nrepl-port b/.nrepl-port deleted file mode 100644 index bed9c01d..00000000 --- a/.nrepl-port +++ /dev/null @@ -1 +0,0 @@ -56094 \ No newline at end of file diff --git a/hs_err_pid10320.log b/hs_err_pid10320.log new file mode 100644 index 00000000..9d6f66a6 --- /dev/null +++ b/hs_err_pid10320.log @@ -0,0 +1,369 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa43b5120, pid=10320, tid=10380 +# +# JRE version: Java(TM) SE Runtime Environment (8.0_91-b14) (build 1.8.0_91-b14) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.91-b14 mixed mode windows-amd64 compressed oops) +# Problematic frame: +# C 0xffffffffa43b5120 +# +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# +# If you would like to submit a bug report, please visit: +# http://bugreport.java.com/bugreport/crash.jsp +# + +--------------- T H R E A D --------------- + +Current thread (0x00000000032b3800): JavaThread "main" [_thread_in_Java, id=10380, stack(0x00000000031b0000,0x00000000032b0000)] + +siginfo: ExceptionCode=0xc0000005, ExceptionInformation=0x0000000000000008 0xffffffffa43b5120 + +Registers: +RAX=0x00000000ef068e08, RBX=0x00000000154f3ca0, RCX=0x00000000002f8d39, RDX=0x00000000ef0591f0 +RSP=0x00000000032a50e8, RBP=0x00000000ef0591f0, RSI=0x000000001560e788, RDI=0x0000000000000001 +R8 =0x00000000ec6b97d0, R9 =0x00000000ec6b9808, R10=0x00000000007635cc, R11=0x0000000012170000 +R12=0x0000000000000000, R13=0x00000000032a5148, R14=0x00000000032a51a0, R15=0x00000000032b3800 +RIP=0xffffffffa43b5120, EFLAGS=0x0000000000010286 + +Top of Stack: (sp=0x00000000032a50e8) +0x00000000032a50e8: 00000000036aef68 00000000ec6b97f0 +0x00000000032a50f8: 00000000ec6b97d0 0000000000000000 +0x00000000032a5108: 00000000000000b8 00000000032a5198 +0x00000000032a5118: 00000000033d1d6c 00000000032b3800 +0x00000000032a5128: 00000000000000b8 00000000032a5198 +0x00000000032a5138: 00000000033b7e20 00000000033b7e20 +0x00000000032a5148: 00000000ef068e08 0000000000000000 +0x00000000032a5158: 00000000032a5158 000000001bd62a81 +0x00000000032a5168: 00000000032a51a0 000000001bd62d40 +0x00000000032a5178: 0000000000000000 000000001bd62aa0 +0x00000000032a5188: 00000000032a5148 00000000032a51a8 +0x00000000032a5198: 00000000032a5280 00000000033b0622 +0x00000000032a51a8: 0000000000000000 0000000000000000 +0x00000000032a51b8: 0000000000000000 0000000000000000 +0x00000000032a51c8: 0000000000000000 0000000000000000 +0x00000000032a51d8: 0000000000000000 0000000000000000 + +Instructions: (pc=0xffffffffa43b5120) +0xffffffffa43b5100: +[error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005] + +Register to memory mapping: + +RAX=0x00000000ef068e08 is an oop +java.lang.String + - klass: 'java/lang/String' +RBX={method} {0x00000000154f3ca8} 'keyword' '(Ljava/lang/String;Ljava/lang/String;)Lclojure/lang/Keyword;' in 'clojure/lang/RT' +RCX=0x00000000002f8d39 is an unknown value +RDX=0x00000000ef0591f0 is an oop +java.util.concurrent.ConcurrentHashMap + - klass: 'java/util/concurrent/ConcurrentHashMap' +RSP=0x00000000032a50e8 is pointing into the stack for thread: 0x00000000032b3800 +RBP=0x00000000ef0591f0 is an oop +java.util.concurrent.ConcurrentHashMap + - klass: 'java/util/concurrent/ConcurrentHashMap' +RSI=0x000000001560e788 is pointing into metadata +RDI=0x0000000000000001 is an unknown value +R8 =0x00000000ec6b97d0 is an oop +clojure.lang.Symbol + - klass: 'clojure/lang/Symbol' +R9 =0x00000000ec6b9808 is an oop +java.lang.ref.WeakReference + - klass: 'java/lang/ref/WeakReference' +R10=0x00000000007635cc is an unknown value +R11=0x0000000012170000 is an unknown value +R12=0x0000000000000000 is an unknown value +R13=0x00000000032a5148 is pointing into the stack for thread: 0x00000000032b3800 +R14=0x00000000032a51a0 is pointing into the stack for thread: 0x00000000032b3800 +R15=0x00000000032b3800 is a thread + + +Stack: [0x00000000031b0000,0x00000000032b0000], sp=0x00000000032a50e8, free space=980k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +C 0xffffffffa43b5120 + + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + 0x00000000173e6000 JavaThread "Service Thread" daemon [_thread_blocked, id=1908, stack(0x00000000177c0000,0x00000000178c0000)] + 0x0000000015a89000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=3516, stack(0x00000000172c0000,0x00000000173c0000)] + 0x0000000015a85800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=9468, stack(0x00000000171c0000,0x00000000172c0000)] + 0x0000000015a83800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7156, stack(0x00000000170c0000,0x00000000171c0000)] + 0x0000000015a81800 JavaThread "Attach Listener" daemon [_thread_blocked, id=6864, stack(0x0000000016fc0000,0x00000000170c0000)] + 0x0000000015a80800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6888, stack(0x0000000016ec0000,0x0000000016fc0000)] + 0x0000000015a70000 JavaThread "Finalizer" daemon [_thread_blocked, id=7612, stack(0x0000000016cd0000,0x0000000016dd0000)] + 0x00000000033a2800 JavaThread "Reference Handler" daemon [_thread_blocked, id=500, stack(0x0000000016bd0000,0x0000000016cd0000)] +=>0x00000000032b3800 JavaThread "main" [_thread_in_Java, id=10380, stack(0x00000000031b0000,0x00000000032b0000)] + +Other Threads: + 0x0000000015a48000 VMThread [stack: 0x0000000016ad0000,0x0000000016bd0000] [id=7064] + 0x0000000017412800 WatcherThread [stack: 0x00000000178c0000,0x00000000179c0000] [id=1660] + +VM state:synchronizing (normal execution) + +VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) +[0x00000000032b0ed0] Safepoint_lock - owner thread: 0x0000000015a48000 +[0x00000000032b0f50] Threads_lock - owner thread: 0x0000000015a48000 + +Heap: + PSYoungGen total 70656K, used 32091K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) + eden space 65536K, 43% used [0x00000000eab00000,0x00000000ec722d10,0x00000000eeb00000) + from space 5120K, 64% used [0x00000000ef000000,0x00000000ef334030,0x00000000ef500000) + to space 5120K, 0% used [0x00000000eeb00000,0x00000000eeb00000,0x00000000ef000000) + ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) + Metaspace used 18365K, capacity 19521K, committed 19712K, reserved 1064960K + class space used 3403K, capacity 3782K, committed 3840K, reserved 1048576K + +Card table byte_map: [0x0000000012770000,0x0000000012980000] byte_map_base: 0x0000000012170000 + +Marking Bits: (ParMarkBitMap*) 0x000000005c122f70 + Begin Bits: [0x0000000012ee0000, 0x0000000013ee0000) + End Bits: [0x0000000013ee0000, 0x0000000014ee0000) + +Polling page: 0x0000000001750000 + +CodeCache: size=245760Kb used=8363Kb max_used=8381Kb free=237397Kb + bounds [0x00000000033b0000, 0x0000000003bf0000, 0x00000000123b0000] + total_blobs=2480 nmethods=2120 adapters=274 + compilation: enabled + +Compilation events (10 events): +Event: 7.617 Thread 0x0000000015a89000 nmethod 2120 0x0000000003ba58d0 code [0x0000000003ba5a60, 0x0000000003ba5e48] +Event: 7.620 Thread 0x0000000015a89000 2121 3 clojure.lang.RT::getFrom (100 bytes) +Event: 7.621 Thread 0x0000000015a89000 nmethod 2121 0x0000000003bda4d0 code [0x0000000003bda780, 0x0000000003bdbe78] +Event: 7.621 Thread 0x0000000015a89000 2122 3 clojure.lang.KeywordLookupSite::fault (31 bytes) +Event: 7.622 Thread 0x0000000015a89000 nmethod 2122 0x0000000003bd3f50 code [0x0000000003bd4120, 0x0000000003bd4c48] +Event: 7.622 Thread 0x0000000015a89000 2123 3 clojure.core$conj_BANG_::invoke (15 bytes) +Event: 7.622 Thread 0x0000000015a89000 nmethod 2123 0x0000000003bd39d0 code [0x0000000003bd3b40, 0x0000000003bd3e68] +Event: 7.624 Thread 0x0000000015a85800 nmethod 2118 0x0000000003bde650 code [0x0000000003bde820, 0x0000000003bdf3a0] +Event: 7.624 Thread 0x0000000015a85800 2124 4 clojure.lang.APersistentMap:: (15 bytes) +Event: 7.625 Thread 0x0000000015a85800 nmethod 2124 0x0000000003af18d0 code [0x0000000003af1a00, 0x0000000003af1a78] + +GC Heap History (10 events): +Event: 3.185 GC heap before +{Heap before GC invocations=2 (full 0): + PSYoungGen total 18944K, used 18943K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000) + eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) + from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7ffe0,0x00000000ebd80000) + to space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000) + ParOldGen total 44032K, used 569K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 1% used [0x00000000c0000000,0x00000000c008e7b8,0x00000000c2b00000) + Metaspace used 8176K, capacity 9019K, committed 9216K, reserved 1056768K + class space used 1484K, capacity 1520K, committed 1536K, reserved 1048576K +Event: 3.200 GC heap after +Heap after GC invocations=2 (full 0): + PSYoungGen total 18944K, used 2544K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) + from space 2560K, 99% used [0x00000000ebd80000,0x00000000ebffc030,0x00000000ec000000) + to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) + ParOldGen total 44032K, used 1799K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 4% used [0x00000000c0000000,0x00000000c01c1f38,0x00000000c2b00000) + Metaspace used 8176K, capacity 9019K, committed 9216K, reserved 1056768K + class space used 1484K, capacity 1520K, committed 1536K, reserved 1048576K +} +Event: 4.275 GC heap before +{Heap before GC invocations=3 (full 0): + PSYoungGen total 18944K, used 18928K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) + from space 2560K, 99% used [0x00000000ebd80000,0x00000000ebffc030,0x00000000ec000000) + to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) + ParOldGen total 44032K, used 1799K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 4% used [0x00000000c0000000,0x00000000c01c1f38,0x00000000c2b00000) + Metaspace used 10455K, capacity 10669K, committed 10752K, reserved 1058816K + class space used 1971K, capacity 2006K, committed 2048K, reserved 1048576K +Event: 4.289 GC heap after +Heap after GC invocations=3 (full 0): + PSYoungGen total 18944K, used 2528K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) + from space 2560K, 98% used [0x00000000ebb00000,0x00000000ebd78020,0x00000000ebd80000) + to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) + ParOldGen total 44032K, used 3312K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 7% used [0x00000000c0000000,0x00000000c033c1d0,0x00000000c2b00000) + Metaspace used 10455K, capacity 10669K, committed 10752K, reserved 1058816K + class space used 1971K, capacity 2006K, committed 2048K, reserved 1048576K +} +Event: 4.742 GC heap before +{Heap before GC invocations=4 (full 0): + PSYoungGen total 18944K, used 18912K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) + from space 2560K, 98% used [0x00000000ebb00000,0x00000000ebd78020,0x00000000ebd80000) + to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) + ParOldGen total 44032K, used 3312K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 7% used [0x00000000c0000000,0x00000000c033c1d0,0x00000000c2b00000) + Metaspace used 11361K, capacity 11801K, committed 12032K, reserved 1058816K + class space used 2154K, capacity 2258K, committed 2304K, reserved 1048576K +Event: 4.753 GC heap after +Heap after GC invocations=4 (full 0): + PSYoungGen total 35328K, used 2539K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) + from space 2560K, 99% used [0x00000000ecd80000,0x00000000ecffad88,0x00000000ed000000) + to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) + ParOldGen total 44032K, used 4486K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 10% used [0x00000000c0000000,0x00000000c04618d0,0x00000000c2b00000) + Metaspace used 11361K, capacity 11801K, committed 12032K, reserved 1058816K + class space used 2154K, capacity 2258K, committed 2304K, reserved 1048576K +} +Event: 5.728 GC heap before +{Heap before GC invocations=5 (full 0): + PSYoungGen total 35328K, used 35307K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 32768K, 100% used [0x00000000eab00000,0x00000000ecb00000,0x00000000ecb00000) + from space 2560K, 99% used [0x00000000ecd80000,0x00000000ecffad88,0x00000000ed000000) + to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) + ParOldGen total 44032K, used 4486K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 10% used [0x00000000c0000000,0x00000000c04618d0,0x00000000c2b00000) + Metaspace used 15674K, capacity 16299K, committed 16512K, reserved 1062912K + class space used 2721K, capacity 2936K, committed 2944K, reserved 1048576K +Event: 5.745 GC heap after +Heap after GC invocations=5 (full 0): + PSYoungGen total 35328K, used 2544K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) + eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) + from space 2560K, 99% used [0x00000000ecb00000,0x00000000ecd7c010,0x00000000ecd80000) + to space 5120K, 0% used [0x00000000ef000000,0x00000000ef000000,0x00000000ef500000) + ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) + Metaspace used 15674K, capacity 16299K, committed 16512K, reserved 1062912K + class space used 2721K, capacity 2936K, committed 2944K, reserved 1048576K +} +Event: 6.618 GC heap before +{Heap before GC invocations=6 (full 0): + PSYoungGen total 35328K, used 35312K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) + eden space 32768K, 100% used [0x00000000eab00000,0x00000000ecb00000,0x00000000ecb00000) + from space 2560K, 99% used [0x00000000ecb00000,0x00000000ecd7c010,0x00000000ecd80000) + to space 5120K, 0% used [0x00000000ef000000,0x00000000ef000000,0x00000000ef500000) + ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) + Metaspace used 16552K, capacity 17509K, committed 17664K, reserved 1062912K + class space used 2963K, capacity 3290K, committed 3328K, reserved 1048576K +Event: 6.647 GC heap after +Heap after GC invocations=6 (full 0): + PSYoungGen total 70656K, used 3280K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) + eden space 65536K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eeb00000) + from space 5120K, 64% used [0x00000000ef000000,0x00000000ef334030,0x00000000ef500000) + to space 5120K, 0% used [0x00000000eeb00000,0x00000000eeb00000,0x00000000ef000000) + ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) + Metaspace used 16552K, capacity 17509K, committed 17664K, reserved 1062912K + class space used 2963K, capacity 3290K, committed 3328K, reserved 1048576K +} + +Deoptimization events (10 events): +Event: 6.865 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000037e2104 method=clojure.lang.PersistentHashMap$BitmapIndexedNode.assoc(IILjava/lang/Object;Ljava/lang/Object;Lclojure/lang/Box;)Lclojure/lang/PersistentHashMap$INode; @ 79 +Event: 6.891 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003afea48 method=clojure.lang.Compiler.closeOver(Lclojure/lang/Compiler$LocalBinding;Lclojure/lang/Compiler$ObjMethod;)V @ 58 +Event: 7.066 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000037fa7fc method=clojure.lang.PersistentHashMap$BitmapIndexedNode.find(IILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 59 +Event: 7.104 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000039b494c method=clojure.lang.PersistentHashMap.containsKey(Ljava/lang/Object;)Z @ 1 +Event: 7.129 Thread 0x00000000032b3800 Uncommon trap: reason=null_check action=make_not_entrant pc=0x00000000039be06c method=clojure.lang.RT.meta(Ljava/lang/Object;)Lclojure/lang/IPersistentMap; @ 1 +Event: 7.136 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000036283dc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8 +Event: 7.136 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000036283dc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8 +Event: 7.578 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000038fcdbc method=clojure.lang.Util.equivPred(Ljava/lang/Object;)Lclojure/lang/Util$EquivPred; @ 41 +Event: 7.582 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000039848f4 method=clojure.lang.RT.getFrom(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 1 +Event: 7.590 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000036e796c method=clojure.lang.PersistentHashMap.valAt(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 1 + +Internal exceptions (10 events): +Event: 2.087 Thread 0x00000000032b3800 Exception (0x00000000eb09c890) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 2.087 Thread 0x00000000032b3800 Exception (0x00000000eb09caa0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 3.487 Thread 0x00000000032b3800 Implicit null exception at 0x000000000364e082 to 0x000000000364e23e +Event: 4.408 Thread 0x00000000032b3800 Implicit null exception at 0x000000000368cd8c to 0x000000000368ce65 +Event: 5.020 Thread 0x00000000032b3800 Exception (0x00000000eb307e78) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146] +Event: 5.023 Thread 0x00000000032b3800 Exception (0x00000000eb316468) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146] +Event: 5.239 Thread 0x00000000032b3800 Exception (0x00000000eb4abc60) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199] +Event: 7.104 Thread 0x00000000032b3800 Implicit null exception at 0x00000000039b41ef to 0x00000000039b4939 +Event: 7.128 Thread 0x00000000032b3800 Implicit null exception at 0x00000000039bdfac to 0x00000000039be062 +Event: 7.590 Thread 0x00000000032b3800 Implicit null exception at 0x00000000036e70f4 to 0x00000000036e7959 + +Events (10 events): +Event: 7.616 loading class clojure/pprint$map_ref_type +Event: 7.616 loading class clojure/pprint$map_ref_type done +Event: 7.617 loading class clojure/pprint$pprint_ideref +Event: 7.617 loading class clojure/pprint$pprint_ideref done +Event: 7.618 loading class clojure/pprint$fn__8220 +Event: 7.618 loading class clojure/pprint$fn__8220 done +Event: 7.621 loading class clojure/pprint$fn__8220$fn__8221 +Event: 7.621 loading class clojure/pprint$fn__8220$fn__8221 done +Event: 7.623 loading class clojure/pprint$pprint_simple_default +Event: 7.623 loading class clojure/pprint$pprint_simple_default done + + +Dynamic libraries: +0x00007ff790520000 - 0x00007ff790557000 C:\PROGRA~1\Java\JDK18~1.0_9\bin\java.exe +0x00007ffc89530000 - 0x00007ffc8970b000 C:\WINDOWS\SYSTEM32\ntdll.dll +0x00007ffc88b40000 - 0x00007ffc88bee000 C:\WINDOWS\System32\KERNEL32.DLL +0x00007ffc85a50000 - 0x00007ffc85c99000 C:\WINDOWS\System32\KERNELBASE.dll +0x00007ffc86fd0000 - 0x00007ffc87071000 C:\WINDOWS\System32\ADVAPI32.dll +0x00007ffc86da0000 - 0x00007ffc86e3d000 C:\WINDOWS\System32\msvcrt.dll +0x00007ffc872d0000 - 0x00007ffc87329000 C:\WINDOWS\System32\sechost.dll +0x00007ffc86e40000 - 0x00007ffc86f65000 C:\WINDOWS\System32\RPCRT4.dll +0x00007ffc86c50000 - 0x00007ffc86d9a000 C:\WINDOWS\System32\USER32.dll +0x00007ffc85ca0000 - 0x00007ffc85cbe000 C:\WINDOWS\System32\win32u.dll +0x00007ffc89330000 - 0x00007ffc89357000 C:\WINDOWS\System32\GDI32.dll +0x00007ffc86850000 - 0x00007ffc869d8000 C:\WINDOWS\System32\gdi32full.dll +0x00007ffc867b0000 - 0x00007ffc8684a000 C:\WINDOWS\System32\msvcp_win.dll +0x00007ffc866b0000 - 0x00007ffc867a6000 C:\WINDOWS\System32\ucrtbase.dll +0x00007ffc7a610000 - 0x00007ffc7a877000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll +0x00007ffc89030000 - 0x00007ffc89329000 C:\WINDOWS\System32\combase.dll +0x00007ffc863c0000 - 0x00007ffc8642a000 C:\WINDOWS\System32\bcryptPrimitives.dll +0x00007ffc86fa0000 - 0x00007ffc86fcd000 C:\WINDOWS\System32\IMM32.DLL +0x000000005c1b0000 - 0x000000005c282000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\msvcr100.dll +0x000000005b910000 - 0x000000005c1a3000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\server\jvm.dll +0x00007ffc87680000 - 0x00007ffc87688000 C:\WINDOWS\System32\PSAPI.DLL +0x00007ffc83ba0000 - 0x00007ffc83bc3000 C:\WINDOWS\SYSTEM32\WINMM.dll +0x00007ffc829b0000 - 0x00007ffc829b9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll +0x00007ffc87690000 - 0x00007ffc876fc000 C:\WINDOWS\System32\WS2_32.dll +0x00007ffc838e0000 - 0x00007ffc8390b000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll +0x00007ffc81350000 - 0x00007ffc8135a000 C:\WINDOWS\SYSTEM32\VERSION.dll +0x00007ffc86660000 - 0x00007ffc866a9000 C:\WINDOWS\System32\cfgmgr32.dll +0x000000005c4b0000 - 0x000000005c4bf000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\verify.dll +0x000000005c480000 - 0x000000005c4a9000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\java.dll +0x000000005c460000 - 0x000000005c476000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\zip.dll +0x00007ffc87700000 - 0x00007ffc88b37000 C:\WINDOWS\System32\SHELL32.dll +0x00007ffc870e0000 - 0x00007ffc8718a000 C:\WINDOWS\System32\shcore.dll +0x00007ffc85cc0000 - 0x00007ffc863b2000 C:\WINDOWS\System32\windows.storage.dll +0x00007ffc87330000 - 0x00007ffc87381000 C:\WINDOWS\System32\shlwapi.dll +0x00007ffc85a10000 - 0x00007ffc85a21000 C:\WINDOWS\System32\kernel.appcore.dll +0x00007ffc859a0000 - 0x00007ffc859ec000 C:\WINDOWS\System32\powrprof.dll +0x00007ffc85a30000 - 0x00007ffc85a45000 C:\WINDOWS\System32\profapi.dll +0x000000005aee0000 - 0x000000005af04000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\sunec.dll +0x00007ffc85460000 - 0x00007ffc85477000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll +0x00007ffc84ed0000 - 0x00007ffc84f04000 C:\WINDOWS\system32\rsaenh.dll +0x00007ffc85560000 - 0x00007ffc85585000 C:\WINDOWS\SYSTEM32\bcrypt.dll +0x00007ffc858d0000 - 0x00007ffc858f9000 C:\WINDOWS\SYSTEM32\USERENV.dll +0x00007ffc85450000 - 0x00007ffc8545b000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll +0x000000005c440000 - 0x000000005c45a000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\net.dll +0x00007ffc852b0000 - 0x00007ffc8530c000 C:\WINDOWS\system32\mswsock.dll +0x00007ffc85050000 - 0x00007ffc85087000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL +0x00007ffc86a90000 - 0x00007ffc86a98000 C:\WINDOWS\System32\NSI.dll +0x00007ffc7f5c0000 - 0x00007ffc7f5d6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL +0x00007ffc7f5a0000 - 0x00007ffc7f5ba000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL +0x000000005af10000 - 0x000000005af21000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\nio.dll +0x00007ffc77180000 - 0x00007ffc77329000 C:\WINDOWS\SYSTEM32\dbghelp.dll + +VM Arguments: +jvm_args: -Dfile.encoding=Cp1252 -XX:-OmitStackTraceInFastThrow -Dclojure.compile.path=D:\clojure_programming\structured-data\target\classes -Dstructured-data.version=1.0.0-SNAPSHOT -Dclojure.debug=false +java_command: clojure.main -i C:\Users\jaakk_000\AppData\Local\Temp\form-init6357922200585105047.clj +java_class_path (initial): D:\clojure_programming\structured-data\test;D:\clojure_programming\structured-data\src;D:\clojure_programming\structured-data\dev-resources;D:\clojure_programming\structured-data\resources;D:\clojure_programming\structured-data\target\classes;C:\Users\jaakk_000\.m2\repository\org\apache\httpcomponents\httpcore\4.1.2\httpcore-4.1.2.jar;C:\Users\jaakk_000\.m2\repository\org\apache\httpcomponents\httpclient\4.1.2\httpclient-4.1.2.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\tools.namespace\0.2.2\tools.namespace-0.2.2.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\aether\aether-spi\1.13.1\aether-spi-1.13.1.jar;C:\Users\jaakk_000\.m2\repository\swiss-arrows\swiss-arrows\0.1.0\swiss-arrows-0.1.0.jar;C:\Users\jaakk_000\.m2\repository\org\apache\maven\wagon\wagon-http\2.2\wagon-http-2.2.jar;C:\Users\jaakk_000\.m2\repository\ordered\ordered\1.2.0\ordered-1.2.0.jar;C:\Users\jaakk_000\.m2\repository\colorize\colorize\0.1.1\colorize-0.1.1.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\sisu\sisu-inject-bean\2.2.3\sisu-inject-bean-2.2.3.jar;C:\Users\jaakk_000\.m2\repository\org\codehaus\plexus\plexus-utils\2.0.7\plexus-utils-2.0.7.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\aether\aether-api\1.13.1\aether-api-1.13.1.jar;C:\Users\jaakk_000\.m2\repository\useful\useful\0.8.3-alpha8\useful-0.8.3-alpha8.jar;C:\Users\jaakk_000\.m2\repository\leiningen-core\leiningen-core\2.0.0-preview10\leiningen-core-2.0.0-preview10.jar;C:\Users\jaakk_000\.m2\repository\bultitude\bultitude\0.1.7\bultitude-0.1.7.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\math.combinatorics\0.0.1\math.combinatorics-0.0.1.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\core.unify\0.5.2\core.unify-0.5.2.jar;C:\Users\jaakk_000\.m2\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar;C:\Users\jaakk_000\.m2\repository\utilize\utilize\0.2.3\utilize-0.2.3.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\tools.nrepl\0 +Launcher Type: SUN_STANDARD + +Environment Variables: +CLASSPATH=C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar +PATH=C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\cmd;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\bin;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\share\git-tfs;C:\Users\jaakk_000\AppData\Local\Apps\2.0\O3EGYX0Y.WLJ\3WEK1L4A.AMV\gith..tion_317444273a93ac29_0003.0003_5794af8169eeff14;C:\Users\jaakk_000\AppData\Local\GitHub\lfs-amd64_1.5.5;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\PuTTy\;D:\Git\cmd;C:\Users\jaakk_000\AppData\Local\Microsoft\WindowsApps;;D:\.lein\bin;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ +USERNAME=jaakk_000 +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296) + +CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, tsc + +Memory: 4k page, physical 4193268k(886916k free), swap 6631696k(946120k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.91-b14) for windows-amd64 JRE (1.8.0_91-b14), built on Apr 1 2016 00:58:32 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Mon Aug 07 19:31:28 2017 +elapsed time: 7 seconds (0d 0h 0m 7s) + diff --git a/hs_err_pid11076.log b/hs_err_pid11076.log new file mode 100644 index 00000000..b91a7b5a --- /dev/null +++ b/hs_err_pid11076.log @@ -0,0 +1,281 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa4075120, pid=11076, tid=8096 +# +# JRE version: Java(TM) SE Runtime Environment (8.0_91-b14) (build 1.8.0_91-b14) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.91-b14 mixed mode windows-amd64 compressed oops) +# Problematic frame: +# C 0xffffffffa4075120 +# +# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows +# +# If you would like to submit a bug report, please visit: +# http://bugreport.java.com/bugreport/crash.jsp +# + +--------------- T H R E A D --------------- + +Current thread (0x0000000002d6e000): JavaThread "main" [_thread_in_Java, id=8096, stack(0x0000000002e70000,0x0000000002f70000)] + +siginfo: ExceptionCode=0xc0000005, ExceptionInformation=0x0000000000000008 0xffffffffa4075120 + +Registers: +RAX=0x0000000018fce8c0, RBX=0x0000000018fce8c0, RCX=0x0000000018fd0890, RDX=0x000000001aa60cbb +RSP=0x0000000002f61448, RBP=0x0000000002f614b8, RSI=0x000000009832ec6a, RDI=0x0000000000038fc0 +R8 =0x00000000272b2710, R9 =0x00000000e8fd9968, R10=0x000000005c1049a0, R11=0x00000000033e7d20 +R12=0x0000000000000000, R13=0x0000000002f61458, R14=0x0000000002f61530, R15=0x0000000002d6e000 +RIP=0xffffffffa4075120, EFLAGS=0x0000000000010206 + +Top of Stack: (sp=0x0000000002f61448) +0x0000000002f61448: 0000000003077ae0 0000000003077ae0 +0x0000000002f61458: 00000000e8fd9968 00000000272b2710 +0x0000000002f61468: 000000001aa60cbb 000000003b43ba74 +0x0000000002f61478: 0000000002f61478 0000000018fcedd9 +0x0000000002f61488: 0000000002f61530 0000000018fd0890 +0x0000000002f61498: 0000000000000000 0000000018fcee90 +0x0000000002f614a8: 0000000002f61458 0000000002f61520 +0x0000000002f614b8: 0000000002f61578 000000000307809d +0x0000000002f614c8: 000000004944d559 0000000062f16887 +0x0000000002f614d8: 0000000000000013 000000005fa7ffe6 +0x0000000002f614e8: 000000008aa18eda 0000000022bf3c13 +0x0000000002f614f8: 00000000c24b36dd 00000000ab4d655d +0x0000000002f61508: 00000000e8fd9968 00000000272b2710 +0x0000000002f61518: 000000001aa60cbb 00000000000003c0 +0x0000000002f61528: 00000000eb501460 00000000eb5518c8 +0x0000000002f61538: 0000000002f61538 0000000018fcfed0 + +Instructions: (pc=0xffffffffa4075120) +0xffffffffa4075100: +[error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005] + +Register to memory mapping: + +RAX={method} {0x0000000018fce8c8} 'lf_maj' '(III)I' in 'sun/security/provider/SHA2' +RBX={method} {0x0000000018fce8c8} 'lf_maj' '(III)I' in 'sun/security/provider/SHA2' +RCX=0x0000000018fd0890 is pointing into metadata +RDX=0x000000001aa60cbb is an unknown value +RSP=0x0000000002f61448 is pointing into the stack for thread: 0x0000000002d6e000 +RBP=0x0000000002f614b8 is pointing into the stack for thread: 0x0000000002d6e000 +RSI=0x000000009832ec6a is an unknown value +RDI=0x0000000000038fc0 is an unknown value +R8 =0x00000000272b2710 is an unknown value +R9 =0x00000000e8fd9968 is an unallocated location in the heap +R10=0x000000005c1049a0 is an unknown value +R11=0x00000000033e7d20 is at entry_point+0 in (nmethod*)0x00000000033e7bd0 +R12=0x0000000000000000 is an unknown value +R13=0x0000000002f61458 is pointing into the stack for thread: 0x0000000002d6e000 +R14=0x0000000002f61530 is pointing into the stack for thread: 0x0000000002d6e000 +R15=0x0000000002d6e000 is a thread + + +Stack: [0x0000000002e70000,0x0000000002f70000], sp=0x0000000002f61448, free space=965k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +C 0xffffffffa4075120 + + +--------------- P R O C E S S --------------- + +Java Threads: ( => current thread ) + 0x0000000016fda800 JavaThread "Service Thread" daemon [_thread_blocked, id=11116, stack(0x00000000173b0000,0x00000000174b0000)] + 0x0000000015747000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=8564, stack(0x0000000016eb0000,0x0000000016fb0000)] + 0x0000000015742000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3032, stack(0x0000000016db0000,0x0000000016eb0000)] + 0x000000001573f000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8920, stack(0x0000000016cb0000,0x0000000016db0000)] + 0x000000001573d800 JavaThread "Attach Listener" daemon [_thread_blocked, id=8064, stack(0x0000000016bb0000,0x0000000016cb0000)] + 0x000000001573c800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6656, stack(0x0000000016ab0000,0x0000000016bb0000)] + 0x000000000306a800 JavaThread "Finalizer" daemon [_thread_blocked, id=4444, stack(0x00000000169b0000,0x0000000016ab0000)] + 0x0000000003060000 JavaThread "Reference Handler" daemon [_thread_blocked, id=7628, stack(0x00000000168b0000,0x00000000169b0000)] +=>0x0000000002d6e000 JavaThread "main" [_thread_in_Java, id=8096, stack(0x0000000002e70000,0x0000000002f70000)] + +Other Threads: + 0x0000000015707800 VMThread [stack: 0x00000000167b0000,0x00000000168b0000] [id=2412] + 0x0000000016ffe000 WatcherThread [stack: 0x00000000174b0000,0x00000000175b0000] [id=7264] + +VM state:not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap: + PSYoungGen total 35328K, used 13265K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 32768K, 32% used [0x00000000eab00000,0x00000000eb57c608,0x00000000ecb00000) + from space 2560K, 98% used [0x00000000ecd80000,0x00000000ecff8020,0x00000000ed000000) + to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) + ParOldGen total 44032K, used 4383K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 9% used [0x00000000c0000000,0x00000000c0447fe0,0x00000000c2b00000) + Metaspace used 13048K, capacity 13145K, committed 13312K, reserved 1060864K + class space used 2426K, capacity 2458K, committed 2560K, reserved 1048576K + +Card table byte_map: [0x0000000012430000,0x0000000012640000] byte_map_base: 0x0000000011e30000 + +Marking Bits: (ParMarkBitMap*) 0x000000005c122f70 + Begin Bits: [0x0000000012ba0000, 0x0000000013ba0000) + End Bits: [0x0000000013ba0000, 0x0000000014ba0000) + +Polling page: 0x00000000014b0000 + +CodeCache: size=245760Kb used=3599Kb max_used=3610Kb free=242160Kb + bounds [0x0000000003070000, 0x0000000003400000, 0x0000000012070000] + total_blobs=1257 nmethods=924 adapters=247 + compilation: enabled + +Compilation events (10 events): +Event: 1.810 Thread 0x0000000015747000 nmethod 920 0x00000000033f4c90 code [0x00000000033f4e20, 0x00000000033f5218] +Event: 1.810 Thread 0x0000000015747000 918 3 sun.security.util.DerValue::isPrintableStringChar (184 bytes) +Event: 1.810 Thread 0x0000000015747000 nmethod 918 0x00000000033f5390 code [0x00000000033f5500, 0x00000000033f57f0] +Event: 1.810 Thread 0x0000000015747000 919 3 java.lang.Character::isWhitespace (5 bytes) +Event: 1.810 Thread 0x0000000015747000 nmethod 919 0x00000000033f5c10 code [0x00000000033f5d80, 0x00000000033f6018] +Event: 1.810 Thread 0x0000000015747000 923 1 sun.security.provider.SHA2::lf_ch (10 bytes) +Event: 1.810 Thread 0x0000000015747000 nmethod 923 0x00000000033f6150 code [0x00000000033f62a0, 0x00000000033f6390] +Event: 1.810 Thread 0x0000000015747000 924 1 sun.security.provider.SHA2::lf_maj (12 bytes) +Event: 1.810 Thread 0x0000000015747000 nmethod 924 0x00000000033f63d0 code [0x00000000033f6520, 0x00000000033f6610] +Event: 1.810 Thread 0x0000000015747000 921 3 java.lang.Integer::reverseBytes (26 bytes) + +GC Heap History (4 events): +Event: 0.953 GC heap before +{Heap before GC invocations=1 (full 0): + PSYoungGen total 18944K, used 16384K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000) + eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) + from space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000) + to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) + ParOldGen total 44032K, used 0K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c2b00000) + Metaspace used 8121K, capacity 9007K, committed 9344K, reserved 1056768K + class space used 1516K, capacity 1552K, committed 1664K, reserved 1048576K +Event: 0.968 GC heap after +Heap after GC invocations=1 (full 0): + PSYoungGen total 18944K, used 2549K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) + from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7d670,0x00000000ebd80000) + to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) + ParOldGen total 44032K, used 2533K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 5% used [0x00000000c0000000,0x00000000c0279628,0x00000000c2b00000) + Metaspace used 8121K, capacity 9007K, committed 9344K, reserved 1056768K + class space used 1516K, capacity 1552K, committed 1664K, reserved 1048576K +} +Event: 1.505 GC heap before +{Heap before GC invocations=2 (full 0): + PSYoungGen total 18944K, used 18933K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) + from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7d670,0x00000000ebd80000) + to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) + ParOldGen total 44032K, used 2533K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 5% used [0x00000000c0000000,0x00000000c0279628,0x00000000c2b00000) + Metaspace used 10246K, capacity 10767K, committed 10880K, reserved 1058816K + class space used 2070K, capacity 2096K, committed 2176K, reserved 1048576K +Event: 1.519 GC heap after +Heap after GC invocations=2 (full 0): + PSYoungGen total 35328K, used 2528K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) + eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) + from space 2560K, 98% used [0x00000000ecd80000,0x00000000ecff8020,0x00000000ed000000) + to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) + ParOldGen total 44032K, used 4383K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) + object space 44032K, 9% used [0x00000000c0000000,0x00000000c0447fe0,0x00000000c2b00000) + Metaspace used 10246K, capacity 10767K, committed 10880K, reserved 1058816K + class space used 2070K, capacity 2096K, committed 2176K, reserved 1048576K +} + +Deoptimization events (10 events): +Event: 1.763 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 +Event: 1.766 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 +Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 +Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 +Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 +Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 +Event: 1.769 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 +Event: 1.772 Thread 0x0000000002d6e000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000033b2ecc method=sun.misc.MetaIndex.mayContain(Ljava/lang/String;)Z @ 38 +Event: 1.774 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000331236c method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 +Event: 1.775 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 + +Internal exceptions (10 events): +Event: 0.038 Thread 0x0000000002d6e000 Exception (0x00000000eab07cc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\srèr±~؈£? +Event: 0.038 Thread 0x0000000002d6e000 Exception (0x00000000eab07fa8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jg?²¿?*Ó? +Event: 0.299 Thread 0x0000000002d6e000 Exception (0x00000000eaf18300) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 0.299 Thread 0x0000000002d6e000 Exception (0x00000000eaf18510) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 0.300 Thread 0x0000000002d6e000 Exception (0x00000000eaf1c358) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 0.300 Thread 0x0000000002d6e000 Exception (0x00000000eaf1c568) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] +Event: 1.238 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032e323a to 0x00000000032e3352 +Event: 1.272 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032713bb to 0x00000000032716ed +Event: 1.289 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032d1b4f to 0x00000000032d1c81 +Event: 1.745 Thread 0x0000000002d6e000 Exception (0x00000000eb49d788) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199] + +Events (10 events): +Event: 1.806 loading class java/math/MutableBigInteger +Event: 1.807 loading class java/math/MutableBigInteger done +Event: 1.808 loading class javax/crypto/BadPaddingException +Event: 1.809 loading class java/security/GeneralSecurityException +Event: 1.809 loading class java/security/GeneralSecurityException done +Event: 1.809 loading class javax/crypto/BadPaddingException done +Event: 1.809 loading class sun/security/provider/certpath/X509CertPath +Event: 1.809 loading class java/security/cert/CertPath +Event: 1.810 loading class java/security/cert/CertPath done +Event: 1.810 loading class sun/security/provider/certpath/X509CertPath done + + +Dynamic libraries: +0x00007ff790520000 - 0x00007ff790557000 C:\PROGRA~1\Java\JDK18~1.0_9\bin\java.exe +0x00007ffc89530000 - 0x00007ffc8970b000 C:\WINDOWS\SYSTEM32\ntdll.dll +0x00007ffc88b40000 - 0x00007ffc88bee000 C:\WINDOWS\System32\KERNEL32.DLL +0x00007ffc85a50000 - 0x00007ffc85c99000 C:\WINDOWS\System32\KERNELBASE.dll +0x00007ffc86fd0000 - 0x00007ffc87071000 C:\WINDOWS\System32\ADVAPI32.dll +0x00007ffc86da0000 - 0x00007ffc86e3d000 C:\WINDOWS\System32\msvcrt.dll +0x00007ffc872d0000 - 0x00007ffc87329000 C:\WINDOWS\System32\sechost.dll +0x00007ffc86e40000 - 0x00007ffc86f65000 C:\WINDOWS\System32\RPCRT4.dll +0x00007ffc86c50000 - 0x00007ffc86d9a000 C:\WINDOWS\System32\USER32.dll +0x00007ffc85ca0000 - 0x00007ffc85cbe000 C:\WINDOWS\System32\win32u.dll +0x00007ffc89330000 - 0x00007ffc89357000 C:\WINDOWS\System32\GDI32.dll +0x00007ffc86850000 - 0x00007ffc869d8000 C:\WINDOWS\System32\gdi32full.dll +0x00007ffc867b0000 - 0x00007ffc8684a000 C:\WINDOWS\System32\msvcp_win.dll +0x00007ffc866b0000 - 0x00007ffc867a6000 C:\WINDOWS\System32\ucrtbase.dll +0x00007ffc7a610000 - 0x00007ffc7a877000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll +0x00007ffc89030000 - 0x00007ffc89329000 C:\WINDOWS\System32\combase.dll +0x00007ffc863c0000 - 0x00007ffc8642a000 C:\WINDOWS\System32\bcryptPrimitives.dll +0x00007ffc86fa0000 - 0x00007ffc86fcd000 C:\WINDOWS\System32\IMM32.DLL +0x000000005c1b0000 - 0x000000005c282000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\msvcr100.dll +0x000000005b910000 - 0x000000005c1a3000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\server\jvm.dll +0x00007ffc87680000 - 0x00007ffc87688000 C:\WINDOWS\System32\PSAPI.DLL +0x00007ffc829b0000 - 0x00007ffc829b9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll +0x00007ffc87690000 - 0x00007ffc876fc000 C:\WINDOWS\System32\WS2_32.dll +0x00007ffc81350000 - 0x00007ffc8135a000 C:\WINDOWS\SYSTEM32\VERSION.dll +0x00007ffc83ba0000 - 0x00007ffc83bc3000 C:\WINDOWS\SYSTEM32\WINMM.dll +0x00007ffc838e0000 - 0x00007ffc8390b000 C:\WINDOWS\SYSTEM32\winmmbase.dll +0x00007ffc86660000 - 0x00007ffc866a9000 C:\WINDOWS\System32\cfgmgr32.dll +0x000000005c4b0000 - 0x000000005c4bf000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\verify.dll +0x000000005c480000 - 0x000000005c4a9000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\java.dll +0x000000005c460000 - 0x000000005c476000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\zip.dll +0x00007ffc87700000 - 0x00007ffc88b37000 C:\WINDOWS\System32\SHELL32.dll +0x00007ffc870e0000 - 0x00007ffc8718a000 C:\WINDOWS\System32\shcore.dll +0x00007ffc85cc0000 - 0x00007ffc863b2000 C:\WINDOWS\System32\windows.storage.dll +0x00007ffc87330000 - 0x00007ffc87381000 C:\WINDOWS\System32\shlwapi.dll +0x00007ffc85a10000 - 0x00007ffc85a21000 C:\WINDOWS\System32\kernel.appcore.dll +0x00007ffc859a0000 - 0x00007ffc859ec000 C:\WINDOWS\System32\powrprof.dll +0x00007ffc85a30000 - 0x00007ffc85a45000 C:\WINDOWS\System32\profapi.dll +0x00007ffc77180000 - 0x00007ffc77329000 C:\WINDOWS\SYSTEM32\dbghelp.dll + +VM Arguments: +jvm_args: -Dclojure.compile.path=D:\clojure_programming\structured-data/target/classes -Dleiningen.original.pwd=D:\clojure_programming\structured-data +java_command: clojure.main -m leiningen.core.main midje +java_class_path (initial): C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar +Launcher Type: SUN_STANDARD + +Environment Variables: +CLASSPATH=C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar +PATH=C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\cmd;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\bin;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\share\git-tfs;C:\Users\jaakk_000\AppData\Local\Apps\2.0\O3EGYX0Y.WLJ\3WEK1L4A.AMV\gith..tion_317444273a93ac29_0003.0003_5794af8169eeff14;C:\Users\jaakk_000\AppData\Local\GitHub\lfs-amd64_1.5.5;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\PuTTy\;D:\Git\cmd;C:\Users\jaakk_000\AppData\Local\Microsoft\WindowsApps;;D:\.lein\bin;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ +USERNAME=jaakk_000 +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel + + + +--------------- S Y S T E M --------------- + +OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296) + +CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, tsc + +Memory: 4k page, physical 4193268k(1064284k free), swap 6630464k(1278484k free) + +vm_info: Java HotSpot(TM) 64-Bit Server VM (25.91-b14) for windows-amd64 JRE (1.8.0_91-b14), built on Apr 1 2016 00:58:32 by "java_re" with MS VC++ 10.0 (VS2010) + +time: Mon Aug 07 19:34:31 2017 +elapsed time: 1 seconds (0d 0h 0m 1s) + diff --git a/src/structured_data.clj b/src/structured_data.clj index c490fed2..ca84fbef 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -66,16 +66,24 @@ (defn title-length [book] - :-) + (count (get book :title)) + ) (defn author-count [book] - :-) + (count (get book :authors)) + ) (defn multiple-authors? [book] - :-) + (if (< 1 (count (get book :authors))) true false) + ) -(defn add-author [book new-author] - :-) +;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +;(defn add-author [book new-author] +; (let [auts (get book :authors)] +; (conj auts new-author) +; (assoc book :authors auts) +; )) +;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! (defn alive? [author] :-) From 782d1ba495f4e5004a1d0e64a91b472a44ecb184 Mon Sep 17 00:00:00 2001 From: jheiska Date: Mon, 7 Aug 2017 20:01:30 +0300 Subject: [PATCH 4/8] errorlogit pois --- hs_err_pid10320.log | 369 -------------------------------------------- hs_err_pid11076.log | 281 --------------------------------- 2 files changed, 650 deletions(-) delete mode 100644 hs_err_pid10320.log delete mode 100644 hs_err_pid11076.log diff --git a/hs_err_pid10320.log b/hs_err_pid10320.log deleted file mode 100644 index 9d6f66a6..00000000 --- a/hs_err_pid10320.log +++ /dev/null @@ -1,369 +0,0 @@ -# -# A fatal error has been detected by the Java Runtime Environment: -# -# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa43b5120, pid=10320, tid=10380 -# -# JRE version: Java(TM) SE Runtime Environment (8.0_91-b14) (build 1.8.0_91-b14) -# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.91-b14 mixed mode windows-amd64 compressed oops) -# Problematic frame: -# C 0xffffffffa43b5120 -# -# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows -# -# If you would like to submit a bug report, please visit: -# http://bugreport.java.com/bugreport/crash.jsp -# - ---------------- T H R E A D --------------- - -Current thread (0x00000000032b3800): JavaThread "main" [_thread_in_Java, id=10380, stack(0x00000000031b0000,0x00000000032b0000)] - -siginfo: ExceptionCode=0xc0000005, ExceptionInformation=0x0000000000000008 0xffffffffa43b5120 - -Registers: -RAX=0x00000000ef068e08, RBX=0x00000000154f3ca0, RCX=0x00000000002f8d39, RDX=0x00000000ef0591f0 -RSP=0x00000000032a50e8, RBP=0x00000000ef0591f0, RSI=0x000000001560e788, RDI=0x0000000000000001 -R8 =0x00000000ec6b97d0, R9 =0x00000000ec6b9808, R10=0x00000000007635cc, R11=0x0000000012170000 -R12=0x0000000000000000, R13=0x00000000032a5148, R14=0x00000000032a51a0, R15=0x00000000032b3800 -RIP=0xffffffffa43b5120, EFLAGS=0x0000000000010286 - -Top of Stack: (sp=0x00000000032a50e8) -0x00000000032a50e8: 00000000036aef68 00000000ec6b97f0 -0x00000000032a50f8: 00000000ec6b97d0 0000000000000000 -0x00000000032a5108: 00000000000000b8 00000000032a5198 -0x00000000032a5118: 00000000033d1d6c 00000000032b3800 -0x00000000032a5128: 00000000000000b8 00000000032a5198 -0x00000000032a5138: 00000000033b7e20 00000000033b7e20 -0x00000000032a5148: 00000000ef068e08 0000000000000000 -0x00000000032a5158: 00000000032a5158 000000001bd62a81 -0x00000000032a5168: 00000000032a51a0 000000001bd62d40 -0x00000000032a5178: 0000000000000000 000000001bd62aa0 -0x00000000032a5188: 00000000032a5148 00000000032a51a8 -0x00000000032a5198: 00000000032a5280 00000000033b0622 -0x00000000032a51a8: 0000000000000000 0000000000000000 -0x00000000032a51b8: 0000000000000000 0000000000000000 -0x00000000032a51c8: 0000000000000000 0000000000000000 -0x00000000032a51d8: 0000000000000000 0000000000000000 - -Instructions: (pc=0xffffffffa43b5120) -0xffffffffa43b5100: -[error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005] - -Register to memory mapping: - -RAX=0x00000000ef068e08 is an oop -java.lang.String - - klass: 'java/lang/String' -RBX={method} {0x00000000154f3ca8} 'keyword' '(Ljava/lang/String;Ljava/lang/String;)Lclojure/lang/Keyword;' in 'clojure/lang/RT' -RCX=0x00000000002f8d39 is an unknown value -RDX=0x00000000ef0591f0 is an oop -java.util.concurrent.ConcurrentHashMap - - klass: 'java/util/concurrent/ConcurrentHashMap' -RSP=0x00000000032a50e8 is pointing into the stack for thread: 0x00000000032b3800 -RBP=0x00000000ef0591f0 is an oop -java.util.concurrent.ConcurrentHashMap - - klass: 'java/util/concurrent/ConcurrentHashMap' -RSI=0x000000001560e788 is pointing into metadata -RDI=0x0000000000000001 is an unknown value -R8 =0x00000000ec6b97d0 is an oop -clojure.lang.Symbol - - klass: 'clojure/lang/Symbol' -R9 =0x00000000ec6b9808 is an oop -java.lang.ref.WeakReference - - klass: 'java/lang/ref/WeakReference' -R10=0x00000000007635cc is an unknown value -R11=0x0000000012170000 is an unknown value -R12=0x0000000000000000 is an unknown value -R13=0x00000000032a5148 is pointing into the stack for thread: 0x00000000032b3800 -R14=0x00000000032a51a0 is pointing into the stack for thread: 0x00000000032b3800 -R15=0x00000000032b3800 is a thread - - -Stack: [0x00000000031b0000,0x00000000032b0000], sp=0x00000000032a50e8, free space=980k -Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) -C 0xffffffffa43b5120 - - ---------------- P R O C E S S --------------- - -Java Threads: ( => current thread ) - 0x00000000173e6000 JavaThread "Service Thread" daemon [_thread_blocked, id=1908, stack(0x00000000177c0000,0x00000000178c0000)] - 0x0000000015a89000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=3516, stack(0x00000000172c0000,0x00000000173c0000)] - 0x0000000015a85800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=9468, stack(0x00000000171c0000,0x00000000172c0000)] - 0x0000000015a83800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7156, stack(0x00000000170c0000,0x00000000171c0000)] - 0x0000000015a81800 JavaThread "Attach Listener" daemon [_thread_blocked, id=6864, stack(0x0000000016fc0000,0x00000000170c0000)] - 0x0000000015a80800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6888, stack(0x0000000016ec0000,0x0000000016fc0000)] - 0x0000000015a70000 JavaThread "Finalizer" daemon [_thread_blocked, id=7612, stack(0x0000000016cd0000,0x0000000016dd0000)] - 0x00000000033a2800 JavaThread "Reference Handler" daemon [_thread_blocked, id=500, stack(0x0000000016bd0000,0x0000000016cd0000)] -=>0x00000000032b3800 JavaThread "main" [_thread_in_Java, id=10380, stack(0x00000000031b0000,0x00000000032b0000)] - -Other Threads: - 0x0000000015a48000 VMThread [stack: 0x0000000016ad0000,0x0000000016bd0000] [id=7064] - 0x0000000017412800 WatcherThread [stack: 0x00000000178c0000,0x00000000179c0000] [id=1660] - -VM state:synchronizing (normal execution) - -VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) -[0x00000000032b0ed0] Safepoint_lock - owner thread: 0x0000000015a48000 -[0x00000000032b0f50] Threads_lock - owner thread: 0x0000000015a48000 - -Heap: - PSYoungGen total 70656K, used 32091K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) - eden space 65536K, 43% used [0x00000000eab00000,0x00000000ec722d10,0x00000000eeb00000) - from space 5120K, 64% used [0x00000000ef000000,0x00000000ef334030,0x00000000ef500000) - to space 5120K, 0% used [0x00000000eeb00000,0x00000000eeb00000,0x00000000ef000000) - ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) - Metaspace used 18365K, capacity 19521K, committed 19712K, reserved 1064960K - class space used 3403K, capacity 3782K, committed 3840K, reserved 1048576K - -Card table byte_map: [0x0000000012770000,0x0000000012980000] byte_map_base: 0x0000000012170000 - -Marking Bits: (ParMarkBitMap*) 0x000000005c122f70 - Begin Bits: [0x0000000012ee0000, 0x0000000013ee0000) - End Bits: [0x0000000013ee0000, 0x0000000014ee0000) - -Polling page: 0x0000000001750000 - -CodeCache: size=245760Kb used=8363Kb max_used=8381Kb free=237397Kb - bounds [0x00000000033b0000, 0x0000000003bf0000, 0x00000000123b0000] - total_blobs=2480 nmethods=2120 adapters=274 - compilation: enabled - -Compilation events (10 events): -Event: 7.617 Thread 0x0000000015a89000 nmethod 2120 0x0000000003ba58d0 code [0x0000000003ba5a60, 0x0000000003ba5e48] -Event: 7.620 Thread 0x0000000015a89000 2121 3 clojure.lang.RT::getFrom (100 bytes) -Event: 7.621 Thread 0x0000000015a89000 nmethod 2121 0x0000000003bda4d0 code [0x0000000003bda780, 0x0000000003bdbe78] -Event: 7.621 Thread 0x0000000015a89000 2122 3 clojure.lang.KeywordLookupSite::fault (31 bytes) -Event: 7.622 Thread 0x0000000015a89000 nmethod 2122 0x0000000003bd3f50 code [0x0000000003bd4120, 0x0000000003bd4c48] -Event: 7.622 Thread 0x0000000015a89000 2123 3 clojure.core$conj_BANG_::invoke (15 bytes) -Event: 7.622 Thread 0x0000000015a89000 nmethod 2123 0x0000000003bd39d0 code [0x0000000003bd3b40, 0x0000000003bd3e68] -Event: 7.624 Thread 0x0000000015a85800 nmethod 2118 0x0000000003bde650 code [0x0000000003bde820, 0x0000000003bdf3a0] -Event: 7.624 Thread 0x0000000015a85800 2124 4 clojure.lang.APersistentMap:: (15 bytes) -Event: 7.625 Thread 0x0000000015a85800 nmethod 2124 0x0000000003af18d0 code [0x0000000003af1a00, 0x0000000003af1a78] - -GC Heap History (10 events): -Event: 3.185 GC heap before -{Heap before GC invocations=2 (full 0): - PSYoungGen total 18944K, used 18943K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000) - eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) - from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7ffe0,0x00000000ebd80000) - to space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000) - ParOldGen total 44032K, used 569K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 1% used [0x00000000c0000000,0x00000000c008e7b8,0x00000000c2b00000) - Metaspace used 8176K, capacity 9019K, committed 9216K, reserved 1056768K - class space used 1484K, capacity 1520K, committed 1536K, reserved 1048576K -Event: 3.200 GC heap after -Heap after GC invocations=2 (full 0): - PSYoungGen total 18944K, used 2544K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) - from space 2560K, 99% used [0x00000000ebd80000,0x00000000ebffc030,0x00000000ec000000) - to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) - ParOldGen total 44032K, used 1799K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 4% used [0x00000000c0000000,0x00000000c01c1f38,0x00000000c2b00000) - Metaspace used 8176K, capacity 9019K, committed 9216K, reserved 1056768K - class space used 1484K, capacity 1520K, committed 1536K, reserved 1048576K -} -Event: 4.275 GC heap before -{Heap before GC invocations=3 (full 0): - PSYoungGen total 18944K, used 18928K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) - from space 2560K, 99% used [0x00000000ebd80000,0x00000000ebffc030,0x00000000ec000000) - to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) - ParOldGen total 44032K, used 1799K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 4% used [0x00000000c0000000,0x00000000c01c1f38,0x00000000c2b00000) - Metaspace used 10455K, capacity 10669K, committed 10752K, reserved 1058816K - class space used 1971K, capacity 2006K, committed 2048K, reserved 1048576K -Event: 4.289 GC heap after -Heap after GC invocations=3 (full 0): - PSYoungGen total 18944K, used 2528K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) - from space 2560K, 98% used [0x00000000ebb00000,0x00000000ebd78020,0x00000000ebd80000) - to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) - ParOldGen total 44032K, used 3312K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 7% used [0x00000000c0000000,0x00000000c033c1d0,0x00000000c2b00000) - Metaspace used 10455K, capacity 10669K, committed 10752K, reserved 1058816K - class space used 1971K, capacity 2006K, committed 2048K, reserved 1048576K -} -Event: 4.742 GC heap before -{Heap before GC invocations=4 (full 0): - PSYoungGen total 18944K, used 18912K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) - from space 2560K, 98% used [0x00000000ebb00000,0x00000000ebd78020,0x00000000ebd80000) - to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) - ParOldGen total 44032K, used 3312K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 7% used [0x00000000c0000000,0x00000000c033c1d0,0x00000000c2b00000) - Metaspace used 11361K, capacity 11801K, committed 12032K, reserved 1058816K - class space used 2154K, capacity 2258K, committed 2304K, reserved 1048576K -Event: 4.753 GC heap after -Heap after GC invocations=4 (full 0): - PSYoungGen total 35328K, used 2539K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) - from space 2560K, 99% used [0x00000000ecd80000,0x00000000ecffad88,0x00000000ed000000) - to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) - ParOldGen total 44032K, used 4486K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 10% used [0x00000000c0000000,0x00000000c04618d0,0x00000000c2b00000) - Metaspace used 11361K, capacity 11801K, committed 12032K, reserved 1058816K - class space used 2154K, capacity 2258K, committed 2304K, reserved 1048576K -} -Event: 5.728 GC heap before -{Heap before GC invocations=5 (full 0): - PSYoungGen total 35328K, used 35307K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 32768K, 100% used [0x00000000eab00000,0x00000000ecb00000,0x00000000ecb00000) - from space 2560K, 99% used [0x00000000ecd80000,0x00000000ecffad88,0x00000000ed000000) - to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) - ParOldGen total 44032K, used 4486K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 10% used [0x00000000c0000000,0x00000000c04618d0,0x00000000c2b00000) - Metaspace used 15674K, capacity 16299K, committed 16512K, reserved 1062912K - class space used 2721K, capacity 2936K, committed 2944K, reserved 1048576K -Event: 5.745 GC heap after -Heap after GC invocations=5 (full 0): - PSYoungGen total 35328K, used 2544K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) - eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) - from space 2560K, 99% used [0x00000000ecb00000,0x00000000ecd7c010,0x00000000ecd80000) - to space 5120K, 0% used [0x00000000ef000000,0x00000000ef000000,0x00000000ef500000) - ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) - Metaspace used 15674K, capacity 16299K, committed 16512K, reserved 1062912K - class space used 2721K, capacity 2936K, committed 2944K, reserved 1048576K -} -Event: 6.618 GC heap before -{Heap before GC invocations=6 (full 0): - PSYoungGen total 35328K, used 35312K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) - eden space 32768K, 100% used [0x00000000eab00000,0x00000000ecb00000,0x00000000ecb00000) - from space 2560K, 99% used [0x00000000ecb00000,0x00000000ecd7c010,0x00000000ecd80000) - to space 5120K, 0% used [0x00000000ef000000,0x00000000ef000000,0x00000000ef500000) - ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) - Metaspace used 16552K, capacity 17509K, committed 17664K, reserved 1062912K - class space used 2963K, capacity 3290K, committed 3328K, reserved 1048576K -Event: 6.647 GC heap after -Heap after GC invocations=6 (full 0): - PSYoungGen total 70656K, used 3280K [0x00000000eab00000, 0x00000000ef500000, 0x0000000100000000) - eden space 65536K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eeb00000) - from space 5120K, 64% used [0x00000000ef000000,0x00000000ef334030,0x00000000ef500000) - to space 5120K, 0% used [0x00000000eeb00000,0x00000000eeb00000,0x00000000ef000000) - ParOldGen total 44032K, used 6857K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 15% used [0x00000000c0000000,0x00000000c06b2460,0x00000000c2b00000) - Metaspace used 16552K, capacity 17509K, committed 17664K, reserved 1062912K - class space used 2963K, capacity 3290K, committed 3328K, reserved 1048576K -} - -Deoptimization events (10 events): -Event: 6.865 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000037e2104 method=clojure.lang.PersistentHashMap$BitmapIndexedNode.assoc(IILjava/lang/Object;Ljava/lang/Object;Lclojure/lang/Box;)Lclojure/lang/PersistentHashMap$INode; @ 79 -Event: 6.891 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003afea48 method=clojure.lang.Compiler.closeOver(Lclojure/lang/Compiler$LocalBinding;Lclojure/lang/Compiler$ObjMethod;)V @ 58 -Event: 7.066 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000037fa7fc method=clojure.lang.PersistentHashMap$BitmapIndexedNode.find(IILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 59 -Event: 7.104 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000039b494c method=clojure.lang.PersistentHashMap.containsKey(Ljava/lang/Object;)Z @ 1 -Event: 7.129 Thread 0x00000000032b3800 Uncommon trap: reason=null_check action=make_not_entrant pc=0x00000000039be06c method=clojure.lang.RT.meta(Ljava/lang/Object;)Lclojure/lang/IPersistentMap; @ 1 -Event: 7.136 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000036283dc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8 -Event: 7.136 Thread 0x00000000032b3800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000036283dc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8 -Event: 7.578 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000038fcdbc method=clojure.lang.Util.equivPred(Ljava/lang/Object;)Lclojure/lang/Util$EquivPred; @ 41 -Event: 7.582 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000039848f4 method=clojure.lang.RT.getFrom(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 1 -Event: 7.590 Thread 0x00000000032b3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000036e796c method=clojure.lang.PersistentHashMap.valAt(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; @ 1 - -Internal exceptions (10 events): -Event: 2.087 Thread 0x00000000032b3800 Exception (0x00000000eb09c890) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 2.087 Thread 0x00000000032b3800 Exception (0x00000000eb09caa0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 3.487 Thread 0x00000000032b3800 Implicit null exception at 0x000000000364e082 to 0x000000000364e23e -Event: 4.408 Thread 0x00000000032b3800 Implicit null exception at 0x000000000368cd8c to 0x000000000368ce65 -Event: 5.020 Thread 0x00000000032b3800 Exception (0x00000000eb307e78) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146] -Event: 5.023 Thread 0x00000000032b3800 Exception (0x00000000eb316468) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146] -Event: 5.239 Thread 0x00000000032b3800 Exception (0x00000000eb4abc60) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199] -Event: 7.104 Thread 0x00000000032b3800 Implicit null exception at 0x00000000039b41ef to 0x00000000039b4939 -Event: 7.128 Thread 0x00000000032b3800 Implicit null exception at 0x00000000039bdfac to 0x00000000039be062 -Event: 7.590 Thread 0x00000000032b3800 Implicit null exception at 0x00000000036e70f4 to 0x00000000036e7959 - -Events (10 events): -Event: 7.616 loading class clojure/pprint$map_ref_type -Event: 7.616 loading class clojure/pprint$map_ref_type done -Event: 7.617 loading class clojure/pprint$pprint_ideref -Event: 7.617 loading class clojure/pprint$pprint_ideref done -Event: 7.618 loading class clojure/pprint$fn__8220 -Event: 7.618 loading class clojure/pprint$fn__8220 done -Event: 7.621 loading class clojure/pprint$fn__8220$fn__8221 -Event: 7.621 loading class clojure/pprint$fn__8220$fn__8221 done -Event: 7.623 loading class clojure/pprint$pprint_simple_default -Event: 7.623 loading class clojure/pprint$pprint_simple_default done - - -Dynamic libraries: -0x00007ff790520000 - 0x00007ff790557000 C:\PROGRA~1\Java\JDK18~1.0_9\bin\java.exe -0x00007ffc89530000 - 0x00007ffc8970b000 C:\WINDOWS\SYSTEM32\ntdll.dll -0x00007ffc88b40000 - 0x00007ffc88bee000 C:\WINDOWS\System32\KERNEL32.DLL -0x00007ffc85a50000 - 0x00007ffc85c99000 C:\WINDOWS\System32\KERNELBASE.dll -0x00007ffc86fd0000 - 0x00007ffc87071000 C:\WINDOWS\System32\ADVAPI32.dll -0x00007ffc86da0000 - 0x00007ffc86e3d000 C:\WINDOWS\System32\msvcrt.dll -0x00007ffc872d0000 - 0x00007ffc87329000 C:\WINDOWS\System32\sechost.dll -0x00007ffc86e40000 - 0x00007ffc86f65000 C:\WINDOWS\System32\RPCRT4.dll -0x00007ffc86c50000 - 0x00007ffc86d9a000 C:\WINDOWS\System32\USER32.dll -0x00007ffc85ca0000 - 0x00007ffc85cbe000 C:\WINDOWS\System32\win32u.dll -0x00007ffc89330000 - 0x00007ffc89357000 C:\WINDOWS\System32\GDI32.dll -0x00007ffc86850000 - 0x00007ffc869d8000 C:\WINDOWS\System32\gdi32full.dll -0x00007ffc867b0000 - 0x00007ffc8684a000 C:\WINDOWS\System32\msvcp_win.dll -0x00007ffc866b0000 - 0x00007ffc867a6000 C:\WINDOWS\System32\ucrtbase.dll -0x00007ffc7a610000 - 0x00007ffc7a877000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll -0x00007ffc89030000 - 0x00007ffc89329000 C:\WINDOWS\System32\combase.dll -0x00007ffc863c0000 - 0x00007ffc8642a000 C:\WINDOWS\System32\bcryptPrimitives.dll -0x00007ffc86fa0000 - 0x00007ffc86fcd000 C:\WINDOWS\System32\IMM32.DLL -0x000000005c1b0000 - 0x000000005c282000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\msvcr100.dll -0x000000005b910000 - 0x000000005c1a3000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\server\jvm.dll -0x00007ffc87680000 - 0x00007ffc87688000 C:\WINDOWS\System32\PSAPI.DLL -0x00007ffc83ba0000 - 0x00007ffc83bc3000 C:\WINDOWS\SYSTEM32\WINMM.dll -0x00007ffc829b0000 - 0x00007ffc829b9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll -0x00007ffc87690000 - 0x00007ffc876fc000 C:\WINDOWS\System32\WS2_32.dll -0x00007ffc838e0000 - 0x00007ffc8390b000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll -0x00007ffc81350000 - 0x00007ffc8135a000 C:\WINDOWS\SYSTEM32\VERSION.dll -0x00007ffc86660000 - 0x00007ffc866a9000 C:\WINDOWS\System32\cfgmgr32.dll -0x000000005c4b0000 - 0x000000005c4bf000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\verify.dll -0x000000005c480000 - 0x000000005c4a9000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\java.dll -0x000000005c460000 - 0x000000005c476000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\zip.dll -0x00007ffc87700000 - 0x00007ffc88b37000 C:\WINDOWS\System32\SHELL32.dll -0x00007ffc870e0000 - 0x00007ffc8718a000 C:\WINDOWS\System32\shcore.dll -0x00007ffc85cc0000 - 0x00007ffc863b2000 C:\WINDOWS\System32\windows.storage.dll -0x00007ffc87330000 - 0x00007ffc87381000 C:\WINDOWS\System32\shlwapi.dll -0x00007ffc85a10000 - 0x00007ffc85a21000 C:\WINDOWS\System32\kernel.appcore.dll -0x00007ffc859a0000 - 0x00007ffc859ec000 C:\WINDOWS\System32\powrprof.dll -0x00007ffc85a30000 - 0x00007ffc85a45000 C:\WINDOWS\System32\profapi.dll -0x000000005aee0000 - 0x000000005af04000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\sunec.dll -0x00007ffc85460000 - 0x00007ffc85477000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll -0x00007ffc84ed0000 - 0x00007ffc84f04000 C:\WINDOWS\system32\rsaenh.dll -0x00007ffc85560000 - 0x00007ffc85585000 C:\WINDOWS\SYSTEM32\bcrypt.dll -0x00007ffc858d0000 - 0x00007ffc858f9000 C:\WINDOWS\SYSTEM32\USERENV.dll -0x00007ffc85450000 - 0x00007ffc8545b000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll -0x000000005c440000 - 0x000000005c45a000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\net.dll -0x00007ffc852b0000 - 0x00007ffc8530c000 C:\WINDOWS\system32\mswsock.dll -0x00007ffc85050000 - 0x00007ffc85087000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL -0x00007ffc86a90000 - 0x00007ffc86a98000 C:\WINDOWS\System32\NSI.dll -0x00007ffc7f5c0000 - 0x00007ffc7f5d6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL -0x00007ffc7f5a0000 - 0x00007ffc7f5ba000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL -0x000000005af10000 - 0x000000005af21000 C:\Program Files\Java\jdk1.8.0_91\jre\bin\nio.dll -0x00007ffc77180000 - 0x00007ffc77329000 C:\WINDOWS\SYSTEM32\dbghelp.dll - -VM Arguments: -jvm_args: -Dfile.encoding=Cp1252 -XX:-OmitStackTraceInFastThrow -Dclojure.compile.path=D:\clojure_programming\structured-data\target\classes -Dstructured-data.version=1.0.0-SNAPSHOT -Dclojure.debug=false -java_command: clojure.main -i C:\Users\jaakk_000\AppData\Local\Temp\form-init6357922200585105047.clj -java_class_path (initial): D:\clojure_programming\structured-data\test;D:\clojure_programming\structured-data\src;D:\clojure_programming\structured-data\dev-resources;D:\clojure_programming\structured-data\resources;D:\clojure_programming\structured-data\target\classes;C:\Users\jaakk_000\.m2\repository\org\apache\httpcomponents\httpcore\4.1.2\httpcore-4.1.2.jar;C:\Users\jaakk_000\.m2\repository\org\apache\httpcomponents\httpclient\4.1.2\httpclient-4.1.2.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\tools.namespace\0.2.2\tools.namespace-0.2.2.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\aether\aether-spi\1.13.1\aether-spi-1.13.1.jar;C:\Users\jaakk_000\.m2\repository\swiss-arrows\swiss-arrows\0.1.0\swiss-arrows-0.1.0.jar;C:\Users\jaakk_000\.m2\repository\org\apache\maven\wagon\wagon-http\2.2\wagon-http-2.2.jar;C:\Users\jaakk_000\.m2\repository\ordered\ordered\1.2.0\ordered-1.2.0.jar;C:\Users\jaakk_000\.m2\repository\colorize\colorize\0.1.1\colorize-0.1.1.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\sisu\sisu-inject-bean\2.2.3\sisu-inject-bean-2.2.3.jar;C:\Users\jaakk_000\.m2\repository\org\codehaus\plexus\plexus-utils\2.0.7\plexus-utils-2.0.7.jar;C:\Users\jaakk_000\.m2\repository\org\sonatype\aether\aether-api\1.13.1\aether-api-1.13.1.jar;C:\Users\jaakk_000\.m2\repository\useful\useful\0.8.3-alpha8\useful-0.8.3-alpha8.jar;C:\Users\jaakk_000\.m2\repository\leiningen-core\leiningen-core\2.0.0-preview10\leiningen-core-2.0.0-preview10.jar;C:\Users\jaakk_000\.m2\repository\bultitude\bultitude\0.1.7\bultitude-0.1.7.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\math.combinatorics\0.0.1\math.combinatorics-0.0.1.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\core.unify\0.5.2\core.unify-0.5.2.jar;C:\Users\jaakk_000\.m2\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar;C:\Users\jaakk_000\.m2\repository\utilize\utilize\0.2.3\utilize-0.2.3.jar;C:\Users\jaakk_000\.m2\repository\org\clojure\tools.nrepl\0 -Launcher Type: SUN_STANDARD - -Environment Variables: -CLASSPATH=C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar -PATH=C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\cmd;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\bin;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\share\git-tfs;C:\Users\jaakk_000\AppData\Local\Apps\2.0\O3EGYX0Y.WLJ\3WEK1L4A.AMV\gith..tion_317444273a93ac29_0003.0003_5794af8169eeff14;C:\Users\jaakk_000\AppData\Local\GitHub\lfs-amd64_1.5.5;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\PuTTy\;D:\Git\cmd;C:\Users\jaakk_000\AppData\Local\Microsoft\WindowsApps;;D:\.lein\bin;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ -USERNAME=jaakk_000 -OS=Windows_NT -PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel - - - ---------------- S Y S T E M --------------- - -OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296) - -CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, tsc - -Memory: 4k page, physical 4193268k(886916k free), swap 6631696k(946120k free) - -vm_info: Java HotSpot(TM) 64-Bit Server VM (25.91-b14) for windows-amd64 JRE (1.8.0_91-b14), built on Apr 1 2016 00:58:32 by "java_re" with MS VC++ 10.0 (VS2010) - -time: Mon Aug 07 19:31:28 2017 -elapsed time: 7 seconds (0d 0h 0m 7s) - diff --git a/hs_err_pid11076.log b/hs_err_pid11076.log deleted file mode 100644 index b91a7b5a..00000000 --- a/hs_err_pid11076.log +++ /dev/null @@ -1,281 +0,0 @@ -# -# A fatal error has been detected by the Java Runtime Environment: -# -# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xffffffffa4075120, pid=11076, tid=8096 -# -# JRE version: Java(TM) SE Runtime Environment (8.0_91-b14) (build 1.8.0_91-b14) -# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.91-b14 mixed mode windows-amd64 compressed oops) -# Problematic frame: -# C 0xffffffffa4075120 -# -# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows -# -# If you would like to submit a bug report, please visit: -# http://bugreport.java.com/bugreport/crash.jsp -# - ---------------- T H R E A D --------------- - -Current thread (0x0000000002d6e000): JavaThread "main" [_thread_in_Java, id=8096, stack(0x0000000002e70000,0x0000000002f70000)] - -siginfo: ExceptionCode=0xc0000005, ExceptionInformation=0x0000000000000008 0xffffffffa4075120 - -Registers: -RAX=0x0000000018fce8c0, RBX=0x0000000018fce8c0, RCX=0x0000000018fd0890, RDX=0x000000001aa60cbb -RSP=0x0000000002f61448, RBP=0x0000000002f614b8, RSI=0x000000009832ec6a, RDI=0x0000000000038fc0 -R8 =0x00000000272b2710, R9 =0x00000000e8fd9968, R10=0x000000005c1049a0, R11=0x00000000033e7d20 -R12=0x0000000000000000, R13=0x0000000002f61458, R14=0x0000000002f61530, R15=0x0000000002d6e000 -RIP=0xffffffffa4075120, EFLAGS=0x0000000000010206 - -Top of Stack: (sp=0x0000000002f61448) -0x0000000002f61448: 0000000003077ae0 0000000003077ae0 -0x0000000002f61458: 00000000e8fd9968 00000000272b2710 -0x0000000002f61468: 000000001aa60cbb 000000003b43ba74 -0x0000000002f61478: 0000000002f61478 0000000018fcedd9 -0x0000000002f61488: 0000000002f61530 0000000018fd0890 -0x0000000002f61498: 0000000000000000 0000000018fcee90 -0x0000000002f614a8: 0000000002f61458 0000000002f61520 -0x0000000002f614b8: 0000000002f61578 000000000307809d -0x0000000002f614c8: 000000004944d559 0000000062f16887 -0x0000000002f614d8: 0000000000000013 000000005fa7ffe6 -0x0000000002f614e8: 000000008aa18eda 0000000022bf3c13 -0x0000000002f614f8: 00000000c24b36dd 00000000ab4d655d -0x0000000002f61508: 00000000e8fd9968 00000000272b2710 -0x0000000002f61518: 000000001aa60cbb 00000000000003c0 -0x0000000002f61528: 00000000eb501460 00000000eb5518c8 -0x0000000002f61538: 0000000002f61538 0000000018fcfed0 - -Instructions: (pc=0xffffffffa4075120) -0xffffffffa4075100: -[error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005] - -Register to memory mapping: - -RAX={method} {0x0000000018fce8c8} 'lf_maj' '(III)I' in 'sun/security/provider/SHA2' -RBX={method} {0x0000000018fce8c8} 'lf_maj' '(III)I' in 'sun/security/provider/SHA2' -RCX=0x0000000018fd0890 is pointing into metadata -RDX=0x000000001aa60cbb is an unknown value -RSP=0x0000000002f61448 is pointing into the stack for thread: 0x0000000002d6e000 -RBP=0x0000000002f614b8 is pointing into the stack for thread: 0x0000000002d6e000 -RSI=0x000000009832ec6a is an unknown value -RDI=0x0000000000038fc0 is an unknown value -R8 =0x00000000272b2710 is an unknown value -R9 =0x00000000e8fd9968 is an unallocated location in the heap -R10=0x000000005c1049a0 is an unknown value -R11=0x00000000033e7d20 is at entry_point+0 in (nmethod*)0x00000000033e7bd0 -R12=0x0000000000000000 is an unknown value -R13=0x0000000002f61458 is pointing into the stack for thread: 0x0000000002d6e000 -R14=0x0000000002f61530 is pointing into the stack for thread: 0x0000000002d6e000 -R15=0x0000000002d6e000 is a thread - - -Stack: [0x0000000002e70000,0x0000000002f70000], sp=0x0000000002f61448, free space=965k -Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) -C 0xffffffffa4075120 - - ---------------- P R O C E S S --------------- - -Java Threads: ( => current thread ) - 0x0000000016fda800 JavaThread "Service Thread" daemon [_thread_blocked, id=11116, stack(0x00000000173b0000,0x00000000174b0000)] - 0x0000000015747000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=8564, stack(0x0000000016eb0000,0x0000000016fb0000)] - 0x0000000015742000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3032, stack(0x0000000016db0000,0x0000000016eb0000)] - 0x000000001573f000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8920, stack(0x0000000016cb0000,0x0000000016db0000)] - 0x000000001573d800 JavaThread "Attach Listener" daemon [_thread_blocked, id=8064, stack(0x0000000016bb0000,0x0000000016cb0000)] - 0x000000001573c800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6656, stack(0x0000000016ab0000,0x0000000016bb0000)] - 0x000000000306a800 JavaThread "Finalizer" daemon [_thread_blocked, id=4444, stack(0x00000000169b0000,0x0000000016ab0000)] - 0x0000000003060000 JavaThread "Reference Handler" daemon [_thread_blocked, id=7628, stack(0x00000000168b0000,0x00000000169b0000)] -=>0x0000000002d6e000 JavaThread "main" [_thread_in_Java, id=8096, stack(0x0000000002e70000,0x0000000002f70000)] - -Other Threads: - 0x0000000015707800 VMThread [stack: 0x00000000167b0000,0x00000000168b0000] [id=2412] - 0x0000000016ffe000 WatcherThread [stack: 0x00000000174b0000,0x00000000175b0000] [id=7264] - -VM state:not at safepoint (normal execution) - -VM Mutex/Monitor currently owned by a thread: None - -Heap: - PSYoungGen total 35328K, used 13265K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 32768K, 32% used [0x00000000eab00000,0x00000000eb57c608,0x00000000ecb00000) - from space 2560K, 98% used [0x00000000ecd80000,0x00000000ecff8020,0x00000000ed000000) - to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) - ParOldGen total 44032K, used 4383K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 9% used [0x00000000c0000000,0x00000000c0447fe0,0x00000000c2b00000) - Metaspace used 13048K, capacity 13145K, committed 13312K, reserved 1060864K - class space used 2426K, capacity 2458K, committed 2560K, reserved 1048576K - -Card table byte_map: [0x0000000012430000,0x0000000012640000] byte_map_base: 0x0000000011e30000 - -Marking Bits: (ParMarkBitMap*) 0x000000005c122f70 - Begin Bits: [0x0000000012ba0000, 0x0000000013ba0000) - End Bits: [0x0000000013ba0000, 0x0000000014ba0000) - -Polling page: 0x00000000014b0000 - -CodeCache: size=245760Kb used=3599Kb max_used=3610Kb free=242160Kb - bounds [0x0000000003070000, 0x0000000003400000, 0x0000000012070000] - total_blobs=1257 nmethods=924 adapters=247 - compilation: enabled - -Compilation events (10 events): -Event: 1.810 Thread 0x0000000015747000 nmethod 920 0x00000000033f4c90 code [0x00000000033f4e20, 0x00000000033f5218] -Event: 1.810 Thread 0x0000000015747000 918 3 sun.security.util.DerValue::isPrintableStringChar (184 bytes) -Event: 1.810 Thread 0x0000000015747000 nmethod 918 0x00000000033f5390 code [0x00000000033f5500, 0x00000000033f57f0] -Event: 1.810 Thread 0x0000000015747000 919 3 java.lang.Character::isWhitespace (5 bytes) -Event: 1.810 Thread 0x0000000015747000 nmethod 919 0x00000000033f5c10 code [0x00000000033f5d80, 0x00000000033f6018] -Event: 1.810 Thread 0x0000000015747000 923 1 sun.security.provider.SHA2::lf_ch (10 bytes) -Event: 1.810 Thread 0x0000000015747000 nmethod 923 0x00000000033f6150 code [0x00000000033f62a0, 0x00000000033f6390] -Event: 1.810 Thread 0x0000000015747000 924 1 sun.security.provider.SHA2::lf_maj (12 bytes) -Event: 1.810 Thread 0x0000000015747000 nmethod 924 0x00000000033f63d0 code [0x00000000033f6520, 0x00000000033f6610] -Event: 1.810 Thread 0x0000000015747000 921 3 java.lang.Integer::reverseBytes (26 bytes) - -GC Heap History (4 events): -Event: 0.953 GC heap before -{Heap before GC invocations=1 (full 0): - PSYoungGen total 18944K, used 16384K [0x00000000eab00000, 0x00000000ec000000, 0x0000000100000000) - eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) - from space 2560K, 0% used [0x00000000ebd80000,0x00000000ebd80000,0x00000000ec000000) - to space 2560K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ebd80000) - ParOldGen total 44032K, used 0K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c2b00000) - Metaspace used 8121K, capacity 9007K, committed 9344K, reserved 1056768K - class space used 1516K, capacity 1552K, committed 1664K, reserved 1048576K -Event: 0.968 GC heap after -Heap after GC invocations=1 (full 0): - PSYoungGen total 18944K, used 2549K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebb00000) - from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7d670,0x00000000ebd80000) - to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) - ParOldGen total 44032K, used 2533K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 5% used [0x00000000c0000000,0x00000000c0279628,0x00000000c2b00000) - Metaspace used 8121K, capacity 9007K, committed 9344K, reserved 1056768K - class space used 1516K, capacity 1552K, committed 1664K, reserved 1048576K -} -Event: 1.505 GC heap before -{Heap before GC invocations=2 (full 0): - PSYoungGen total 18944K, used 18933K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 16384K, 100% used [0x00000000eab00000,0x00000000ebb00000,0x00000000ebb00000) - from space 2560K, 99% used [0x00000000ebb00000,0x00000000ebd7d670,0x00000000ebd80000) - to space 2560K, 0% used [0x00000000ecd80000,0x00000000ecd80000,0x00000000ed000000) - ParOldGen total 44032K, used 2533K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 5% used [0x00000000c0000000,0x00000000c0279628,0x00000000c2b00000) - Metaspace used 10246K, capacity 10767K, committed 10880K, reserved 1058816K - class space used 2070K, capacity 2096K, committed 2176K, reserved 1048576K -Event: 1.519 GC heap after -Heap after GC invocations=2 (full 0): - PSYoungGen total 35328K, used 2528K [0x00000000eab00000, 0x00000000ed000000, 0x0000000100000000) - eden space 32768K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ecb00000) - from space 2560K, 98% used [0x00000000ecd80000,0x00000000ecff8020,0x00000000ed000000) - to space 2560K, 0% used [0x00000000ecb00000,0x00000000ecb00000,0x00000000ecd80000) - ParOldGen total 44032K, used 4383K [0x00000000c0000000, 0x00000000c2b00000, 0x00000000eab00000) - object space 44032K, 9% used [0x00000000c0000000,0x00000000c0447fe0,0x00000000c2b00000) - Metaspace used 10246K, capacity 10767K, committed 10880K, reserved 1058816K - class space used 2070K, capacity 2096K, committed 2176K, reserved 1048576K -} - -Deoptimization events (10 events): -Event: 1.763 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 -Event: 1.766 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 -Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 -Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 -Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 -Event: 1.768 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003312b84 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 -Event: 1.769 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 -Event: 1.772 Thread 0x0000000002d6e000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000033b2ecc method=sun.misc.MetaIndex.mayContain(Ljava/lang/String;)Z @ 38 -Event: 1.774 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000331236c method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 126 -Event: 1.775 Thread 0x0000000002d6e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000033ae06c method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 6 - -Internal exceptions (10 events): -Event: 0.038 Thread 0x0000000002d6e000 Exception (0x00000000eab07cc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\srèr±~؈£? -Event: 0.038 Thread 0x0000000002d6e000 Exception (0x00000000eab07fa8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jg?²¿?*Ó? -Event: 0.299 Thread 0x0000000002d6e000 Exception (0x00000000eaf18300) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 0.299 Thread 0x0000000002d6e000 Exception (0x00000000eaf18510) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 0.300 Thread 0x0000000002d6e000 Exception (0x00000000eaf1c358) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 0.300 Thread 0x0000000002d6e000 Exception (0x00000000eaf1c568) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\prims\jvm.cpp, line 1386] -Event: 1.238 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032e323a to 0x00000000032e3352 -Event: 1.272 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032713bb to 0x00000000032716ed -Event: 1.289 Thread 0x0000000002d6e000 Implicit null exception at 0x00000000032d1b4f to 0x00000000032d1c81 -Event: 1.745 Thread 0x0000000002d6e000 Exception (0x00000000eb49d788) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u91\6644\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199] - -Events (10 events): -Event: 1.806 loading class java/math/MutableBigInteger -Event: 1.807 loading class java/math/MutableBigInteger done -Event: 1.808 loading class javax/crypto/BadPaddingException -Event: 1.809 loading class java/security/GeneralSecurityException -Event: 1.809 loading class java/security/GeneralSecurityException done -Event: 1.809 loading class javax/crypto/BadPaddingException done -Event: 1.809 loading class sun/security/provider/certpath/X509CertPath -Event: 1.809 loading class java/security/cert/CertPath -Event: 1.810 loading class java/security/cert/CertPath done -Event: 1.810 loading class sun/security/provider/certpath/X509CertPath done - - -Dynamic libraries: -0x00007ff790520000 - 0x00007ff790557000 C:\PROGRA~1\Java\JDK18~1.0_9\bin\java.exe -0x00007ffc89530000 - 0x00007ffc8970b000 C:\WINDOWS\SYSTEM32\ntdll.dll -0x00007ffc88b40000 - 0x00007ffc88bee000 C:\WINDOWS\System32\KERNEL32.DLL -0x00007ffc85a50000 - 0x00007ffc85c99000 C:\WINDOWS\System32\KERNELBASE.dll -0x00007ffc86fd0000 - 0x00007ffc87071000 C:\WINDOWS\System32\ADVAPI32.dll -0x00007ffc86da0000 - 0x00007ffc86e3d000 C:\WINDOWS\System32\msvcrt.dll -0x00007ffc872d0000 - 0x00007ffc87329000 C:\WINDOWS\System32\sechost.dll -0x00007ffc86e40000 - 0x00007ffc86f65000 C:\WINDOWS\System32\RPCRT4.dll -0x00007ffc86c50000 - 0x00007ffc86d9a000 C:\WINDOWS\System32\USER32.dll -0x00007ffc85ca0000 - 0x00007ffc85cbe000 C:\WINDOWS\System32\win32u.dll -0x00007ffc89330000 - 0x00007ffc89357000 C:\WINDOWS\System32\GDI32.dll -0x00007ffc86850000 - 0x00007ffc869d8000 C:\WINDOWS\System32\gdi32full.dll -0x00007ffc867b0000 - 0x00007ffc8684a000 C:\WINDOWS\System32\msvcp_win.dll -0x00007ffc866b0000 - 0x00007ffc867a6000 C:\WINDOWS\System32\ucrtbase.dll -0x00007ffc7a610000 - 0x00007ffc7a877000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll -0x00007ffc89030000 - 0x00007ffc89329000 C:\WINDOWS\System32\combase.dll -0x00007ffc863c0000 - 0x00007ffc8642a000 C:\WINDOWS\System32\bcryptPrimitives.dll -0x00007ffc86fa0000 - 0x00007ffc86fcd000 C:\WINDOWS\System32\IMM32.DLL -0x000000005c1b0000 - 0x000000005c282000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\msvcr100.dll -0x000000005b910000 - 0x000000005c1a3000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\server\jvm.dll -0x00007ffc87680000 - 0x00007ffc87688000 C:\WINDOWS\System32\PSAPI.DLL -0x00007ffc829b0000 - 0x00007ffc829b9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll -0x00007ffc87690000 - 0x00007ffc876fc000 C:\WINDOWS\System32\WS2_32.dll -0x00007ffc81350000 - 0x00007ffc8135a000 C:\WINDOWS\SYSTEM32\VERSION.dll -0x00007ffc83ba0000 - 0x00007ffc83bc3000 C:\WINDOWS\SYSTEM32\WINMM.dll -0x00007ffc838e0000 - 0x00007ffc8390b000 C:\WINDOWS\SYSTEM32\winmmbase.dll -0x00007ffc86660000 - 0x00007ffc866a9000 C:\WINDOWS\System32\cfgmgr32.dll -0x000000005c4b0000 - 0x000000005c4bf000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\verify.dll -0x000000005c480000 - 0x000000005c4a9000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\java.dll -0x000000005c460000 - 0x000000005c476000 C:\PROGRA~1\Java\JDK18~1.0_9\jre\bin\zip.dll -0x00007ffc87700000 - 0x00007ffc88b37000 C:\WINDOWS\System32\SHELL32.dll -0x00007ffc870e0000 - 0x00007ffc8718a000 C:\WINDOWS\System32\shcore.dll -0x00007ffc85cc0000 - 0x00007ffc863b2000 C:\WINDOWS\System32\windows.storage.dll -0x00007ffc87330000 - 0x00007ffc87381000 C:\WINDOWS\System32\shlwapi.dll -0x00007ffc85a10000 - 0x00007ffc85a21000 C:\WINDOWS\System32\kernel.appcore.dll -0x00007ffc859a0000 - 0x00007ffc859ec000 C:\WINDOWS\System32\powrprof.dll -0x00007ffc85a30000 - 0x00007ffc85a45000 C:\WINDOWS\System32\profapi.dll -0x00007ffc77180000 - 0x00007ffc77329000 C:\WINDOWS\SYSTEM32\dbghelp.dll - -VM Arguments: -jvm_args: -Dclojure.compile.path=D:\clojure_programming\structured-data/target/classes -Dleiningen.original.pwd=D:\clojure_programming\structured-data -java_command: clojure.main -m leiningen.core.main midje -java_class_path (initial): C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar -Launcher Type: SUN_STANDARD - -Environment Variables: -CLASSPATH=C:\Users\jaakk_000\.lein\self-installs\leiningen-2.7.1-standalone.jar -PATH=C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\cmd;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\bin;C:\Users\jaakk_000\AppData\Local\GitHub\PortableGit_f02737a78695063deace08e96d5042710d3e32db\usr\share\git-tfs;C:\Users\jaakk_000\AppData\Local\Apps\2.0\O3EGYX0Y.WLJ\3WEK1L4A.AMV\gith..tion_317444273a93ac29_0003.0003_5794af8169eeff14;C:\Users\jaakk_000\AppData\Local\GitHub\lfs-amd64_1.5.5;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;D:\PuTTy\;D:\Git\cmd;C:\Users\jaakk_000\AppData\Local\Microsoft\WindowsApps;;D:\.lein\bin;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ -USERNAME=jaakk_000 -OS=Windows_NT -PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 23 Stepping 10, GenuineIntel - - - ---------------- S Y S T E M --------------- - -OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296) - -CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, tsc - -Memory: 4k page, physical 4193268k(1064284k free), swap 6630464k(1278484k free) - -vm_info: Java HotSpot(TM) 64-Bit Server VM (25.91-b14) for windows-amd64 JRE (1.8.0_91-b14), built on Apr 1 2016 00:58:32 by "java_re" with MS VC++ 10.0 (VS2010) - -time: Mon Aug 07 19:34:31 2017 -elapsed time: 1 seconds (0d 0h 0m 1s) - From ca8499eab7ab99da879bfc0e68684c70799cf8a2 Mon Sep 17 00:00:00 2001 From: Jaakko Heiska Date: Tue, 29 Aug 2017 17:16:53 +0300 Subject: [PATCH 5/8] homma etenee --- .nrepl-port | 1 + src/structured_data.clj | 40 +++++++++++++++++++++------------------- 2 files changed, 22 insertions(+), 19 deletions(-) create mode 100644 .nrepl-port diff --git a/.nrepl-port b/.nrepl-port new file mode 100644 index 00000000..03184b3a --- /dev/null +++ b/.nrepl-port @@ -0,0 +1 @@ +50931 \ No newline at end of file diff --git a/src/structured_data.clj b/src/structured_data.clj index ca84fbef..8dd9cb41 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -38,20 +38,20 @@ (if (== (- x2 x1) (- y2 y1)) true false)) ) -(defn area [rectangle] - (let [[[x1 y1] [x2 y2]] rectangle] - (* (- x2 x1) (- y2 y1))) - ) +;(defn area [rectangle] +; (let [[[x1 y1] [x2 y2]] rectangle] +; (* (- x2 x1) (- y2 y1))) +; ) -; (defn area [rec] - ; (* ((height (rec))) ((width (rec)))) - ;) + (defn area [rec] + (* ((height (rec))) ((width (rec)))) + ) -(defn contains-point? [rectangle point] - (let [[[x1 y1] [x2 y2]] rectangle - x3 (get point 0) - y3 (get point 1)] +(defn contains-point? [recta poi] + (let [[[x1 y1] [x2 y2]] recta + x3 (get poi 0) + y3 (get poi 1)] (if(and (<= x1 x3 x2) (<= y1 y3 y2)) true false) )) @@ -61,7 +61,7 @@ (let [[[x1 y1] [x2 y2]] outer [[xx1 yy1] [xx2 yy2]] inner ] - (if(and (contains-point? (outer) (point xx1 yy1)) (contains-point? (outer) (point xx2 yy2)) ) true false) + (if(and (contains-point? (rectangle [x1 y1] [x2 y2]) (point xx1 yy1)) (contains-point? (rectangle [x1 y1] [x2 y2]) (point xx2 yy2))) true false) )) @@ -77,13 +77,15 @@ (if (< 1 (count (get book :authors))) true false) ) -;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -;(defn add-author [book new-author] -; (let [auts (get book :authors)] -; (conj auts new-author) -; (assoc book :authors auts) -; )) -;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +(defn add-author [book new-author] + (let [auts (get book :authors) + new_auts (conj auts new-author) + ] + + (assoc book :authors new_auts) + )) + (defn alive? [author] :-) From ed9fb4a54fb973c2b482a417a53ab4844a3da33e Mon Sep 17 00:00:00 2001 From: Jaakko Heiska Date: Tue, 29 Aug 2017 17:37:13 +0300 Subject: [PATCH 6/8] map --- src/structured_data.clj | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/structured_data.clj b/src/structured_data.clj index 8dd9cb41..e9936365 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -88,13 +88,17 @@ (defn alive? [author] - :-) + (if (contains? author :death-year) false true) + ) (defn element-lengths [collection] - :-) + (map count collection) + ) (defn second-elements [collection] - :-) + (let [getsecond (fn[x] (get x 1))] + (map getsecond collection) + )) (defn titles [books] :-) From f3f5ecdc2359208a1325f4a81257f0a3c901bcff Mon Sep 17 00:00:00 2001 From: Jaakko Heiska Date: Tue, 29 Aug 2017 21:47:34 +0300 Subject: [PATCH 7/8] 29.8. --- .nrepl-port | 1 - instarepl 29.8 | 24 ++++++++++++++++++++++++ src/structured_data.clj | 3 ++- 3 files changed, 26 insertions(+), 2 deletions(-) delete mode 100644 .nrepl-port create mode 100644 instarepl 29.8 diff --git a/.nrepl-port b/.nrepl-port deleted file mode 100644 index 03184b3a..00000000 --- a/.nrepl-port +++ /dev/null @@ -1 +0,0 @@ -50931 \ No newline at end of file diff --git a/instarepl 29.8 b/instarepl 29.8 new file mode 100644 index 00000000..22b6f6ae --- /dev/null +++ b/instarepl 29.8 @@ -0,0 +1,24 @@ +;; Anything you type in here will be executed +;; immediately with the results shown on the +;; right. +(use 'structured-data) + +(def china {:name "China Miéville", :birth-year 1972}) +(def octavia {:name "Octavia E. Butler" + :birth-year 1947 + :death-year 2006}) +(def friedman {:name "Daniel Friedman" :birth-year 1944}) +(def felleisen {:name "Matthias Felleisen"}) + +(def cities {:title "The City and the City" :authors [china]}) +(def wild-seed {:title "Wild Seed", :authors [octavia]}) +(def embassytown {:title "Embassytown", :authors [china]}) +(def little-schemer {:title "The Little Schemer" + :authors [friedman, felleisen]}) + +(def books [cities, wild-seed, embassytown, little-schemer]) + +(titles [cities]) ;=> ("The City and the City" ) +(titles books) +;=> ("The City and the City" "Wild Seed" +; "Embassytown" "The Little Schemer") \ No newline at end of file diff --git a/src/structured_data.clj b/src/structured_data.clj index e9936365..610bb0c3 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -101,7 +101,8 @@ )) (defn titles [books] - :-) + (map :title books) + ) (defn monotonic? [a-seq] :-) From 2d0461306656070093c648e471b54577b58d94ee Mon Sep 17 00:00:00 2001 From: Jaakko Heiska Date: Fri, 1 Sep 2017 15:25:05 +0300 Subject: [PATCH 8/8] finally conj works --- .nrepl-port | 1 + instarepl 29.8 | 24 ------------------------ src/structured_data.clj | 7 ++++++- 3 files changed, 7 insertions(+), 25 deletions(-) create mode 100644 .nrepl-port delete mode 100644 instarepl 29.8 diff --git a/.nrepl-port b/.nrepl-port new file mode 100644 index 00000000..f24177d5 --- /dev/null +++ b/.nrepl-port @@ -0,0 +1 @@ +55107 \ No newline at end of file diff --git a/instarepl 29.8 b/instarepl 29.8 deleted file mode 100644 index 22b6f6ae..00000000 --- a/instarepl 29.8 +++ /dev/null @@ -1,24 +0,0 @@ -;; Anything you type in here will be executed -;; immediately with the results shown on the -;; right. -(use 'structured-data) - -(def china {:name "China Miéville", :birth-year 1972}) -(def octavia {:name "Octavia E. Butler" - :birth-year 1947 - :death-year 2006}) -(def friedman {:name "Daniel Friedman" :birth-year 1944}) -(def felleisen {:name "Matthias Felleisen"}) - -(def cities {:title "The City and the City" :authors [china]}) -(def wild-seed {:title "Wild Seed", :authors [octavia]}) -(def embassytown {:title "Embassytown", :authors [china]}) -(def little-schemer {:title "The Little Schemer" - :authors [friedman, felleisen]}) - -(def books [cities, wild-seed, embassytown, little-schemer]) - -(titles [cities]) ;=> ("The City and the City" ) -(titles books) -;=> ("The City and the City" "Wild Seed" -; "Embassytown" "The Little Schemer") \ No newline at end of file diff --git a/src/structured_data.clj b/src/structured_data.clj index 610bb0c3..0c4ebb02 100644 --- a/src/structured_data.clj +++ b/src/structured_data.clj @@ -107,8 +107,13 @@ (defn monotonic? [a-seq] :-) + (defn stars [n] - :-) + (apply str (repeat n (str \*)) + ) +) + +(stars 3) (defn toggle [a-set elem] :-)