hotspot/src/share/vm/interpreter/bytecodeStream.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.
    27 
    27 
    28 #include "interpreter/bytecode.hpp"
    28 #include "interpreter/bytecode.hpp"
    29 #include "memory/allocation.hpp"
    29 #include "memory/allocation.hpp"
    30 #include "oops/method.hpp"
    30 #include "oops/method.hpp"
    31 #include "runtime/handles.inline.hpp"
    31 #include "runtime/handles.inline.hpp"
    32 #ifdef TARGET_ARCH_x86
    32 #include "utilities/bytes.hpp"
    33 # include "bytes_x86.hpp"
       
    34 #endif
       
    35 #ifdef TARGET_ARCH_sparc
       
    36 # include "bytes_sparc.hpp"
       
    37 #endif
       
    38 #ifdef TARGET_ARCH_zero
       
    39 # include "bytes_zero.hpp"
       
    40 #endif
       
    41 #ifdef TARGET_ARCH_arm
       
    42 # include "bytes_arm.hpp"
       
    43 #endif
       
    44 #ifdef TARGET_ARCH_ppc
       
    45 # include "bytes_ppc.hpp"
       
    46 #endif
       
    47 
    33 
    48 // A BytecodeStream is used for fast iteration over the bytecodes
    34 // A BytecodeStream is used for fast iteration over the bytecodes
    49 // of a Method*.
    35 // of a Method*.
    50 //
    36 //
    51 // Usage:
    37 // Usage: