1 /*
   2  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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,
  20  * CA 94065 USA or visit www.oracle.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.asm.sparc;
  26 
  27 import sun.jvm.hotspot.asm.*;
  28 
  29 public interface SPARCV9InstructionFactory extends SPARCInstructionFactory {
  30     public SPARCInstruction newV9BranchInstruction(String name, PCRelativeAddress addr,
  31               boolean isAnnuled, int conditionCode, boolean predictTaken, int conditionFlag);
  32     public SPARCInstruction newV9RegisterBranchInstruction(String name, PCRelativeAddress addr,
  33                                boolean isAnnuled, int regConditionCode, SPARCRegister conditionRegister,
  34                                boolean predictTaken);
  35     public SPARCInstruction newV9CasInstruction(String name, SPARCRegisterIndirectAddress addr,
  36                                SPARCRegister rs2, SPARCRegister rd, int dataType);
  37     public SPARCInstruction newV9PrefetchInstruction(String name, SPARCRegisterIndirectAddress addr,
  38                                int prefetchFcn);
  39     public SPARCInstruction newV9FlushwInstruction();
  40     public SPARCInstruction newV9MOVccInstruction(String name, int conditionCode, int conditionFlag,
  41                                    ImmediateOrRegister source, SPARCRegister rd);
  42     public SPARCInstruction newV9MOVrInstruction(String name, SPARCRegister rs1,
  43                                    ImmediateOrRegister operand2, SPARCRegister rd,
  44                                    int regConditionCode);
  45     public SPARCInstruction newV9RdprInstruction(int regNum, SPARCRegister rd);
  46     public SPARCInstruction newV9WrprInstruction(SPARCRegister rs1, ImmediateOrRegister operand2, int regNum);
  47     public SPARCInstruction newV9PopcInstruction(ImmediateOrRegister source, SPARCRegister rd);
  48     public SPARCInstruction newV9DoneInstruction();
  49     public SPARCInstruction newV9RetryInstruction();
  50     public SPARCInstruction newV9SavedInstruction();
  51     public SPARCInstruction newV9RestoredInstruction();
  52     public SPARCInstruction newV9ReadInstruction(int specialRegNum, int asrRegNum, SPARCRegister rd);
  53     public SPARCInstruction newV9WriteInstruction(int specialRegNum, int asrRegNum, SPARCRegister rs1,
  54                                                   ImmediateOrRegister operand2);
  55     public SPARCInstruction newV9MembarInstruction(int mmask, int cmask);
  56     public SPARCInstruction newV9SirInstruction();
  57     public SPARCInstruction newV9FMOVccInstruction(String name, int opf, int conditionCode,
  58                               int conditionFlag, SPARCFloatRegister rs,
  59                               SPARCFloatRegister rd);
  60     public SPARCInstruction newV9FMOVrInstruction(String name, int opf,
  61                                    SPARCRegister rs1, SPARCFloatRegister rs2,
  62                                    SPARCFloatRegister rd, int regConditionCode);
  63 }