comparison src/share/vm/code/nmethod.cpp @ 11041:7875ea94bea5

8017308: Remove unused breakpoint relocation type Summary: remove unused breakpoint relocation type Reviewed-by: kvn
author goetz
date Mon, 24 Jun 2013 11:53:54 -0700
parents ef57c43512d6
children 6b0fd0964b87 5888334c9c24 bdd155477289
comparison
equal deleted inserted replaced
11025:fc8a1a5de78e 11041:7875ea94bea5
1079 reloc->fix_oop_relocation(); 1079 reloc->fix_oop_relocation();
1080 } else if (iter.type() == relocInfo::metadata_type) { 1080 } else if (iter.type() == relocInfo::metadata_type) {
1081 metadata_Relocation* reloc = iter.metadata_reloc(); 1081 metadata_Relocation* reloc = iter.metadata_reloc();
1082 reloc->fix_metadata_relocation(); 1082 reloc->fix_metadata_relocation();
1083 } 1083 }
1084
1085 // There must not be any interfering patches or breakpoints.
1086 assert(!(iter.type() == relocInfo::breakpoint_type
1087 && iter.breakpoint_reloc()->active()),
1088 "no active breakpoint");
1089 } 1084 }
1090 } 1085 }
1091 1086
1092 1087
1093 void nmethod::verify_oop_relocations() { 1088 void nmethod::verify_oop_relocations() {