Home
last modified time | relevance | path

Searched refs:HasCompiledCode (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/libllvmbackend/
Dcompiler_interface.h42 virtual bool HasCompiledCode() = 0;
Dllvm_irtoc_compiler.h54 bool HasCompiledCode() override in HasCompiledCode() function
Dllvm_irtoc_compiler.cpp155 ASSERT_PRINT(!HasCompiledCode(), "Cannot compile twice"); in CompileAll()
224 ASSERT_PRINT(HasCompiledCode(), "Call CompileAll first"); in WriteObjectFile()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc_llvm.cpp77 if (!llvmbackend::OPTIONS.IsLlvmFallback() && !llvm_aot_compiler_->HasCompiledCode()) { in EndLLVM()
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.cpp49 return (isOsr && GetOsrCode(method) != nullptr) || (!isOsr && method->HasCompiledCode()); in IsCompilationExpired()
798 ASSERT(method->HasCompiledCode()); in CompileMethod()
802 if (method->HasCompiledCode() && !osr) { in CompileMethod()
805 bool ctxOsr = method->HasCompiledCode() ? osr : false; in CompileMethod()
940 if (method->HasCompiledCode()) { in CompileMethodImpl()
947 ASSERT(!method->HasCompiledCode()); in CompileMethodImpl()
Dcompiler.h203 if (!static_cast<const Method *>(method)->HasCompiledCode()) { in TrySetOsrCode()
215 bool HasCompiledCode(MethodPtr method) override in HasCompiledCode() function
217 return MethodCast(method)->HasCompiledCode(); in HasCompiledCode()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod-inl.h413 bool runInterpreter = !HasCompiledCode() || proxyCall; in InvokeImpl()
484 if ((profThreshold < threshold) && !IsProfiling() && !HasCompiledCode() && !IsProfiled()) { in DecrementHotnessCounter()
Dmethod.h387 bool HasCompiledCode() const in HasCompiledCode() function
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Druntime_interface.h283 virtual bool HasCompiledCode([[maybe_unused]] MethodPtr method) in HasCompiledCode() function
/arkcompiler/runtime_core/static_core/runtime/interpreter/
Dinterpreter-inl.h3346 if (!method->HasCompiledCode()) { in HandleCallPrologue()
3419 if (method->HasCompiledCode()) { in HandleCall()