/arkcompiler/runtime_core/static_core/runtime/ |
H A D | deoptimization.cpp | 93 << cframe.GetMethod()->GetFullName(); 96 << cframe.GetMethod()->GetFullName(); 123 EVENT_CHA_DEOPTIMIZE(std::string(method->GetFullName()), inStackCount); 141 EVENT_DEOPTIMIZATION(std::string(cframe.GetMethod()->GetFullName()), in PrevFrameDeopt() 162 EVENT_DEOPTIMIZATION(std::string(cframe.GetMethod()->GetFullName()), in PrevFrameDeopt() 174 LOG(DEBUG, INTEROP) << "Destroy compiled method: " << destroyMethod->GetFullName(); in DestroyMethodWithInvalidatingEP() 197 LOG(INFO, INTEROP) << "Deoptimize frame: " << method->GetFullName() << ", pc=" << std::hex in Deoptimize() 218 EVENT_METHOD_EXIT(last_iframe->GetMethod()->GetFullName() + "(deopt)", events::MethodExitKind::INLINED, in Deoptimize() 224 EVENT_METHOD_EXIT(last_iframe->GetMethod()->GetFullName() + "(deopt)", events::MethodExitKind::COMPILED, in Deoptimize() 245 LOG(DEBUG, INTEROP) << "Drop compiled frame: " << stack->GetMethod()->GetFullName(); in DropCompiledFrame() [all...] |
H A D | cha.cpp | 56 EVENT_CHA_INVALIDATE(std::string(parentMethod->GetFullName()), klass->GetName()); in Update() 118 LOG(DEBUG, CLASS_LINKER) << "[CHA] Invalidate method " << method->GetFullName(); in GetLock() 135 LOG(DEBUG, CLASS_LINKER) << "[CHA] Add dependency: caller " << caller->GetFullName() << ", callee " in AddDependency() 136 << callee->GetFullName(); in AddDependency()
|
H A D | osr.cpp | 57 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loopHeadBc, osrKind, events::OsrEntryResult::ERROR); in WriteOsrEventError() 67 LOG(DEBUG, INTEROP) << "OSR entry in method '" << stack.GetMethod()->GetFullName() << "': " << osrCode; in OsrEntry() 80 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loopHeadBc, in OsrEntry() 96 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loopHeadBc, in OsrEntry() 103 EVENT_OSR_ENTRY(std::string(frame->GetMethod()->GetFullName()), loopHeadBc, events::OsrEntryKind::TOP_FRAME, in OsrEntry()
|
H A D | exceptions.cpp | 246 LOG(DEBUG, INTEROP) << "Search for the catch block in " << stack->GetMethod()->GetFullName(); in FindCatchBlockInCFrames() 257 LOG(DEBUG, INTEROP) << "Catch block is found in " << stack->GetMethod()->GetFullName(); in FindCatchBlockInCFrames() 289 EVENT_METHOD_EXIT(stack->GetMethod()->GetFullName(), events::MethodExitKind::COMPILED, in FindCatchBlockInCFrames() 308 LOG(DEBUG, INTEROP) << "Enter in FindCatchBlockInCallStack for " << origFrame->GetMethod()->GetFullName(); in FindCatchBlockInCallStack()
|
H A D | method.cpp | 221 LOG(ERROR, INTERPRETER) << "Before call the method " << GetFullName(); in Invoke() 284 PandaString Method::GetFullName(bool withSignature) const in GetFullName() function in ark::Method 502 LOG(DEBUG, VERIFIER) << "Skipping verification of system method " << GetFullName(true); in Verify() 581 EVENT_INTERP_PROFILING(events::InterpProfilingAction::START, GetFullName(), vcalls.size()); in StartProfiling() 593 EVENT_INTERP_PROFILING(events::InterpProfilingAction::STOP, GetFullName(), in StopProfiling()
|
H A D | imtable_builder.cpp | 121 LOG(DEBUG, CLASS_LINKER) << "[ " << i << " ] " << method->GetFullName();
|
H A D | vtable_builder_base.cpp | 77 LOG(DEBUG, CLASS_LINKER) << "[" << idx++ << "] " << method->GetFullName(); in DumpVTable()
|
H A D | relayout_profiler.cpp | 93 std::string item = PandaStringToStd(method->GetFullName()); in AddProfileCodeItem()
|
/arkcompiler/runtime_core/static_core/verification/cflow/ |
H A D | cflow_check.cpp | 35 LOG_VERIFIER_CFLOW_INVALID_JUMP_OUTSIDE_METHOD_BODY(method->GetFullName(), OffsetAsHexStr(methodStart, target), in CheckValidFlagInstructionException() 41 method->GetFullName(), OffsetAsHexStr(methodStart, target), OffsetAsHexStr(methodStart, pc)); in CheckValidFlagInstructionException() 47 LOG_VERIFIER_CFLOW_INVALID_JUMP_INTO_EXC_HANDLER(method->GetFullName(), in CheckValidFlagInstructionException() 75 LOG_VERIFIER_CFLOW_INVALID_JUMP_INTO_EXC_HANDLER(method->GetFullName(), in CheckCode() 84 LOG_VERIFIER_CFLOW_INVALID_LAST_INSTRUCTION(method->GetFullName()); in CheckCode() 94 LOG_VERIFIER_CFLOW_BODY_FALL_INTO_EXC_HANDLER(method->GetFullName(), in CheckCode()
|
H A D | cflow_info.cpp | 55 method->GetFullName(), OffsetAsHexStr(addrStart_, tgt), OffsetAsHexStr(addrStart_, pc)); in FillCodeMaps() 135 LOG(DEBUG, VERIFIER) << "Build control flow info for method " << method->GetFullName(); in GetCflowMethodInfo()
|
/arkcompiler/runtime_core/static_core/verification/jobs/ |
H A D | job.cpp | 63 LOG(WARNING, VERIFIER) << "Failed to resolve identifiers for method " << method_->GetFullName(true); in DoChecks() 71 LOG(WARNING, VERIFIER) << "Failed to check control flow for method " << method_->GetFullName(true); in DoChecks() 82 << method_->GetFullName(true); in DoChecks() 89 LOG(WARNING, VERIFIER) << "Abstract interpretation failed for method " << method_->GetFullName(true); in DoChecks()
|
/arkcompiler/runtime_core/static_core/verification/ |
H A D | public.cpp | 108 LOG(DEBUG, VERIFIER) << "Verification result for method " << method->GetFullName(true) << ": " << status; in ReportStatus() 157 LOG(DEBUG, VERIFIER) << method->GetFullName(true) << " has no code, no meaningful verification"; in CheckBeforeVerification() 162 LOG(DEBUG, VERIFIER) << "Skipping verification of '" << method->GetFullName() in CheckBeforeVerification() 168 auto methodName = method->GetFullName(); in CheckBeforeVerification() 192 auto methodName = method->GetFullName(); in Verify() 198 LOG(INFO, VERIFIER) << "Attempt to verify " << method->GetFullName(true) in Verify() 206 LOG(INFO, VERIFIER) << "Started verification of method '" << method->GetFullName(true) << "'"; in Verify()
|
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
H A D | function_call_timer.cpp | 44 << GetFullName(method) << "has been skipped"; in StopCount() 52 CString FunctionCallTimer::GetFullName(Method *method) in GetFullName() function in panda::ecmascript::FunctionCallTimer 65 CString funcName = GetFullName(method); in InitialStatAndTimer() 72 CString funcName = GetFullName(method); in InitialStatAndTimer()
|
H A D | function_call_timer.h | 74 CString GetFullName(Method *method);
|
/arkcompiler/runtime_core/static_core/runtime/dprofiler/ |
H A D | dprofiler.cpp | 53 static PandaString GetFullName(const Method *method) in GetFullName() function 79 LOG(ERROR, DPROF) << "Method already exsists: " << GetFullName(&method); in AddClass() 89 auto ret = methodInfoMap.emplace(std::make_pair(GetFullName(method), method->GetHotnessCounter())); in Dump()
|
/arkcompiler/runtime_core/static_core/runtime/bridge/ |
H A D | bridge.cpp | 70 LOG(DEBUG, INTEROP) << "InvokeInterpreter for method: " << frame->GetMethod()->GetFullName(); in InvokeInterpreter() 91 LOG(DEBUG, INTEROP) << "InvokeInterpreter for method: " << frame->GetMethod()->GetFullName(); in InvokeInterpreter()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | method_test.cpp | 557 TEST_F(MethodTest, GetFullName) in TEST_F() 591 ASSERT_EQ(PandaStringToStd(method1->GetFullName()), "R::void_fun"); in TEST_F() 592 ASSERT_EQ(PandaStringToStd(method1->GetFullName(true)), "void R::void_fun(R)"); in TEST_F() 596 ASSERT_EQ(PandaStringToStd(method2->GetFullName()), "R::static_void_fun"); in TEST_F() 597 ASSERT_EQ(PandaStringToStd(method2->GetFullName(true)), "void R::static_void_fun()"); in TEST_F() 601 ASSERT_EQ(PandaStringToStd(method3->GetFullName()), "R::multiple_args"); in TEST_F() 602 ASSERT_EQ(PandaStringToStd(method3->GetFullName(true)), "Foo R::multiple_args(R, i32, Foo, [J, [LFoo;)"); in TEST_F()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | method-inl.h | 215 ark::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in InvokeInterpretedCode() 224 LOG(DEBUG, INTERPRETER) << "Invoke exit: " << GetFullName(); in InvokeInterpretedCode() 231 LOG(DEBUG, INTERPRETER) << "Invoke entry: " << GetFullName(); in InvokeEntry() 301 ark::ThrowVerificationException(ctx, GetFullName()); in InvokeContext() 313 ark::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in InvokeContext() 325 LOG(DEBUG, INTERPRETER) << "Invoke entry: " << GetFullName(); in InvokeContext() 331 LOG(DEBUG, INTERPRETER) << "Invoke exit: " << GetFullName(); in InvokeContext() 342 ark::ThrowOutOfMemoryError("CreateFrame failed: " + GetFullName()); in EnterNativeMethodFrame() 526 ark::ThrowVerificationException(ctx, GetFullName()); in TryVerify()
|
H A D | exceptions.h | 111 EVENT_EXCEPTION(std::string(stack.GetMethod()->GetFullName()), stack.GetBytecodePc(), stack.GetNativePc(), type); in SetExceptionEvent()
|
/arkcompiler/runtime_core/static_core/verification/absint/ |
H A D | abs_int_inl.h | 175 LOG(DEBUG, VERIFIER) << "Debug mode for method " << method->GetFullName() << " is on"; 1730 auto ctorNameGetter = [&ctor]() { return ctor->GetFullName(); }; in CheckCallCtor() 1767 LOG_VERIFIER_INITOBJ_CALLS_NOT_CONSTRUCTOR(ctor->GetFullName()); in CheckCtor() 1774 LOG_VERIFIER_DEBUG_CONSTRUCTOR(ctor->GetFullName()); in CheckCtor() 2541 LOG_VERIFIER_DEBUG_CALL_FROM_TO(job_->JobMethod()->GetFullName(), method->GetFullName()); in CheckLaunch() 2548 auto methodNameGetter = [method]() { return method->GetFullName(); }; in CheckLaunch() 2578 LOG_VERIFIER_DEBUG_METHOD(method->GetFullName()); in HandleEtsLaunchShort() 2582 LOG_VERIFIER_BAD_CALL_STATICALLY_ABSTRACT_METHOD(method->GetFullName()); in HandleEtsLaunchShort() 2603 LOG_VERIFIER_DEBUG_METHOD(method->GetFullName()); in HandleEtsLaunch() [all...] |
/arkcompiler/ets_runtime/ecmascript/ohos/ |
H A D | ohos_pkg_args.h | 73 preProcessor.mainPkgName_ = pkgArgs->GetFullName(); in ParseArgs() 165 pf = jsPandaFileManager->OpenJSPandaFileFromBuffer(buffer, size, GetFullName().c_str()); in GetJSPandaFile() 208 argsMap[pkgInfo->GetFullName()] = pkgInfo; in ParseListFromJson() 330 std::string GetFullName() const in GetFullName() function in panda::ecmascript::kungfu::OhosPkgArgs
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_method.h | 111 PandaString GetFullName(bool withSignature = false) const in GetFullName() function in ark::ets::EtsMethod 113 return GetPandaMethod()->GetFullName(withSignature); in GetFullName()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
H A D | ets_method_set.h | 102 name_(singleMethod->GetFullName(false)), in EtsMethodSet()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | method_data_accessor.h | 48 std::string GetFullName() const;
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_class_linker.cpp | 84 out << "Cannot resolve async method " << mda.GetFullName(); in GetAsyncImplMethod()
|