Home | History | Annotate | Download | only in interpreter

Lines Matching refs:Jit

43 #include "jit/jit.h"
116 // mterp. Access checks and instrumentation other than jit profiling are not supported, but does
143 jit::Jit* jit = Runtime::Current()->GetJit();
144 if (jit != nullptr) {
146 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
148 jit->AddSamples(self, sf_method, 1, /*with_backedges*/false);
184 jit::Jit* jit = Runtime::Current()->GetJit();
185 if (jit != nullptr) {
187 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
189 jit->AddSamples(self, sf_method, 1, /*with_backedges*/false);
191 // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT.
254 jit::Jit* jit = Runtime::Current()->GetJit();
255 if (jit != nullptr) {
256 jit->InvokeVirtualOrInterface(
258 jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges*/false);
261 // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT.