src/cpu/x86/vm/frame_x86.cpp

changeset 5307
e0c9a1d29eb4
parent 5237
f2110083203d
child 5784
190899198332
equal deleted inserted replaced
5306:d9eed26d638a 5307:e0c9a1d29eb4
585 return false; 585 return false;
586 } 586 }
587 587
588 // validate ConstantPoolCache* 588 // validate ConstantPoolCache*
589 ConstantPoolCache* cp = *interpreter_frame_cache_addr(); 589 ConstantPoolCache* cp = *interpreter_frame_cache_addr();
590 if (cp == NULL || !cp->is_metadata()) return false; 590 if (cp == NULL || !cp->is_metaspace_object()) return false;
591 591
592 // validate locals 592 // validate locals
593 593
594 address locals = (address) *interpreter_frame_locals_addr(); 594 address locals = (address) *interpreter_frame_locals_addr();
595 595

mercurial