Searched refs:inline_level (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp107 CompileTask::print_inline_indent(inline_level());
121 CompileTask::print_inline_indent(inline_level());
150 CompileTask::print_inline_indent(inline_level());
152 CompileTask::print_inline_indent(inline_level());
367 if (inline_level() > _max_inline_level) {
379 int inline_level = (method() == callee_method) ? 1 : 0; local
380 if (inline_level > MaxRecursiveInlineLevel) {
388 inline_level++;
389 if (inline_level > MaxRecursiveInlineLevel) {
472 C->print_inlining(callee_method, inline_level(), caller_bc
[all...]
H A DcallGenerator.hpp160 static void print_inlining(Compile* C, ciMethod* callee, int inline_level, int bci, const char* msg) { argument
162 C->print_inlining(callee, inline_level, bci, msg);
H A Dparse.hpp92 int inline_level() const { return stack_depth(); } function in class:InlineTree
H A Dcompile.hpp424 void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { argument
426 CompileTask::print_inlining(&ss, method, inline_level, bci, msg);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp113 static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL);
114 static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { argument
115 print_inlining(tty, method, inline_level, bci, msg);
118 static void print_inline_indent(int inline_level, outputStream* st = tty);
H A DcompileBroker.cpp429 void CompileTask::print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg) { argument
454 for (int i = 0; i < inline_level; i++) st->print(" ");
471 void CompileTask::print_inline_indent(int inline_level, outputStream* st) { argument
483 for (int i = 0; i < inline_level; i++) st->print(" ");
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp333 int inline_level() const { return scope()->level(); } function in class:VALUE_OBJ_CLASS_SPEC
H A Dc1_GraphBuilder.cpp3671 if (inline_level() > MaxInlineLevel ) INLINE_BAILOUT("inlining too deep");

Completed in 337 milliseconds