hotspot/src/share/vm/gc_interface/collectedHeap.inline.hpp
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 7724 a92d706dbdd5
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2009, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    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
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
       
    24 
       
    25 #ifndef SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP
       
    26 #define SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP
       
    27 
       
    28 #include "gc_interface/collectedHeap.hpp"
       
    29 #include "memory/threadLocalAllocBuffer.inline.hpp"
       
    30 #include "memory/universe.hpp"
       
    31 #include "oops/arrayOop.hpp"
       
    32 #include "prims/jvmtiExport.hpp"
       
    33 #include "runtime/sharedRuntime.hpp"
       
    34 #include "runtime/thread.hpp"
       
    35 #include "services/lowMemoryDetector.hpp"
       
    36 #include "utilities/copy.hpp"
       
    37 #ifdef TARGET_OS_FAMILY_linux
       
    38 # include "thread_linux.inline.hpp"
       
    39 #endif
       
    40 #ifdef TARGET_OS_FAMILY_solaris
       
    41 # include "thread_solaris.inline.hpp"
       
    42 #endif
       
    43 #ifdef TARGET_OS_FAMILY_windows
       
    44 # include "thread_windows.inline.hpp"
       
    45 #endif
    24 
    46 
    25 // Inline allocation implementations.
    47 // Inline allocation implementations.
    26 
    48 
    27 void CollectedHeap::post_allocation_setup_common(KlassHandle klass,
    49 void CollectedHeap::post_allocation_setup_common(KlassHandle klass,
    28                                                  HeapWord* obj,
    50                                                  HeapWord* obj,
   366 
   388 
   367 inline void CollectedHeap::reset_promotion_should_fail() {
   389 inline void CollectedHeap::reset_promotion_should_fail() {
   368   reset_promotion_should_fail(&_promotion_failure_alot_count);
   390   reset_promotion_should_fail(&_promotion_failure_alot_count);
   369 }
   391 }
   370 #endif  // #ifndef PRODUCT
   392 #endif  // #ifndef PRODUCT
       
   393 
       
   394 #endif // SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP