< prev index next >

src/share/vm/runtime/javaCalls.hpp

Print this page


   1 /*
   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.
   4  *
   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


 166     _size++;
 167     _is_oop[0] = true;
 168     _value[0] = (intptr_t)h.raw_value();
 169   }
 170 
 171   // Converts all Handles to oops, and returns a reference to parameter vector
 172   intptr_t* parameters() ;
 173   int   size_of_parameters() const { return _size; }
 174 
 175   // Verify that pushed arguments fits a given method
 176   void verify(methodHandle method, BasicType return_type, Thread *thread);
 177 };
 178 
 179 // All calls to Java have to go via JavaCalls. Sets up the stack frame
 180 // and makes sure that the last_Java_frame pointers are chained correctly.
 181 //
 182 
 183 class JavaCalls: AllStatic {
 184   static void call_helper(JavaValue* result, methodHandle* method, JavaCallArguments* args, TRAPS);
 185  public:
 186   // Optimized Constuctor call
 187   static void call_default_constructor(JavaThread* thread, methodHandle method, Handle receiver, TRAPS);
 188 
 189   // call_special
 190   // ------------
 191   // The receiver must be first oop in argument list
 192   static void call_special(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
 193 
 194   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS); // No args
 195   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
 196   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
 197 
 198   // virtual call
 199   // ------------
 200 
 201   // The receiver must be first oop in argument list
 202   static void call_virtual(JavaValue* result, KlassHandle spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
 203 
 204   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, TRAPS); // No args
 205   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
 206   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
 207 
 208   // Static call
   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


 166     _size++;
 167     _is_oop[0] = true;
 168     _value[0] = (intptr_t)h.raw_value();
 169   }
 170 
 171   // Converts all Handles to oops, and returns a reference to parameter vector
 172   intptr_t* parameters() ;
 173   int   size_of_parameters() const { return _size; }
 174 
 175   // Verify that pushed arguments fits a given method
 176   void verify(methodHandle method, BasicType return_type, Thread *thread);
 177 };
 178 
 179 // All calls to Java have to go via JavaCalls. Sets up the stack frame
 180 // and makes sure that the last_Java_frame pointers are chained correctly.
 181 //
 182 
 183 class JavaCalls: AllStatic {
 184   static void call_helper(JavaValue* result, methodHandle* method, JavaCallArguments* args, TRAPS);
 185  public:



 186   // call_special
 187   // ------------
 188   // The receiver must be first oop in argument list
 189   static void call_special(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
 190 
 191   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS); // No args
 192   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
 193   static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
 194 
 195   // virtual call
 196   // ------------
 197 
 198   // The receiver must be first oop in argument list
 199   static void call_virtual(JavaValue* result, KlassHandle spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
 200 
 201   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, TRAPS); // No args
 202   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
 203   static void call_virtual(JavaValue* result, Handle receiver, KlassHandle spec_klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
 204 
 205   // Static call
< prev index next >