< prev index next >

test/testlibrary/jittester/src/jdk/test/lib/jittester/Initialization.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.test.lib.jittester;
  25 
  26 import jdk.test.lib.jittester.visitors.Visitor;
  27 
  28 public abstract class Initialization extends IRNode {
  29     protected VariableInfo variableInfo = new VariableInfo();
  30 
  31     protected Initialization() {
  32     }
  33 
  34     protected Initialization(VariableInfo varInfo, IRNode initExpr) {

  35         variableInfo = varInfo;
  36         addChild(initExpr);
  37     }
  38 
  39     public VariableInfo get() {
  40         return variableInfo;
  41     }
  42 
  43     @Override
  44     public long complexity() {
  45         return getChild(0).complexity() + 1;
  46     }
  47 
  48     @Override
  49     public<T> T accept(Visitor<T> v) {
  50         return v.visit(this);
  51     }
  52 
  53     public VariableInfo getVariableInfo() {
  54         return variableInfo;
  55     }
  56 }


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.test.lib.jittester;
  25 
  26 import jdk.test.lib.jittester.visitors.Visitor;
  27 
  28 public abstract class Initialization extends IRNode {
  29     private final VariableInfo variableInfo;



  30 
  31     protected Initialization(VariableInfo varInfo, IRNode initExpr) {
  32         super(varInfo.type);
  33         variableInfo = varInfo;
  34         addChild(initExpr);




  35     }
  36 
  37     @Override
  38     public long complexity() {
  39         return getChild(0).complexity() + 1;
  40     }
  41 
  42     @Override
  43     public<T> T accept(Visitor<T> v) {
  44         return v.visit(this);
  45     }
  46 
  47     public VariableInfo getVariableInfo() {
  48         return variableInfo;
  49     }
  50 }
< prev index next >