7013008: 2/3 assert(method == NULL || check_method(method, bcp)) failed: bcp must point into method

The Relocator should pass a NULL methodOop when rewriting since its resource array can never contain breakpoints.

Reviewed-by: dcubed, kvn, coleenp
This commit is contained in:
Tom Rodriguez 2011-01-19 08:16:45 -08:00
parent 5dc9441b0a
commit f028816786

View file

@ -106,7 +106,7 @@ class Relocator : public ResourceObj {
// get the address of in the code_array
inline char* addr_at(int bci) const { return (char*) &code_array()[bci]; }
int instruction_length_at(int bci) { return Bytecodes::length_at(_method(), code_array() + bci); }
int instruction_length_at(int bci) { return Bytecodes::length_at(NULL, code_array() + bci); }
// Helper methods
int align(int n) const { return (n+3) & ~3; }