0N/A/*
3677N/A * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/A * questions.
0N/A *
0N/A */
0N/A
1879N/A#include "precompiled.hpp"
1879N/A#include "classfile/systemDictionary.hpp"
1879N/A#include "classfile/vmSymbols.hpp"
1879N/A#include "code/compiledIC.hpp"
1879N/A#include "code/icBuffer.hpp"
1879N/A#include "code/nmethod.hpp"
1879N/A#include "code/pcDesc.hpp"
1879N/A#include "code/scopeDesc.hpp"
1879N/A#include "code/vtableStubs.hpp"
1879N/A#include "compiler/compileBroker.hpp"
1879N/A#include "compiler/compilerOracle.hpp"
1879N/A#include "compiler/oopMap.hpp"
1879N/A#include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
1879N/A#include "gc_implementation/g1/heapRegion.hpp"
1879N/A#include "gc_interface/collectedHeap.hpp"
1879N/A#include "interpreter/bytecode.hpp"
1879N/A#include "interpreter/interpreter.hpp"
1879N/A#include "interpreter/linkResolver.hpp"
1879N/A#include "memory/barrierSet.hpp"
1879N/A#include "memory/gcLocker.inline.hpp"
1879N/A#include "memory/oopFactory.hpp"
1879N/A#include "oops/objArrayKlass.hpp"
1879N/A#include "oops/oop.inline.hpp"
1879N/A#include "opto/addnode.hpp"
1879N/A#include "opto/callnode.hpp"
1879N/A#include "opto/cfgnode.hpp"
1879N/A#include "opto/connode.hpp"
1879N/A#include "opto/graphKit.hpp"
1879N/A#include "opto/machnode.hpp"
1879N/A#include "opto/matcher.hpp"
1879N/A#include "opto/memnode.hpp"
1879N/A#include "opto/mulnode.hpp"
1879N/A#include "opto/runtime.hpp"
1879N/A#include "opto/subnode.hpp"
1879N/A#include "runtime/fprofiler.hpp"
1879N/A#include "runtime/handles.inline.hpp"
1879N/A#include "runtime/interfaceSupport.hpp"
1879N/A#include "runtime/javaCalls.hpp"
1879N/A#include "runtime/sharedRuntime.hpp"
1879N/A#include "runtime/signature.hpp"
1879N/A#include "runtime/threadCritical.hpp"
1879N/A#include "runtime/vframe.hpp"
1879N/A#include "runtime/vframeArray.hpp"
1879N/A#include "runtime/vframe_hp.hpp"
1879N/A#include "utilities/copy.hpp"
1879N/A#include "utilities/preserveException.hpp"
1879N/A#ifdef TARGET_ARCH_MODEL_x86_32
1879N/A# include "adfiles/ad_x86_32.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_x86_64
1879N/A# include "adfiles/ad_x86_64.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_sparc
1879N/A# include "adfiles/ad_sparc.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_zero
1879N/A# include "adfiles/ad_zero.hpp"
1879N/A#endif
2073N/A#ifdef TARGET_ARCH_MODEL_arm
2073N/A# include "adfiles/ad_arm.hpp"
2073N/A#endif
2073N/A#ifdef TARGET_ARCH_MODEL_ppc
2073N/A# include "adfiles/ad_ppc.hpp"
2073N/A#endif
0N/A
0N/A
0N/A// For debugging purposes:
0N/A// To force FullGCALot inside a runtime function, add the following two lines
0N/A//
0N/A// Universe::release_fullgc_alot_dummy();
0N/A// MarkSweep::invoke(0, "Debugging");
0N/A//
0N/A// At command line specify the parameters: -XX:+FullGCALot -XX:FullGCALotStart=100000000
0N/A
0N/A
0N/A
0N/A
0N/A// Compiled code entry points
0N/Aaddress OptoRuntime::_new_instance_Java = NULL;
0N/Aaddress OptoRuntime::_new_array_Java = NULL;
2797N/Aaddress OptoRuntime::_new_array_nozero_Java = NULL;
0N/Aaddress OptoRuntime::_multianewarray2_Java = NULL;
0N/Aaddress OptoRuntime::_multianewarray3_Java = NULL;
0N/Aaddress OptoRuntime::_multianewarray4_Java = NULL;
0N/Aaddress OptoRuntime::_multianewarray5_Java = NULL;
2630N/Aaddress OptoRuntime::_multianewarrayN_Java = NULL;
342N/Aaddress OptoRuntime::_g1_wb_pre_Java = NULL;
342N/Aaddress OptoRuntime::_g1_wb_post_Java = NULL;
0N/Aaddress OptoRuntime::_vtable_must_compile_Java = NULL;
0N/Aaddress OptoRuntime::_complete_monitor_locking_Java = NULL;
0N/Aaddress OptoRuntime::_rethrow_Java = NULL;
0N/A
0N/Aaddress OptoRuntime::_slow_arraycopy_Java = NULL;
0N/Aaddress OptoRuntime::_register_finalizer_Java = NULL;
0N/A
0N/A# ifdef ENABLE_ZAP_DEAD_LOCALS
0N/Aaddress OptoRuntime::_zap_dead_Java_locals_Java = NULL;
0N/Aaddress OptoRuntime::_zap_dead_native_locals_Java = NULL;
Error!

 

There was an error!

null

java.lang.NullPointerException