hotspot/src/share/vm/interpreter/bytecode.hpp
changeset 25715 d5a8dbdc5150
parent 13728 882756847a04
child 33593 60764a78fa5c
equal deleted inserted replaced
25469:3bcfa1db9717 25715:d5a8dbdc5150
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    26 #define SHARE_VM_INTERPRETER_BYTECODE_HPP
    26 #define SHARE_VM_INTERPRETER_BYTECODE_HPP
    27 
    27 
    28 #include "interpreter/bytecodes.hpp"
    28 #include "interpreter/bytecodes.hpp"
    29 #include "memory/allocation.hpp"
    29 #include "memory/allocation.hpp"
    30 #include "oops/method.hpp"
    30 #include "oops/method.hpp"
    31 #ifdef TARGET_ARCH_x86
    31 #include "utilities/bytes.hpp"
    32 # include "bytes_x86.hpp"
       
    33 #endif
       
    34 #ifdef TARGET_ARCH_sparc
       
    35 # include "bytes_sparc.hpp"
       
    36 #endif
       
    37 #ifdef TARGET_ARCH_zero
       
    38 # include "bytes_zero.hpp"
       
    39 #endif
       
    40 #ifdef TARGET_ARCH_arm
       
    41 # include "bytes_arm.hpp"
       
    42 #endif
       
    43 #ifdef TARGET_ARCH_ppc
       
    44 # include "bytes_ppc.hpp"
       
    45 #endif
       
    46 
    32 
    47 class ciBytecodeStream;
    33 class ciBytecodeStream;
    48 
    34 
    49 // The base class for different kinds of bytecode abstractions.
    35 // The base class for different kinds of bytecode abstractions.
    50 // Provides the primitive operations to manipulate code relative
    36 // Provides the primitive operations to manipulate code relative