< prev index next >

src/share/vm/c1/c1_LIR.hpp

Print this page
rev 10543 : imported patch c1_LIR
rev 10553 : imported patch minor fixes
rev 10556 : imported patch update dates

*** 1,7 **** /* ! * Copyright (c) 2000, 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) 2000, 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.
*** 57,77 **** typedef LIR_OprDesc* LIR_Opr; typedef int RegNr; ! define_array(LIR_OprArray, LIR_Opr) ! define_stack(LIR_OprList, LIR_OprArray) ! ! define_array(LIR_OprRefArray, LIR_Opr*) ! define_stack(LIR_OprRefList, LIR_OprRefArray) ! ! define_array(CodeEmitInfoArray, CodeEmitInfo*) ! define_stack(CodeEmitInfoList, CodeEmitInfoArray) ! ! define_array(LIR_OpArray, LIR_Op*) ! define_stack(LIR_OpList, LIR_OpArray) // define LIR_OprPtr early so LIR_OprDesc can refer to it class LIR_OprPtr: public CompilationResourceObj { public: bool is_oop_pointer() const { return (type() == T_OBJECT); } --- 57,69 ---- typedef LIR_OprDesc* LIR_Opr; typedef int RegNr; ! typedef GrowableArray<LIR_Opr> LIR_OprList; ! typedef GrowableArray<LIR_Op*> LIR_OpArray; ! typedef GrowableArray<LIR_Op*> LIR_OpList; // define LIR_OprPtr early so LIR_OprDesc can refer to it class LIR_OprPtr: public CompilationResourceObj { public: bool is_oop_pointer() const { return (type() == T_OBJECT); }
< prev index next >