hotspot/src/share/vm/c1/c1_ValueStack.hpp
changeset 13391 30245956af37
parent 7397 5b173b4ca846
child 13963 e5b53c306fb5
equal deleted inserted replaced
13309:50c604cb0d5f 13391:30245956af37
   138 
   138 
   139   Value stack_at_inc(int& i) const {
   139   Value stack_at_inc(int& i) const {
   140     Value x = stack_at(i);
   140     Value x = stack_at(i);
   141     i += x->type()->size();
   141     i += x->type()->size();
   142     return x;
   142     return x;
       
   143   }
       
   144 
       
   145   void stack_at_put(int i, Value x) {
       
   146     _stack.at_put(i, x);
   143   }
   147   }
   144 
   148 
   145   // pinning support
   149   // pinning support
   146   void pin_stack_for_linear_scan();
   150   void pin_stack_for_linear_scan();
   147 
   151