Home | History | Annotate | Download | only in IR

Lines Matching refs:Slot

523   ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
524 if (!Slot) Slot = new ConstantInt(ITy, V);
525 return Slot;
647 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
649 if (!Slot) {
666 Slot = new ConstantFP(Ty, V);
669 return Slot;
2329 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2336 ConstantDataSequential **Entry = &Slot.getValue();
2345 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2348 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2356 StringMap<ConstantDataSequential*>::iterator Slot =
2359 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2361 ConstantDataSequential **Entry = &Slot->getValue();
2368 getContext().pImpl->CDSConstants.erase(Slot);