Lines Matching defs:constpoolIndex
296 int32_t constpoolIndex = GetAndIncreaseSharedConstpoolCount();
297 constpool->SetUnsharedConstpoolIndex(JSTaggedValue(constpoolIndex));
329 int32_t constpoolIndex =
331 ASSERT(0 <= constpoolIndex && constpoolIndex != ConstantPool::CONSTPOOL_TYPE_FLAG &&
332 constpoolIndex < UNSHARED_CONSTANTPOOL_COUNT);
333 EraseUnusedConstpool(iterator->first, constpoolIter->first, constpoolIndex);
337 freeSharedConstpoolIndex_.insert(constpoolIndex);
356 void Runtime::EraseUnusedConstpool(const JSPandaFile *jsPandaFile, int32_t index, int32_t constpoolIndex)
358 GCIterateThreadList([jsPandaFile, index, constpoolIndex](JSThread* thread) {
361 context->EraseUnusedConstpool(jsPandaFile, index, constpoolIndex);