< prev index next >

src/share/vm/runtime/javaCalls.hpp

Print this page
rev 8910 : full patch for jfr

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -136,10 +136,13 @@
   }
 
   inline void push_oop(Handle h)    { _is_oop[_size] = true;
                                JNITypes::put_obj((oop)h.raw_value(), _value, _size); }
 
+  inline void push_jobject(jobject h)    { _is_oop[_size] = true;
+                               JNITypes::put_obj((oop)h, _value, _size); }
+
   inline void push_int(int i)       { _is_oop[_size] = false;
                                JNITypes::put_int(i, _value, _size); }
 
   inline void push_double(double d) { _is_oop[_size] = false; _is_oop[_size + 1] = false;
                                JNITypes::put_double(d, _value, _size); }
< prev index next >