Exemplo n.º 1
0
void OffsetTableContigSpace::print_on(outputStream* st) const {
  print_short_on(st);
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", "
                INTPTR_FORMAT ", " INTPTR_FORMAT ")",
              bottom(), top(), _offsets.threshold(), end());
}
Exemplo n.º 2
0
void ContiguousSpace::print_on(outputStream* st) const {
  print_short_on(st);
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
                bottom(), top(), end());
}
Exemplo n.º 3
0
void Space::print_on(outputStream* st) const {
  print_short_on(st);
st->print_cr(" ["PTR_FORMAT", "PTR_FORMAT")",
                bottom(), end());
}
Exemplo n.º 4
0
void Space::print_short() const { print_short_on(tty); }
Exemplo n.º 5
0
void Space::print_on(outputStream* st) const {
  print_short_on(st);
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ")",
                p2i(bottom()), p2i(end()));
}