/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
D | mem_hooks.cpp | 73 bool PandaHooks::ShouldCountAllocation(const void *caller) in ShouldCountAllocation() 79 void *PandaHooks::MallocHook(size_t size, const void *caller) in MallocHook() 100 void *PandaHooks::MemalignHook(size_t alignment, size_t size, const void *caller) in MemalignHook() 121 void PandaHooks::FreeHook(void *ptr, [[maybe_unused]] const void *caller) in FreeHook() 153 void *caller = __builtin_return_address(0); in malloc() local 166 void *caller = __builtin_return_address(0); in memalign() local 179 void *caller = __builtin_return_address(0); in free() local
|
/arkcompiler/runtime_core/static_core/runtime/interpreter/ |
D | cache.h | 26 bool Has(const void *pc, Method *caller) const in Has() 33 T *Get(const void *pc, Method *caller) const in Get() 42 void Set(const void *pc, T *item, Method *caller) in Set()
|
D | runtime_interface.h | 40 static Method *ResolveMethod(ManagedThread *thread, const Method &caller, BytecodeId id) in ResolveMethod() 57 static const uint8_t *GetMethodName(const Method *caller, BytecodeId methodId) in GetMethodName() 65 static Class *GetMethodClass(const Method *caller, BytecodeId methodId) in GetMethodClass() 76 static uint32_t GetMethodArgumentsCount(Method *caller, BytecodeId methodId) in GetMethodArgumentsCount() 85 static Field *ResolveField(ManagedThread *thread, const Method &caller, BytecodeId id) in ResolveField() 103 static Class *ResolveClass(ManagedThread *thread, const Method &caller, BytecodeId id) in ResolveClass() 123 static coretypes::Array *ResolveLiteralArray(PandaVM *vm, const Method &caller, BytecodeId id) in ResolveLiteralArray()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
D | runtime_adapter.h | 60 MethodPtr GetMethodById([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodById() 102 compiler::DataType::Type GetMethodArgumentType([[maybe_unused]] MethodPtr caller, MethodId id, in GetMethodArgumentType() 121 size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodArgumentsCount() 129 compiler::DataType::Type GetMethodReturnType(MethodPtr caller, MethodId id) const override in GetMethodReturnType() 197 size_t GetClassIdForMethod([[maybe_unused]] MethodPtr caller, size_t methodId) const override in GetClassIdForMethod() 204 bool IsMethodExternal([[maybe_unused]] MethodPtr caller, MethodPtr callee) const override in IsMethodExternal() 216 …bool IsMethodIntrinsic([[maybe_unused]] MethodPtr caller, [[maybe_unused]] MethodId id) const over… in IsMethodIntrinsic() 228 bool IsMethodStatic([[maybe_unused]] MethodPtr caller, MethodId id) const override in IsMethodStatic()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
D | memory_allocation_dumper.h | 84 …void DumpAllocation(const char *err, const char *caller, const PandaString &klassName, ObjectHeade… in DumpAllocation() 93 void DumpNotAllocEvent(const char *err, const char *caller) in DumpNotAllocEvent()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interpreter/ |
D | interpreter-inl.h | 205 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjName() local 247 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjNameWide() local 289 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjNameObj() local 333 auto caller = this->GetFrame()->GetMethod(); in HandleEtsStobjName() local 375 auto caller = this->GetFrame()->GetMethod(); in HandleEtsStobjNameWide() local 417 auto caller = this->GetFrame()->GetMethod(); in HandleEtsStobjNameObj() local
|
/arkcompiler/runtime_core/libark_defect_scan_aux/include/ |
D | callee_info.h | 27 …CalleeInfo(const Inst &call_inst, const Function *caller) : call_inst_(call_inst), caller_(caller)… in CalleeInfo()
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
D | entrypoints.cpp | 318 extern "C" coretypes::Array *ResolveLiteralArrayEntrypoint(const Method *caller, uint32_t typeId) in ResolveLiteralArrayEntrypoint() 435 extern "C" ObjectHeader *ResolveClassObjectEntrypoint(const Method *caller, FileEntityId typeId) in ResolveClassObjectEntrypoint() 442 extern "C" void *ResolveClassEntrypoint(const Method *caller, FileEntityId typeId) in ResolveClassEntrypoint() 454 extern "C" coretypes::String *ResolveStringEntrypoint(const Method *caller, FileEntityId id) in ResolveStringEntrypoint() 461 extern "C" coretypes::String *ResolveStringAotEntrypoint(const Method *caller, FileEntityId id, Obj… in ResolveStringAotEntrypoint() 699 extern "C" Class *InitializeClassByIdEntrypoint(const Method *caller, FileEntityId id) in InitializeClassByIdEntrypoint() 731 extern "C" uintptr_t NO_ADDRESS_SANITIZE ResolveVirtualCallAotEntrypoint(const Method *caller, Obje… in ResolveVirtualCallAotEntrypoint() 776 extern "C" uintptr_t NO_ADDRESS_SANITIZE ResolveUnknownVirtualCallEntrypoint(const Method *caller, … in ResolveUnknownVirtualCallEntrypoint() 824 extern "C" Method *GetCalleeMethodEntrypoint(const Method *caller, size_t calleeId) in GetCalleeMethodEntrypoint() 836 extern "C" Method *GetUnknownCalleeMethodEntrypoint(const Method *caller, size_t calleeId, size_t *… in GetUnknownCalleeMethodEntrypoint() [all …]
|
/arkcompiler/runtime_core/static_core/runtime/tests/interpreter/ |
D | test_runtime_interface.h | 162 …es::Array *ResolveLiteralArray([[maybe_unused]] PandaVM *vm, [[maybe_unused]] const Method &caller, in ResolveLiteralArray() 170 …ethod *ResolveMethod([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveMethod() 177 … Field *ResolveField([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveField() 185 … Class *ResolveClass([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveClass() 434 …static const uint8_t *GetMethodName([[maybe_unused]] Method *caller, [[maybe_unused]] BytecodeId m… in GetMethodName() 439 …static Class *GetMethodClass([[maybe_unused]] Method *caller, [[maybe_unused]] BytecodeId methodId) in GetMethodClass() 444 …static uint32_t GetMethodArgumentsCount([[maybe_unused]] Method *caller, [[maybe_unused]] Bytecode… in GetMethodArgumentsCount()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
D | class_linker-inl.h | 26 inline Class *ClassLinker::GetClass(const Method &caller, panda_file::File::EntityId id, in GetClass()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_arguments.cpp | 35 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in GetOwnProperty() local
|
/arkcompiler/runtime_core/static_core/runtime/ |
D | cha.cpp | 132 void ClassHierarchyAnalysis::AddDependency(Method *callee, Method *caller) in AddDependency()
|
D | compiler.cpp | 139 auto *caller = MethodCast(method); in GetClass() local 149 auto *caller = MethodCast(method); in GetStringClass() local 157 auto *caller = MethodCast(method); in GetArrayU16Class() local 200 auto *caller = MethodCast(method); in GetClassType() local 378 Method *caller = MethodCast(parentMethod); in IsMethodIntrinsic() local 721 RuntimeInterface::MethodPtr caller) in AddDependency()
|
D | runtime.cpp | 1228 coretypes::String *Runtime::ResolveString(PandaVM *vm, const Method &caller, panda_file::File::Enti… in ResolveString() 1234 coretypes::String *Runtime::ResolveStringFromCompiledCode(PandaVM *vm, const Method &caller, in ResolveStringFromCompiledCode() 1258 coretypes::Array *Runtime::ResolveLiteralArray(PandaVM *vm, const Method &caller, uint32_t id) in ResolveLiteralArray()
|
D | class_linker.cpp | 1295 Method *ClassLinker::GetMethod(const Method &caller, panda_file::File::EntityId id, in GetMethod() 1506 Field *ClassLinker::GetField(const Method &caller, panda_file::File::EntityId id, in GetField()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
D | ark_inlining.cpp | 67 auto caller = callBase->getCaller(); in CheckShouldInline() local
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
D | ets_runtime_interface.cpp | 26 auto *caller = MethodCast(method); in GetClass() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ipa/src/old/ |
D | ea_connection_graph.cpp | 917 bool EAConnectionGraph::MergeCG(MapleVector<EACGBaseNode *> &caller, const MapleVector<EACGBaseNode… in MergeCG() 970 void EAConnectionGraph::AddMaps2Object(EACGObjectNode *caller, EACGObjectNode *callee) in AddMaps2Object() 979 void EAConnectionGraph::UpdateCallerRetNode(MapleVector<EACGBaseNode *> &caller, in UpdateCallerRetNode() 1001 void EAConnectionGraph::UpdateCallerNodes(const MapleVector<EACGBaseNode *> &caller, in UpdateCallerNodes()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | runtime_adapter.h | 65 size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodArgumentsCount()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_arguments_test.cpp | 159 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/ |
D | call_graph.h | 221 void AddCaller(CGNode *caller, StmtNode *stmt) in AddCaller() 230 void DelCaller(CGNode *caller) in DelCaller()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
D | reg_alloc_resolver.cpp | 291 auto caller = ss->GetCallerInst(); in SaveStateCopyRequired() local
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | codegen_test.cpp | 426 RuntimeInterface::MethodPtr caller = nullptr; variable
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
D | cleanup.cpp | 263 auto caller = static_cast<SaveStateInst *>(saveState)->GetCallerInst(); in MarkInlinedCaller() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
D | call_graph.cpp | 366 CGNode *caller = GetCGNode(callerPuIdx); in UpdateCaleeCandidate() local 383 CGNode *caller = GetCGNode(callerPuIdx); in UpdateCaleeCandidate() local
|