src/hotspot/share/jvmci/compilerRuntime.hpp
changeset 47668 fc4cfca10556
parent 47216 71c04702a3d5
child 53244 9807daeb47c4
equal deleted inserted replaced
47667:390896759aa2 47668:fc4cfca10556
     1 /*
     1 /*
     2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2016, 2017, 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.
    37   // Resolves method for aot compiled method.
    37   // Resolves method for aot compiled method.
    38   static Method* resolve_method_helper(Klass* klass, const char* method_name, int method_name_len,
    38   static Method* resolve_method_helper(Klass* klass, const char* method_name, int method_name_len,
    39                                        const char* signature_name, int signature_name_len);
    39                                        const char* signature_name, int signature_name_len);
    40   // Resolution methods for aot compiled code.
    40   // Resolution methods for aot compiled code.
    41   static void resolve_string_by_symbol(JavaThread *thread, void* string_result, const char* name);
    41   static void resolve_string_by_symbol(JavaThread *thread, void* string_result, const char* name);
       
    42   static void resolve_dynamic_invoke(JavaThread *thread, oop* appendix_result);
       
    43 
    42   static Klass* resolve_klass_by_symbol(JavaThread *thread, Klass** klass_result, const char* name);
    44   static Klass* resolve_klass_by_symbol(JavaThread *thread, Klass** klass_result, const char* name);
    43   static Klass* initialize_klass_by_symbol(JavaThread *thread, Klass** klass_result, const char* name);
    45   static Klass* initialize_klass_by_symbol(JavaThread *thread, Klass** klass_result, const char* name);
    44   static MethodCounters* resolve_method_by_symbol_and_load_counters(JavaThread *thread, MethodCounters** counters_result, Klass* klass_hint, const char* data);
    46   static MethodCounters* resolve_method_by_symbol_and_load_counters(JavaThread *thread, MethodCounters** counters_result, Klass* klass_hint, const char* data);
    45   static void invocation_event(JavaThread *thread, MethodCounters* counters);
    47   static void invocation_event(JavaThread *thread, MethodCounters* counters);
    46   static void backedge_event(JavaThread *thread, MethodCounters* counters, int branch_bci, int target_bci);
    48   static void backedge_event(JavaThread *thread, MethodCounters* counters, int branch_bci, int target_bci);