mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8071654: disassembler handles embedded OOPs not uniformly
Remove (currently dead) code that prints oops within disassembled instructions. Reviewed-by: kvn, thartmann, roland
This commit is contained in:
parent
efd80ec6af
commit
49282c3927
3 changed files with 0 additions and 31 deletions
|
@ -2310,17 +2310,6 @@ void nmethod::preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map
|
|||
#endif // !SHARK
|
||||
}
|
||||
|
||||
|
||||
oop nmethod::embeddedOop_at(u_char* p) {
|
||||
RelocIterator iter(this, p, p + 1);
|
||||
while (iter.next())
|
||||
if (iter.type() == relocInfo::oop_type) {
|
||||
return iter.oop_reloc()->oop_value();
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
inline bool includes(void* p, void* from, void* to) {
|
||||
return from <= p && p < to;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue