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

References

lib/Transforms/IPO/ArgumentPromotion.cpp
  253     for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
  254          ++I, ++AI, ++ArgNo)
  255       if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
  255       if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
  258       } else if (ByValArgsToTransform.count(&*I)) {
  260         Type *AgTy = cast<PointerType>(I->getType())->getElementType();
  273       } else if (!I->use_empty()) {
  275         ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
  282               OriginalLoads[std::make_pair(&*I, ArgIndex.second)];