Home
last modified time | relevance | path

Searched refs:GetMethodFromCache (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandafile/tests/
Dpanda_cache_test.cpp42 ASSERT_EQ(cache.GetMethodFromCache(id1), nullptr); in TEST()
46 ASSERT_EQ(cache.GetMethodFromCache(id1), method1); in TEST()
52 ASSERT_EQ(cache.GetMethodFromCache(id2), method2); in TEST()
150 Method *f = cache_->GetMethodFromCache(id); in GetElement()
252 auto *m = reinterpret_cast<ElementMock *>(cache->GetMethodFromCache(id)); in CleanMethodMocks()
/arkcompiler/ets_runtime/ecmascript/compiler/
Daot_compilation_env.cpp98 JSTaggedValue AOTCompilationEnv::GetMethodFromCache(JSTaggedValue constpool, uint32_t index) const in GetMethodFromCache() function in panda::ecmascript::AOTCompilationEnv
100 return ConstantPool::GetMethodFromCache(thread_, constpool, index); in GetMethodFromCache()
Daot_compilation_env.h50 JSTaggedValue GetMethodFromCache(JSTaggedValue constpool, uint32_t index) const override;
Dcompilation_env.h82 virtual JSTaggedValue GetMethodFromCache(JSTaggedValue constpool, uint32_t index) const = 0;
Djit_compilation_env.cpp150 JSTaggedValue JitCompilationEnv::GetMethodFromCache(JSTaggedValue constpool, uint32_t index) const in GetMethodFromCache() function in panda::ecmascript::JitCompilationEnv
152 return ConstantPool::GetMethodFromCache(constpool, index); in GetMethodFromCache()
Djit_compilation_env.h52 JSTaggedValue GetMethodFromCache(JSTaggedValue constpool, uint32_t index) const override;
Dcircuit_builder.cpp833 result = CallRuntime(glue, RTSTUB_ID(GetMethodFromCache), Gate::InvalidGateRef, in GetObjectFromConstPool()
850 result = CallRuntime(glue, RTSTUB_ID(GetMethodFromCache), Gate::InvalidGateRef, in GetObjectFromConstPool()
861 result = CallRuntime(glue, RTSTUB_ID(GetMethodFromCache), Gate::InvalidGateRef, in GetObjectFromConstPool()
Dslowpath_lowering.cpp2730 auto obj = compilationEnv_->GetMethodFromCache(unsharedCp, acc_.GetConstantValue(methodId)); in LowerDefineFunc()
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map137 panda::ecmascript::ConstantPool::GetMethodFromCache*;
383 panda::ecmascript::JitCompilationEnv::GetMethodFromCache*;
384 panda::ecmascript::ConstantPool::GetMethodFromCache*;
/arkcompiler/runtime_core/static_core/libpandafile/
Dpanda_cache.h80 inline Method *GetMethodFromCache(File::EntityId id) const in GetMethodFromCache() function
/arkcompiler/runtime_core/libpandafile/
Dpanda_cache.h80 inline Method *GetMethodFromCache(File::EntityId id) const in GetMethodFromCache() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.cpp183 JSTaggedValue ConstantPool::GetMethodFromCache(JSTaggedValue constpool, uint32_t index) in GetMethodFromCache() function in panda::ecmascript::ConstantPool
Dprogram_object.h482 … static JSTaggedValue GetMethodFromCache(JSThread *thread, JSTaggedValue constpool, uint32_t index) in GetMethodFromCache() function
535 static JSTaggedValue PUBLIC_API GetMethodFromCache(JSTaggedValue constpool, uint32_t index);
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h146 ConstantPool::GetMethodFromCache(thread, constpool, index)
Dinterpreter_assembly.cpp4014 JSObject::Cast(ConstantPool::GetMethodFromCache(thread, constpool, imm).GetTaggedObject()); in HandleDeprecatedCreateobjecthavingmethodPrefImm16()
4805 JSObject::Cast(ConstantPool::GetMethodFromCache(thread, constpool, imm).GetTaggedObject()); in HandleDeprecatedCreateobjectwithbufferPrefImm16()
4825 JSArray::Cast(ConstantPool::GetMethodFromCache(thread, constpool, imm).GetTaggedObject()); in HandleDeprecatedCreatearraywithbufferPrefImm16()
6818 … Method::Cast(ConstantPool::GetMethodFromCache(thread, constpool, methodId).GetTaggedObject()); in HandleDefinemethodImm16Id16Imm8()
6928 … Method::Cast(ConstantPool::GetMethodFromCache(thread, constpool, methodId).GetTaggedObject()); in HandleDefinemethodImm8Id16Imm8()
Dinterpreter-inl.cpp133 ConstantPool::GetMethodFromCache(thread, constpool, index)
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stub_list.h422 V(GetMethodFromCache) \
Druntime_stubs-inl.h919 auto methodObj = ConstantPool::GetMethodFromCache(thread, constpool.GetTaggedValue(), methodId); in RuntimeCreateClassWithBuffer()
1015 auto methodObj = ConstantPool::GetMethodFromCache(thread, constpool.GetTaggedValue(), methodId); in RuntimeCreateSharedClass()
2289 …JSTaggedValue method = ConstantPool::GetMethodFromCache(thread, constpoolHandle.GetTaggedValue(), … in RuntimeDefinefunc()
Druntime_stubs.cpp1347 DEF_RUNTIME_STUBS(GetMethodFromCache) in DEF_RUNTIME_STUBS() argument
1349 RUNTIME_STUBS_HEADER(GetMethodFromCache); in DEF_RUNTIME_STUBS()
1352 return ConstantPool::GetMethodFromCache( in DEF_RUNTIME_STUBS()
/arkcompiler/runtime_core/static_core/verification/gen/templates/
Djob_fill_gen.h.erb190 % Method *calledMethod = pf->GetPandaCache()->GetMethodFromCache(methodId);
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
Dsnapshot_constantpool_data.cpp310 …auto method = ConstantPool::GetMethodFromCache(thread_, cp.GetTaggedValue(), data.ctorMethodOffset… in StoreDataToGlobalData()
/arkcompiler/runtime_core/static_core/runtime/
Dclass_linker.cpp1351 Method *method = pf.GetPandaCache()->GetMethodFromCache(id); in GetMethod()
1388 Method *method = pf->GetPandaCache()->GetMethodFromCache(id); in GetMethod()