hotspot/src/share/vm/prims/stackwalk.cpp
changeset 46329 53ccc37bda19
parent 46289 1904e7ec236e
child 46505 fd4bc78630b1
equal deleted inserted replaced
46328:6061df52d610 46329:53ccc37bda19
   177 // StackValue at the given index. 'type' is expected to be T_INT, T_LONG,
   177 // StackValue at the given index. 'type' is expected to be T_INT, T_LONG,
   178 // T_OBJECT, or T_CONFLICT.
   178 // T_OBJECT, or T_CONFLICT.
   179 oop LiveFrameStream::create_primitive_slot_instance(StackValueCollection* values,
   179 oop LiveFrameStream::create_primitive_slot_instance(StackValueCollection* values,
   180                                                     int i, BasicType type, TRAPS) {
   180                                                     int i, BasicType type, TRAPS) {
   181   Klass* k = SystemDictionary::resolve_or_null(vmSymbols::java_lang_LiveStackFrameInfo(), CHECK_NULL);
   181   Klass* k = SystemDictionary::resolve_or_null(vmSymbols::java_lang_LiveStackFrameInfo(), CHECK_NULL);
   182   instanceKlassHandle ik (THREAD, k);
   182   InstanceKlass* ik = InstanceKlass::cast(k);
   183 
   183 
   184   JavaValue result(T_OBJECT);
   184   JavaValue result(T_OBJECT);
   185   JavaCallArguments args;
   185   JavaCallArguments args;
   186   Symbol* signature = NULL;
   186   Symbol* signature = NULL;
   187 
   187