< prev index next >

hotspot/src/share/vm/c1/c1_IR.hpp

Print this page
rev 10453 : imported patch update dates

*** 1,7 **** /* ! * Copyright (c) 1999, 2015, 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) 1999, 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.
*** 102,114 **** DEBUG_ONLY(void set_lir_op_id(int lir_op_id) { _lir_op_id = lir_op_id; }); bool equals(XHandler* other) const; }; ! define_array(_XHandlerArray, XHandler*) ! define_stack(_XHandlerList, _XHandlerArray) ! // XHandlers is the C1 internal list of exception handlers for a method class XHandlers: public CompilationResourceObj { private: _XHandlerList _list; --- 102,112 ---- DEBUG_ONLY(void set_lir_op_id(int lir_op_id) { _lir_op_id = lir_op_id; }); bool equals(XHandler* other) const; }; ! typedef GrowableArray<XHandler*> _XHandlerList; // XHandlers is the C1 internal list of exception handlers for a method class XHandlers: public CompilationResourceObj { private: _XHandlerList _list;
*** 130,141 **** bool equals(XHandlers* others) const; }; class IRScope; ! define_array(IRScopeArray, IRScope*) ! define_stack(IRScopeList, IRScopeArray) class Compilation; class IRScope: public CompilationResourceObj { private: // hierarchy --- 128,138 ---- bool equals(XHandlers* others) const; }; class IRScope; ! typedef GrowableArray<IRScope*> IRScopeList; class Compilation; class IRScope: public CompilationResourceObj { private: // hierarchy
< prev index next >