src/share/vm/oops/methodDataOop.hpp

changeset 513
e1e86702e43e
parent 480
48a3fa21394b
child 624
0b27f3512f9e
     1.1 --- a/src/share/vm/oops/methodDataOop.hpp	Thu Mar 27 09:12:54 2008 -0700
     1.2 +++ b/src/share/vm/oops/methodDataOop.hpp	Fri Mar 28 11:52:29 2008 -0700
     1.3 @@ -1253,7 +1253,10 @@
     1.4    // Support for interprocedural escape analysis, from Thomas Kotzmann.
     1.5    enum EscapeFlag {
     1.6      estimated    = 1 << 0,
     1.7 -    return_local = 1 << 1
     1.8 +    return_local = 1 << 1,
     1.9 +    return_allocated = 1 << 2,
    1.10 +    allocated_escapes = 1 << 3,
    1.11 +    unknown_modified = 1 << 4
    1.12    };
    1.13  
    1.14    intx eflags()                                  { return _eflags; }

mercurial