src/share/vm/classfile/classFileParser.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,31 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #include "incls/_precompiled.incl" ! #include "incls/_classFileParser.cpp.incl" // We generally try to create the oops directly when parsing, rather than // allocating temporary data structures and copying the bytes twice. A // temporary area is only needed when parsing utf8 entries in the constant // pool and when parsing line number tables. --- 20,57 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #include "precompiled.hpp" ! #include "classfile/classFileParser.hpp" ! #include "classfile/classLoader.hpp" ! #include "classfile/javaClasses.hpp" ! #include "classfile/symbolTable.hpp" ! #include "classfile/systemDictionary.hpp" ! #include "classfile/verificationType.hpp" ! #include "classfile/verifier.hpp" ! #include "classfile/vmSymbols.hpp" ! #include "memory/allocation.hpp" ! #include "memory/gcLocker.hpp" ! #include "memory/oopFactory.hpp" ! #include "memory/universe.inline.hpp" ! #include "oops/constantPoolOop.hpp" ! #include "oops/instanceKlass.hpp" ! #include "oops/klass.inline.hpp" ! #include "oops/klassOop.hpp" ! #include "oops/klassVtable.hpp" ! #include "oops/methodOop.hpp" ! #include "oops/symbolOop.hpp" ! #include "prims/jvmtiExport.hpp" ! #include "runtime/javaCalls.hpp" ! #include "runtime/perfData.hpp" ! #include "runtime/reflection.hpp" ! #include "runtime/signature.hpp" ! #include "runtime/timer.hpp" ! #include "services/classLoadingService.hpp" ! #include "services/threadService.hpp" // We generally try to create the oops directly when parsing, rather than // allocating temporary data structures and copying the bytes twice. A // temporary area is only needed when parsing utf8 entries in the constant // pool and when parsing line number tables.