hotspot/src/share/vm/c1/c1_IR.hpp
changeset 24318 9d2b7bd56778
parent 24018 77b156916bab
child 33160 c59f1676d27e
--- a/hotspot/src/share/vm/c1/c1_IR.hpp	Mon Apr 28 03:44:35 2014 -0700
+++ b/hotspot/src/share/vm/c1/c1_IR.hpp	Mon Apr 28 14:34:12 2014 +0200
@@ -293,7 +293,6 @@
  private:
   Compilation*     _compilation;                 // the current compilation
   IRScope*         _top_scope;                   // the root of the scope hierarchy
-  WordSize         _locals_size;                 // the space required for all locals
   int              _num_loops;                   // Total number of loops
   BlockList*       _code;                        // the blocks in code generation order w/ use counts
 
@@ -310,8 +309,6 @@
   BlockBegin*      start() const                 { return top_scope()->start(); }
   BlockBegin*      std_entry() const             { return start()->end()->as_Base()->std_entry(); }
   BlockBegin*      osr_entry() const             { return start()->end()->as_Base()->osr_entry(); }
-  WordSize         locals_size() const           { return _locals_size; }
-  int              locals_size_in_words() const  { return in_words(_locals_size); }
   BlockList*       code() const                  { return _code; }
   int              num_loops() const             { return _num_loops; }
   int              max_stack() const             { return top_scope()->max_stack(); } // expensive