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

References

lib/Transforms/Scalar/SROA.cpp
 2156   IntegerType *Ty = cast<IntegerType>(V->getType());
 2159   LLVM_DEBUG(dbgs() << "       start: " << *V << "\n");
 2161     V = IRB.CreateZExt(V, IntTy, Name + ".ext");
 2161     V = IRB.CreateZExt(V, IntTy, Name + ".ext");
 2162     LLVM_DEBUG(dbgs() << "    extended: " << *V << "\n");
 2170     V = IRB.CreateShl(V, ShAmt, Name + ".shift");
 2170     V = IRB.CreateShl(V, ShAmt, Name + ".shift");
 2171     LLVM_DEBUG(dbgs() << "     shifted: " << *V << "\n");
 2178     V = IRB.CreateOr(Old, V, Name + ".insert");
 2178     V = IRB.CreateOr(Old, V, Name + ".insert");
 2179     LLVM_DEBUG(dbgs() << "    inserted: " << *V << "\n");
 2181   return V;