Searched defs:bailout (Results 1 - 10 of 10) sorted by relevance
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_FpuStackSim_x86.hpp | 46 // unified bailout support 48 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:VALUE_OBJ_CLASS_SPEC
|
H A D | c1_LinearScan_x86.hpp | 135 // unified bailout support 136 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:VALUE_OBJ_CLASS_SPEC
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LIRAssembler.hpp | 73 // unified bailout support 74 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:LIR_Assembler
|
H A D | c1_Compilation.cpp | 142 bailout("invalid parsing"); 229 bailout("Bailing out because of -XX:+BailoutAfterLIR"); 324 bailout("linear scan can't handle exception handlers"); 386 bailout("Bailing out because method is not compilable"); 408 // bailout if method couldn't be compiled 552 void Compilation::bailout(const char* msg) { function in class:Compilation 553 assert(msg != NULL, "bailout message must exist"); 555 // keep first bailout message 556 if (PrintCompilation || PrintBailouts) tty->print_cr("compilation bailout: %s", msg);
|
H A D | c1_GraphBuilder.hpp | 76 // bailout conditions, since we only handle a subset of all of the 206 // unified bailout support 207 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:VALUE_OBJ_CLASS_SPEC
|
H A D | c1_LIRGenerator.hpp | 189 // unified bailout support 190 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:LIRGenerator
|
H A D | c1_GraphBuilder.cpp | 62 // unified bailout support 63 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:VALUE_OBJ_CLASS_SPEC 725 // to a compilation bailout 1870 // bailout during construction of the callee graph, the entire 2119 // set the bailout state but complete normal processing. We 2120 // might do a little more work before noticing the bailout so we 2122 bailout("Method and/or inlining is too large"); 2221 // very rare so we bailout instead of trying to handle it. 2480 bailout("OS [all...] |
H A D | c1_LinearScan.hpp | 175 // unified bailout support 176 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:LinearScan 359 bailout("illegal oopMap register name"); 661 // unified bailout support 662 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:IntervalWalker
|
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | methodLiveness.cpp | 202 bool bailout = false; local 362 bailout = true;
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | library_call.cpp | 3561 RegionNode* bailout = new (C) RegionNode(1); local 3562 record_for_igvn(bailout); 3566 Node* not_objArray = generate_non_objArray_guard(klass_node, bailout); 3577 generate_negative_guard(start, bailout, &start); 3578 generate_negative_guard(end, bailout, &end); 3589 generate_negative_guard(length, bailout, &length); 3591 if (bailout->req() > 1) { 3593 set_control(_gvn.transform(bailout));
|
Completed in 162 milliseconds