Home
last modified time | relevance | path

Searched defs:caller (Results 1 – 25 of 34) sorted by relevance

12

/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dmem_hooks.cpp73 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/
Dcache.h26 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()
Druntime_interface.h40 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/
Druntime_adapter.h60 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/
Dmemory_allocation_dumper.h84 …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/
Dinterpreter-inl.h205 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/
Dcallee_info.h27 …CalleeInfo(const Inst &call_inst, const Function *caller) : call_inst_(call_inst), caller_(caller)… in CalleeInfo()
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp318 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/
Dtest_runtime_interface.h162 …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/
Dclass_linker-inl.h26 inline Class *ClassLinker::GetClass(const Method &caller, panda_file::File::EntityId id, in GetClass()
/arkcompiler/ets_runtime/ecmascript/
Djs_arguments.cpp35 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in GetOwnProperty() local
/arkcompiler/runtime_core/static_core/runtime/
Dcha.cpp132 void ClassHierarchyAnalysis::AddDependency(Method *callee, Method *caller) in AddDependency()
Dcompiler.cpp139 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()
Druntime.cpp1228 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()
Dclass_linker.cpp1295 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/
Dark_inlining.cpp67 auto caller = callBase->getCaller(); in CheckShouldInline() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_runtime_interface.cpp26 auto *caller = MethodCast(method); in GetClass() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ipa/src/old/
Dea_connection_graph.cpp917 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/
Druntime_adapter.h65 size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodArgumentsCount()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_arguments_test.cpp159 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/
Dcall_graph.h221 void AddCaller(CGNode *caller, StmtNode *stmt) in AddCaller()
230 void DelCaller(CGNode *caller) in DelCaller()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_resolver.cpp291 auto caller = ss->GetCallerInst(); in SaveStateCopyRequired() local
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dcodegen_test.cpp426 RuntimeInterface::MethodPtr caller = nullptr; variable
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dcleanup.cpp263 auto caller = static_cast<SaveStateInst *>(saveState)->GetCallerInst(); in MarkInlinedCaller() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
Dcall_graph.cpp366 CGNode *caller = GetCGNode(callerPuIdx); in UpdateCaleeCandidate() local
383 CGNode *caller = GetCGNode(callerPuIdx); in UpdateCaleeCandidate() local

12