hotspot/src/cpu/aarch64/vm/interpreterRT_aarch64.cpp
changeset 46727 6e4a84748e2c
parent 41694 225750a49720
equal deleted inserted replaced
46726:7801367e3cc9 46727:6e4a84748e2c
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2017, 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
   367       _num_fp_args++;
   367       _num_fp_args++;
   368     }
   368     }
   369   }
   369   }
   370 
   370 
   371  public:
   371  public:
   372   SlowSignatureHandler(methodHandle method, address from, intptr_t* to)
   372   SlowSignatureHandler(const methodHandle& method, address from, intptr_t* to)
   373     : NativeSignatureIterator(method)
   373     : NativeSignatureIterator(method)
   374   {
   374   {
   375     _from = from;
   375     _from = from;
   376     _to   = to;
   376     _to   = to;
   377 
   377