hotspot/src/share/vm/oops/generateOopMap.cpp
changeset 7397 5b173b4ca846
parent 7111 ac1a0346bc0f
child 7913 dd096a83bdbb
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
       
    25 #include "precompiled.hpp"
       
    26 #include "interpreter/bytecodeStream.hpp"
       
    27 #include "oops/generateOopMap.hpp"
       
    28 #include "oops/oop.inline.hpp"
       
    29 #include "oops/symbolOop.hpp"
       
    30 #include "runtime/handles.inline.hpp"
       
    31 #include "runtime/java.hpp"
       
    32 #include "runtime/relocator.hpp"
       
    33 #include "utilities/bitMap.inline.hpp"
       
    34 
    25 //
    35 //
    26 //
    36 //
    27 // Compute stack layouts for each instruction in method.
    37 // Compute stack layouts for each instruction in method.
    28 //
    38 //
    29 //  Problems:
    39 //  Problems:
    82 //  processing a "ret" bytecodes, it is not sufficient to know that it gets
    92 //  processing a "ret" bytecodes, it is not sufficient to know that it gets
    83 //  an argument of the right type 'p'; we need to know which address it
    93 //  an argument of the right type 'p'; we need to know which address it
    84 //  returns to).
    94 //  returns to).
    85 //
    95 //
    86 // (Note this comment is borrowed form the original author of the algorithm)
    96 // (Note this comment is borrowed form the original author of the algorithm)
    87 
       
    88 #include "incls/_precompiled.incl"
       
    89 #include "incls/_generateOopMap.cpp.incl"
       
    90 
    97 
    91 // ComputeCallStack
    98 // ComputeCallStack
    92 //
    99 //
    93 // Specialization of SignatureIterator - compute the effects of a call
   100 // Specialization of SignatureIterator - compute the effects of a call
    94 //
   101 //