Home | History | Annotate | Download | only in Utils

Lines Matching refs:AWI

35   AttributeWithIndex AWI[2];
36 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
37 AWI[1] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
41 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2),
58 AttributeWithIndex AWI =
63 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(&AWI, 1),
76 AttributeWithIndex AWI[3];
77 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
78 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
79 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
83 Value *StrNCmp = M->getOrInsertFunction("strncmp", AttrListPtr::get(AWI, 3),
102 AttributeWithIndex AWI[2];
103 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
104 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
106 Value *StrCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI, 2),
120 AttributeWithIndex AWI[2];
121 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
122 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
124 Value *StrNCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI, 2),
140 AttributeWithIndex AWI;
141 AWI = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
144 AttrListPtr::get(&AWI, 1),
163 AttributeWithIndex AWI;
164 AWI = AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
166 Value *MemChr = M->getOrInsertFunction("memchr", AttrListPtr::get(&AWI, 1),
184 AttributeWithIndex AWI[3];
185 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
186 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
187 AWI[2] = AttributeWithIndex::get(~0u, Attribute::ReadOnly |
191 Value *MemCmp = M->getOrInsertFunction("memcmp", AttrListPtr::get(AWI, 3),
258 AttributeWithIndex AWI[2];
259 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
260 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
262 Value *PutS = M->getOrInsertFunction("puts", AttrListPtr::get(AWI, 2),
277 AttributeWithIndex AWI[2];
278 AWI[0] = AttributeWithIndex::get(2, Attribute::NoCapture);
279 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
282 F = M->getOrInsertFunction("fputc", AttrListPtr::get(AWI, 2),
304 AttributeWithIndex AWI[3];
305 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
306 AWI[1] = AttributeWithIndex::get(2, Attribute::NoCapture);
307 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
310 F = M->getOrInsertFunction("fputs", AttrListPtr::get(AWI, 3),
329 AttributeWithIndex AWI[3];
330 AWI[0] = AttributeWithIndex::get(1, Attribute::NoCapture);
331 AWI[1] = AttributeWithIndex::get(4, Attribute::NoCapture);
332 AWI[2] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
336 F = M->getOrInsertFunction("fwrite", AttrListPtr::get(AWI, 3),