Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Modeling (top-level project) » EMF model does not update automatically when adding certain elements
EMF model does not update automatically when adding certain elements [message #1818309] Thu, 12 December 2019 09:19 Go to next message
Bart Meyers is currently offline Bart MeyersFriend
Messages: 7
Registered: August 2019
Junior Member
For certain metamodel elements, when instances are created in the EMF editor, the EMF model will not be automatically updated.

I have created a metamodel with three classes, Model, AbstractNode (abstract class), Node.
Two [0..*] compositions, from Model to AbstractNode and from AbstractNode to AbstractNode.

Then, I generated model, edit, editor. Next, I booted up a runtime eclipse, created a Modelling project and added an instance of my metamodel.

I can create multiple Nodes in Model. If I want to create children Nodes in Node, the first one goes fine. If I create a second one though, it is not visualised. If I close and reopen the model, it is visualised correctly.
The following trace is shown:

!ENTRY org.eclipse.e4.ui.workbench 4 0 2019-12-12 10:01:51.972
!MESSAGE Failed to evaluate: WithExpression [variable=activeMenuSelection, children=[AndExpression [children=[CountExpression [ size=1, mode: 4 EXACT], IterateExpression [type=AND, children=[<test property="open" value="true" plug-in activation: lazy/>]]]]]]
!STACK 0
org.eclipse.core.runtime.CoreException: No property tester contributes a property org.eclipse.emf.ecp.core.project.open to type class org.eclipse.core.internal.resources.Project
	at org.eclipse.core.internal.expressions.TypeExtensionManager.getProperty(TypeExtensionManager.java:130)
	at org.eclipse.core.internal.expressions.TestExpression.evaluate(TestExpression.java:100)
	at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:55)
	at org.eclipse.core.internal.expressions.IterateExpression.evaluate(IterateExpression.java:204)
	at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:55)
	at org.eclipse.core.internal.expressions.AndExpression.evaluate(AndExpression.java:34)
	at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:55)
	at org.eclipse.core.internal.expressions.WithExpression.evaluate(WithExpression.java:81)
	at org.eclipse.ui.internal.services.EvaluationReference.evaluate(EvaluationReference.java:74)
	at org.eclipse.ui.internal.services.EvaluationReference.evaluate(EvaluationReference.java:100)
	at org.eclipse.ui.internal.services.EvaluationReference.changed(EvaluationReference.java:94)
	at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:109)
	at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled(EclipseContext.java:364)
	at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseContext.java:379)
	at org.eclipse.ui.internal.services.EvaluationService$1.changed(EvaluationService.java:79)
	at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:109)
	at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled(EclipseContext.java:364)
	at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseContext.java:379)
	at org.eclipse.e4.core.commands.ExpressionContext.addVariable(ExpressionContext.java:86)
	at org.eclipse.ui.internal.services.EvaluationService.changeVariable(EvaluationService.java:149)
	at org.eclipse.ui.internal.services.EvaluationService$3.sourceChanged(EvaluationService.java:125)
	at org.eclipse.ui.AbstractSourceProvider.fireSourceChanged(AbstractSourceProvider.java:84)
	at org.eclipse.ui.internal.services.MenuSourceProvider.addShowingMenus(MenuSourceProvider.java:78)
	at org.eclipse.ui.internal.Workbench.addShowingMenus(Workbench.java:3424)
	at org.eclipse.ui.internal.PopupMenuExtender.menuAboutToShow(PopupMenuExtender.java:349)
	at org.eclipse.jface.action.MenuManager.fireAboutToShow(MenuManager.java:341)
	at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:471)
	at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:466)
	at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:498)
	at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:259)
	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:89)
	at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4131)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1056)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1080)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
	at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:5132)
	at org.eclipse.swt.widgets.Control.windowProc(Control.java:4788)
	at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:348)
	at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1501)
	at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2138)
	at org.eclipse.swt.widgets.Display.windowProc(Display.java:4770)
	at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method)
	at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:253)
	at org.eclipse.swt.widgets.Display.runPopups(Display.java:3985)
	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3541)
	at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:1173)
	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:338)
	at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1062)
	at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:155)
	at org.eclipse.ui.internal.Workbench.lambda$3(Workbench.java:635)
	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:338)
	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:559)
	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
	at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:155)
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:203)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:137)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:107)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:255)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:660)
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:597)
	at org.eclipse.equinox.launcher.Main.run(Main.java:1468)
	at org.eclipse.equinox.launcher.Main.main(Main.java:1441)


Is this error message related to the erroneous behaviour described above?

I attached a sample that is as minimal as possible to recreate the error. I use 2019-06 modelling tools with Sirius and Xtext installed.

Is this a known bug?

Thank you in advance,

