Lines Matching defs:sharedConstpool
501 JSTaggedValue EcmaContext::FindUnsharedConstpool(JSTaggedValue sharedConstpool)
503 ConstantPool *shareCp = ConstantPool::Cast(sharedConstpool.GetTaggedObject());
511 JSTaggedValue EcmaContext::FindOrCreateUnsharedConstpool(JSTaggedValue sharedConstpool)
513 JSTaggedValue unsharedConstpool = FindUnsharedConstpool(sharedConstpool);
515 ConstantPool *shareCp = ConstantPool::Cast(sharedConstpool.GetTaggedObject());
615 void EcmaContext::SetUnsharedConstpool(JSHandle<ConstantPool> sharedConstpool, JSTaggedValue unsharedConstpool)
617 int32_t constpoolIndex = sharedConstpool->GetUnsharedConstpoolIndex();
635 JSTaggedValue sharedConstpool = FindConstpool(pf.get(), index);
636 JSHandle<ConstantPool> sharedCPHandle = JSHandle<ConstantPool>(thread_, sharedConstpool);
637 if (sharedConstpool.IsHole()) {