comparison src/share/vm/interpreter/cppInterpreter.cpp @ 3261:732454aaf5cb

Merge
author jmasa
date Wed, 20 Apr 2011 20:32:45 -0700
parents e1162778c1c8
children a3e2f723f2a5
comparison
equal deleted inserted replaced
3247:df8a1555b1ea 3261:732454aaf5cb
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
123 method_entry(java_lang_math_tan ); 123 method_entry(java_lang_math_tan );
124 method_entry(java_lang_math_abs ); 124 method_entry(java_lang_math_abs );
125 method_entry(java_lang_math_sqrt ); 125 method_entry(java_lang_math_sqrt );
126 method_entry(java_lang_math_log ); 126 method_entry(java_lang_math_log );
127 method_entry(java_lang_math_log10 ); 127 method_entry(java_lang_math_log10 );
128 method_entry(java_lang_ref_reference_get);
128 Interpreter::_native_entry_begin = Interpreter::code()->code_end(); 129 Interpreter::_native_entry_begin = Interpreter::code()->code_end();
129 method_entry(native); 130 method_entry(native);
130 method_entry(native_synchronized); 131 method_entry(native_synchronized);
131 Interpreter::_native_entry_end = Interpreter::code()->code_end(); 132 Interpreter::_native_entry_end = Interpreter::code()->code_end();
132 } 133 }