HomeSort by relevance Sort by last modified time
    Searched refs:MemCpy (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 143 Value *MemCpy = M->getOrInsertFunction("__memcpy_chk",
152 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize);
153 if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts()))
216 memcpy(NameBuffer, Name, NameLen);
386 // Should be similar to memcpy.
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 170 // destination's pointer to get the actual memcpy destination (end of
174 // We have enough information to now generate the memcpy call to do the
175 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
452 // We have enough information to now generate the memcpy call to do the
453 // concatenation for us. Make a memcpy to copy the nul byte with align = 1.
506 // strncpy(x, s, c) -> memcpy(x, s, c, 1) [s and c are constant]
774 // 'memcpy' Optimizations
788 // memcpy(x, y, n) -> llvm.memcpy(x, y, n, 1)
    [all...]

Completed in 17 milliseconds