< prev index next >

src/hotspot/cpu/s390/nativeInst_s390.hpp

Print this page




  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 // Major contributions by AHa, JL, LS
  27 
  28 #ifndef CPU_S390_VM_NATIVEINST_S390_HPP
  29 #define CPU_S390_VM_NATIVEINST_S390_HPP
  30 
  31 #include "asm/macroAssembler.hpp"
  32 #include "memory/allocation.hpp"
  33 #include "runtime/icache.hpp"
  34 #include "runtime/os.hpp"
  35 
  36 class NativeCall;
  37 class NativeFarCall;
  38 class NativeMovConstReg;
  39 class NativeJump;
  40 #ifndef COMPILER2
  41 class NativeGeneralJump;
  42 class NativeMovRegMem;
  43 #endif
  44 class NativeInstruction;
  45 
  46 NativeCall* nativeCall_before(address return_address);
  47 NativeCall* nativeCall_at(address instr);
  48 NativeFarCall* nativeFarCall_before(address return_address);
  49 NativeFarCall* nativeFarCall_at(address instr);
  50 NativeMovConstReg* nativeMovConstReg_at(address address);
  51 NativeMovConstReg* nativeMovConstReg_before(address address);
  52 NativeJump* nativeJump_at(address address);




  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 // Major contributions by AHa, JL, LS
  27 
  28 #ifndef CPU_S390_VM_NATIVEINST_S390_HPP
  29 #define CPU_S390_VM_NATIVEINST_S390_HPP
  30 
  31 #include "asm/macroAssembler.hpp"

  32 #include "runtime/icache.hpp"
  33 #include "runtime/os.hpp"
  34 
  35 class NativeCall;
  36 class NativeFarCall;
  37 class NativeMovConstReg;
  38 class NativeJump;
  39 #ifndef COMPILER2
  40 class NativeGeneralJump;
  41 class NativeMovRegMem;
  42 #endif
  43 class NativeInstruction;
  44 
  45 NativeCall* nativeCall_before(address return_address);
  46 NativeCall* nativeCall_at(address instr);
  47 NativeFarCall* nativeFarCall_before(address return_address);
  48 NativeFarCall* nativeFarCall_at(address instr);
  49 NativeMovConstReg* nativeMovConstReg_at(address address);
  50 NativeMovConstReg* nativeMovConstReg_before(address address);
  51 NativeJump* nativeJump_at(address address);


< prev index next >