< prev index next >

src/hotspot/share/gc/shared/collectedHeap.cpp

8198949_arraycopy

7  *                                                                                                                                   
8  * This code is distributed in the hope that it will be useful, but WITHOUT                                                          
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or                                                             
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License                                                             
11  * version 2 for more details (a copy is included in the LICENSE file that                                                           
12  * accompanied this code).                                                                                                           
13  *                                                                                                                                   
14  * You should have received a copy of the GNU General Public License version                                                         
15  * 2 along with this work; if not, write to the Free Software Foundation,                                                            
16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.                                                                     
17  *                                                                                                                                   
18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA                                                           
19  * or visit www.oracle.com if you need additional information or have any                                                            
20  * questions.                                                                                                                        
21  *                                                                                                                                   
22  */                                                                                                                                  
23 
24 #include "precompiled.hpp"                                                                                                           
25 #include "classfile/systemDictionary.hpp"                                                                                            
26 #include "gc/shared/allocTracer.hpp"                                                                                                 
27 #include "gc/shared/barrierSet.inline.hpp"                                                                                           
28 #include "gc/shared/collectedHeap.hpp"                                                                                               
29 #include "gc/shared/collectedHeap.inline.hpp"                                                                                        
30 #include "gc/shared/gcLocker.inline.hpp"                                                                                             
31 #include "gc/shared/gcHeapSummary.hpp"                                                                                               
32 #include "gc/shared/gcTrace.hpp"                                                                                                     
33 #include "gc/shared/gcTraceTime.inline.hpp"                                                                                          
34 #include "gc/shared/gcWhen.hpp"                                                                                                      
35 #include "gc/shared/vmGCOperations.hpp"                                                                                              
36 #include "logging/log.hpp"                                                                                                           
37 #include "memory/metaspace.hpp"                                                                                                      
38 #include "memory/resourceArea.hpp"                                                                                                   
39 #include "oops/instanceMirrorKlass.hpp"                                                                                              
40 #include "oops/oop.inline.hpp"                                                                                                       
41 #include "runtime/handles.inline.hpp"                                                                                                
42 #include "runtime/init.hpp"                                                                                                          
43 #include "runtime/thread.inline.hpp"                                                                                                 
44 #include "runtime/threadSMR.hpp"                                                                                                     
45 #include "runtime/vmThread.hpp"                                                                                                      
46 #include "services/heapDumper.hpp"                                                                                                   

7  *
8  * This code is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11  * version 2 for more details (a copy is included in the LICENSE file that
12  * accompanied this code).
13  *
14  * You should have received a copy of the GNU General Public License version
15  * 2 along with this work; if not, write to the Free Software Foundation,
16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19  * or visit www.oracle.com if you need additional information or have any
20  * questions.
21  *
22  */
23 
24 #include "precompiled.hpp"
25 #include "classfile/systemDictionary.hpp"
26 #include "gc/shared/allocTracer.hpp"
27 #include "gc/shared/barrierSet.hpp"
28 #include "gc/shared/collectedHeap.hpp"
29 #include "gc/shared/collectedHeap.inline.hpp"
30 #include "gc/shared/gcLocker.inline.hpp"
31 #include "gc/shared/gcHeapSummary.hpp"
32 #include "gc/shared/gcTrace.hpp"
33 #include "gc/shared/gcTraceTime.inline.hpp"
34 #include "gc/shared/gcWhen.hpp"
35 #include "gc/shared/vmGCOperations.hpp"
36 #include "logging/log.hpp"
37 #include "memory/metaspace.hpp"
38 #include "memory/resourceArea.hpp"
39 #include "oops/instanceMirrorKlass.hpp"
40 #include "oops/oop.inline.hpp"
41 #include "runtime/handles.inline.hpp"
42 #include "runtime/init.hpp"
43 #include "runtime/thread.inline.hpp"
44 #include "runtime/threadSMR.hpp"
45 #include "runtime/vmThread.hpp"
46 #include "services/heapDumper.hpp"
< prev index next >