Bart
Re: EMF model does not update automatically when adding certain elements [message #1818428 is a reply to message #1818309] Mon, 16 December 2019 07:23 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
Sorry, you've been bitten by this regression:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=548957

EMF release 2.19 (and 2.20) fixed this problem. So updating to 2019-09 (contains EMF 2.19) and regenerating fixes the problem.


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: EMF model does not update automatically when adding certain elements [message #1818429 is a reply to message #1818428] Mon, 16 December 2019 07:25 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
BTW, I don't have ECP in my target platform so I don't see such stack traces when I tested your model. You could ask them about it:

https://www.eclipse.org/ecp/support.html


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: EMF model does not update automatically when adding certain elements [message #1818467 is a reply to message #1818429] Mon, 16 December 2019 21:00 Go to previous messageGo to next message
Bart Meyers is currently offline Bart MeyersFriend
Messages: 7
Registered: August 2019
Junior Member
Thanks for the answer.

The reason why I am sticking to 2019-06 is because I get nasty JVM crashes on 2019-09 when editing fields in the properties tab. But that seems to be a different story. Any ideas by any chance?

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fffa9545edc, pid=22900, tid=0x0000000000004600
#
# JRE version: Java(TM) SE Runtime Environment (8.0_231-b11) (build 1.8.0_231-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.231-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [Oleacc.dll+0x5edc]
#
# 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
# 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 (0x0000000002e9e000):  JavaThread "main" [_thread_in_native, id=17920, stack(0x0000000000d00000,0x0000000000e00000)]

siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000aaf14a

Registers:
RAX=0x00007fffa9550870, RBX=0x000000002e00aaf0, RCX=0x0000000000000000, RDX=0x0000000000aaf14a
RSP=0x0000000000df83b0, RBP=0x0000000000000000, RSI=0x0000000000000000, RDI=0x0000000040000000
R8 =0x000000002e008150, R9 =0x0000000040838158, R10=0x0000000001960b60, R11=0x0000000000000000
R12=0x00000000ffffffff, R13=0x0000000001c91ed9, R14=0x0000000000000000, R15=0x0000000000000000
RIP=0x00007fffa9545edc, EFLAGS=0x0000000000010246

Top of Stack: (sp=0x0000000000df83b0)
0x0000000000df83b0:   0000000002000001 d8c07cf600000020
0x0000000000df83c0:   0000000000000000 0000000029abe270
0x0000000000df83d0:   0000000000000000 00007fffb95babcd
0x0000000000df83e0:   0000000000000000 00007fff2a886d50
0x0000000000df83f0:   000000062a886d10 0000000000000001
0x0000000000df8400:   000000004131e3e0 0000000003f1d138
0x0000000000df8410:   0000000600000000 0000000000000000
0x0000000000df8420:   0000000000000020 0000000000dfe470
0x0000000000df8430:   000081dd17eba698 0000000000000020
0x0000000000df8440:   0000000000000001 0000000a2a886d30
0x0000000000df8450:   0000000000000000 0000000000000002
0x0000000000df8460:   000000002e00ab28 00007fffb95ba6cd
0x0000000000df8470:   000000003b762b70 0000000000000002
0x0000000000df8480:   0000000000000000 0000000000000000
0x0000000000df8490:   0000000000000020 00000000261f0aa0
0x0000000000df84a0:   0000000000ef22b0 000000020000005a 

Instructions: (pc=0x00007fffa9545edc)
0x00007fffa9545ebc:   83 c4 20 5b c3 48 8b cb eb b5 cc cc cc cc cc cc
0x00007fffa9545ecc:   cc cc cc cc 48 83 ec 28 4c 8b c9 33 c9 49 89 08
0x00007fffa9545edc:   48 8b 02 48 2b 05 da 30 04 00 75 0b 48 8b 42 08
0x00007fffa9545eec:   48 2b 05 d5 30 04 00 48 85 c0 0f 84 08 01 00 00 


Register to memory mapping:

RAX=0x00007fffa9550870 is an unknown value
RBX=0x000000002e00aaf0 is an unknown value
RCX=0x0000000000000000 is an unknown value
RDX=0x0000000000aaf14a is an unknown value
RSP=0x0000000000df83b0 is pointing into the stack for thread: 0x0000000002e9e000
RBP=0x0000000000000000 is an unknown value
RSI=0x0000000000000000 is an unknown value
RDI=0x0000000040000000 is pointing into metadata
R8 =0x000000002e008150 is an unknown value
R9 =0x0000000040838158 is an unknown value
R10=0x0000000001960b60 is an unknown value
R11=0x0000000000000000 is an unknown value
R12=0x00000000ffffffff is an unknown value
R13=0x0000000001c91ed9 is an unknown value
R14=0x0000000000000000 is an unknown value
R15=0x0000000000000000 is an unknown value


Stack: [0x0000000000d00000,0x0000000000e00000],  sp=0x0000000000df83b0,  free space=992k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J 5146  org.eclipse.swt.internal.win32.OS.CallWindowProc(JJIJJ)J (0 bytes) @ 0x0000000004508f96 [0x0000000004508f40+0x56]
J 43649 C2 org.eclipse.swt.widgets.Tree.callWindowProc(JIJJ)J (971 bytes) @ 0x000000000ab1ca50 [0x000000000ab1c5e0+0x470]
J 46235 C2 org.eclipse.swt.widgets.Control.windowProc(JIJJ)J (1980 bytes) @ 0x0000000005a01de4 [0x0000000005a016c0+0x724]
J 43951 C2 org.eclipse.swt.widgets.Tree.windowProc(JIJJ)J (1676 bytes) @ 0x0000000009163acc [0x00000000091637a0+0x32c]
J 12440 C2 org.eclipse.swt.widgets.Display.windowProc(JJJJ)J (108 bytes) @ 0x0000000003f1d074 [0x0000000003f1d000+0x74]
v  ~StubRoutines::call_stub
J 5146  org.eclipse.swt.internal.win32.OS.CallWindowProc(JJIJJ)J (0 bytes) @ 0x0000000004508f96 [0x0000000004508f40+0x56]
J 43649 C2 org.eclipse.swt.widgets.Tree.callWindowProc(JIJJ)J (971 bytes) @ 0x000000000ab1ca50 [0x000000000ab1c5e0+0x470]
J 46235 C2 org.eclipse.swt.widgets.Control.windowProc(JIJJ)J (1980 bytes) @ 0x0000000005a01de4 [0x0000000005a016c0+0x724]
J 43951 C2 org.eclipse.swt.widgets.Tree.windowProc(JIJJ)J (1676 bytes) @ 0x0000000009163acc [0x00000000091637a0+0x32c]
J 12440 C2 org.eclipse.swt.widgets.Display.windowProc(JJJJ)J (108 bytes) @ 0x0000000003f1d074 [0x0000000003f1d000+0x74]
v  ~StubRoutines::call_stub
J 5146  org.eclipse.swt.internal.win32.OS.CallWindowProc(JJIJJ)J (0 bytes) @ 0x0000000004508f96 [0x0000000004508f40+0x56]
J 43649 C2 org.eclipse.swt.widgets.Tree.callWindowProc(JIJJ)J (971 bytes) @ 0x000000000ab1ca50 [0x000000000ab1c5e0+0x470]
J 46235 C2 org.eclipse.swt.widgets.Control.windowProc(JIJJ)J (1980 bytes) @ 0x0000000005a01de4 [0x0000000005a016c0+0x724]
J 43951 C2 org.eclipse.swt.widgets.Tree.windowProc(JIJJ)J (1676 bytes) @ 0x0000000009163acc [0x00000000091637a0+0x32c]
J 12440 C2 org.eclipse.swt.widgets.Display.windowProc(JJJJ)J (108 bytes) @ 0x0000000003f1d074 [0x0000000003f1d000+0x74]
v  ~StubRoutines::call_stub
J 46029  org.eclipse.swt.internal.win32.OS.DestroyWindow(J)Z (0 bytes) @ 0x000000000acc5e01 [0x000000000acc5dc0+0x41]
J 46030 C1 org.eclipse.swt.widgets.Control.destroyWidget()V (21 bytes) @ 0x000000000acc5a44 [0x000000000acc5820+0x224]
J 31413 C1 org.eclipse.swt.widgets.Widget.release(Z)V (94 bytes) @ 0x00000000043dec94 [0x00000000043de6e0+0x5b4]
J 32845 C1 org.eclipse.swt.widgets.Widget.dispose()V (27 bytes) @ 0x0000000008e61fac [0x0000000008e61740+0x86c]
j  org.eclipse.jface.viewers.CellEditor.dispose()V+21
j  org.eclipse.ui.views.properties.PropertySheetEntry.setDescriptor(Lorg/eclipse/ui/views/properties/IPropertyDescriptor;)V+19
j  org.eclipse.ui.views.properties.PropertySheetEntry.refreshChildEntries()V+182
j  org.eclipse.ui.views.properties.PropertySheetEntry.refreshFromRoot()V+8
j  org.eclipse.ui.views.properties.PropertySheetEntry.refreshFromRoot()V+18
j  org.eclipse.ui.views.properties.PropertySheetEntry.setValue(Ljava/lang/Object;)V+33
j  org.eclipse.ui.views.properties.PropertySheetEntry.applyEditorValue()V+94
j  org.eclipse.emf.edit.ui.view.ExtendedPropertySheetPage$ExtendedPropertySheetEntry.applyEditorValue()V+18
j  org.eclipse.ui.views.properties.PropertySheetEntry$1.applyEditorValue()V+4
j  org.eclipse.jface.viewers.CellEditor$1.run()V+4
J 45180 C2 org.eclipse.jface.util.SafeRunnable.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V (10 bytes) @ 0x00000000040b6c24 [0x00000000040b6be0+0x44]
j  org.eclipse.jface.viewers.CellEditor.fireApplyEditorValue()V+30
j  org.eclipse.jface.viewers.TextCellEditor.handleDefaultSelection(Lorg/eclipse/swt/events/SelectionEvent;)V+1
j  org.eclipse.jface.viewers.TextCellEditor.lambda$0(Lorg/eclipse/swt/events/SelectionEvent;)V+2
j  org.eclipse.jface.viewers.TextCellEditor$$Lambda$1025.accept(Ljava/lang/Object;)V+8
j  org.eclipse.swt.events.SelectionListener$2.widgetDefaultSelected(Lorg/eclipse/swt/events/SelectionEvent;)V+5
J 46050 C2 org.eclipse.swt.widgets.TypedListener.handleEvent(Lorg/eclipse/swt/widgets/Event;)V (1291 bytes) @ 0x0000000009dc1cc8 [0x0000000009dc0840+0x1488]
J 30894 C2 org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V (592 bytes) @ 0x00000000081dbaa0 [0x00000000081db9e0+0xc0]
J 46521 C2 org.eclipse.swt.widgets.Display.readAndDispatch()Z (94 bytes) @ 0x000000000443a210 [0x0000000004439d80+0x490]
j  org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run()V+564
j  org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j  org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(Lorg/eclipse/e4/ui/model/application/MApplicationElement;Lorg/eclipse/e4/core/contexts/IEclipseContext;)Ljava/lang/Object;+57
j  org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(Lorg/eclipse/e4/ui/model/application/MApplicationElement;)V+20
j  org.eclipse.ui.internal.Workbench.lambda$3(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;[I)V+379
j  org.eclipse.ui.internal.Workbench$$Lambda$25.run()V+12
j  org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j  org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+16
j  org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j  org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+113
j  org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+138
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+85
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+82
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+105
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+132
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;+100
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;+56
j  org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+201
j  org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+159
j  org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
v  ~StubRoutines::call_stub

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

Java Threads: ( => current thread )
  0x0000000021248800 JavaThread "Worker-16" [_thread_blocked, id=12292, stack(0x000000002a430000,0x000000002a530000)]
  0x000000002124a000 JavaThread "Worker-15" [_thread_blocked, id=16680, stack(0x000000002a210000,0x000000002a310000)]
  0x000000002f9f3800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=7048, stack(0x0000000041eb0000,0x0000000041fb0000)]
  0x000000002f9eb800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=16412, stack(0x0000000041c70000,0x0000000041d70000)]
  0x0000000027073000 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=22156, stack(0x0000000026400000,0x0000000026500000)]
  0x0000000021244800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=12556, stack(0x0000000040630000,0x0000000040730000)]
  0x0000000034d60000 JavaThread "ParallelGenerator-3" [_thread_blocked, id=20924, stack(0x000000003e5e0000,0x000000003e6e0000)]
  0x0000000034d5e000 JavaThread "ParallelGenerator-2" [_thread_blocked, id=8484, stack(0x000000003e4e0000,0x000000003e5e0000)]
  0x0000000034d61000 JavaThread "ParallelGenerator-1" [_thread_blocked, id=23344, stack(0x000000003e100000,0x000000003e200000)]
  0x0000000034d5d000 JavaThread "ParallelGenerator-0" [_thread_blocked, id=7992, stack(0x000000003cdc0000,0x000000003cec0000)]
  0x0000000027071000 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=3620, stack(0x000000003e9e0000,0x000000003eae0000)]
  0x0000000027078800 JavaThread "Worker-5" [_thread_blocked, id=3228, stack(0x000000003a390000,0x000000003a490000)]
  0x0000000027077800 JavaThread "Worker-1" [_thread_blocked, id=20964, stack(0x0000000039f90000,0x000000003a090000)]
  0x000000002707b800 JavaThread "EventAdmin Async Event Dispatcher Thread" daemon [_thread_blocked, id=17448, stack(0x0000000037720000,0x0000000037820000)]
  0x000000002707d000 JavaThread "Thread-6" daemon [_thread_blocked, id=21400, stack(0x0000000034620000,0x0000000034720000)]
  0x0000000027076000 JavaThread "com.google.inject.internal.util.$Finalizer" daemon [_thread_blocked, id=20228, stack(0x0000000032d90000,0x0000000032e90000)]
  0x000000002706e800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=9012, stack(0x0000000032510000,0x0000000032610000)]
  0x0000000027075800 JavaThread "Java indexing" daemon [_thread_blocked, id=10288, stack(0x0000000031280000,0x0000000031380000)]
  0x0000000021526800 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=10148, stack(0x0000000026d30000,0x0000000026e30000)]
  0x0000000021529800 JavaThread "Gogo shell" [_thread_blocked, id=22160, stack(0x0000000025de0000,0x0000000025ee0000)]
  0x0000000021525800 JavaThread "EMF Reference Cleaner" daemon [_thread_blocked, id=5292, stack(0x00000000249e0000,0x0000000024ae0000)]
  0x0000000021528800 JavaThread "Worker-JM" [_thread_blocked, id=19544, stack(0x0000000024b10000,0x0000000024c10000)]
  0x00000000215aa000 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=9036, stack(0x00000000228d0000,0x00000000229d0000)]
  0x00000000218fa000 JavaThread "Start Level: Equinox Container: ad25426a-6c85-417d-8cc2-c83539d36a92" daemon [_thread_blocked, id=11600, stack(0x00000000227d0000,0x00000000228d0000)]
  0x000000002145b000 JavaThread "Framework Event Dispatcher: Equinox Container: ad25426a-6c85-417d-8cc2-c83539d36a92" daemon [_thread_blocked, id=21388, stack(0x00000000226d0000,0x00000000227d0000)]
  0x000000002151f000 JavaThread "Active Thread: Equinox Container: ad25426a-6c85-417d-8cc2-c83539d36a92" [_thread_blocked, id=7936, stack(0x00000000225d0000,0x00000000226d0000)]
  0x000000001ec78000 JavaThread "Service Thread" daemon [_thread_blocked, id=19680, stack(0x000000001f7b0000,0x000000001f8b0000)]
  0x000000001ec15000 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=1404, stack(0x000000001f6b0000,0x000000001f7b0000)]
  0x000000001ebeb800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=12304, stack(0x000000001f5b0000,0x000000001f6b0000)]
  0x000000001ebe6800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=9276, stack(0x000000001f4b0000,0x000000001f5b0000)]
  0x000000001ebde000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=17676, stack(0x000000001f3b0000,0x000000001f4b0000)]
  0x000000001ebd8800 JavaThread "Attach Listener" daemon [_thread_blocked, id=18468, stack(0x000000001f2b0000,0x000000001f3b0000)]
  0x000000001ebd7800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=18592, stack(0x000000001f1b0000,0x000000001f2b0000)]
  0x000000001ebd0800 JavaThread "Finalizer" daemon [_thread_blocked, id=16980, stack(0x000000001efb0000,0x000000001f0b0000)]
  0x00000000034b9000 JavaThread "Reference Handler" daemon [_thread_blocked, id=4472, stack(0x000000001eab0000,0x000000001ebb0000)]
