Searched defs:osr (Results 1 - 5 of 5) sorted by relevance

/art/compiler/jit/
H A Djit_compiler.cc59 void* handle, ArtMethod* method, Thread* self, bool osr)
63 return jit_compiler->CompileMethod(self, method, osr);
202 bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method, bool osr) { argument
221 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr);
/art/runtime/jit/
H A Dprofiling_info.h123 bool IsMethodBeingCompiled(bool osr) const {
124 return osr
129 void SetIsMethodBeingCompiled(bool value, bool osr) { argument
130 if (osr) {
165 return IsMethodBeingCompiled(/*osr*/ true) || IsMethodBeingCompiled(/*osr*/ false) ||
H A Djit.cc248 bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) { argument
268 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) {
274 << " osr=" << std::boolalpha << osr; local
275 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr);
276 code_cache_->DoneCompiling(method_to_compile, self, osr);
280 << " osr=" << std::boolalpha << osr; local
421 // osr into it.
441 // No osr metho
[all...]
H A Djit_code_cache.cc205 bool osr) {
214 osr);
226 osr);
316 bool osr) {
361 if (osr) {
375 << "JIT added (osr=" << std::boolalpha << osr << std::noboolalpha << ") "
712 // - an osr compiled code, that will be removed if not in a thread call stack.
723 // Empty osr method map, as osr compile
197 CommitCode(Thread* self, ArtMethod* method, const uint8_t* vmap_table, size_t frame_size_in_bytes, size_t core_spill_mask, size_t fp_spill_mask, const uint8_t* code, size_t code_size, bool osr) argument
308 CommitCodeInternal(Thread* self, ArtMethod* method, const uint8_t* vmap_table, size_t frame_size_in_bytes, size_t core_spill_mask, size_t fp_spill_mask, const uint8_t* code, size_t code_size, bool osr) argument
922 NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) argument
966 DoneCompiling(ArtMethod* method, Thread* self ATTRIBUTE_UNUSED, bool osr) argument
[all...]
/art/compiler/optimizing/
H A Doptimizing_compiler.cc295 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
325 bool osr) const;
619 bool osr) const {
681 osr);
817 /* osr */ false));
871 bool osr) {
904 osr));
933 osr);
868 JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr) argument

Completed in 117 milliseconds