hotspot/src/share/vm/c1/c1_LIR.hpp
changeset 9102 4708a4aefb33
parent 8676 9098d4e927e1
child 10562 7d59afed6699
equal deleted inserted replaced
9101:ff58f9a8e31c 9102:4708a4aefb33
  1213     dst_pos_positive_check = 1 << 3,
  1213     dst_pos_positive_check = 1 << 3,
  1214     length_positive_check  = 1 << 4,
  1214     length_positive_check  = 1 << 4,
  1215     src_range_check        = 1 << 5,
  1215     src_range_check        = 1 << 5,
  1216     dst_range_check        = 1 << 6,
  1216     dst_range_check        = 1 << 6,
  1217     type_check             = 1 << 7,
  1217     type_check             = 1 << 7,
  1218     all_flags              = (1 << 8) - 1
  1218     overlapping            = 1 << 8,
       
  1219     unaligned              = 1 << 9,
       
  1220     src_objarray           = 1 << 10,
       
  1221     dst_objarray           = 1 << 11,
       
  1222     all_flags              = (1 << 12) - 1
  1219   };
  1223   };
  1220 
  1224 
  1221   LIR_OpArrayCopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp,
  1225   LIR_OpArrayCopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp,
  1222                   ciArrayKlass* expected_type, int flags, CodeEmitInfo* info);
  1226                   ciArrayKlass* expected_type, int flags, CodeEmitInfo* info);
  1223 
  1227