=>0x0000000002e9e000 JavaThread "main" [_thread_in_native, id=17920, stack(0x0000000000d00000,0x0000000000e00000)]

Other Threads:
  0x000000001cca9000 VMThread [stack: 0x000000001e9b0000,0x000000001eab0000] [id=7764]
  0x000000001ec9b800 WatcherThread [stack: 0x000000001f8b0000,0x000000001f9b0000] [id=6780]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

heap address: 0x00000006c6000000, size: 4000 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
Compressed class space size: 1073741824 Address: 0x00000007c0000000

Heap:
 PSYoungGen      total 792064K, used 415660K [0x000000076cb00000, 0x00000007a6800000, 0x00000007c0000000)
  eden space 672256K, 46% used [0x000000076cb00000,0x000000077fe8ad50,0x0000000795b80000)
  from space 119808K, 84% used [0x0000000795b80000,0x000000079bde03c8,0x000000079d080000)
  to   space 125952K, 0% used [0x000000079ed00000,0x000000079ed00000,0x00000007a6800000)
 ParOldGen       total 939520K, used 176061K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0bef428,0x00000006ff580000)
 Metaspace       used 192815K, capacity 216168K, committed 216320K, reserved 1234944K
  class space    used 23352K, capacity 29882K, committed 29952K, reserved 1048576K

