Home
last modified time | relevance | path

Searched refs:constpoolIndex (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.h31 uint32_t constpoolIndex {UINT32_MAX};
38 … if (constpoolNum == methodIndex.constpoolNum && constpoolIndex < methodIndex.constpoolIndex) {
41 … if (constpoolNum == methodIndex.constpoolNum && constpoolIndex == methodIndex.constpoolIndex) {
Dpatch_loader.cpp165 uint32_t constpoolIndex = methodIndex.constpoolIndex; in UnloadPatchInternal() local
169 JSTaggedValue value = baseConstpool->GetObjectFromCache(constpoolIndex); in UnloadPatchInternal()
173 …ClassLiteral *classLiteral = ClassLiteral::Cast(baseConstpool->GetObjectFromCache(constpoolIndex)); in UnloadPatchInternal()
249 for (uint32_t constpoolIndex = 0; constpoolIndex < baseConstpoolSize; constpoolIndex++) { in FindAndReplaceSameMethod() local
250 JSTaggedValue constpoolValue = baseConstpool->GetObjectFromCache(constpoolIndex); in FindAndReplaceSameMethod()
268 BaseMethodIndex indexs = {constpoolNum, constpoolIndex}; in FindAndReplaceSameMethod()
294 BaseMethodIndex indexs = {constpoolNum, constpoolIndex, literalIndex}; in FindAndReplaceSameMethod()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dpanda_file_translator.cpp295 uint32_t constpoolIndex = jsPandaFile->GetConstpoolIndex(); in AllocateConstPool() local
296 JSHandle<ConstantPool> constpool = factory->NewConstantPool(constpoolIndex); in AllocateConstPool()