< prev index next >

src/share/vm/gc/parallel/psCompactionManager.inline.hpp

Print this page
rev 13015 : imported patch 8180755-remove-bitmap-inline-hpp-include


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  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 #ifndef SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_INLINE_HPP
  26 #define SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_INLINE_HPP
  27 

  28 #include "gc/parallel/psCompactionManager.hpp"
  29 #include "gc/parallel/psParallelCompact.inline.hpp"
  30 #include "gc/shared/taskqueue.inline.hpp"
  31 #include "oops/objArrayOop.hpp"
  32 #include "oops/oop.inline.hpp"
  33 #include "utilities/debug.hpp"
  34 #include "utilities/globalDefinitions.hpp"
  35 
  36 inline bool ParCompactionManager::steal(int queue_num, int* seed, oop& t) {
  37   return stack_array()->steal(queue_num, seed, t);
  38 }
  39 
  40 inline bool ParCompactionManager::steal_objarray(int queue_num, int* seed, ObjArrayTask& t) {
  41   return _objarray_queues->steal(queue_num, seed, t);
  42 }
  43 
  44 inline bool ParCompactionManager::steal(int queue_num, int* seed, size_t& region) {
  45   return region_array()->steal(queue_num, seed, region);
  46 }
  47 




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  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 #ifndef SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_INLINE_HPP
  26 #define SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_INLINE_HPP
  27 
  28 #include "gc/parallel/parMarkBitMap.hpp"
  29 #include "gc/parallel/psCompactionManager.hpp"
  30 #include "gc/parallel/psParallelCompact.inline.hpp"
  31 #include "gc/shared/taskqueue.inline.hpp"
  32 #include "oops/objArrayOop.hpp"
  33 #include "oops/oop.inline.hpp"
  34 #include "utilities/debug.hpp"
  35 #include "utilities/globalDefinitions.hpp"
  36 
  37 inline bool ParCompactionManager::steal(int queue_num, int* seed, oop& t) {
  38   return stack_array()->steal(queue_num, seed, t);
  39 }
  40 
  41 inline bool ParCompactionManager::steal_objarray(int queue_num, int* seed, ObjArrayTask& t) {
  42   return _objarray_queues->steal(queue_num, seed, t);
  43 }
  44 
  45 inline bool ParCompactionManager::steal(int queue_num, int* seed, size_t& region) {
  46   return region_array()->steal(queue_num, seed, region);
  47 }
  48 


< prev index next >