comparison src/share/vm/interpreter/templateInterpreter.cpp @ 11173:6b0fd0964b87

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 31 Jul 2013 11:00:54 +0200
parents c6a1ffc707ff b800986664f4
children 359f7e70ae7f
comparison
equal deleted inserted replaced
10912:4ea54634f03e 11173:6b0fd0964b87
1 /* 1 /*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, 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.
373 method_entry(java_lang_math_log ) 373 method_entry(java_lang_math_log )
374 method_entry(java_lang_math_log10) 374 method_entry(java_lang_math_log10)
375 method_entry(java_lang_math_exp ) 375 method_entry(java_lang_math_exp )
376 method_entry(java_lang_math_pow ) 376 method_entry(java_lang_math_pow )
377 method_entry(java_lang_ref_reference_get) 377 method_entry(java_lang_ref_reference_get)
378
379 if (UseCRC32Intrinsics) {
380 method_entry(java_util_zip_CRC32_update)
381 method_entry(java_util_zip_CRC32_updateBytes)
382 method_entry(java_util_zip_CRC32_updateByteBuffer)
383 }
378 384
379 initialize_method_handle_entries(); 385 initialize_method_handle_entries();
380 386
381 // all native method kinds (must be one contiguous block) 387 // all native method kinds (must be one contiguous block)
382 Interpreter::_native_entry_begin = Interpreter::code()->code_end(); 388 Interpreter::_native_entry_begin = Interpreter::code()->code_end();