Card table byte_map: [0x0000000012880000,0x0000000013060000] byte_map_base: 0x000000000f250000

Marking Bits: (ParMarkBitMap*) 0x0000000076d46d90
 Begin Bits: [0x0000000013da0000, 0x0000000017c20000)
 End Bits:   [0x0000000017c20000, 0x000000001baa0000)

Polling page: 0x0000000002e80000

CodeCache: size=245760Kb used=124943Kb max_used=124943Kb free=120816Kb
 bounds [0x00000000034c0000, 0x000000000af80000, 0x00000000124c0000]
 total_blobs=32112 nmethods=31131 adapters=885
 compilation: enabled

Compilation events (10 events):
Event: 482.034 Thread 0x000000001ebde000 46612       4       org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering::drawCutout (145 bytes)
Event: 482.043 Thread 0x000000001ebde000 nmethod 46612 0x0000000008f346d0 code [0x0000000008f348c0, 0x0000000008f34f60]
Event: 482.743 Thread 0x000000001ec15000 46613       3       org.eclipse.swt.widgets.Text::WM_ERASEBKGND (129 bytes)
Event: 482.744 Thread 0x000000001ec15000 nmethod 46613 0x000000000a5cb010 code [0x000000000a5cb200, 0x000000000a5cbb88]
Event: 482.882 Thread 0x000000001ec15000 46614       3       org.eclipse.swt.widgets.Text::untranslateOffset (43 bytes)
Event: 482.883 Thread 0x000000001ec15000 nmethod 46614 0x0000000009ac6f10 code [0x0000000009ac7080, 0x0000000009ac7310]
Event: 488.485 Thread 0x000000001ec15000 46615 %     3       org.eclipse.emf.ecore.util.BasicEAnnotationValidator::getProperties @ 50 (114 bytes)
Event: 488.486 Thread 0x000000001ec15000 nmethod 46615% 0x0000000009b3abd0 code [0x0000000009b3ae80, 0x0000000009b3c278]
Event: 488.508 Thread 0x000000001ec15000 46616       3       org.eclipse.e4.ui.css.core.dom.properties.css2.CSS2FontPropertiesImpl::setSize (6 bytes)
Event: 488.509 Thread 0x000000001ec15000 nmethod 46616 0x0000000008f34390 code [0x0000000008f344e0, 0x0000000008f34650]

GC Heap History (10 events):
Event: 116.362 GC heap before
{Heap before GC invocations=30 (full 5):
 PSYoungGen      total 730624K, used 701691K [0x000000076cb00000, 0x000000079f980000, 0x00000007c0000000)
  eden space 629248K, 100% used [0x000000076cb00000,0x0000000793180000,0x0000000793180000)
  from space 101376K, 71% used [0x0000000799600000,0x000000079dcbeee8,0x000000079f900000)
  to   space 102400K, 0% used [0x0000000793180000,0x0000000793180000,0x0000000799580000)
 ParOldGen       total 939520K, used 176021K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0be5428,0x00000006ff580000)
 Metaspace       used 184939K, capacity 208144K, committed 208256K, reserved 1228800K
  class space    used 22622K, capacity 29056K, committed 29056K, reserved 1048576K
Event: 116.417 GC heap after
Heap after GC invocations=30 (full 5):
 PSYoungGen      total 731648K, used 92527K [0x000000076cb00000, 0x00000007a2380000, 0x00000007c0000000)
  eden space 629248K, 0% used [0x000000076cb00000,0x000000076cb00000,0x0000000793180000)
  from space 102400K, 90% used [0x0000000793180000,0x0000000798bdbfe8,0x0000000799580000)
  to   space 110080K, 0% used [0x000000079b800000,0x000000079b800000,0x00000007a2380000)
 ParOldGen       total 939520K, used 176029K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0be7428,0x00000006ff580000)
 Metaspace       used 184939K, capacity 208144K, committed 208256K, reserved 1228800K
  class space    used 22622K, capacity 29056K, committed 29056K, reserved 1048576K
}
Event: 121.237 GC heap before
{Heap before GC invocations=31 (full 5):
 PSYoungGen      total 731648K, used 721775K [0x000000076cb00000, 0x00000007a2380000, 0x00000007c0000000)
  eden space 629248K, 100% used [0x000000076cb00000,0x0000000793180000,0x0000000793180000)
  from space 102400K, 90% used [0x0000000793180000,0x0000000798bdbfe8,0x0000000799580000)
  to   space 110080K, 0% used [0x000000079b800000,0x000000079b800000,0x00000007a2380000)
 ParOldGen       total 939520K, used 176029K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0be7428,0x00000006ff580000)
 Metaspace       used 185207K, capacity 208412K, committed 208512K, reserved 1228800K
  class space    used 22624K, capacity 29056K, committed 29056K, reserved 1048576K
Event: 121.308 GC heap after
Heap after GC invocations=31 (full 5):
 PSYoungGen      total 761344K, used 91933K [0x000000076cb00000, 0x00000007a3080000, 0x00000007c0000000)
  eden space 651264K, 0% used [0x000000076cb00000,0x000000076cb00000,0x0000000794700000)
  from space 110080K, 83% used [0x000000079b800000,0x00000007a11c7760,0x00000007a2380000)
  to   space 115712K, 0% used [0x0000000794700000,0x0000000794700000,0x000000079b800000)
 ParOldGen       total 939520K, used 176037K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0be9428,0x00000006ff580000)
 Metaspace       used 185207K, capacity 208412K, committed 208512K, reserved 1228800K
  class space    used 22624K, capacity 29056K, committed 29056K, reserved 1048576K
}
Event: 176.807 GC heap before
{Heap before GC invocations=32 (full 5):
 PSYoungGen      total 761344K, used 743197K [0x000000076cb00000, 0x00000007a3080000, 0x00000007c0000000)
  eden space 651264K, 100% used [0x000000076cb00000,0x0000000794700000,0x0000000794700000)
  from space 110080K, 83% used [0x000000079b800000,0x00000007a11c7760,0x00000007a2380000)
  to   space 115712K, 0% used [0x0000000794700000,0x0000000794700000,0x000000079b800000)
 ParOldGen       total 939520K, used 176037K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0be9428,0x00000006ff580000)
 Metaspace       used 186295K, capacity 209566K, committed 209664K, reserved 1230848K
  class space    used 22660K, capacity 29127K, committed 29184K, reserved 1048576K
Event: 176.855 GC heap after
Heap after GC invocations=32 (full 5):
 PSYoungGen      total 766976K, used 79974K [0x000000076cb00000, 0x00000007a4200000, 0x00000007c0000000)
  eden space 651264K, 0% used [0x000000076cb00000,0x000000076cb00000,0x0000000794700000)
  from space 115712K, 69% used [0x0000000794700000,0x0000000799519920,0x000000079b800000)
  to   space 116224K, 0% used [0x000000079d080000,0x000000079d080000,0x00000007a4200000)
 ParOldGen       total 939520K, used 176045K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0beb428,0x00000006ff580000)
 Metaspace       used 186295K, capacity 209566K, committed 209664K, reserved 1230848K
  class space    used 22660K, capacity 29127K, committed 29184K, reserved 1048576K
}
Event: 180.724 GC heap before
{Heap before GC invocations=33 (full 5):
 PSYoungGen      total 766976K, used 731238K [0x000000076cb00000, 0x00000007a4200000, 0x00000007c0000000)
  eden space 651264K, 100% used [0x000000076cb00000,0x0000000794700000,0x0000000794700000)
  from space 115712K, 69% used [0x0000000794700000,0x0000000799519920,0x000000079b800000)
  to   space 116224K, 0% used [0x000000079d080000,0x000000079d080000,0x00000007a4200000)
 ParOldGen       total 939520K, used 176045K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0beb428,0x00000006ff580000)
 Metaspace       used 186593K, capacity 209782K, committed 209920K, reserved 1230848K
  class space    used 22667K, capacity 29131K, committed 29184K, reserved 1048576K
Event: 180.780 GC heap after
Heap after GC invocations=33 (full 5):
 PSYoungGen      total 788480K, used 90436K [0x000000076cb00000, 0x00000007a4c80000, 0x00000007c0000000)
  eden space 672256K, 0% used [0x000000076cb00000,0x000000076cb00000,0x0000000795b80000)
  from space 116224K, 77% used [0x000000079d080000,0x00000007a28d1228,0x00000007a4200000)
  to   space 119808K, 0% used [0x0000000795b80000,0x0000000795b80000,0x000000079d080000)
 ParOldGen       total 939520K, used 176053K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0bed428,0x00000006ff580000)
 Metaspace       used 186593K, capacity 209782K, committed 209920K, reserved 1230848K
  class space    used 22667K, capacity 29131K, committed 29184K, reserved 1048576K
}
Event: 292.301 GC heap before
{Heap before GC invocations=34 (full 5):
 PSYoungGen      total 788480K, used 762692K [0x000000076cb00000, 0x00000007a4c80000, 0x00000007c0000000)
  eden space 672256K, 100% used [0x000000076cb00000,0x0000000795b80000,0x0000000795b80000)
  from space 116224K, 77% used [0x000000079d080000,0x00000007a28d1228,0x00000007a4200000)
  to   space 119808K, 0% used [0x0000000795b80000,0x0000000795b80000,0x000000079d080000)
 ParOldGen       total 939520K, used 176053K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0bed428,0x00000006ff580000)
 Metaspace       used 191236K, capacity 214708K, committed 214912K, reserved 1234944K
  class space    used 23185K, capacity 29731K, committed 29824K, reserved 1048576K
Event: 292.349 GC heap after
Heap after GC invocations=34 (full 5):
 PSYoungGen      total 792064K, used 100736K [0x000000076cb00000, 0x00000007a6800000, 0x00000007c0000000)
  eden space 672256K, 0% used [0x000000076cb00000,0x000000076cb00000,0x0000000795b80000)
  from space 119808K, 84% used [0x0000000795b80000,0x000000079bde03c8,0x000000079d080000)
  to   space 125952K, 0% used [0x000000079ed00000,0x000000079ed00000,0x00000007a6800000)
 ParOldGen       total 939520K, used 176061K [0x00000006c6000000, 0x00000006ff580000, 0x000000076cb00000)
  object space 939520K, 18% used [0x00000006c6000000,0x00000006d0bef428,0x00000006ff580000)
 Metaspace       used 191236K, capacity 214708K, committed 214912K, reserved 1234944K
  class space    used 23185K, capacity 29731K, committed 29824K, reserved 1048576K
}

