Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8117544

Win: glass.dll crash when dragging file over JavaFX Window

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 7-pool
    • 7u15
    • javafx
    • JRE 1.7.0_17, 32 bit
      Windows 7 64 bit

      Dragging a file from IntelliJ IDEA 129.17 (12.1 EAP) over a JavaFX node that has an OnDragOver/OnDragDropped set causes a native crash. The same program does not crash when dragging files from Windows Explorer.

      Here is the code for onDragOver/onDragDropped (groovy code):
      contentPane.setOnDragOver(
      { DragEvent e ->
      def db = e.dragboard
      if ( db.hasFiles() ) {
      e.acceptTransferModes( TransferMode.COPY )
      } else {
      e.consume()
      }
      } as EventHandler
      )

      contentPane.setOnDragDropped(
      { DragEvent e ->
      def db = e.dragboard
      if ( db.hasFiles() ) {
      doOpenFile( db.files[0] )
      e.dropCompleted = true
      } else {
      e.dropCompleted = false
      }
      e.consume()
      } as EventHandler
      )

      I could not figure out a way to attach files, so below is the content of hs_err_pid21040.log:
      #
      # A fatal error has been detected by the Java Runtime Environment:
      #
      # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6b06bd6b, pid=21040, tid=21112
      #
      # JRE version: 7.0_17-b02
      # Java VM: Java HotSpot(TM) Client VM (23.7-b01 mixed mode, sharing windows-x86 )
      # Problematic frame:
      # C [glass.dll+0xbd6b] Java_com_sun_glass_ui_win_WinDnDClipboard_push+0x486b
      #
      # 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.sun.com/bugreport/crash.jsp
      # The crash happened outside the Java Virtual Machine in native code.
      # See problematic frame for where to report the bug.
      #

      --------------- T H R E A D ---------------

      Current thread (0x053c3c00): JavaThread "JavaFX Application Thread" [_thread_in_native, id=21112, stack(0x06560000,0x065b0000)]

      siginfo: ExceptionCode=0xc0000005, reading address 0x0050d184

      Registers:
      EAX=0x00064730, EBX=0x000002b7, ECX=0x004a8a50, EDX=0x000001d1
      ESP=0x065ad804, EBP=0x065ad900, ESI=0x0050d184, EDI=0x00000000
      EIP=0x6b06bd6b, EFLAGS=0x00010246

      Top of Stack: (sp=0x065ad804)
      0x065ad804: d2f41d68 00000401 065adaf0 065adaf0
      0x065ad814: 0568f888 00000001 0000c276 00000000
      0x065ad824: 00000001 ffffffff 00000004 00000000
      0x065ad834: 6b06c103 00000000 00000001 ffffffff
      0x065ad844: 00000001 05658718 00000000 00000000
      0x065ad854: 065ad98c 00000000 00000000 00000000
      0x065ad864: 00000000 00000000 00000000 00000001
      0x065ad874: 08cc003c 00000000 57940776 05658748

      Instructions: (pc=0x6b06bd6b)
      0x6b06bd4b: 8b 4d e0 8b c3 69 c0 50 02 00 00 8d 74 08 04 eb
      0x6b06bd5b: 0f 8b 45 e0 8b d3 69 d2 4c 01 00 00 8d 74 02 04
      0x6b06bd6b: f6 06 40 74 7e 8b 4e 40 8b 46 44 6a 0a 6a 40 8d
      0x6b06bd7b: 55 00 52 51 50 ff 15 34 81 07 6b 83 c4 14 8d 45


      Register to memory mapping:

      EAX=0x00064730 is an unknown value
      EBX=0x000002b7 is an unknown value
      ECX=0x004a8a50 is an unknown value
      EDX=0x000001d1 is an unknown value
      ESP=0x065ad804 is pointing into the stack for thread: 0x053c3c00
      EBP=0x065ad900 is pointing into the stack for thread: 0x053c3c00
      ESI=0x0050d184 is an unknown value
      EDI=0x00000000 is an unknown value


      Stack: [0x06560000,0x065b0000], sp=0x065ad804, free space=310k
      Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
      C [glass.dll+0xbd6b] Java_com_sun_glass_ui_win_WinDnDClipboard_push+0x486b

      Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
      j com.sun.glass.ui.win.WinSystemClipboard.popMimesFromSystem()[Ljava/lang/String;+0
      j com.sun.glass.ui.win.WinSystemClipboard.mimesFromSystem()[Ljava/lang/String;+10
      j com.sun.glass.ui.SystemClipboard.getMimeTypes()[Ljava/lang/String;+13
      j com.sun.glass.ui.ClipboardAssistance.getMimeTypes()[Ljava/lang/String;+4
      j com.sun.javafx.tk.quantum.QuantumClipboard.hasContent(Ljavafx/scene/input/DataFormat;)Z+55
      j javafx.scene.input.Clipboard.hasContent(Ljavafx/scene/input/DataFormat;)Z+11
      j javafx.scene.input.Clipboard.hasFiles()Z+4
      j javafx.scene.input.Clipboard$hasFiles.call(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+13
      j org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(Lorg/codehaus/groovy/runtime/callsite/CallSite;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+8
      j org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+3
      j org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(Ljava/lang/Object;)Ljava/lang/Object;+5
      j edu.rit.cims.FxmlViewer.FxmlViewer$_initialize_closure2.doCall(Ljavafx/scene/input/DragEvent;)Ljava/lang/Object;+22
      v ~StubRoutines::call_stub
      j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
      j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
      j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
      j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57
      j org.codehaus.groovy.reflection.CachedMethod.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
      j groovy.lang.MetaMethod.doMethodInvoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+9
      j org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(Ljava/lang/Class;Ljava/lang/Object;Ljava/lang/String;[Ljava/lang/Object;ZZ)Ljava/lang/Object;+241
      j groovy.lang.MetaClassImpl.invokeMethod(Ljava/lang/Object;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/Object;+10
      j groovy.lang.Closure.call([Ljava/lang/Object;)Ljava/lang/Object;+8
      j org.codehaus.groovy.runtime.ConvertedClosure.invokeCustom(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+31
      j org.codehaus.groovy.runtime.ConversionHandler.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+12
      j com.sun.proxy.$Proxy8.handle(Ljavafx/event/Event;)V+16
      j com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Ljavafx/event/Event;)V+62
      J com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Ljavafx/event/Event;)Ljavafx/event/Event;
      j com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Ljavafx/event/Event;)Ljavafx/event/Event;+11
      j com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Ljavafx/event/Event;Ljavafx/event/EventDispatchChain;)Ljavafx/event/Event;+29
      j com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Ljavafx/event/Event;)Ljavafx/event/Event;+69
      j com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Ljavafx/event/Event;Ljavafx/event/EventDispatchChain;)Ljavafx/event/Event;+17
      j com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Ljavafx/event/Event;)Ljavafx/event/Event;+69
      j com.sun.javafx.event.EventUtil.fireEventImpl(Ljavafx/event/EventDispatchChain;Ljavafx/event/EventTarget;Ljavafx/event/Event;)Ljavafx/event/Event;+10
      j com.sun.javafx.event.EventUtil.fireEvent(Ljavafx/event/EventTarget;Ljavafx/event/Event;)Ljavafx/event/Event;+46
      j javafx.event.Event.fireEvent(Ljavafx/event/EventTarget;Ljavafx/event/Event;)V+30
      j javafx.scene.Scene$DnDGesture.fireEvent(Ljavafx/event/EventTarget;Ljavafx/event/Event;)V+6
      j javafx.scene.Scene$DnDGesture.processTargetEnterOver(Ljavafx/scene/input/DragEvent;)Ljavafx/scene/input/TransferMode;+107
      j javafx.scene.Scene$DnDGesture.access$6100(Ljavafx/scene/Scene$DnDGesture;Ljavafx/scene/input/DragEvent;)Ljavafx/scene/input/TransferMode;+2
      j javafx.scene.Scene$DropTargetListener.dragOver(Ljava/lang/Object;)Ljavafx/scene/input/TransferMode;+44
      j com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run()Ljavafx/scene/input/TransferMode;+79
      j com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run()Ljava/lang/Object;+1
      v ~StubRoutines::call_stub
      j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
      j com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(IIIIILcom/sun/glass/ui/ClipboardAssistance;)Ljavafx/scene/input/TransferMode;+44
      j com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(Lcom/sun/glass/ui/View;IIIIILcom/sun/glass/ui/ClipboardAssistance;)I+14
      j com.sun.glass.ui.View.handleDragOver(IIIIILcom/sun/glass/ui/ClipboardAssistance;)I+21
      j com.sun.glass.ui.View.notifyDragOver(IIIII)I+12
      v ~StubRoutines::call_stub
      j com.sun.glass.ui.win.WinApplication._runLoop([Ljava/lang/String;Lcom/sun/glass/ui/Launchable;)V+0
      j com.sun.glass.ui.win.WinApplication.access$100(Lcom/sun/glass/ui/win/WinApplication;[Ljava/lang/String;Lcom/sun/glass/ui/Launchable;)V+3
      j com.sun.glass.ui.win.WinApplication$3$1.run()V+32
      j java.lang.Thread.run()V+11
      v ~StubRoutines::call_stub

      --------------- P R O C E S S ---------------

      Java Threads: ( => current thread )
        0x055ca400 JavaThread "Prism Font Disposer" daemon [_thread_blocked, id=21160, stack(0x08600000,0x08650000)]
        0x0537ac00 JavaThread "Thread-3" daemon [_thread_in_native, id=21152, stack(0x084a0000,0x084f0000)]
      =>0x053c3c00 JavaThread "JavaFX Application Thread" [_thread_in_native, id=21112, stack(0x06560000,0x065b0000)]
        0x053f7c00 JavaThread "Disposer" daemon [_thread_blocked, id=21108, stack(0x06080000,0x060d0000)]
        0x053c9800 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=21104, stack(0x060e0000,0x06130000)]
        0x0534d400 JavaThread "JavaFX-Launcher" [_thread_blocked, id=21100, stack(0x04a90000,0x04ae0000)]
        0x04cb6000 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=21096, stack(0x04fe0000,0x05030000)]
        0x023f4800 JavaThread "Service Thread" daemon [_thread_blocked, id=21088, stack(0x04b90000,0x04be0000)]
        0x023ef400 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=21084, stack(0x04770000,0x047c0000)]
        0x023ee000 JavaThread "Attach Listener" daemon [_thread_blocked, id=21080, stack(0x04930000,0x04980000)]
        0x023df400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=21076, stack(0x04800000,0x04850000)]
        0x023d0400 JavaThread "Finalizer" daemon [_thread_blocked, id=21072, stack(0x045c0000,0x04610000)]
        0x023cec00 JavaThread "Reference Handler" daemon [_thread_blocked, id=21068, stack(0x04610000,0x04660000)]
        0x022fc800 JavaThread "main" [_thread_blocked, id=21060, stack(0x021e0000,0x02230000)]

      Other Threads:
        0x023cd800 VMThread [stack: 0x04550000,0x045a0000] [id=21064]
        0x023fe800 WatcherThread [stack: 0x04e00000,0x04e50000] [id=21092]

      VM state:not at safepoint (normal execution)

      VM Mutex/Monitor currently owned by a thread: None

      Heap
       def new generation total 4928K, used 3272K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 62% used [0x243c0000, 0x24672350, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 7856K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 71% used [0x29910000, 0x2a0bc208, 0x2a0bc400, 0x2a3c0000)
       compacting perm gen total 12288K, used 8896K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 72% used [0x343c0000, 0x34c702d0, 0x34c70400, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)

      Card table byte_map: [0x04400000,0x044b0000] byte_map_base: 0x042de200

      Polling page: 0x002f0000

      Code Cache [0x02400000, 0x02668000, 0x04400000)
       total_blobs=1216 nmethods=650 adapters=501 free_code_cache=30318Kb largest_free_block=31045184

      Compilation events (10 events):
      Event: 4.677 Thread 0x023ef400 650 com.sun.javafx.event.EventHandlerManager::dispatchBubblingEvent (23 bytes)
      Event: 4.677 Thread 0x023ef400 nmethod 650 0x02663b88 code [0x02663cc0, 0x02663e70]
      Event: 4.684 Thread 0x023ef400 651 com.sun.javafx.geom.RectBounds::getMinY (5 bytes)
      Event: 4.684 Thread 0x023ef400 nmethod 651 0x02664088 code [0x02664180, 0x02664200]
      Event: 4.692 Thread 0x023ef400 652 com.sun.javafx.event.CompositeEventDispatcher::dispatchCapturingEvent (35 bytes)
      Event: 4.692 Thread 0x023ef400 nmethod 652 0x02664248 code [0x02664360, 0x02664458]
      Event: 4.756 Thread 0x023ef400 653 javafx.scene.Node::getClip (21 bytes)
      Event: 4.756 Thread 0x023ef400 nmethod 653 0x02664548 code [0x02664650, 0x0266473c]
      Event: 4.757 Thread 0x023ef400 654 com.sun.javafx.geom.RectBounds::getMaxX (5 bytes)
      Event: 4.757 Thread 0x023ef400 nmethod 654 0x02664808 code [0x02664900, 0x02664980]

      GC Heap History (10 events):
      Event: 0.780 GC heap before
      {Heap before GC invocations=6 (full 0):
       def new generation total 4928K, used 4928K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 100% used [0x243c0000, 0x24810000, 0x24810000)
        from space 512K, 100% used [0x24810000, 0x24890000, 0x24890000)
        to space 512K, 0% used [0x24890000, 0x24890000, 0x24910000)
       tenured generation total 10944K, used 4223K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 38% used [0x29910000, 0x29d2fd00, 0x29d2fe00, 0x2a3c0000)
       compacting perm gen total 12288K, used 6009K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 48% used [0x343c0000, 0x3499e7a8, 0x3499e800, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      Event: 0.785 GC heap after
      Heap after GC invocations=7 (full 0):
       def new generation total 4928K, used 512K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 0% used [0x243c0000, 0x243c0000, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 5201K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 47% used [0x29910000, 0x29e247b0, 0x29e24800, 0x2a3c0000)
       compacting perm gen total 12288K, used 6009K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 48% used [0x343c0000, 0x3499e7a8, 0x3499e800, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      }
      Event: 0.844 GC heap before
      {Heap before GC invocations=7 (full 0):
       def new generation total 4928K, used 4928K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 100% used [0x243c0000, 0x24810000, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 5201K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 47% used [0x29910000, 0x29e247b0, 0x29e24800, 0x2a3c0000)
       compacting perm gen total 12288K, used 6151K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 50% used [0x343c0000, 0x349c1ff0, 0x349c2000, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      Event: 0.848 GC heap after
      Heap after GC invocations=8 (full 0):
       def new generation total 4928K, used 512K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 0% used [0x243c0000, 0x243c0000, 0x24810000)
        from space 512K, 100% used [0x24810000, 0x24890000, 0x24890000)
        to space 512K, 0% used [0x24890000, 0x24890000, 0x24910000)
       tenured generation total 10944K, used 6120K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 55% used [0x29910000, 0x29f0a270, 0x29f0a400, 0x2a3c0000)
       compacting perm gen total 12288K, used 6151K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 50% used [0x343c0000, 0x349c1ff0, 0x349c2000, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      }
      Event: 0.991 GC heap before
      {Heap before GC invocations=8 (full 0):
       def new generation total 4928K, used 4928K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 100% used [0x243c0000, 0x24810000, 0x24810000)
        from space 512K, 100% used [0x24810000, 0x24890000, 0x24890000)
        to space 512K, 0% used [0x24890000, 0x24890000, 0x24910000)
       tenured generation total 10944K, used 6120K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 55% used [0x29910000, 0x29f0a270, 0x29f0a400, 0x2a3c0000)
       compacting perm gen total 12288K, used 6574K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 53% used [0x343c0000, 0x34a2b868, 0x34a2ba00, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      Event: 0.996 GC heap after
      Heap after GC invocations=9 (full 0):
       def new generation total 4928K, used 512K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 0% used [0x243c0000, 0x243c0000, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 7018K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 64% used [0x29910000, 0x29feab38, 0x29feac00, 0x2a3c0000)
       compacting perm gen total 12288K, used 6574K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 53% used [0x343c0000, 0x34a2b868, 0x34a2ba00, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      }
      Event: 1.103 GC heap before
      {Heap before GC invocations=9 (full 0):
       def new generation total 4928K, used 4928K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 100% used [0x243c0000, 0x24810000, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 7018K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 64% used [0x29910000, 0x29feab38, 0x29feac00, 0x2a3c0000)
       compacting perm gen total 12288K, used 7621K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 62% used [0x343c0000, 0x34b31740, 0x34b31800, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      Event: 1.107 GC heap after
      Heap after GC invocations=10 (full 0):
       def new generation total 4928K, used 325K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 0% used [0x243c0000, 0x243c0000, 0x24810000)
        from space 512K, 63% used [0x24810000, 0x248614a8, 0x24890000)
        to space 512K, 0% used [0x24890000, 0x24890000, 0x24910000)
       tenured generation total 10944K, used 7486K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 68% used [0x29910000, 0x2a05f8a0, 0x2a05fa00, 0x2a3c0000)
       compacting perm gen total 12288K, used 7621K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 62% used [0x343c0000, 0x34b31740, 0x34b31800, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      }
      Event: 1.201 GC heap before
      {Heap before GC invocations=10 (full 0):
       def new generation total 4928K, used 4741K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 100% used [0x243c0000, 0x24810000, 0x24810000)
        from space 512K, 63% used [0x24810000, 0x248614a8, 0x24890000)
        to space 512K, 0% used [0x24890000, 0x24890000, 0x24910000)
       tenured generation total 10944K, used 7486K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 68% used [0x29910000, 0x2a05f8a0, 0x2a05fa00, 0x2a3c0000)
       compacting perm gen total 12288K, used 8432K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 68% used [0x343c0000, 0x34bfc368, 0x34bfc400, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      Event: 1.206 GC heap after
      Heap after GC invocations=11 (full 0):
       def new generation total 4928K, used 512K [0x243c0000, 0x24910000, 0x29910000)
        eden space 4416K, 0% used [0x243c0000, 0x243c0000, 0x24810000)
        from space 512K, 100% used [0x24890000, 0x24910000, 0x24910000)
        to space 512K, 0% used [0x24810000, 0x24810000, 0x24890000)
       tenured generation total 10944K, used 7856K [0x29910000, 0x2a3c0000, 0x343c0000)
         the space 10944K, 71% used [0x29910000, 0x2a0bc208, 0x2a0bc400, 0x2a3c0000)
       compacting perm gen total 12288K, used 8432K [0x343c0000, 0x34fc0000, 0x383c0000)
         the space 12288K, 68% used [0x343c0000, 0x34bfc368, 0x34bfc400, 0x34fc0000)
          ro space 10240K, 45% used [0x383c0000, 0x388473d8, 0x38847400, 0x38dc0000)
          rw space 12288K, 54% used [0x38dc0000, 0x3944acc8, 0x3944ae00, 0x399c0000)
      }

      Deoptimization events (0 events):
      No events

      Internal exceptions (10 events):
      Event: 4.785 Thread 0x053c3c00 Threw 0x24650608 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\runtime\sharedRuntime.cpp:613
      Event: 4.785 Thread 0x053c3c00 Threw 0x246516e8 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\runtime\sharedRuntime.cpp:613
      Event: 4.785 Thread 0x053c3c00 Threw 0x24653480 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\runtime\sharedRuntime.cpp:613
      Event: 4.785 Thread 0x053c3c00 Threw 0x24654730 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\runtime\sharedRuntime.cpp:613
      Event: 4.785 Thread 0x053c3c00 Threw 0x24656e38 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\prims\jvm.cpp:1166
      Event: 4.785 Thread 0x053c3c00 Threw 0x24659818 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\prims\jvm.cpp:1166
      Event: 4.785 Thread 0x053c3c00 Threw 0x2465a000 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\prims\jvm.cpp:1166
      Event: 4.786 Thread 0x053c3c00 Threw 0x2465c9e0 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\prims\jvm.cpp:1166
      Event: 4.786 Thread 0x053c3c00 Threw 0x2465cd58 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\classfile\systemDictionary.cpp:179
      Event: 4.786 Thread 0x053c3c00 Threw 0x2465f078 at C:\jdk7u2_32P\jdk7u17\hotspot\src\share\vm\runtime\sharedRuntime.cpp:613

      Events (10 events):
      Event: 4.784 loading class 0x05675b10
      Event: 4.784 loading class 0x05675b10 done
      Event: 4.784 loading class 0x05675b10
      Event: 4.784 loading class 0x05675b10 done
      Event: 4.785 loading class 0x05675b50
      Event: 4.785 loading class 0x05675b50 done
      Event: 4.785 loading class 0x05675b50
      Event: 4.785 loading class 0x05675b50 done
      Event: 4.786 loading class 0x05675b50
      Event: 4.786 loading class 0x05675b50 done


      Dynamic libraries:
      0x00320000 - 0x0034f000 C:\Program Files (x86)\Java\jdk1.7.0_17\bin\java.exe
      0x77a30000 - 0x77bb0000 C:\Windows\SysWOW64\ntdll.dll
      0x76dd0000 - 0x76ee0000 C:\Windows\syswow64\kernel32.dll
      0x76d70000 - 0x76db7000 C:\Windows\syswow64\KERNELBASE.dll
      0x75800000 - 0x758a0000 C:\Windows\syswow64\ADVAPI32.dll
      0x75e80000 - 0x75f2c000 C:\Windows\syswow64\msvcrt.dll
      0x75da0000 - 0x75db9000 C:\Windows\SysWOW64\sechost.dll
      0x75170000 - 0x75260000 C:\Windows\syswow64\RPCRT4.dll
      0x75110000 - 0x75170000 C:\Windows\syswow64\SspiCli.dll
      0x75100000 - 0x7510c000 C:\Windows\syswow64\CRYPTBASE.dll
      0x75420000 - 0x75520000 C:\Windows\syswow64\USER32.dll
      0x75be0000 - 0x75c70000 C:\Windows\syswow64\GDI32.dll
      0x75b40000 - 0x75b4a000 C:\Windows\syswow64\LPK.dll
      0x77070000 - 0x7710d000 C:\Windows\syswow64\USP10.dll
      0x736e0000 - 0x7387e000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
      0x75dc0000 - 0x75e17000 C:\Windows\syswow64\SHLWAPI.dll
      0x75e20000 - 0x75e80000 C:\Windows\system32\IMM32.DLL
      0x75a20000 - 0x75aec000 C:\Windows\syswow64\MSCTF.dll
      0x10000000 - 0x10064000 C:\Program Files (x86)\McAfee\Host Intrusion Prevention\HcApi.dll
      0x61d70000 - 0x61d79000 C:\Program Files (x86)\McAfee\Host Intrusion Prevention\HcThe.dll
      0x59fd0000 - 0x5a08e000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\msvcr100.dll
      0x57800000 - 0x57b4c000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\client\jvm.dll
      0x74950000 - 0x74957000 C:\Windows\system32\WSOCK32.dll
      0x75f30000 - 0x75f65000 C:\Windows\syswow64\WS2_32.dll
      0x77a00000 - 0x77a06000 C:\Windows\syswow64\NSI.dll
      0x746d0000 - 0x74702000 C:\Windows\system32\WINMM.dll
      0x75c70000 - 0x75c75000 C:\Windows\syswow64\PSAPI.DLL
      0x6d100000 - 0x6d10c000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\verify.dll
      0x6cfc0000 - 0x6cfe0000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\java.dll
      0x6cfa0000 - 0x6cfb3000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\zip.dll
      0x00630000 - 0x00637000 C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 128.101\bin\breakgen.dll
      0x6b1e0000 - 0x6b1f4000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\net.dll
      0x74910000 - 0x7494c000 C:\Windows\system32\mswsock.dll
      0x74490000 - 0x74496000 C:\Windows\System32\wship6.dll
      0x6b090000 - 0x6b09d000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\prism-d3d.dll
      0x65760000 - 0x65923000 C:\Windows\system32\d3d9.dll
      0x749b0000 - 0x749b9000 C:\Windows\system32\VERSION.dll
      0x691e0000 - 0x691e6000 C:\Windows\system32\d3d8thk.dll
      0x74630000 - 0x74643000 C:\Windows\system32\dwmapi.dll
      0x74650000 - 0x746d0000 C:\Windows\system32\uxtheme.dll
      0x65930000 - 0x659b4000 C:\Windows\system32\aticfx32.dll
      0x61ce0000 - 0x61cea000 C:\Windows\system32\atiu9pag.dll
      0x618f0000 - 0x61ccd000 C:\Windows\system32\atiumdag.dll
      0x61490000 - 0x617d3000 C:\Windows\system32\atiumdva.dll
      0x6b060000 - 0x6b087000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\glass.dll
      0x756f0000 - 0x7576b000 C:\Windows\syswow64\COMDLG32.dll
      0x76110000 - 0x76d5a000 C:\Windows\syswow64\SHELL32.dll
      0x76ee0000 - 0x7703c000 C:\Windows\syswow64\ole32.dll
      0x75770000 - 0x757ff000 C:\Windows\syswow64\OLEAUT32.dll
      0x75520000 - 0x755a3000 C:\Windows\syswow64\CLBCatQ.DLL
      0x6c060000 - 0x6c190000 C:\Windows\system32\WindowsCodecs.dll
      0x73690000 - 0x736dc000 C:\Windows\system32\apphelp.dll
      0x6d140000 - 0x6d152000 C:\Program Files (x86)\Common Files\TortoiseOverlays\TortoiseOverlays.dll
      0x62eb0000 - 0x62ebd000 C:\Program Files\TortoiseSVN\bin\TortoiseStub32.dll
      0x62d90000 - 0x62dfc000 C:\Program Files\TortoiseSVN\bin\TortoiseSVN32.dll
      0x758d0000 - 0x759eb000 C:\Windows\syswow64\WININET.dll
      0x76dc0000 - 0x76dc3000 C:\Windows\syswow64\Normaliz.dll
      0x75260000 - 0x75419000 C:\Windows\syswow64\iertutil.dll
      0x755d0000 - 0x756e1000 C:\Windows\syswow64\urlmon.dll
      0x62a90000 - 0x62d85000 C:\Program Files\TortoiseSVN\bin\libsvn_tsvn32.dll
      0x62e80000 - 0x62ea4000 C:\Program Files\TortoiseSVN\bin\libapr_tsvn32.dll
      0x621b0000 - 0x621e6000 C:\Program Files\TortoiseSVN\bin\libaprutil_tsvn32.dll
      0x75af0000 - 0x75b35000 C:\Windows\syswow64\WLDAP32.dll
      0x62e70000 - 0x62e7d000 C:\Program Files\TortoiseSVN\bin\intl3_tsvn32.dll
      0x61f40000 - 0x61f53000 C:\Program Files\TortoiseSVN\bin\libsasl32.dll
      0x74200000 - 0x74208000 C:\Windows\system32\Secur32.dll
      0x75c80000 - 0x75d9e000 C:\Windows\syswow64\CRYPT32.dll
      0x76d60000 - 0x76d6c000 C:\Windows\syswow64\MSASN1.dll
      0x61ed0000 - 0x61f39000 C:\Windows\system32\MSVCP100.dll
      0x6d0c0000 - 0x6d0f1000 C:\Windows\system32\EhStorShell.dll
      0x75f70000 - 0x7610d000 C:\Windows\syswow64\SETUPAPI.dll
      0x759f0000 - 0x75a17000 C:\Windows\syswow64\CFGMGR32.dll
      0x755b0000 - 0x755c2000 C:\Windows\syswow64\DEVOBJ.dll
      0x73880000 - 0x73975000 C:\Windows\system32\PROPSYS.dll
      0x6b670000 - 0x6b88f000 C:\Program Files (x86)\Microsoft Office\Office12\GrooveShellExtensions.dll
      0x5a770000 - 0x5a863000 C:\Program Files (x86)\Microsoft Office\Office12\GrooveUtil.DLL
      0x73c30000 - 0x73ccb000 C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
      0x5a760000 - 0x5a767000 C:\Program Files (x86)\Microsoft Office\Office12\GrooveNew.DLL
      0x5a740000 - 0x5a75b000 C:\Windows\WinSxS\x86_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d1cb102c435421de\ATL80.DLL
      0x73c10000 - 0x73c26000 C:\Windows\system32\CRYPTSP.dll
      0x73bd0000 - 0x73c0b000 C:\Windows\system32\rsaenh.dll
      0x74ad0000 - 0x74ad5000 C:\Windows\system32\MSImg32.dll
      0x6b030000 - 0x6b051000 C:\Program Files (x86)\Common Files\Microsoft Shared\Ink\rtscom.dll
      0x5a110000 - 0x5a14d000 C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin\javafx-font.dll
      0x73b30000 - 0x73b3e000 C:\Windows\system32\RpcRtRemote.dll
      0x74540000 - 0x7462b000 C:\Windows\system32\dbghelp.dll

      VM Arguments:
      jvm_args: -Didea.launcher.port=7533 -Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 128.101\bin -Dfile.encoding=windows-1252
      java_command: com.intellij.rt.execution.application.AppMain edu.rit.cims.FxmlViewer.FxmlViewer
      Launcher Type: SUN_STANDARD

      Environment Variables:
      JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_17
      PATH=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 128.101\bin\..\.\bin;C:\PHP\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Groovy\Groovy-2.1.1\bin;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\MATLAB\R2011b\runtime\win64;C:\Program Files\MATLAB\R2011b\bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Users\jpwasp\bin;C:\SVN\svn-win32-1.7.4\bin;\\atlas78\Asset Health Management\tools\apache-maven\bin;C:\Program Files (x86)\Java\jdk1.7.0_17\jre\bin;C:\Program Files (x86)\Java\jdk1.7.0_17\bin;C:\Program Files (x86)\Groovy\Groovy-2.1.1\bin;C:\Jason\android-sdk-windows\tools;C:\Jason\android-sdk-windows\platform-tools;c:\program files (x86)\java\jdk1.7.0_17\jre\bin
      USERNAME=jpwasp
      OS=Windows_NT
      PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 30 Stepping 5, GenuineIntel



      --------------- S Y S T E M ---------------

      OS: Windows 7 , 64 bit Build 7601 Service Pack 1

      CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 30 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht, tsc, tscinvbit

      Memory: 4k page, physical 8313264k(5172744k free), swap 9359984k(5695960k free)

      vm_info: Java HotSpot(TM) Client VM (23.7-b01) for windows-x86 JRE (1.7.0_17-b02), built on Mar 1 2013 05:04:36 by "java_re" with unknown MS VC++:1600

      time: Mon Mar 18 08:03:24 2013
      elapsed time: 4 seconds

            pchelko Petr Pchelko (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: