src/share/vm/oops/generateOopMap.cpp

Print this page

        

*** 20,29 **** --- 20,39 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #include "precompiled.hpp" + #include "interpreter/bytecodeStream.hpp" + #include "oops/generateOopMap.hpp" + #include "oops/oop.inline.hpp" + #include "oops/symbolOop.hpp" + #include "runtime/handles.inline.hpp" + #include "runtime/java.hpp" + #include "runtime/relocator.hpp" + #include "utilities/bitMap.inline.hpp" + // // // Compute stack layouts for each instruction in method. // // Problems:
*** 83,95 **** // an argument of the right type 'p'; we need to know which address it // returns to). // // (Note this comment is borrowed form the original author of the algorithm) - #include "incls/_precompiled.incl" - #include "incls/_generateOopMap.cpp.incl" - // ComputeCallStack // // Specialization of SignatureIterator - compute the effects of a call // class ComputeCallStack : public SignatureIterator { --- 93,102 ----