hotspot/src/cpu/sparc/vm/vm_version_sparc.cpp
changeset 46595 18a062f9a227
parent 46593 97c895b9bec4
child 46597 d669fb842ae3
equal deleted inserted replaced
46594:697dad96a3df 46595:18a062f9a227
   205   assert((CodeEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
   205   assert((CodeEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
   206   assert((OptoLoopAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
   206   assert((OptoLoopAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
   207 
   207 
   208   char buf[512];
   208   char buf[512];
   209   jio_snprintf(buf, sizeof(buf),
   209   jio_snprintf(buf, sizeof(buf),
   210                "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
   210                "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
   211                (has_v9()          ? "v9" : ""),
   211                (has_v9()          ? "v9" : ""),
   212                (has_popc()        ? ", popc" : ""),
   212                (has_popc()        ? ", popc" : ""),
   213                (has_vis1()        ? ", vis1" : ""),
   213                (has_vis1()        ? ", vis1" : ""),
   214                (has_vis2()        ? ", vis2" : ""),
   214                (has_vis2()        ? ", vis2" : ""),
   215                (has_blk_init()    ? ", blk_init" : ""),
   215                (has_blk_init()    ? ", blk_init" : ""),
   243                (has_fast_idiv()   ? ", *idiv" : ""),
   243                (has_fast_idiv()   ? ", *idiv" : ""),
   244                (has_fast_rdpc()   ? ", *rdpc" : ""),
   244                (has_fast_rdpc()   ? ", *rdpc" : ""),
   245                (has_fast_bis()    ? ", *bis" : ""),
   245                (has_fast_bis()    ? ", *bis" : ""),
   246                (has_fast_ld()     ? ", *ld" : ""),
   246                (has_fast_ld()     ? ", *ld" : ""),
   247                (has_fast_cmove()  ? ", *cmove" : ""),
   247                (has_fast_cmove()  ? ", *cmove" : ""),
   248                (has_fast_fxtof()  ? ", *fxtof" : ""),
       
   249                (has_fast_ind_br() ? ", *ind_br" : ""),
   248                (has_fast_ind_br() ? ", *ind_br" : ""),
   250                (has_blk_zeroing() ? ", *blk_zeroing" : ""));
   249                (has_blk_zeroing() ? ", *blk_zeroing" : ""));
   251 
   250 
   252   assert(strlen(buf) >= 2, "must be");
   251   assert(strlen(buf) >= 2, "must be");
   253 
   252