hotspot/src/share/vm/runtime/signature.hpp
changeset 5421 e294db54fc0d
parent 4013 b154310845de
child 5547 f4b087cbb361
--- a/hotspot/src/share/vm/runtime/signature.hpp	Sat May 01 02:42:18 2010 -0700
+++ b/hotspot/src/share/vm/runtime/signature.hpp	Sat May 01 21:57:35 2010 -0700
@@ -402,6 +402,9 @@
   bool is_array() const;                         // True if this argument is an array
   BasicType type() const                         { return _type; }
   symbolOop as_symbol(TRAPS);
+  enum FailureMode { ReturnNull, CNFException, NCDFError };
+  klassOop as_klass(Handle class_loader, Handle protection_domain, FailureMode failure_mode, TRAPS);
+  oop as_java_mirror(Handle class_loader, Handle protection_domain, FailureMode failure_mode, TRAPS);
 
   // return same as_symbol except allocation of new symbols is avoided.
   symbolOop as_symbol_or_null();