hotspot/src/share/vm/opto/doCall.cpp
changeset 24424 2658d7834c6e
parent 24002 4e6a72032a99
child 24479 20eb4c752fb5
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2014, 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.
    55     }
    55     }
    56     CompileTask::print_inline_indent(depth, out);
    56     CompileTask::print_inline_indent(depth, out);
    57     out->print(" \\-> TypeProfile (%d/%d counts) = ", receiver_count, site_count);
    57     out->print(" \\-> TypeProfile (%d/%d counts) = ", receiver_count, site_count);
    58     stringStream ss;
    58     stringStream ss;
    59     prof_klass->name()->print_symbol_on(&ss);
    59     prof_klass->name()->print_symbol_on(&ss);
    60     out->print(ss.as_string());
    60     out->print("%s", ss.as_string());
    61     out->cr();
    61     out->cr();
    62   }
    62   }
    63 }
    63 }
    64 
    64 
    65 CallGenerator* Compile::call_generator(ciMethod* callee, int vtable_index, bool call_does_dispatch,
    65 CallGenerator* Compile::call_generator(ciMethod* callee, int vtable_index, bool call_does_dispatch,