Home | History | Annotate | Download | only in Utils

Lines Matching refs:Function

17 #include "llvm/Function.h"
31 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
46 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
52 /// EmitStrChr - Emit a call to the strchr function to the builder, for the
67 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
72 /// EmitStrNCmp - Emit a call to the strncmp function to the builder.
91 if (const Function *F = dyn_cast<Function>(StrNCmp->stripPointerCasts()))
97 /// EmitStrCpy - Emit a call to the strcpy function to the builder, for the
110 if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts()))
115 /// EmitStrNCpy - Emit a call to the strncpy function to the builder, for the
129 if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts()))
134 /// EmitMemCpyChk - Emit a call to the __memcpy_chk function to the builder.
153 if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts()))
158 /// EmitMemChr - Emit a call to the memchr function. This assumes that Ptr is
174 if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts()))
180 /// EmitMemCmp - Emit a call to the memcmp function.
199 if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts()))
205 /// EmitUnaryFloatFnCall - Emit a call to the unary function named 'Name' (e.g.
206 /// 'floor'). This function is known to take a single of type matching 'Op' and
230 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
236 /// EmitPutChar - Emit a call to the putchar function. This assumes that Char
249 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
254 /// EmitPutS - Emit a call to the puts function. This assumes that Str is
267 if (const Function *F = dyn_cast<Function>(PutS->stripPointerCasts()))
272 /// EmitFPutC - Emit a call to the fputc function. This assumes that Char is
295 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
299 /// EmitFPutS - Emit a call to the puts function. Str is required to be a
320 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
324 /// EmitFWrite - Emit a call to the fwrite function. This assumes that Ptr is
351 if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
362 Function *Callee = CI->getCalledFunction();