src/share/vm/runtime/stubRoutines.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/stubRoutines.cpp	Fri Jan 15 11:50:50 2010
--- new/src/share/vm/runtime/stubRoutines.cpp	Fri Jan 15 11:50:50 2010

*** 1,7 **** --- 1,7 ---- /* ! * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. ! * Copyright 1997-2010 Sun Microsystems, Inc. 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.
*** 95,104 **** --- 95,112 ---- address StubRoutines::_checkcast_arraycopy = NULL; address StubRoutines::_unsafe_arraycopy = NULL; address StubRoutines::_generic_arraycopy = NULL; + double (* StubRoutines::_intrinsic_log )(double) = NULL; + double (* StubRoutines::_intrinsic_log10 )(double) = NULL; + double (* StubRoutines::_intrinsic_exp )(double) = NULL; + double (* StubRoutines::_intrinsic_pow )(double, double) = NULL; + double (* StubRoutines::_intrinsic_sin )(double) = NULL; + double (* StubRoutines::_intrinsic_cos )(double) = NULL; + double (* StubRoutines::_intrinsic_tan )(double) = NULL; + // Initialization // // Note: to break cycle with universe initialization, stubs are generated in two phases. // The first one generates stubs needed during universe init (e.g., _handle_must_compile_first_entry). // The second phase includes all other stubs (which may depend on universe being initialized.)

src/share/vm/runtime/stubRoutines.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File