< prev index next >

src/hotspot/share/opto/rootnode.cpp

Print this page
*** 20,10 ***
--- 20,11 ---
   * or visit www.oracle.com if you need additional information or have any
   * questions.
   *
   */
  
+ #include "code/aotCodeCache.hpp"
  #include "memory/allocation.inline.hpp"
  #include "opto/callnode.hpp"
  #include "opto/cfgnode.hpp"
  #include "opto/phaseX.hpp"
  #include "opto/regmask.hpp"

*** 68,10 ***
--- 69,11 ---
    init_req(TypeFunc::Control,  ctrl        );
    init_req(TypeFunc::I_O,      top);
    init_req(TypeFunc::Memory,   top);
    init_req(TypeFunc::FramePtr, frameptr    );
    init_req(TypeFunc::ReturnAdr,top);
+   AOTCodeCache::add_C_string(halt_reason);
  }
  
  const Type *HaltNode::bottom_type() const { return Type::BOTTOM; }
  uint HaltNode::size_of() const { return sizeof(*this); }
  
< prev index next >