hotspot/src/share/vm/asm/codeBuffer.hpp
changeset 46619 a3919f5e8d2b
parent 41685 7df85c88cdc0
child 46625 edefffab74e2
equal deleted inserted replaced
46618:d503911aa948 46619:a3919f5e8d2b
   225   int alignment() const             { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
   225   int alignment() const             { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
   226 
   226 
   227   // Slop between sections, used only when allocating temporary BufferBlob buffers.
   227   // Slop between sections, used only when allocating temporary BufferBlob buffers.
   228   static csize_t end_slop()         { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
   228   static csize_t end_slop()         { return MAX2((int)sizeof(jdouble), (int)CodeEntryAlignment); }
   229 
   229 
   230   csize_t align_at_start(csize_t off) const { return (csize_t) align_size_up(off, alignment()); }
   230   csize_t align_at_start(csize_t off) const { return (csize_t) align_up(off, alignment()); }
   231 
   231 
   232   // Mark a section frozen.  Assign its remaining space to
   232   // Mark a section frozen.  Assign its remaining space to
   233   // the following section.  It will never expand after this point.
   233   // the following section.  It will never expand after this point.
   234   inline void freeze();         //  { _outer->freeze_section(this); }
   234   inline void freeze();         //  { _outer->freeze_section(this); }
   235 
   235