src/share/vm/runtime/stubRoutines.cpp

changeset 1609
ddb7834449d0
parent 451
f8236e79048a
child 1680
6484c4ee11cb
     1.1 --- a/src/share/vm/runtime/stubRoutines.cpp	Wed Jan 13 23:05:52 2010 -0800
     1.2 +++ b/src/share/vm/runtime/stubRoutines.cpp	Fri Jan 15 11:53:33 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -97,6 +97,14 @@
    1.11  address StubRoutines::_unsafe_arraycopy                  = NULL;
    1.12  address StubRoutines::_generic_arraycopy                 = NULL;
    1.13  
    1.14 +double (* StubRoutines::_intrinsic_log   )(double) = NULL;
    1.15 +double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
    1.16 +double (* StubRoutines::_intrinsic_exp   )(double) = NULL;
    1.17 +double (* StubRoutines::_intrinsic_pow   )(double, double) = NULL;
    1.18 +double (* StubRoutines::_intrinsic_sin   )(double) = NULL;
    1.19 +double (* StubRoutines::_intrinsic_cos   )(double) = NULL;
    1.20 +double (* StubRoutines::_intrinsic_tan   )(double) = NULL;
    1.21 +
    1.22  // Initialization
    1.23  //
    1.24  // Note: to break cycle with universe initialization, stubs are generated in two phases.

mercurial