comparison src/share/vm/c1/c1_ValueStack.hpp @ 6266:1d7922586cf6

7023639: JSR 292 method handle invocation needs a fast path for compiled code 6984705: JSR 292 method handle creation should not go through JNI Summary: remove assembly code for JDK 7 chained method handles Reviewed-by: jrose, twisti, kvn, mhaupt Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>
author twisti
date Tue, 24 Jul 2012 10:51:00 -0700
parents f95d63e2154a
children b9a9ed0f8eeb
comparison
equal deleted inserted replaced
6241:aba91a731143 6266:1d7922586cf6
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