Searched defs:bailout (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp46 // unified bailout support
48 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:VALUE_OBJ_CLASS_SPEC
H A Dc1_LinearScan_x86.hpp135 // 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 Dc1_LIRAssembler.hpp73 // unified bailout support
74 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:LIR_Assembler
H A Dc1_Compilation.cpp142 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 Dc1_GraphBuilder.hpp76 // 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 Dc1_LIRGenerator.hpp189 // unified bailout support
190 void bailout(const char* msg) const { compilation()->bailout(msg); } function in class:LIRGenerator
H A Dc1_GraphBuilder.cpp62 // 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 Dc1_LinearScan.hpp175 // 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 DmethodLiveness.cpp202 bool bailout = false; local
362 bailout = true;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp3561 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 75 milliseconds