hotspot/src/share/vm/code/relocInfo.cpp
changeset 46630 75aa3e39d02c
parent 46530 7b915076588f
child 46968 9119841280f4
equal deleted inserted replaced
46629:8eeacdc76bf2 46630:75aa3e39d02c
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   938       opt_virtual_call_Relocation* r = (opt_virtual_call_Relocation*) reloc();
   938       opt_virtual_call_Relocation* r = (opt_virtual_call_Relocation*) reloc();
   939       tty->print(" | [destination=" INTPTR_FORMAT " metadata=" INTPTR_FORMAT "]",
   939       tty->print(" | [destination=" INTPTR_FORMAT " metadata=" INTPTR_FORMAT "]",
   940                  p2i(r->destination()), p2i(r->method_value()));
   940                  p2i(r->destination()), p2i(r->method_value()));
   941       break;
   941       break;
   942     }
   942     }
       
   943   default:
       
   944     break;
   943   }
   945   }
   944   tty->cr();
   946   tty->cr();
   945 }
   947 }
   946 
   948 
   947 
   949