comparison src/share/vm/memory/defNewGeneration.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6 78bbf4d43a14
children 7848fc12602b
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
1 /* 1 /*
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2014, 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.
43 #include "oops/oop.inline.hpp" 43 #include "oops/oop.inline.hpp"
44 #include "runtime/java.hpp" 44 #include "runtime/java.hpp"
45 #include "runtime/thread.inline.hpp" 45 #include "runtime/thread.inline.hpp"
46 #include "utilities/copy.hpp" 46 #include "utilities/copy.hpp"
47 #include "utilities/stack.inline.hpp" 47 #include "utilities/stack.inline.hpp"
48
49 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
48 50
49 // 51 //
50 // DefNewGeneration functions. 52 // DefNewGeneration functions.
51 53
52 // Methods of protected closure types. 54 // Methods of protected closure types.
1084 1086
1085 size_t DefNewGeneration::tlab_capacity() const { 1087 size_t DefNewGeneration::tlab_capacity() const {
1086 return eden()->capacity(); 1088 return eden()->capacity();
1087 } 1089 }
1088 1090
1091 size_t DefNewGeneration::tlab_used() const {
1092 return eden()->used();
1093 }
1094
1089 size_t DefNewGeneration::unsafe_max_tlab_alloc() const { 1095 size_t DefNewGeneration::unsafe_max_tlab_alloc() const {
1090 return unsafe_max_alloc_nogc(); 1096 return unsafe_max_alloc_nogc();
1091 } 1097 }