methodOop InterpretedIC_Iterator::interpreted_method() const {
  if (is_interpreted()) {
    methodOop m = (methodOop)_method;
#ifdef ASSERT
    assert(m->is_old(), "methods must be old");
    m->verify();
#endif
    return m;
  } else {
    return compiled_method()->method();
  }
}
nmethod*  IC_Iterator::compiled_method(int i) {
  goto_elem(i);
  return compiled_method();
}