Deoptimization events (10 events):
Event: 462.277 Thread 0x0000000027077800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004267754 method=org.eclipse.emf.ecore.util.Diagnostician.doValidate(Lorg/eclipse/emf/ecore/EValidator;Lorg/eclipse/emf/ecore/EClass;Lorg/eclipse/emf/ecore/EObject;Lorg/eclipse/emf/commo
Event: 462.297 Thread 0x0000000027077800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003b06b30 method=org.eclipse.emf.ecore.impl.EModelElementImpl.eObjectForURIFragmentSegment(Ljava/lang/String;)Lorg/eclipse/emf/ecore/EObject; @ 142
Event: 462.297 Thread 0x0000000027077800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003b06b30 method=org.eclipse.emf.ecore.impl.EModelElementImpl.eObjectForURIFragmentSegment(Ljava/lang/String;)Lorg/eclipse/emf/ecore/EObject; @ 142
Event: 462.297 Thread 0x0000000027077800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003b06b30 method=org.eclipse.emf.ecore.impl.EModelElementImpl.eObjectForURIFragmentSegment(Ljava/lang/String;)Lorg/eclipse/emf/ecore/EObject; @ 142
Event: 462.297 Thread 0x0000000027077800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000003b06b30 method=org.eclipse.emf.ecore.impl.EModelElementImpl.eObjectForURIFragmentSegment(Ljava/lang/String;)Lorg/eclipse/emf/ecore/EObject; @ 142
Event: 463.292 Thread 0x0000000002e9e000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000006628a3c method=java.io.ExpiringCache.entryFor(Ljava/lang/String;)Ljava/io/ExpiringCache$Entry; @ 39
Event: 474.774 Thread 0x0000000002e9e000 Uncommon trap: reason=null_check action=make_not_entrant pc=0x0000000005abea60 method=org.eclipse.jface.action.Action.setToolTipText(Ljava/lang/String;)V @ 18
Event: 480.325 Thread 0x0000000002e9e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000005a1c568 method=org.eclipse.swt.graphics.Resource.getDevice()Lorg/eclipse/swt/graphics/Device; @ 10
Event: 480.326 Thread 0x0000000002e9e000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000005a1c568 method=org.eclipse.swt.graphics.Resource.getDevice()Lorg/eclipse/swt/graphics/Device; @ 10
Event: 490.010 Thread 0x0000000002e9e000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000009dc303c method=org.eclipse.swt.widgets.TypedListener.handleEvent(Lorg/eclipse/swt/widgets/Event;)V @ 1224

Classes redefined (0 events):
No events

Internal exceptions (10 events):
Event: 314.826 Thread 0x0000000027077000 Implicit null exception at 0x0000000006ce2eb1 to 0x0000000006ce3b01
Event: 314.827 Thread 0x0000000027077000 Implicit null exception at 0x0000000006ce2eb1 to 0x0000000006ce3b01
Event: 314.827 Thread 0x0000000027077000 Implicit null exception at 0x0000000005130cd0 to 0x000000000513129d
Event: 314.829 Thread 0x0000000027077000 Implicit null exception at 0x000000000364eb46 to 0x000000000364f131
Event: 316.543 Thread 0x0000000002e9e000 Implicit null exception at 0x0000000007322d85 to 0x00000000073236f5
Event: 317.506 Thread 0x000000002f9f7800 Exception <a 'java/lang/InterruptedException'> (0x000000077728e218) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u231\13620\hotspot\src\share\vm\runtime\objectMonitor.cpp, line 1684]
Event: 370.941 Thread 0x0000000002e9e000 Implicit null exception at 0x000000000549befe to 0x000000000549c055
Event: 392.001 Thread 0x0000000002e9e000 Exception <a 'java/lang/ClassCastException': org.eclipse.jdt.internal.core.LocalVariable cannot be cast to org.eclipse.jdt.core.IMember> (0x0000000779e024a8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u231\13620\hotspot\src\share\vm\int
Event: 461.655 Thread 0x0000000021244000 Exception <a 'sun/nio/fs/WindowsException'> (0x000000077bf03ca0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u231\13620\hotspot\src\share\vm\prims\jni.cpp, line 710]
Event: 474.774 Thread 0x0000000002e9e000 Implicit null exception at 0x0000000005abe845 to 0x0000000005abea4d

Events (10 events):
Event: 480.325 Thread 0x0000000002e9e000 DEOPT PACKING pc=0x0000000005a1c568 sp=0x0000000000dfdde0
Event: 480.325 Thread 0x0000000002e9e000 DEOPT UNPACKING pc=0x000000000350583b sp=0x0000000000dfdd80 mode 2
Event: 480.326 Thread 0x0000000002e9e000 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x0000000005a1c568
Event: 480.326 Thread 0x0000000002e9e000 DEOPT PACKING pc=0x0000000005a1c568 sp=0x0000000000dfdde0
Event: 480.326 Thread 0x0000000002e9e000 DEOPT UNPACKING pc=0x000000000350583b sp=0x0000000000dfdd80 mode 2
Event: 481.916 Thread 0x0000000002e9e000 DEOPT PACKING pc=0x00000000083d2f94 sp=0x0000000000dfd8c0
Event: 481.916 Thread 0x0000000002e9e000 DEOPT UNPACKING pc=0x0000000003507890 sp=0x0000000000dfd610 mode 0
Event: 490.010 Thread 0x0000000002e9e000 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000009dc303c
Event: 490.010 Thread 0x0000000002e9e000 DEOPT PACKING pc=0x0000000009dc303c sp=0x0000000000dfe150
Event: 490.010 Thread 0x0000000002e9e000 DEOPT UNPACKING pc=0x000000000350583b sp=0x0000000000dfe130 mode 2


Dynamic libraries:
0x00007ff7d2250000 - 0x00007ff7d22ba000 	C:\Users\Bart\ide-latest-released\eclipse\eclipse.exe
0x00007fffbab60000 - 0x00007fffbad50000 	C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007fffba090000 - 0x00007fffba142000 	C:\WINDOWS\System32\KERNEL32.DLL
0x00007fffb88d0000 - 0x00007fffb8b73000 	C:\WINDOWS\System32\KERNELBASE.dll
0x00007fffb9d60000 - 0x00007fffb9ef4000 	C:\WINDOWS\System32\USER32.dll
0x00007fffb7af0000 - 0x00007fffb7b11000 	C:\WINDOWS\System32\win32u.dll
0x00007fffb8e60000 - 0x00007fffb8e86000 	C:\WINDOWS\System32\GDI32.dll
0x00007fffb8560000 - 0x00007fffb86f4000 	C:\WINDOWS\System32\gdi32full.dll
0x00007fffb84c0000 - 0x00007fffb855e000 	C:\WINDOWS\System32\msvcp_win.dll
0x00007fffb7b70000 - 0x00007fffb7c6a000 	C:\WINDOWS\System32\ucrtbase.dll
0x00007fffa95d0000 - 0x00007fffa9855000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.418_none_e6c6b287130d565d\COMCTL32.dll
0x00007fffb9bc0000 - 0x00007fffb9c5e000 	C:\WINDOWS\System32\msvcrt.dll
0x00007fffba460000 - 0x00007fffba796000 	C:\WINDOWS\System32\combase.dll
0x00007fffba150000 - 0x00007fffba270000 	C:\WINDOWS\System32\RPCRT4.dll
0x00007fffb8850000 - 0x00007fffb88d0000 	C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007fffba430000 - 0x00007fffba45e000 	C:\WINDOWS\System32\IMM32.DLL
0x00007fffb0b40000 - 0x00007fffb0b69000 	C:\Users\Bart\.p2\pool\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\eclipse_1902.dll
0x00007fffb8db0000 - 0x00007fffb8e53000 	C:\WINDOWS\System32\ADVAPI32.dll
0x00007fffba950000 - 0x00007fffba9e7000 	C:\WINDOWS\System32\sechost.dll
0x00007fffaffc0000 - 0x00007fffaffca000 	C:\WINDOWS\SYSTEM32\VERSION.dll
0x0000000076520000 - 0x0000000076dc6000 	C:\Program Files\Java\jre1.8.0_231\bin\server\jvm.dll
0x00007fffb9d50000 - 0x00007fffb9d58000 	C:\WINDOWS\System32\PSAPI.DLL
0x00007fffafee0000 - 0x00007fffaff04000 	C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007fffa38a0000 - 0x00007fffa38a9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00000000774f0000 - 0x00000000775c2000 	C:\WINDOWS\SYSTEM32\MSVCR100.dll
0x00007fffb8ce0000 - 0x00007fffb8d4f000 	C:\WINDOWS\System32\WS2_32.dll
0x00007fffafd70000 - 0x00007fffafd9d000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007fffb7b20000 - 0x00007fffb7b6a000 	C:\WINDOWS\System32\cfgmgr32.dll
0x00007fffb1240000 - 0x00007fffb124f000 	C:\Program Files\Java\jre1.8.0_231\bin\verify.dll
0x00007fffafe40000 - 0x00007fffafe69000 	C:\Program Files\Java\jre1.8.0_231\bin\java.dll
0x00007fffb0b20000 - 0x00007fffb0b36000 	C:\Program Files\Java\jre1.8.0_231\bin\zip.dll
0x00007fffb8e90000 - 0x00007fffb9575000 	C:\WINDOWS\System32\SHELL32.dll
0x00007fffb9fe0000 - 0x00007fffba089000 	C:\WINDOWS\System32\shcore.dll
0x00007fffb7c90000 - 0x00007fffb840f000 	C:\WINDOWS\System32\windows.storage.dll
0x00007fffb7ad0000 - 0x00007fffb7aef000 	C:\WINDOWS\System32\profapi.dll
0x00007fffb7a60000 - 0x00007fffb7aaa000 	C:\WINDOWS\System32\powrprof.dll
0x00007fffb7a30000 - 0x00007fffb7a40000 	C:\WINDOWS\System32\UMPDC.dll
0x00007fffb8d50000 - 0x00007fffb8da2000 	C:\WINDOWS\System32\shlwapi.dll
0x00007fffb7a40000 - 0x00007fffb7a51000 	C:\WINDOWS\System32\kernel.appcore.dll
0x00007fffb7c70000 - 0x00007fffb7c87000 	C:\WINDOWS\System32\cryptsp.dll
0x00007fffb6e10000 - 0x00007fffb6e43000 	C:\WINDOWS\system32\rsaenh.dll
0x00007fffb8b80000 - 0x00007fffb8ba6000 	C:\WINDOWS\System32\bcrypt.dll
0x00007fffb7950000 - 0x00007fffb7975000 	C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007fffb7470000 - 0x00007fffb747c000 	C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007fffafdb0000 - 0x00007fffafdca000 	C:\Program Files\Java\jre1.8.0_231\bin\net.dll
0x00007fffb72a0000 - 0x00007fffb7307000 	C:\WINDOWS\system32\mswsock.dll
0x00007fffb6fb0000 - 0x00007fffb6fea000 	C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007fffb9580000 - 0x00007fffb9588000 	C:\WINDOWS\System32\NSI.dll
0x00007fffabcd0000 - 0x00007fffabce6000 	C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007fffabec0000 - 0x00007fffabedc000 	C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x00007fffb6ff0000 - 0x00007fffb70ba000 	C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007fffad930000 - 0x00007fffad942000 	C:\Program Files\Java\jre1.8.0_231\bin\nio.dll
0x00007fffb28b0000 - 0x00007fffb2949000 	C:\WINDOWS\system32\uxtheme.dll
0x00007fffb9590000 - 0x00007fffb96c6000 	C:\WINDOWS\System32\MSCTF.dll
0x00007fffb9c80000 - 0x00007fffb9d44000 	C:\WINDOWS\System32\OLEAUT32.dll
0x00007fffb02a0000 - 0x00007fffb033e000 	C:\WINDOWS\System32\TextInputFramework.dll
0x00007fffaf640000 - 0x00007fffaf714000 	C:\WINDOWS\System32\CoreMessaging.dll
0x00007fffab700000 - 0x00007fffaba2a000 	C:\WINDOWS\System32\CoreUIComponents.dll
0x00007fffb6ba0000 - 0x00007fffb6bd1000 	C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007fffb1ca0000 - 0x00007fffb1df3000 	C:\WINDOWS\SYSTEM32\wintypes.dll
0x00007fffa3ba0000 - 0x00007fffa3e46000 	C:\WINDOWS\System32\iertutil.dll
0x00007fffa9540000 - 0x00007fffa95a5000 	C:\WINDOWS\system32\Oleacc.dll
0x00007fff923d0000 - 0x00007fff92466000 	C:\Users\Bart\ide-latest-released\eclipse\configuration\org.eclipse.osgi\4235\0\.cp\swt-win32-4928r15.dll
0x00007fffba270000 - 0x00007fffba3c6000 	C:\WINDOWS\System32\ole32.dll
0x00007fffb9f10000 - 0x00007fffb9fe0000 	C:\WINDOWS\System32\COMDLG32.dll
0x00007fffb8700000 - 0x00007fffb8849000 	C:\WINDOWS\System32\CRYPT32.dll
0x00007fffb7ab0000 - 0x00007fffb7ac2000 	C:\WINDOWS\System32\MSASN1.dll
0x00007fffb1460000 - 0x00007fffb1479000 	C:\WINDOWS\SYSTEM32\USP10.dll
0x00007fffa9860000 - 0x00007fffa98e9000 	C:\WINDOWS\SYSTEM32\WINSPOOL.DRV
0x00007fff96b80000 - 0x00007fff97056000 	C:\WINDOWS\SYSTEM32\WININET.dll
0x00007fffb2410000 - 0x00007fffb24ff000 	C:\WINDOWS\SYSTEM32\PROPSYS.dll
0x00007fffa4e60000 - 0x00007fffa5036000 	C:\WINDOWS\SYSTEM32\urlmon.dll
0x00007fffa98f0000 - 0x00007fffa98f7000 	C:\WINDOWS\SYSTEM32\MSIMG32.dll
0x00007fffbaa70000 - 0x00007fffbab12000 	C:\WINDOWS\System32\clbcatq.dll
0x00007fffa0d50000 - 0x00007fffa0ee5000 	C:\Windows\System32\TaskFlowDataEngine.dll
0x00007fff9d950000 - 0x00007fff9de94000 	C:\Windows\System32\cdp.dll
0x00007fffaf200000 - 0x00007fffaf2cf000 	C:\Windows\System32\dsreg.dll
0x00007fffb1f00000 - 0x00007fffb1f8a000 	C:\Windows\System32\msvcp110_win.dll
0x00007fff96a70000 - 0x00007fff96ae9000 	C:\Windows\System32\OneCoreCommonProxyStub.dll
0x00007fffa2420000 - 0x00007fffa2446000 	C:\Users\Bart\ide-latest-released\eclipse\configuration\org.eclipse.osgi\4235\0\.cp\swt-gdip-win32-4928r15.dll
0x00007fffa9900000 - 0x00007fffa9aa3000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.18362.418_none_17b1a56c6d9fd02b\gdiplus.dll
0x00007fffb26b0000 - 0x00007fffb285f000 	C:\WINDOWS\SYSTEM32\WindowsCodecs.dll
0x0000000180000000 - 0x0000000180012000 	C:\Users\Bart\ide-latest-released\eclipse\configuration\org.eclipse.osgi\3637\0\.cp\os\win32\x86_64\localfile_1_0_0.dll
0x00007fff8ffa0000 - 0x00007fff9029e000 	C:\WINDOWS\SYSTEM32\DWrite.dll
0x00007fff8bc60000 - 0x00007fff8bc9a000 	C:\WINDOWS\system32\dataexchange.dll
0x00007fffaf000000 - 0x00007fffaf1db000 	C:\WINDOWS\system32\dcomp.dll
0x00007fffb0e70000 - 0x00007fffb10cb000 	C:\WINDOWS\system32\d3d11.dll
0x00007fffb6730000 - 0x00007fffb681b000 	C:\WINDOWS\system32\dxgi.dll
0x00007fffb66a0000 - 0x00007fffb66c0000 	C:\WINDOWS\SYSTEM32\dxcore.dll
0x00007fffb2980000 - 0x00007fffb2bda000 	C:\WINDOWS\system32\twinapi.appcore.dll
0x00007fffb2e90000 - 0x00007fffb2eb9000 	C:\WINDOWS\system32\RMCLIENT.dll
0x00007fffa5740000 - 0x00007fffa5751000 	C:\Users\Bart\ide-latest-released\eclipse\configuration\org.eclipse.osgi\3640\0\.cp\jWinHttp-1.0.0.dll
0x00007fffa9df0000 - 0x00007fffa9ee0000 	C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007fff8b1e0000 - 0x00007fff8b221000 	C:\WINDOWS\system32\mlang.dll
0x00007fff8ba30000 - 0x00007fff8bc35000 	C:\WINDOWS\system32\explorerframe.dll
0x00007fff9eea0000 - 0x00007fff9eec4000 	C:\Program Files\Java\jre1.8.0_231\bin\sunec.dll
0x00007fffa4e50000 - 0x00007fffa4e5a000 	C:\Windows\System32\rasadhlp.dll
0x00007fffab3a0000 - 0x00007fffab417000 	C:\WINDOWS\System32\fwpuclnt.dll
0x00007fffa3810000 - 0x00007fffa3826000 	C:\WINDOWS\system32\napinsp.dll
0x00007fffa3120000 - 0x00007fffa313a000 	C:\WINDOWS\system32\pnrpnsp.dll
0x00007fffa3110000 - 0x00007fffa311e000 	C:\WINDOWS\System32\winrnr.dll
0x00007fffafa70000 - 0x00007fffafa8c000 	C:\WINDOWS\system32\NLAapi.dll
0x00007fffb18a0000 - 0x00007fffb18b5000 	C:\WINDOWS\system32\wshbth.dll
0x00007fff99730000 - 0x00007fff99753000 	C:\WINDOWS\SYSTEM32\edputil.dll
0x00007fffb32f0000 - 0x00007fffb34e4000 	C:\WINDOWS\SYSTEM32\dbghelp.dll

VM Arguments:
jvm_args: -Declipse.p2.max.threads=10 -Doomph.update.url=http://download.eclipse.org/oomph/updates/milestone/latest -Doomph.redirection.index.redirection=index:/->http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/ -Dosgi.requiredJavaVersion=1.8 -Dosgi.dataAreaRequiresExplicitInit=true -Xms512m -Xmx4000m 
java_command: <unknown>
java_class_path (initial): C:\Users\Bart\ide-latest-released\eclipse\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar
Launcher Type: generic

Environment Variables:
USERNAME=Bart
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel



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

OS: Windows 10.0 , 64 bit Build 18362 (10.0.18362.329)

CPU:total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 158 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx

Memory: 4k page, physical 16629488k(6988268k free), swap 27639536k(10930376k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.231-b11) for windows-amd64 JRE (1.8.0_231-b11), built on Oct  5 2019 03:11:30 by "java_re" with MS VC++ 10.0 (VS2010)

time: Wed Oct 23 00:57:01 2019
timezone: Romance Daylight Time
elapsed time: 490 seconds (0d 0h 8m 10s)


Re: EMF model does not update automatically when adding certain elements [message #1818475 is a reply to message #1818467] Tue, 17 December 2019 05:25 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33137
Registered: July 2009
Senior Member
This looks like a JVM bug. A JVM should never crash running "compiled Java code" as appears to be the case here. That would explain why I have never have seen this exception running on Windows; I'm using an older 1.8. In any case, you can update your 2019-06 installation to use http://download.eclipse.org/modeling/emf/emf/builds/release/2.20 because the latest EMF still installs in and works in Eclipse versions as old as Helios.

Ed Merks
Professional Support: https://www.macromodeling.com/
Re: EMF model does not update automatically when adding certain elements [message #1818476 is a reply to message #1818475] Tue, 17 December 2019 06:27 Go to previous messageGo to next message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

There have been a number of SWT / Tool Bar / Tab crash reports recently. I'm not expert enough to tell whether something common is genuinely smelly or just inevitable.

You might want to look at https://bugs.eclipse.org/bugs/show_bug.cgi?id=550857 and related bugs to get clues as to when fixes have appeared.

Regards

Ed Willink

Re: EMF model does not update automatically when adding certain elements [message #1818496 is a reply to message #1818476] Tue, 17 December 2019 13:54 Go to previous message
Bart Meyers is currently offline Bart MeyersFriend
Messages: 7
Registered: August 2019
Junior Member
Thank you Ed M for the workaround and thank you Ed W for the link.

Best regards,

Bart
Previous Topic:Eclipse Modeling Tools - SysML 1.6 Sequence Diagram Issue
Next Topic:Forum on Privacy and Data Protection Challenges in System Development
Goto Forum:
  


Current Time: Fri Apr 19 18:48:05 GMT 2024

Powered by FUDForum. Page generated in 0.03773 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top