Lines Matching defs:create
61 /// create a GlobalValue) from the GlobalValue Src to this one.
114 // Cannot create local aliases to MTE tagged globals. The address of a
231 // Get or create a stable partition name string and put it in the table in the
278 // Get or create a stable section name string and put it in the table in the
519 /// Copy all additional attributes (those not needed to create a GlobalVariable)
557 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
563 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
566 return create(Ty, AddressSpace, Linkage, Name, nullptr, Parent);
569 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
572 return create(Ty, AddressSpace, Linkage, Name, Aliasee, Aliasee->getParent());
575 GlobalAlias *GlobalAlias::create(LinkageTypes Link, const Twine &Name,
577 return create(Aliasee->getValueType(), Aliasee->getAddressSpace(), Link, Name,
581 GlobalAlias *GlobalAlias::create(const Twine &Name, GlobalValue *Aliasee) {
582 return create(Aliasee->getLinkage(), Name, Aliasee);
614 GlobalIFunc *GlobalIFunc::create(Type *Ty, unsigned AddressSpace,