src/share/vm/c1/c1_LIR.hpp

changeset 2728
13bc79b5c9c8
parent 2639
8033953d67ff
child 3153
5cceda753a4a
     1.1 --- a/src/share/vm/c1/c1_LIR.hpp	Sat Apr 02 10:54:15 2011 -0700
     1.2 +++ b/src/share/vm/c1/c1_LIR.hpp	Sun Apr 03 12:00:54 2011 +0200
     1.3 @@ -1215,7 +1215,11 @@
     1.4      src_range_check        = 1 << 5,
     1.5      dst_range_check        = 1 << 6,
     1.6      type_check             = 1 << 7,
     1.7 -    all_flags              = (1 << 8) - 1
     1.8 +    overlapping            = 1 << 8,
     1.9 +    unaligned              = 1 << 9,
    1.10 +    src_objarray           = 1 << 10,
    1.11 +    dst_objarray           = 1 << 11,
    1.12 +    all_flags              = (1 << 12) - 1
    1.13    };
    1.14  
    1.15    LIR_OpArrayCopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp,

mercurial