reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Utils/SimplifyLibCalls.cpp
  839     return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
  843     Value *StrLen = emitStrLen(CI->getArgOperand(1), B, DL, TLI);
  847                                  StrLen, B, DL, TLI);
  853           B.CreateICmp(Old->getPredicate(), StrNCmp,
  867     return B.CreateBitCast(CI->getArgOperand(0), CI->getType());
  877     Value *Result = castToCStr(CI->getArgOperand(0), B);
  879         B.CreateConstInBoundsGEP1_64(B.getInt8Ty(), Result, Offset, "strstr");
  879         B.CreateConstInBoundsGEP1_64(B.getInt8Ty(), Result, Offset, "strstr");
  880     return B.CreateBitCast(Result, CI->getType());
  885     Value *StrChr = emitStrChr(CI->getArgOperand(0), ToFindStr[0], B, TLI);
  886     return StrChr ? B.CreateBitCast(StrChr, CI->getType()) : nullptr;