comparison src/share/vm/memory/tenuredGeneration.cpp @ 22827:1830156c6b7e

8071972: Minimal VM is broken for ARM fastdebug Reviewed-by: jwilhelm, tschatzl, stefank
author dholmes
date Wed, 04 Feb 2015 04:31:38 -0500
parents 55fb97c4c58d
children dd9cc155639c
comparison
equal deleted inserted replaced
22826:f46bff88dc9f 22827:1830156c6b7e
1 /* 1 /*
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2015, 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.
22 * 22 *
23 */ 23 */
24 24
25 #include "precompiled.hpp" 25 #include "precompiled.hpp"
26 #include "gc_implementation/shared/collectorCounters.hpp" 26 #include "gc_implementation/shared/collectorCounters.hpp"
27 #include "gc_implementation/shared/parGCAllocBuffer.hpp"
28 #include "memory/allocation.inline.hpp" 27 #include "memory/allocation.inline.hpp"
29 #include "memory/blockOffsetTable.inline.hpp" 28 #include "memory/blockOffsetTable.inline.hpp"
30 #include "memory/generation.inline.hpp" 29 #include "memory/generation.inline.hpp"
31 #include "memory/generationSpec.hpp" 30 #include "memory/generationSpec.hpp"
32 #include "memory/space.hpp" 31 #include "memory/space.hpp"
33 #include "memory/tenuredGeneration.hpp" 32 #include "memory/tenuredGeneration.hpp"
34 #include "oops/oop.inline.hpp" 33 #include "oops/oop.inline.hpp"
35 #include "runtime/java.hpp" 34 #include "runtime/java.hpp"
36 #include "utilities/macros.hpp" 35 #include "utilities/macros.hpp"
36 #if INCLUDE_ALL_GCS
37 #include "gc_implementation/shared/parGCAllocBuffer.hpp"
38 #endif
37 39
38 TenuredGeneration::TenuredGeneration(ReservedSpace rs, 40 TenuredGeneration::TenuredGeneration(ReservedSpace rs,
39 size_t initial_byte_size, int level, 41 size_t initial_byte_size, int level,
40 GenRemSet* remset) : 42 GenRemSet* remset) :
41 OneContigSpaceCardGeneration(rs, initial_byte_size, 43 OneContigSpaceCardGeneration(rs, initial_byte_size,