< prev index next >

src/hotspot/share/classfile/stackMapFrame.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2016, 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. --- 1,7 ---- /* ! * Copyright (c) 2003, 2018, 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.
*** 60,70 **** VerificationType* _locals; // local variable type array VerificationType* _stack; // operand stack type array ClassVerifier* _verifier; // the verifier verifying this method ! StackMapFrame(const StackMapFrame& cp) : _offset(cp._offset), _locals_size(cp._locals_size), _stack_size(cp._stack_size), _stack_mark(cp._stack_mark), _max_locals(cp._max_locals), _max_stack(cp._max_stack), _flags(cp._flags) { _locals = NEW_RESOURCE_ARRAY(VerificationType, _max_locals); --- 60,70 ---- VerificationType* _locals; // local variable type array VerificationType* _stack; // operand stack type array ClassVerifier* _verifier; // the verifier verifying this method ! StackMapFrame(const StackMapFrame& cp) : ResourceObj(cp), _offset(cp._offset), _locals_size(cp._locals_size), _stack_size(cp._stack_size), _stack_mark(cp._stack_mark), _max_locals(cp._max_locals), _max_stack(cp._max_stack), _flags(cp._flags) { _locals = NEW_RESOURCE_ARRAY(VerificationType, _max_locals);
< prev index next >