src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotMethodDataAccessor.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File
*** old/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotMethodDataAccessor.java	Thu Mar 28 11:24:00 2019
--- new/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotMethodDataAccessor.java	Thu Mar 28 11:23:59 2019

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 34,47 **** --- 34,49 ---- */ abstract class HotSpotMethodDataAccessor { final int tag; final int staticSize; + final HotSpotMethodData.VMState state; final HotSpotVMConfig config; ! protected HotSpotMethodDataAccessor(HotSpotVMConfig config, int tag, int staticSize) { ! this.config = config; ! protected HotSpotMethodDataAccessor(HotSpotMethodData.VMState state, int tag, int staticSize) { ! this.state = state; + this.config = state.config; this.tag = tag; this.staticSize = staticSize; } /**

src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotMethodDataAccessor.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File