src/hotspot/cpu/aarch64/interpreterRT_aarch64.cpp
changeset 54523 5df03f58d25b
parent 50380 bec342339138
child 54786 ebf733a324d4
equal deleted inserted replaced
54522:60bc754b9744 54523:5df03f58d25b
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     3  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     7  * under the terms of the GNU General Public License version 2 only, as
   416     return call_format;
   416     return call_format;
   417   }
   417   }
   418 };
   418 };
   419 
   419 
   420 
   420 
   421 IRT_ENTRY(address,
   421 JRT_ENTRY(address,
   422           InterpreterRuntime::slow_signature_handler(JavaThread* thread,
   422           InterpreterRuntime::slow_signature_handler(JavaThread* thread,
   423                                                      Method* method,
   423                                                      Method* method,
   424                                                      intptr_t* from,
   424                                                      intptr_t* from,
   425                                                      intptr_t* to))
   425                                                      intptr_t* to))
   426   methodHandle m(thread, (Method*)method);
   426   methodHandle m(thread, (Method*)method);
   433   // // set the call format
   433   // // set the call format
   434   // method->set_call_format(ssh.get_call_format());
   434   // method->set_call_format(ssh.get_call_format());
   435 
   435 
   436   // return result handler
   436   // return result handler
   437   return Interpreter::result_handler(m->result_type());
   437   return Interpreter::result_handler(m->result_type());
   438 IRT_END
   438 JRT_END