comparison src/cpu/x86/vm/frame_x86.cpp @ 11034:e0c9a1d29eb4

8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
author coleenp
date Mon, 24 Jun 2013 18:55:46 -0400
parents f2110083203d
children 6b0fd0964b87 190899198332
comparison
equal deleted inserted replaced
11033:d9eed26d638a 11034: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