src/share/vm/memory/binaryTreeDictionary.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hsx-gc Sdiff src/share/vm/memory

src/share/vm/memory/binaryTreeDictionary.cpp

Print this page




  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 #include "precompiled.hpp"
  26 #include "utilities/macros.hpp"
  27 #include "gc_implementation/shared/allocationStats.hpp"
  28 #include "memory/binaryTreeDictionary.hpp"
  29 #include "memory/freeList.hpp"
  30 #include "memory/freeBlockDictionary.hpp"
  31 #include "memory/metablock.hpp"
  32 #include "memory/metachunk.hpp"
  33 #include "runtime/globals.hpp"
  34 #include "utilities/ostream.hpp"
  35 #include "utilities/macros.hpp"
  36 #include "gc_implementation/shared/spaceDecorator.hpp"
  37 #if INCLUDE_ALL_GCS
  38 #include "gc_implementation/concurrentMarkSweep/adaptiveFreeList.hpp"
  39 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
  40 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
  41 #endif // INCLUDE_ALL_GCS
  42 
  43 ////////////////////////////////////////////////////////////////////////////////
  44 // A binary tree based search structure for free blocks.
  45 // This is currently used in the Concurrent Mark&Sweep implementation.
  46 ////////////////////////////////////////////////////////////////////////////////
  47 
  48 template <class Chunk_t, template <class> class FreeList_t>
  49 size_t TreeChunk<Chunk_t, FreeList_t>::_min_tree_chunk_size = sizeof(TreeChunk<Chunk_t,  FreeList_t>)/HeapWordSize;
  50 
  51 template <class Chunk_t, template <class> class FreeList_t>




  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 #include "precompiled.hpp"
  26 #include "utilities/macros.hpp"
  27 #include "gc_implementation/shared/allocationStats.hpp"
  28 #include "memory/binaryTreeDictionary.hpp"
  29 #include "memory/freeList.hpp"
  30 #include "memory/freeBlockDictionary.hpp"

  31 #include "memory/metachunk.hpp"
  32 #include "runtime/globals.hpp"
  33 #include "utilities/ostream.hpp"
  34 #include "utilities/macros.hpp"
  35 #include "gc_implementation/shared/spaceDecorator.hpp"
  36 #if INCLUDE_ALL_GCS
  37 #include "gc_implementation/concurrentMarkSweep/adaptiveFreeList.hpp"
  38 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
  39 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
  40 #endif // INCLUDE_ALL_GCS
  41 
  42 ////////////////////////////////////////////////////////////////////////////////
  43 // A binary tree based search structure for free blocks.
  44 // This is currently used in the Concurrent Mark&Sweep implementation.
  45 ////////////////////////////////////////////////////////////////////////////////
  46 
  47 template <class Chunk_t, template <class> class FreeList_t>
  48 size_t TreeChunk<Chunk_t, FreeList_t>::_min_tree_chunk_size = sizeof(TreeChunk<Chunk_t,  FreeList_t>)/HeapWordSize;
  49 
  50 template <class Chunk_t, template <class> class FreeList_t>


src/share/vm/memory/binaryTreeDictionary.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File