< prev index next >

src/hotspot/share/compiler/oopMap.cpp

Print this page
rev 49211 : 8199472: Fix non-PCH build after JDK-8199319


  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "code/codeBlob.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/nmethod.hpp"
  29 #include "code/scopeDesc.hpp"
  30 #include "compiler/oopMap.hpp"
  31 #include "gc/shared/collectedHeap.hpp"
  32 #include "memory/allocation.inline.hpp"
  33 #include "memory/iterator.hpp"
  34 #include "memory/resourceArea.hpp"
  35 #include "runtime/frame.inline.hpp"

  36 #include "runtime/signature.hpp"
  37 #include "utilities/align.hpp"
  38 #ifdef COMPILER1
  39 #include "c1/c1_Defs.hpp"
  40 #endif
  41 #ifdef COMPILER2
  42 #include "opto/optoreg.hpp"
  43 #endif
  44 
  45 // OopMapStream
  46 
  47 OopMapStream::OopMapStream(OopMap* oop_map, int oop_types_mask) {
  48   _stream = new CompressedReadStream(oop_map->write_stream()->buffer());
  49   _mask = oop_types_mask;
  50   _size = oop_map->omv_count();
  51   _position = 0;
  52   _valid_omv = false;
  53 }
  54 
  55 OopMapStream::OopMapStream(const ImmutableOopMap* oop_map, int oop_types_mask) {




  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "code/codeBlob.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/nmethod.hpp"
  29 #include "code/scopeDesc.hpp"
  30 #include "compiler/oopMap.hpp"
  31 #include "gc/shared/collectedHeap.hpp"
  32 #include "memory/allocation.inline.hpp"
  33 #include "memory/iterator.hpp"
  34 #include "memory/resourceArea.hpp"
  35 #include "runtime/frame.inline.hpp"
  36 #include "runtime/handles.inline.hpp"
  37 #include "runtime/signature.hpp"
  38 #include "utilities/align.hpp"
  39 #ifdef COMPILER1
  40 #include "c1/c1_Defs.hpp"
  41 #endif
  42 #ifdef COMPILER2
  43 #include "opto/optoreg.hpp"
  44 #endif
  45 
  46 // OopMapStream
  47 
  48 OopMapStream::OopMapStream(OopMap* oop_map, int oop_types_mask) {
  49   _stream = new CompressedReadStream(oop_map->write_stream()->buffer());
  50   _mask = oop_types_mask;
  51   _size = oop_map->omv_count();
  52   _position = 0;
  53   _valid_omv = false;
  54 }
  55 
  56 OopMapStream::OopMapStream(const ImmutableOopMap* oop_map, int oop_types_mask) {


< prev index next >