< prev index next >

src/hotspot/share/gc/g1/heapRegionManager.cpp

Print this page
rev 53923 : [mq]: 8219747-remove-g1-prefix

*** 1,7 **** /* ! * Copyright (c) 2001, 2018, 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. --- 1,7 ---- /* ! * Copyright (c) 2001, 2019, 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.
*** 67,77 **** _next_bitmap_mapper(NULL), _free_list("Free list", new MasterFreeRegionListChecker()) { } HeapRegionManager* HeapRegionManager::create_manager(G1CollectedHeap* heap, G1CollectorPolicy* policy) { ! if (policy->is_hetero_heap()) { return new HeterogeneousHeapRegionManager((uint)(policy->max_heap_byte_size() / HeapRegion::GrainBytes) /*heap size as num of regions*/); } return new HeapRegionManager(); } --- 67,77 ---- _next_bitmap_mapper(NULL), _free_list("Free list", new MasterFreeRegionListChecker()) { } HeapRegionManager* HeapRegionManager::create_manager(G1CollectedHeap* heap, G1CollectorPolicy* policy) { ! if (policy->is_heap_heterogeneous()) { return new HeterogeneousHeapRegionManager((uint)(policy->max_heap_byte_size() / HeapRegion::GrainBytes) /*heap size as num of regions*/); } return new HeapRegionManager(); }
< prev index next >