hotspot/src/share/vm/opto/output.cpp
changeset 33451 0712796e4039
parent 33198 b37ad9fbf681
child 34174 4db2fb26dc49
equal deleted inserted replaced
33450:08222df07d0d 33451:0712796e4039
    26 #include "asm/assembler.inline.hpp"
    26 #include "asm/assembler.inline.hpp"
    27 #include "code/compiledIC.hpp"
    27 #include "code/compiledIC.hpp"
    28 #include "code/debugInfo.hpp"
    28 #include "code/debugInfo.hpp"
    29 #include "code/debugInfoRec.hpp"
    29 #include "code/debugInfoRec.hpp"
    30 #include "compiler/compileBroker.hpp"
    30 #include "compiler/compileBroker.hpp"
       
    31 #include "compiler/compilerDirectives.hpp"
    31 #include "compiler/oopMap.hpp"
    32 #include "compiler/oopMap.hpp"
    32 #include "memory/allocation.inline.hpp"
    33 #include "memory/allocation.inline.hpp"
    33 #include "opto/ad.hpp"
    34 #include "opto/ad.hpp"
    34 #include "opto/callnode.hpp"
    35 #include "opto/callnode.hpp"
    35 #include "opto/cfgnode.hpp"
    36 #include "opto/cfgnode.hpp"
    87       _cfg->insert( broot, 0, new MachUEPNode() );
    88       _cfg->insert( broot, 0, new MachUEPNode() );
    88     }
    89     }
    89 
    90 
    90   }
    91   }
    91 
    92 
    92 
       
    93   // Break before main entry point
    93   // Break before main entry point
    94   if( (_method && _method->break_at_execute())
    94   if( (_method && C->directive()->BreakAtExecuteOption)
    95 #ifndef PRODUCT
    95 #ifndef PRODUCT
    96     ||(OptoBreakpoint && is_method_compilation())
    96     ||(OptoBreakpoint && is_method_compilation())
    97     ||(OptoBreakpointOSR && is_osr_compilation())
    97     ||(OptoBreakpointOSR && is_osr_compilation())
    98     ||(OptoBreakpointC2R && !_method)
    98     ||(OptoBreakpointC2R && !_method)
    99 #endif
    99 #endif