src/share/vm/prims/whitebox.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8039525 Cdiff src/share/vm/prims/whitebox.cpp

src/share/vm/prims/whitebox.cpp

Print this page

        

*** 584,594 **** Klass* arg_klass = object->klass(); //Turn it into an instance-klass InstanceKlass* ik = InstanceKlass::cast(arg_klass); //Create symbols to look for in the class ! TempNewSymbol name_symbol = SymbolTable::lookup(field_name, (int) strlen(field_name), THREAD); //To be filled in with an offset of the field we're looking for fieldDescriptor fd; --- 584,594 ---- Klass* arg_klass = object->klass(); //Turn it into an instance-klass InstanceKlass* ik = InstanceKlass::cast(arg_klass); //Create symbols to look for in the class ! TempNewSymbol name_symbol = SymbolTable::lookup_and_add(field_name, (int) strlen(field_name), THREAD); //To be filled in with an offset of the field we're looking for fieldDescriptor fd;
src/share/vm/prims/whitebox.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File