src/hotspot/share/prims/jvmtiImpl.cpp
changeset 47765 b7c7428eaab9
parent 47216 71c04702a3d5
child 48105 8d15b1369c7a
equal deleted inserted replaced
47764:029d5efaaa6c 47765:b7c7428eaab9
   521 //
   521 //
   522 // class VM_GetOrSetLocal
   522 // class VM_GetOrSetLocal
   523 //
   523 //
   524 
   524 
   525 // Constructor for non-object getter
   525 // Constructor for non-object getter
   526 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
   526 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type)
   527   : _thread(thread)
   527   : _thread(thread)
   528   , _calling_thread(NULL)
   528   , _calling_thread(NULL)
   529   , _depth(depth)
   529   , _depth(depth)
   530   , _index(index)
   530   , _index(index)
   531   , _type(type)
   531   , _type(type)
   534   , _result(JVMTI_ERROR_NONE)
   534   , _result(JVMTI_ERROR_NONE)
   535 {
   535 {
   536 }
   536 }
   537 
   537 
   538 // Constructor for object or non-object setter
   538 // Constructor for object or non-object setter
   539 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
   539 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type, jvalue value)
   540   : _thread(thread)
   540   : _thread(thread)
   541   , _calling_thread(NULL)
   541   , _calling_thread(NULL)
   542   , _depth(depth)
   542   , _depth(depth)
   543   , _index(index)
   543   , _index(index)
   544   , _type(type)
   544   , _type(type)