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

References

lib/Transforms/Utils/SimplifyLibCalls.cpp
 2328   if (!getConstantStringInfo(CI->getArgOperand(0), FormatStr))
 2333     return CI->use_empty() ? (Value *)CI : ConstantInt::get(CI->getType(), 0);
 2333     return CI->use_empty() ? (Value *)CI : ConstantInt::get(CI->getType(), 0);
 2333     return CI->use_empty() ? (Value *)CI : ConstantInt::get(CI->getType(), 0);
 2338   if (!CI->use_empty())
 2346   if (FormatStr == "%s" && CI->getNumArgOperands() > 1) {
 2348     if (!getConstantStringInfo(CI->getOperand(1), ChrStr))
 2367   if (FormatStr == "%c" && CI->getNumArgOperands() > 1 &&
 2368       CI->getArgOperand(1)->getType()->isIntegerTy())
 2369     return emitPutChar(CI->getArgOperand(1), B, TLI);
 2372   if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 &&
 2373       CI->getArgOperand(1)->getType()->isPointerTy())
 2374     return emitPutS(CI->getArgOperand(1), B, TLI);