Searched refs:deoptimize (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/util/ArrayList/
H A DRangeCheckMicroBenchmark.java148 private static void deoptimize(ArrayList<Integer> list) { method in class:RangeCheckMicroBenchmark
174 deoptimize(list);}},
181 deoptimize(list);}},
187 deoptimize(list);}},
196 deoptimize(list);}},
204 deoptimize(list);}},
212 deoptimize(list);}},
219 deoptimize(list);}},
229 deoptimize(list);}}
H A DIteratorMicroBenchmark.java150 private static void deoptimize(int sum) { method in class:IteratorMicroBenchmark
445 deoptimize(sum);}}}
/openjdk7/jdk/test/java/nio/Buffer/
H A DSwapMicroBenchmark.java151 private static void deoptimize(int sum) { method in class:SwapMicroBenchmark
179 deoptimize(sum);}}},
188 deoptimize(sum);}}},
197 deoptimize(sum);}}},
206 deoptimize(sum);}}},
215 deoptimize(sum);}}},
224 deoptimize(sum);}}},
233 deoptimize(sum);}}},
242 deoptimize(sum);}}}
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.hpp66 stub(deoptimize) \
156 static void deoptimize(JavaThread* thread);
H A Dc1_Runtime1.cpp334 // if we deoptimize here so force a deopt to stress the path.
353 // if we deoptimize here so force a deopt to stress the path.
490 // we have to deoptimize here. If we attempted to notify the
492 // we could deoptimize on the way out of the VM and end back in
501 // We don't really want to deoptimize the nmethod itself since we
592 // If so we must return to the deopt blob and deoptimize the nmethod
688 JRT_ENTRY(void, Runtime1::deoptimize(JavaThread* thread))
728 // either has to deoptimize when this case is detected or execute a
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp138 // deoptimize all java threads in the system
142 thread->deoptimize();
162 Deoptimization::deoptimize(thread, *fst.current(), fst.register_map());
H A Ddeoptimization.hpp102 static void deoptimize(JavaThread* thread, frame fr, RegisterMap *reg_map);
239 // VM_DeoptimizeFrame otherwise deoptimize directly.
H A Dframe.hpp215 void deoptimize(JavaThread* thread);
H A Ddeoptimization.cpp1134 fr.deoptimize(thread);
1137 void Deoptimization::deoptimize(JavaThread* thread, frame fr, RegisterMap *map) { function in class:Deoptimization
1139 // Do not deoptimize the frame which is already patched
1156 "can only deoptimize other thread at a safepoint");
1163 deoptimize(thread, fr, &reg_map);
H A Dthread.cpp2177 // must deoptimize the caller before continuing, as the compiled exception handler table
2186 Deoptimization::deoptimize(this, compiled_frame, &reg_map);
2393 f.deoptimize(thread);
2580 void JavaThread::deoptimize() {
2585 // Iterate over all frames in the thread and deoptimize
2619 Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
2655 Deoptimization::deoptimize(this, *fst.current(), fst.register_map());
H A Dframe.cpp242 // only the return needs to be executed. Don't deoptimize here.
256 void frame::deoptimize(JavaThread* thread) { function in class:frame
H A Dthread.hpp795 // in compiled frames until we deoptimize and we have an interpreter frame.
1453 void deoptimize();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp773 __ set_info("deoptimize", dont_gc_arguments);
775 int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, deoptimize));
1047 // whether it had a handler or not we will deoptimize
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1471 StubFrame f(sasm, "deoptimize", dont_gc_arguments);
1474 int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, deoptimize));

Completed in 91 milliseconds