comparison src/share/vm/interpreter/templateInterpreter.cpp @ 11198:1e6d5dec4a4e

Merge.
author Christian Humer <christian.humer@gmail.com>
date Mon, 05 Aug 2013 13:20:06 +0200
parents 6b0fd0964b87
children 359f7e70ae7f
comparison
equal deleted inserted replaced
11197:3479ab380552 11198:1e6d5dec4a4e
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();