< prev index next >

src/share/vm/oops/generateOopMap.hpp

Print this page
rev 13015 : imported patch 8180755-remove-bitmap-inline-hpp-include
rev 13016 : [mq]: 8180755-dholmes-review

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -29,10 +29,11 @@
 #include "memory/allocation.inline.hpp"
 #include "memory/universe.inline.hpp"
 #include "oops/method.hpp"
 #include "oops/oopsHierarchy.hpp"
 #include "runtime/signature.hpp"
+#include "utilities/bitMap.hpp"
 
 // Forward definition
 class GenerateOopMap;
 class BasicBlock;
 class CellTypeState;

@@ -358,16 +359,11 @@
   bool          is_bb_header                (int bci) const   {
     return _bb_hdr_bits.at(bci);
   }
   int           gc_points                   () const                          { return _gc_points; }
   int           bb_count                    () const                          { return _bb_count; }
-  void          set_bbmark_bit              (int bci) {
-    _bb_hdr_bits.at_put(bci, true);
-  }
-  void          clear_bbmark_bit            (int bci) {
-    _bb_hdr_bits.at_put(bci, false);
-  }
+  void          set_bbmark_bit              (int bci);
   BasicBlock *  get_basic_block_at          (int bci) const;
   BasicBlock *  get_basic_block_containing  (int bci) const;
   void          interp_bb                   (BasicBlock *bb);
   void          restore_state               (BasicBlock *bb);
   int           next_bb_start_pc            (BasicBlock *bb);
< prev index next >