< prev index next >

src/share/vm/c1/c1_Compilation.hpp

Print this page
rev 10539 : imported patch c1_Compilation
rev 10556 : imported patch update dates

*** 1,7 **** /* ! * Copyright (c) 1999, 2013, 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.
*** 51,66 **** class LIR_OprDesc; class C1_MacroAssembler; class CFGPrinter; typedef LIR_OprDesc* LIR_Opr; ! ! define_array(BasicTypeArray, BasicType) ! define_stack(BasicTypeList, BasicTypeArray) ! ! define_array(ExceptionInfoArray, ExceptionInfo*) ! define_stack(ExceptionInfoList, ExceptionInfoArray) class Compilation: public StackObj { friend class CompilationResourceObj; private: // compilation specifics --- 51,63 ---- class LIR_OprDesc; class C1_MacroAssembler; class CFGPrinter; typedef LIR_OprDesc* LIR_Opr; ! typedef GrowableArray<BasicType> BasicTypeArray; ! typedef GrowableArray<BasicType> BasicTypeList; ! typedef GrowableArray<ExceptionInfo*> ExceptionInfoList; class Compilation: public StackObj { friend class CompilationResourceObj; private: // compilation specifics
< prev index next >