src/share/vm/c1/c1_IR.hpp

changeset 3592
701a83c86f28
parent 2314
f95d63e2154a
child 4153
b9a9ed0f8eeb
     1.1 --- a/src/share/vm/c1/c1_IR.hpp	Wed Feb 22 14:00:34 2012 -0500
     1.2 +++ b/src/share/vm/c1/c1_IR.hpp	Tue Feb 21 13:14:55 2012 -0500
     1.3 @@ -149,6 +149,7 @@
     1.4    XHandlers*    _xhandlers;                      // the exception handlers
     1.5    int           _number_of_locks;                // the number of monitor lock slots needed
     1.6    bool          _monitor_pairing_ok;             // the monitor pairing info
     1.7 +  bool          _wrote_final;                    // has written final field
     1.8    BlockBegin*   _start;                          // the start block, successsors are method entries
     1.9  
    1.10    BitMap        _requires_phi_function;          // bit is set if phi functions at loop headers are necessary for a local variable
    1.11 @@ -181,6 +182,8 @@
    1.12    void          set_min_number_of_locks(int n)   { if (n > _number_of_locks) _number_of_locks = n; }
    1.13    bool          monitor_pairing_ok() const       { return _monitor_pairing_ok; }
    1.14    BlockBegin*   start() const                    { return _start; }
    1.15 +  void          set_wrote_final()                { _wrote_final = true; }
    1.16 +  bool          wrote_final    () const          { return _wrote_final; }
    1.17  };
    1.18  
    1.19  

mercurial