Home | History | Annotate | Download | only in IR

Lines Matching defs:New

47   ValSymTab = new ValueSymbolTable();
48 NamedMDSymTab = new StringMap<NamedMDNode *>();
145 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
146 if (!New->isIntrinsic()) // Intrinsics get attrs set on construction
147 New->setAttributes(AttributeList);
148 FunctionList.push_back(New);
149 return New; // Return the new prototype.
255 GlobalVariable *New =
256 new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage,
258 return New; // Return the new declaration.
291 /// with the specified name. This method returns a new NamedMDNode if a
297 NMD = new NamedMDNode(Name);