Home
last modified time | relevance | path

Searched defs:caller (Results 1 - 25 of 30) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_arguments_test.cpp136 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in HWTEST_F_L0() local
/arkcompiler/runtime_core/libark_defect_scan_aux/include/
H A Dcallee_info.h27 CalleeInfo(const Inst &call_inst, const Function *caller) : call_inst_(call_inst), caller_(caller) {} in CalleeInfo() argument
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dclass_linker-inl.h26 inline Class *ClassLinker::GetClass(const Method &caller, panda_file::File::EntityId id, in GetClass() argument
/arkcompiler/runtime_core/static_core/runtime/interpreter/
H A Dcache.h42 void Set(const void *pc, T *item, Method *caller) in Set() argument
H A Druntime_interface.h40 static Method *ResolveMethod(ManagedThread *thread, const Method &caller, BytecodeId id) in ResolveMethod() argument
57 static const uint8_t *GetMethodName(const Method *caller, BytecodeId methodId) in GetMethodName() argument
65 static Class *GetMethodClass(const Method *caller, BytecodeId methodId) in GetMethodClass() argument
76 GetMethodArgumentsCount(Method *caller, BytecodeId methodId) GetMethodArgumentsCount() argument
85 ResolveField(ManagedThread *thread, const Method &caller, BytecodeId id) ResolveField() argument
103 ResolveClass(ManagedThread *thread, const Method &caller, BytecodeId id) ResolveClass() argument
123 ResolveLiteralArray(PandaVM *vm, const Method &caller, BytecodeId id) ResolveLiteralArray() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/
H A Djs_arguments.cpp33 JSHandle<EcmaString> caller = thread->GetEcmaVM()->GetFactory()->NewFromASCII("caller"); in GetOwnProperty() local
/arkcompiler/runtime_core/static_core/runtime/
H A Dcha.cpp132 void ClassHierarchyAnalysis::AddDependency(Method *callee, Method *caller) in AddDependency() argument
H A Dclass_linker.cpp1384 Method *ClassLinker::GetMethod(const Method &caller, panda_file::File::EntityId id, in GetMethod() argument
1588 Field *ClassLinker::GetField(const Method &caller, panda_file::File::EntityId id, in GetField() argument
[all...]
H A Dcompiler.cpp134 auto *caller = MethodCast(method); in GetClass() local
148 auto *caller = MethodCast(method); in GetStringClass() local
161 auto *caller = MethodCast(method); in GetNumberClass() local
172 auto *caller in GetArrayU16Class() local
180 auto *caller = MethodCast(method); GetArrayU8Class() local
364 Method *caller = MethodCast(parentMethod); IsMethodIntrinsic() local
571 GetMethod(MethodPtr caller, RuntimeInterface::IdType id) const GetMethod() argument
766 AddDependency(PandaRuntimeInterface::MethodPtr callee, RuntimeInterface::MethodPtr caller) AddDependency() argument
[all...]
H A Druntime.cpp1243 coretypes::String *Runtime::ResolveString(PandaVM *vm, const Method &caller, panda_file::File::EntityId id) in ResolveString() argument
1249 coretypes::String *Runtime::ResolveStringFromCompiledCode(PandaVM *vm, const Method &caller, in ResolveStringFromCompiledCode() argument
1273 coretypes::Array *Runtime::ResolveLiteralArray(PandaVM *vm, const Method &caller, uint32_t id) in ResolveLiteralArray() argument
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Dmemory_allocation_dumper.h84 void DumpAllocation(const char *err, const char *caller, const PandaString &klassName, ObjectHeader *object, in DumpAllocation() argument
93 void DumpNotAllocEvent(const char *err, const char *caller) in DumpNotAllocEvent() argument
H A Ddebugger.cpp666 static Field *ResolveField(ManagedThread *thread, const Method *caller, const BytecodeInstruction &inst) in ResolveField() argument
/arkcompiler/runtime_core/bytecode_optimizer/tests/
H A Dcodegen_test.cpp430 RuntimeInterface::MethodPtr caller = nullptr; in HWTEST_F() local
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
H A Dark_inlining.cpp67 auto caller = callBase->getCaller(); in CheckShouldInline() local
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H A Dmem_hooks.cpp73 bool PandaHooks::ShouldCountAllocation(const void *caller) in ShouldCountAllocation() argument
79 void *PandaHooks::MallocHook(size_t size, const void *caller) in MallocHook() argument
100 void *PandaHooks::MemalignHook(size_t alignment, size_t size, const void *caller) in MemalignHook() argument
121 void PandaHooks::FreeHook(void *ptr, [[maybe_unused]] const void *caller) in FreeHook() argument
153 void *caller = __builtin_return_address(0); variable
166 void *caller variable
179 void *caller = __builtin_return_address(0); global() variable
[all...]
/arkcompiler/runtime_core/static_core/libllvmbackend/
H A Dutils.cpp80 llvm::Value *CreateLoadMethodUsingVTable(llvm::Value *thiz, llvm::Function *caller, size_t methodId, in CreateLoadMethodUsingVTable() argument
H A Dllvm_ark_interface.cpp578 LLVMArkInterface::MethodId LLVMArkInterface::GetMethodId(const llvm::Function *caller, in GetMethodId() argument
598 void LLVMArkInterface::RememberFunctionCall(const llvm::Function *caller, const llvm::Function *callee, in RememberFunctionCall() argument
613 bool ark::llvmbackend::LLVMArkInterface::IsRememberedCall(const llvm::Function *caller, in IsRememberedCall() argument
636 auto caller = methodPtrs_.find(call->getFunction()->getName()); IsExternal() local
645 auto caller = methodPtrs_.find(call->getFunction()->getName()); ResolveVirtual() local
662 GetPltSlotId(const llvm::Function *caller, const llvm::Function *callee) const GetPltSlotId() argument
716 GetVTableOffset(llvm::Function *caller, uint32_t methodId) const GetVTableOffset() argument
730 auto caller = methodPtrs_.find(call->getFunction()->getName()); IsInterfaceMethod() local
[all...]
H A Dllvm_aot_compiler.cpp707 void LLVMAotCompiler::AddInlineMethodByDepth(WrappedModule &module, compiler::Graph *caller, in AddInlineMethodByDepth() argument
746 void LLVMAotCompiler::AddInlineFunctionsByDepth(WrappedModule &module, compiler::Graph *caller, int32_ argument
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_resolver.cpp290 auto caller = ss->GetCallerInst(); in SaveStateCopyRequired() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_entrypoints.cpp174 Method *LookupGetterByNameEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, in LookupGetterByNameEntrypoint() argument
189 Method *LookupSetterByNameEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, in LookupSetterByNameEntrypoint() argument
158 LookupFieldByNameEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupFieldByNameEntrypoint() argument
203 LookupGetterByNameShortEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupGetterByNameShortEntrypoint() argument
209 LookupGetterByNameLongEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupGetterByNameLongEntrypoint() argument
215 LookupGetterByNameObjEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupGetterByNameObjEntrypoint() argument
221 LookupSetterByNameShortEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupSetterByNameShortEntrypoint() argument
227 LookupSetterByNameLongEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupSetterByNameLongEntrypoint() argument
233 LookupSetterByNameObjEntrypoint(InterpreterCache::Entry *entry, ObjectHeader *obj, uint32_t id, Method *caller, const uint8_t *pc) LookupSetterByNameObjEntrypoint() argument
239 ThrowEtsExceptionNoSuchGetterEntrypoint(ObjectHeader *obj, uint32_t id, Method *caller) ThrowEtsExceptionNoSuchGetterEntrypoint() argument
253 ThrowEtsExceptionNoSuchSetterEntrypoint(ObjectHeader *obj, uint32_t id, Method *caller) ThrowEtsExceptionNoSuchSetterEntrypoint() argument
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dcleanup.cpp276 auto caller = static_cast<SaveStateInst *>(saveState)->GetCallerInst(); in MarkInlinedCaller() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interpreter/
H A Dinterpreter-inl.h206 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjName() local
248 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjNameWide() local
290 auto caller = this->GetFrame()->GetMethod(); in HandleEtsLdobjNameObj() local
334 auto caller in HandleEtsStobjName() local
376 auto caller = this->GetFrame()->GetMethod(); HandleEtsStobjNameWide() local
418 auto caller = this->GetFrame()->GetMethod(); HandleEtsStobjNameObj() local
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dgraph_cloner.cpp1023 auto caller = static_cast<SaveStateInst *>(inst)->GetCallerInst(); in UpdateCaller() local
/arkcompiler/runtime_core/static_core/runtime/tests/interpreter/
H A Dtest_runtime_interface.h162 static coretypes::Array *ResolveLiteralArray([[maybe_unused]] PandaVM *vm, [[maybe_unused]] const Method &caller, in ResolveLiteralArray() argument
170 static Method *ResolveMethod([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveMethod() argument
177 static Field *ResolveField([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveField() argument
185 static Class *ResolveClass([[maybe_unused]] ManagedThread *thread, [[maybe_unused]] const Method &caller, in ResolveClass() argument
433 static const uint8_t *GetMethodName([[maybe_unused]] Method *caller, [[maybe_unused]] BytecodeId methodId) in GetMethodName() argument
438 static Class *GetMethodClass([[maybe_unused]] Method *caller, [[maybe_unused]] BytecodeId methodId) in GetMethodClass() argument
443 static uint32_t GetMethodArgumentsCount([[maybe_unused]] Method *caller, [[maybe_unused]] BytecodeId methodId) in GetMethodArgumentsCount() argument
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dts_inline_lowering.cpp639 GateRef caller = info.GetCallGate(); in IsRecursiveFunc() local

Completed in 25 milliseconds

12