hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 7397 5b173b4ca846
parent 7123 523bb0f29d61
child 7436 dbc43da3d512
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    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/_classFileParser.cpp.incl"
    26 #include "classfile/classFileParser.hpp"
       
    27 #include "classfile/classLoader.hpp"
       
    28 #include "classfile/javaClasses.hpp"
       
    29 #include "classfile/symbolTable.hpp"
       
    30 #include "classfile/systemDictionary.hpp"
       
    31 #include "classfile/verificationType.hpp"
       
    32 #include "classfile/verifier.hpp"
       
    33 #include "classfile/vmSymbols.hpp"
       
    34 #include "memory/allocation.hpp"
       
    35 #include "memory/gcLocker.hpp"
       
    36 #include "memory/oopFactory.hpp"
       
    37 #include "memory/universe.inline.hpp"
       
    38 #include "oops/constantPoolOop.hpp"
       
    39 #include "oops/instanceKlass.hpp"
       
    40 #include "oops/klass.inline.hpp"
       
    41 #include "oops/klassOop.hpp"
       
    42 #include "oops/klassVtable.hpp"
       
    43 #include "oops/methodOop.hpp"
       
    44 #include "oops/symbolOop.hpp"
       
    45 #include "prims/jvmtiExport.hpp"
       
    46 #include "runtime/javaCalls.hpp"
       
    47 #include "runtime/perfData.hpp"
       
    48 #include "runtime/reflection.hpp"
       
    49 #include "runtime/signature.hpp"
       
    50 #include "runtime/timer.hpp"
       
    51 #include "services/classLoadingService.hpp"
       
    52 #include "services/threadService.hpp"
    27 
    53 
    28 // We generally try to create the oops directly when parsing, rather than
    54 // We generally try to create the oops directly when parsing, rather than
    29 // allocating temporary data structures and copying the bytes twice. A
    55 // allocating temporary data structures and copying the bytes twice. A
    30 // temporary area is only needed when parsing utf8 entries in the constant
    56 // temporary area is only needed when parsing utf8 entries in the constant
    31 // pool and when parsing line number tables.
    57 // pool and when parsing line number tables.