hotspot/src/share/vm/oops/objArrayKlass.cpp
changeset 7397 5b173b4ca846
parent 6248 2e661807cef0
child 7890 7d1d76674e2e
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2010, 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.
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 # include "incls/_precompiled.incl"
    25 #include "precompiled.hpp"
    26 # include "incls/_objArrayKlass.cpp.incl"
    26 #include "classfile/systemDictionary.hpp"
       
    27 #include "classfile/vmSymbols.hpp"
       
    28 #include "gc_implementation/shared/markSweep.inline.hpp"
       
    29 #include "gc_interface/collectedHeap.inline.hpp"
       
    30 #include "memory/genOopClosures.inline.hpp"
       
    31 #include "memory/resourceArea.hpp"
       
    32 #include "memory/universe.inline.hpp"
       
    33 #include "oops/instanceKlass.hpp"
       
    34 #include "oops/objArrayKlass.hpp"
       
    35 #include "oops/objArrayKlass.inline.hpp"
       
    36 #include "oops/objArrayKlassKlass.hpp"
       
    37 #include "oops/objArrayOop.hpp"
       
    38 #include "oops/oop.inline.hpp"
       
    39 #include "oops/oop.inline2.hpp"
       
    40 #include "oops/symbolOop.hpp"
       
    41 #include "runtime/handles.inline.hpp"
       
    42 #include "runtime/mutexLocker.hpp"
       
    43 #include "utilities/copy.hpp"
       
    44 #ifndef SERIALGC
       
    45 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
       
    46 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
       
    47 #include "gc_implementation/g1/g1RemSet.inline.hpp"
       
    48 #include "gc_implementation/g1/heapRegionSeq.inline.hpp"
       
    49 #include "gc_implementation/parNew/parOopClosures.inline.hpp"
       
    50 #include "gc_implementation/parallelScavenge/psCompactionManager.hpp"
       
    51 #include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
       
    52 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
       
    53 #include "oops/oop.pcgc.inline.hpp"
       
    54 #endif
    27 
    55 
    28 int objArrayKlass::oop_size(oop obj) const {
    56 int objArrayKlass::oop_size(oop obj) const {
    29   assert(obj->is_objArray(), "must be object array");
    57   assert(obj->is_objArray(), "must be object array");
    30   return objArrayOop(obj)->object_size();
    58   return objArrayOop(obj)->object_size();
    31 }
    59 }