blob: 0ec73e7a331cfb18c92d058b8617934c223a8a1c [file] [log] [blame]
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencer39a762d2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000010// This file implements a module pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
12// library functions). For example, a call to the function "exit(3)" that
Reid Spencer0b13cda2005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000014// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
Reid Spencer39a762d2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spencer18b99812005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
Reid Spencerade18212006-01-19 08:36:56 +000028#include "llvm/Config/config.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000029#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000030#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000031#include "llvm/Transforms/IPO.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000032using namespace llvm;
33
34namespace {
Reid Spencer39a762d2005-04-25 02:53:12 +000035
Reid Spencere249a822005-04-27 07:54:40 +000036/// This statistic keeps track of the total number of library calls that have
37/// been simplified regardless of which call it is.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000038Statistic<> SimplifiedLibCalls("simplify-libcalls",
Chris Lattner579b20b2005-08-07 20:02:04 +000039 "Number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000040
Reid Spencer7ddcfb32005-04-27 21:29:20 +000041// Forward declarations
Reid Spencere249a822005-04-27 07:54:40 +000042class LibCallOptimization;
43class SimplifyLibCalls;
Reid Spencer7ddcfb32005-04-27 21:29:20 +000044
Chris Lattner33081b42006-01-22 23:10:26 +000045/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer9fbad132005-05-21 01:27:04 +000046/// Therefore all subclasses are registered here at static initialization time
47/// and this list is what the SimplifyLibCalls pass uses to apply the individual
48/// optimizations to the call sites.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000049/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattner33081b42006-01-22 23:10:26 +000050static LibCallOptimization *OptList = 0;
Reid Spencer39a762d2005-04-25 02:53:12 +000051
Reid Spencere249a822005-04-27 07:54:40 +000052/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000053/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000054/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000055/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000056/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer7ddcfb32005-04-27 21:29:20 +000057/// or attempt to perform, the optimization(s) for the library call. Otherwise,
58/// OptimizeCall won't be called. Subclasses are responsible for providing the
59/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
60/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000061/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer7ddcfb32005-04-27 21:29:20 +000062/// semantics", typically a library function that is defined by an international
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000063/// standard. Because the semantics are well known, the optimizations can
Reid Spencer7ddcfb32005-04-27 21:29:20 +000064/// generally short-circuit actually calling the function if there's a simpler
65/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000066/// @brief Base class for library call optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +000067class LibCallOptimization {
Chris Lattner33081b42006-01-22 23:10:26 +000068 LibCallOptimization **Prev, *Next;
69 const char *FunctionName; ///< Name of the library call we optimize
70#ifndef NDEBUG
71 Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
72#endif
Jeff Cohen4bc952f2005-04-29 03:05:44 +000073public:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000074 /// The \p fname argument must be the name of the library function being
Reid Spencer7ddcfb32005-04-27 21:29:20 +000075 /// optimized by the subclass.
76 /// @brief Constructor that registers the optimization.
Chris Lattner33081b42006-01-22 23:10:26 +000077 LibCallOptimization(const char *FName, const char *Description)
78 : FunctionName(FName)
Reid Spencere95a6472005-04-27 00:05:45 +000079#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +000080 , occurrences("simplify-libcalls", Description)
Reid Spencere95a6472005-04-27 00:05:45 +000081#endif
Reid Spencer39a762d2005-04-25 02:53:12 +000082 {
Chris Lattner33081b42006-01-22 23:10:26 +000083 // Register this optimizer in the list of optimizations.
84 Next = OptList;
85 OptList = this;
86 Prev = &OptList;
87 if (Next) Next->Prev = &Next;
Reid Spencer39a762d2005-04-25 02:53:12 +000088 }
Chris Lattner33081b42006-01-22 23:10:26 +000089
90 /// getNext - All libcall optimizations are chained together into a list,
91 /// return the next one in the list.
92 LibCallOptimization *getNext() { return Next; }
Reid Spencer39a762d2005-04-25 02:53:12 +000093
Reid Spencer7ddcfb32005-04-27 21:29:20 +000094 /// @brief Deregister from the optlist
Chris Lattner33081b42006-01-22 23:10:26 +000095 virtual ~LibCallOptimization() {
96 *Prev = Next;
97 if (Next) Next->Prev = Prev;
98 }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000099
Reid Spencere249a822005-04-27 07:54:40 +0000100 /// The implementation of this function in subclasses should determine if
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000101 /// \p F is suitable for the optimization. This method is called by
102 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
103 /// sites of such a function if that function is not suitable in the first
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000104 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000105 /// false, otherwise. This function should also perform any lazy
106 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencere249a822005-04-27 07:54:40 +0000107 /// true. This avoids doing initialization until the optimizer is actually
108 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000109 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +0000110 virtual bool ValidateCalledFunction(
111 const Function* F, ///< The function that is the target of call sites
112 SimplifyLibCalls& SLC ///< The pass object invoking us
113 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000114
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000115 /// The implementations of this function in subclasses is the heart of the
116 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencere249a822005-04-27 07:54:40 +0000117 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000118 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencere249a822005-04-27 07:54:40 +0000119 /// against ci, the subclass is responsible for returning true and ensuring
120 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000121 /// @brief Optimize a call, if possible.
122 virtual bool OptimizeCall(
123 CallInst* ci, ///< The call instruction that should be optimized.
124 SimplifyLibCalls& SLC ///< The pass object invoking us
125 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000126
Reid Spencere249a822005-04-27 07:54:40 +0000127 /// @brief Get the name of the library call being optimized
Chris Lattner33081b42006-01-22 23:10:26 +0000128 const char *getFunctionName() const { return FunctionName; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000129
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000130 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000131 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000132#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000133 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000134#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000135 }
Reid Spencere249a822005-04-27 07:54:40 +0000136};
137
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000138/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000139/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000140/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000141/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000142/// class provides the basic infrastructure for handling runOnModule. Whenever
143/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000144/// validate the call (ValidateLibraryCall). If it is validated, then
145/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000146/// @brief A ModulePass for optimizing well-known function calls.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000147class SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000148public:
Reid Spencere249a822005-04-27 07:54:40 +0000149 /// We need some target data for accurate signature details that are
150 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000151 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000152 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000153 // Ask that the TargetData analysis be performed before us so we can use
154 // the target data.
155 Info.addRequired<TargetData>();
156 }
157
158 /// For this pass, process all of the function calls in the module, calling
159 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000160 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000161 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000162 reset(M);
163
164 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000165 hash_map<std::string, LibCallOptimization*> OptznMap;
166 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
167 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000168
169 // The call optimizations can be recursive. That is, the optimization might
170 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000171 // we make the LibCallOptimization instances very specific to the case they
172 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000173 // the module until we don't get any more optimizations possible.
174 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000175 do {
Reid Spencere249a822005-04-27 07:54:40 +0000176 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000177 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000178 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000179 // because they live in a runtime library somewhere and were (probably)
180 // not compiled by LLVM. So, we only act on external functions that
Reid Spencer38cabd72005-05-03 07:23:44 +0000181 // have external linkage and non-empty uses.
Reid Spencere249a822005-04-27 07:54:40 +0000182 if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty())
183 continue;
184
185 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000186 hash_map<std::string, LibCallOptimization*>::iterator OMI =
187 OptznMap.find(FI->getName());
188 if (OMI == OptznMap.end()) continue;
189
190 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000191
192 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000193 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000194 continue;
195
196 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000197 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000198 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000199 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000200 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000201 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000202 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000203 ++SimplifiedLibCalls;
204 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000205 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000206 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000207 }
208 }
209 }
Reid Spencere249a822005-04-27 07:54:40 +0000210 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000211
Reid Spencere249a822005-04-27 07:54:40 +0000212 return result;
213 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000214
Reid Spencere249a822005-04-27 07:54:40 +0000215 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000216 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000217
Reid Spencere249a822005-04-27 07:54:40 +0000218 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000219 TargetData* getTargetData() const { return TD; }
220
221 /// @brief Return the size_t type -- syntactic shortcut
222 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
223
224 /// @brief Return a Function* for the fputc libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000225 Function* get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000226 if (!fputc_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000227 fputc_func = M->getOrInsertFunction("fputc", Type::IntTy, Type::IntTy,
228 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000229 return fputc_func;
230 }
231
232 /// @brief Return a Function* for the fwrite libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000233 Function* get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000234 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000235 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
236 PointerType::get(Type::SByteTy),
237 TD->getIntPtrType(),
238 TD->getIntPtrType(),
239 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000240 return fwrite_func;
241 }
242
243 /// @brief Return a Function* for the sqrt libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000244 Function* get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000245 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000246 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
247 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000248 return sqrt_func;
249 }
Reid Spencere249a822005-04-27 07:54:40 +0000250
251 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000252 Function* get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000253 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000254 strcpy_func = M->getOrInsertFunction("strcpy",
255 PointerType::get(Type::SByteTy),
256 PointerType::get(Type::SByteTy),
257 PointerType::get(Type::SByteTy),
258 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000259 return strcpy_func;
260 }
261
262 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000263 Function* get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000264 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000265 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
266 PointerType::get(Type::SByteTy),
267 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000268 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000269 }
270
Reid Spencer38cabd72005-05-03 07:23:44 +0000271 /// @brief Return a Function* for the memchr libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000272 Function* get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000273 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000274 memchr_func = M->getOrInsertFunction("memchr",
275 PointerType::get(Type::SByteTy),
276 PointerType::get(Type::SByteTy),
277 Type::IntTy, TD->getIntPtrType(),
278 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000279 return memchr_func;
280 }
281
Reid Spencere249a822005-04-27 07:54:40 +0000282 /// @brief Return a Function* for the memcpy libcall
Chris Lattner4201cd12005-08-24 17:22:17 +0000283 Function* get_memcpy() {
284 if (!memcpy_func) {
285 const Type *SBP = PointerType::get(Type::SByteTy);
286 memcpy_func = M->getOrInsertFunction("llvm.memcpy", Type::VoidTy,SBP, SBP,
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000287 Type::UIntTy, Type::UIntTy, NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000288 }
Reid Spencere249a822005-04-27 07:54:40 +0000289 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000290 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000291
Chris Lattner4201cd12005-08-24 17:22:17 +0000292 Function* get_floorf() {
293 if (!floorf_func)
294 floorf_func = M->getOrInsertFunction("floorf", Type::FloatTy,
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000295 Type::FloatTy, NULL);
Chris Lattner4201cd12005-08-24 17:22:17 +0000296 return floorf_func;
297 }
298
Reid Spencere249a822005-04-27 07:54:40 +0000299private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000300 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000301 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000302 M = &mod;
303 TD = &getAnalysis<TargetData>();
Reid Spencer93616972005-04-29 09:39:47 +0000304 fputc_func = 0;
305 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000306 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000307 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000308 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000309 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000310 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000311 floorf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000312 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000313
Reid Spencere249a822005-04-27 07:54:40 +0000314private:
Reid Spencer93616972005-04-29 09:39:47 +0000315 Function* fputc_func; ///< Cached fputc function
316 Function* fwrite_func; ///< Cached fwrite function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000317 Function* memcpy_func; ///< Cached llvm.memcpy function
Reid Spencer38cabd72005-05-03 07:23:44 +0000318 Function* memchr_func; ///< Cached memchr function
Reid Spencer93616972005-04-29 09:39:47 +0000319 Function* sqrt_func; ///< Cached sqrt function
Reid Spencer1e520fd2005-05-04 03:20:21 +0000320 Function* strcpy_func; ///< Cached strcpy function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000321 Function* strlen_func; ///< Cached strlen function
Chris Lattner4201cd12005-08-24 17:22:17 +0000322 Function* floorf_func; ///< Cached floorf function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000323 Module* M; ///< Cached Module
324 TargetData* TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000325};
326
327// Register the pass
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000328RegisterOpt<SimplifyLibCalls>
Reid Spencere249a822005-04-27 07:54:40 +0000329X("simplify-libcalls","Simplify well-known library calls");
330
331} // anonymous namespace
332
333// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000334ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000335 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000336}
337
338// Classes below here, in the anonymous namespace, are all subclasses of the
339// LibCallOptimization class, each implementing all optimizations possible for a
340// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000341// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000342namespace {
343
Reid Spencera7828ba2005-06-18 17:46:28 +0000344// Forward declare utility functions.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000345bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencera7828ba2005-06-18 17:46:28 +0000346Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000347
348/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000349/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000350/// the same value passed to the exit function. When this is done, it splits the
351/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000352/// @brief Replace calls to exit in main with a simple return
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000353struct ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000354 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000355 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000356
357 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000358 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000359 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
360 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000361 }
362
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000363 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000364 // To be careful, we check that the call to exit is coming from "main", that
365 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000366 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000367 Function *from = ci->getParent()->getParent();
368 if (from->hasExternalLinkage())
369 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000370 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000371 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000372 // block of the call instruction
373 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000374
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000375 // Create a return instruction that we'll replace the call with.
376 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000377 // instruction.
378 ReturnInst* ri = new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000379
Reid Spencerf2534c72005-04-25 21:11:48 +0000380 // Split the block at the call instruction which places it in a new
381 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000382 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000383
Reid Spencerf2534c72005-04-25 21:11:48 +0000384 // The block split caused a branch instruction to be inserted into
385 // the end of the original block, right after the return instruction
386 // that we put there. That's not a valid block, so delete the branch
387 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000388 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000389
Reid Spencerf2534c72005-04-25 21:11:48 +0000390 // Now we can finally get rid of the call instruction which now lives
391 // in the new basic block.
392 ci->eraseFromParent();
393
394 // Optimization succeeded, return true.
395 return true;
396 }
397 // We didn't pass the criteria for this optimization so return false
398 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000399 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000400} ExitInMainOptimizer;
401
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000402/// This LibCallOptimization will simplify a call to the strcat library
403/// function. The simplification is possible only if the string being
404/// concatenated is a constant array or a constant expression that results in
405/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000406/// of the constant string. Both of these calls are further reduced, if possible
407/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000408/// @brief Simplify the strcat library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000409struct StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000410public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000411 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000412 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000413 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000414
415public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000416
417 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000418 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerf2534c72005-04-25 21:11:48 +0000419 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000420 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000421 {
422 Function::const_arg_iterator AI = f->arg_begin();
423 if (AI++->getType() == PointerType::get(Type::SByteTy))
424 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000425 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000426 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000427 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000428 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000429 }
430 return false;
431 }
432
Reid Spencere249a822005-04-27 07:54:40 +0000433 /// @brief Optimize the strcat library function
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000434 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000435 // Extract some information from the instruction
436 Module* M = ci->getParent()->getParent()->getParent();
437 Value* dest = ci->getOperand(1);
438 Value* src = ci->getOperand(2);
439
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000440 // Extract the initializer (while making numerous checks) from the
Reid Spencer76dab9a2005-04-26 05:24:00 +0000441 // source operand of the call to strcat. If we get null back, one of
442 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000443 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000444 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000445 return false;
446
Reid Spencerb4f7b832005-04-26 07:45:18 +0000447 // Handle the simple, do-nothing case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000448 if (len == 0) {
Reid Spencer08b49402005-04-27 17:46:54 +0000449 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000450 ci->eraseFromParent();
451 return true;
452 }
453
Reid Spencerb4f7b832005-04-26 07:45:18 +0000454 // Increment the length because we actually want to memcpy the null
455 // terminator as well.
456 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000457
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000458 // We need to find the end of the destination string. That's where the
459 // memory is to be moved to. We just generate a call to strlen (further
460 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000461 // caches the Function* for us.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000462 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000463 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000464
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000465 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000466 // destination's pointer to get the actual memcpy destination (end of
467 // the string .. we're concatenating).
468 std::vector<Value*> idx;
469 idx.push_back(strlen_inst);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000470 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000471 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000472
473 // We have enough information to now generate the memcpy call to
474 // do the concatenation for us.
475 std::vector<Value*> vals;
476 vals.push_back(gep); // destination
477 vals.push_back(ci->getOperand(2)); // source
Reid Spencer1e520fd2005-05-04 03:20:21 +0000478 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
479 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000480 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000481
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000482 // Finally, substitute the first operand of the strcat call for the
483 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000484 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000485 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000486 ci->eraseFromParent();
487 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000488 }
489} StrCatOptimizer;
490
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000491/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000492/// function. It optimizes out cases where the arguments are both constant
493/// and the result can be determined statically.
494/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000495struct StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000496public:
497 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000498 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000499
500 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000501 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000502 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
Reid Spencer38cabd72005-05-03 07:23:44 +0000503 f->arg_size() == 2)
504 return true;
505 return false;
506 }
507
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000508 /// @brief Perform the strchr optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000509 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000510 // If there aren't three operands, bail
511 if (ci->getNumOperands() != 3)
512 return false;
513
514 // Check that the first argument to strchr is a constant array of sbyte.
515 // If it is, get the length and data, otherwise return false.
516 uint64_t len = 0;
517 ConstantArray* CA;
518 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
519 return false;
520
521 // Check that the second argument to strchr is a constant int, return false
522 // if it isn't
523 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000524 if (!CSI) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000525 // Just lower this to memchr since we know the length of the string as
526 // it is constant.
527 Function* f = SLC.get_memchr();
528 std::vector<Value*> args;
529 args.push_back(ci->getOperand(1));
530 args.push_back(ci->getOperand(2));
531 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
532 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
533 ci->eraseFromParent();
534 return true;
535 }
536
537 // Get the character we're looking for
538 int64_t chr = CSI->getValue();
539
540 // Compute the offset
541 uint64_t offset = 0;
542 bool char_found = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000543 for (uint64_t i = 0; i < len; ++i) {
544 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i))) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000545 // Check for the null terminator
546 if (CI->isNullValue())
547 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000548 else if (CI->getValue() == chr) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000549 char_found = true;
550 offset = i;
551 break;
552 }
553 }
554 }
555
556 // strchr(s,c) -> offset_of_in(c,s)
557 // (if c is a constant integer and s is a constant string)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000558 if (char_found) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000559 std::vector<Value*> indices;
560 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
561 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
562 ci->getOperand(1)->getName()+".strchr",ci);
563 ci->replaceAllUsesWith(GEP);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000564 } else {
Reid Spencer38cabd72005-05-03 07:23:44 +0000565 ci->replaceAllUsesWith(
566 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000567 }
Reid Spencer38cabd72005-05-03 07:23:44 +0000568 ci->eraseFromParent();
569 return true;
570 }
571} StrChrOptimizer;
572
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000573/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000574/// function. It optimizes out cases where one or both arguments are constant
575/// and the result can be determined statically.
576/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000577struct StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000578public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000579 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000580 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000581
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000582 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000583 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
584 return F->getReturnType() == Type::IntTy && F->arg_size() == 2;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000585 }
586
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000587 /// @brief Perform the strcmp optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000588 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000589 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000590 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000591 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000592 Value* s1 = ci->getOperand(1);
593 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000594 if (s1 == s2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000595 // strcmp(x,x) -> 0
596 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
597 ci->eraseFromParent();
598 return true;
599 }
600
601 bool isstr_1 = false;
602 uint64_t len_1 = 0;
603 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000604 if (getConstantStringLength(s1,len_1,&A1)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000605 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000606 if (len_1 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000607 // strcmp("",x) -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000608 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000609 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000610 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000611 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
612 ci->replaceAllUsesWith(cast);
613 ci->eraseFromParent();
614 return true;
615 }
616 }
617
618 bool isstr_2 = false;
619 uint64_t len_2 = 0;
620 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000621 if (getConstantStringLength(s2, len_2, &A2)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000622 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000623 if (len_2 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000624 // strcmp(x,"") -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000625 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000626 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000627 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000628 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
629 ci->replaceAllUsesWith(cast);
630 ci->eraseFromParent();
631 return true;
632 }
633 }
634
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000635 if (isstr_1 && isstr_2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000636 // strcmp(x,y) -> cnst (if both x and y are constant strings)
637 std::string str1 = A1->getAsString();
638 std::string str2 = A2->getAsString();
639 int result = strcmp(str1.c_str(), str2.c_str());
640 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
641 ci->eraseFromParent();
642 return true;
643 }
644 return false;
645 }
646} StrCmpOptimizer;
647
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000648/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000649/// function. It optimizes out cases where one or both arguments are constant
650/// and the result can be determined statically.
651/// @brief Simplify the strncmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000652struct StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000653public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000654 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000655 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000656
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000657 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000658 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer49fa07042005-05-03 01:43:45 +0000659 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
660 return true;
661 return false;
662 }
663
664 /// @brief Perform the strncpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000665 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000666 // First, check to see if src and destination are the same. If they are,
667 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000668 // because the call is a no-op.
Reid Spencer49fa07042005-05-03 01:43:45 +0000669 Value* s1 = ci->getOperand(1);
670 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000671 if (s1 == s2) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000672 // strncmp(x,x,l) -> 0
673 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
674 ci->eraseFromParent();
675 return true;
676 }
677
678 // Check the length argument, if it is Constant zero then the strings are
679 // considered equal.
680 uint64_t len_arg = 0;
681 bool len_arg_is_const = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000682 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3))) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000683 len_arg_is_const = true;
684 len_arg = len_CI->getRawValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000685 if (len_arg == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000686 // strncmp(x,y,0) -> 0
687 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
688 ci->eraseFromParent();
689 return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000690 }
Reid Spencer49fa07042005-05-03 01:43:45 +0000691 }
692
693 bool isstr_1 = false;
694 uint64_t len_1 = 0;
695 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000696 if (getConstantStringLength(s1, len_1, &A1)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000697 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000698 if (len_1 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000699 // strncmp("",x) -> *x
700 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000701 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000702 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
703 ci->replaceAllUsesWith(cast);
704 ci->eraseFromParent();
705 return true;
706 }
707 }
708
709 bool isstr_2 = false;
710 uint64_t len_2 = 0;
711 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000712 if (getConstantStringLength(s2,len_2,&A2)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000713 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000714 if (len_2 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000715 // strncmp(x,"") -> *x
716 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000717 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000718 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
719 ci->replaceAllUsesWith(cast);
720 ci->eraseFromParent();
721 return true;
722 }
723 }
724
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000725 if (isstr_1 && isstr_2 && len_arg_is_const) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000726 // strncmp(x,y,const) -> constant
727 std::string str1 = A1->getAsString();
728 std::string str2 = A2->getAsString();
729 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
730 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
731 ci->eraseFromParent();
732 return true;
733 }
734 return false;
735 }
736} StrNCmpOptimizer;
737
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000738/// This LibCallOptimization will simplify a call to the strcpy library
739/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000740/// (1) If src and dest are the same and not volatile, just return dest
741/// (2) If the src is a constant then we can convert to llvm.memmove
742/// @brief Simplify the strcpy library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000743struct StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000744public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000745 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000746 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000747
748 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000749 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencere249a822005-04-27 07:54:40 +0000750 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000751 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000752 Function::const_arg_iterator AI = f->arg_begin();
753 if (AI++->getType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000754 if (AI->getType() == PointerType::get(Type::SByteTy)) {
Reid Spencere249a822005-04-27 07:54:40 +0000755 // Indicate this is a suitable call type.
756 return true;
757 }
758 }
759 return false;
760 }
761
762 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000763 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000764 // First, check to see if src and destination are the same. If they are,
765 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000766 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000767 // degenerate strcpy(X,X) case which should have "undefined" results
768 // according to the C specification. However, it occurs sometimes and
769 // we optimize it as a no-op.
770 Value* dest = ci->getOperand(1);
771 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000772 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000773 ci->replaceAllUsesWith(dest);
774 ci->eraseFromParent();
775 return true;
776 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000777
Reid Spencere249a822005-04-27 07:54:40 +0000778 // Get the length of the constant string referenced by the second operand,
779 // the "src" parameter. Fail the optimization if we can't get the length
780 // (note that getConstantStringLength does lots of checks to make sure this
781 // is valid).
782 uint64_t len = 0;
783 if (!getConstantStringLength(ci->getOperand(2),len))
784 return false;
785
786 // If the constant string's length is zero we can optimize this by just
787 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000788 if (len == 0) {
Reid Spencere249a822005-04-27 07:54:40 +0000789 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
790 ci->replaceAllUsesWith(dest);
791 ci->eraseFromParent();
792 return true;
793 }
794
795 // Increment the length because we actually want to memcpy the null
796 // terminator as well.
797 len++;
798
799 // Extract some information from the instruction
800 Module* M = ci->getParent()->getParent()->getParent();
801
802 // We have enough information to now generate the memcpy call to
803 // do the concatenation for us.
804 std::vector<Value*> vals;
805 vals.push_back(dest); // destination
806 vals.push_back(src); // source
Reid Spencer1e520fd2005-05-04 03:20:21 +0000807 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
808 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000809 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000810
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000811 // Finally, substitute the first operand of the strcat call for the
812 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000813 // kill the strcat CallInst.
814 ci->replaceAllUsesWith(dest);
815 ci->eraseFromParent();
816 return true;
817 }
818} StrCpyOptimizer;
819
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000820/// This LibCallOptimization will simplify a call to the strlen library
821/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000822/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000823/// @brief Simplify the strlen library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000824struct StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000825 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000826 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000827
828 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000829 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000830 {
Reid Spencere249a822005-04-27 07:54:40 +0000831 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000832 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000833 if (Function::const_arg_iterator AI = f->arg_begin())
834 if (AI->getType() == PointerType::get(Type::SByteTy))
835 return true;
836 return false;
837 }
838
839 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000840 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000841 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000842 // Make sure we're dealing with an sbyte* here.
843 Value* str = ci->getOperand(1);
844 if (str->getType() != PointerType::get(Type::SByteTy))
845 return false;
846
847 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000848 if (ci->hasOneUse())
Reid Spencer170ae7f2005-05-07 20:15:59 +0000849 // Is that single use a binary operator?
850 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
851 // Is it compared against a constant integer?
852 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
853 {
854 // Get the value the strlen result is compared to
855 uint64_t val = CI->getRawValue();
856
857 // If its compared against length 0 with == or !=
858 if (val == 0 &&
859 (bop->getOpcode() == Instruction::SetEQ ||
860 bop->getOpcode() == Instruction::SetNE))
861 {
862 // strlen(x) != 0 -> *x != 0
863 // strlen(x) == 0 -> *x == 0
864 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
865 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
866 load, ConstantSInt::get(Type::SByteTy,0),
867 bop->getName()+".strlen", ci);
868 bop->replaceAllUsesWith(rbop);
869 bop->eraseFromParent();
870 ci->eraseFromParent();
871 return true;
872 }
873 }
874
875 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000876 uint64_t len = 0;
877 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000878 return false;
879
Reid Spencer170ae7f2005-05-07 20:15:59 +0000880 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000881 const Type *Ty = SLC.getTargetData()->getIntPtrType();
882 if (Ty->isSigned())
883 ci->replaceAllUsesWith(ConstantSInt::get(Ty, len));
884 else
885 ci->replaceAllUsesWith(ConstantUInt::get(Ty, len));
886
Reid Spencerb4f7b832005-04-26 07:45:18 +0000887 ci->eraseFromParent();
888 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000889 }
890} StrLenOptimizer;
891
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000892/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
893/// is equal or not-equal to zero.
894static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
895 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
896 UI != E; ++UI) {
897 Instruction *User = cast<Instruction>(*UI);
898 if (User->getOpcode() == Instruction::SetNE ||
899 User->getOpcode() == Instruction::SetEQ) {
900 if (isa<Constant>(User->getOperand(1)) &&
901 cast<Constant>(User->getOperand(1))->isNullValue())
902 continue;
903 } else if (CastInst *CI = dyn_cast<CastInst>(User))
904 if (CI->getType() == Type::BoolTy)
905 continue;
906 // Unknown instruction.
907 return false;
908 }
909 return true;
910}
911
912/// This memcmpOptimization will simplify a call to the memcmp library
913/// function.
914struct memcmpOptimization : public LibCallOptimization {
915 /// @brief Default Constructor
916 memcmpOptimization()
917 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
918
919 /// @brief Make sure that the "memcmp" function has the right prototype
920 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
921 Function::const_arg_iterator AI = F->arg_begin();
922 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
923 if (!isa<PointerType>((++AI)->getType())) return false;
924 if (!(++AI)->getType()->isInteger()) return false;
925 if (!F->getReturnType()->isInteger()) return false;
926 return true;
927 }
928
929 /// Because of alignment and instruction information that we don't have, we
930 /// leave the bulk of this to the code generators.
931 ///
932 /// Note that we could do much more if we could force alignment on otherwise
933 /// small aligned allocas, or if we could indicate that loads have a small
934 /// alignment.
935 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
936 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
937
938 // If the two operands are the same, return zero.
939 if (LHS == RHS) {
940 // memcmp(s,s,x) -> 0
941 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
942 CI->eraseFromParent();
943 return true;
944 }
945
946 // Make sure we have a constant length.
947 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
948 if (!LenC) return false;
949 uint64_t Len = LenC->getRawValue();
950
951 // If the length is zero, this returns 0.
952 switch (Len) {
953 case 0:
954 // memcmp(s1,s2,0) -> 0
955 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
956 CI->eraseFromParent();
957 return true;
958 case 1: {
959 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
960 const Type *UCharPtr = PointerType::get(Type::UByteTy);
961 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
962 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
963 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
964 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
965 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
966 if (RV->getType() != CI->getType())
967 RV = new CastInst(RV, CI->getType(), RV->getName(), CI);
968 CI->replaceAllUsesWith(RV);
969 CI->eraseFromParent();
970 return true;
971 }
972 case 2:
973 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
974 // TODO: IF both are aligned, use a short load/compare.
975
976 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
977 const Type *UCharPtr = PointerType::get(Type::UByteTy);
978 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
979 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
980 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
981 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
982 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
983 CI->getName()+".d1", CI);
984 Constant *One = ConstantInt::get(Type::IntTy, 1);
985 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
986 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
987 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
988 Value *S2V2 = new LoadInst(G1, RHS->getName()+".val2", CI);
989 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
990 CI->getName()+".d1", CI);
991 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
992 if (Or->getType() != CI->getType())
993 Or = new CastInst(Or, CI->getType(), Or->getName(), CI);
994 CI->replaceAllUsesWith(Or);
995 CI->eraseFromParent();
996 return true;
997 }
998 break;
999 default:
1000 break;
1001 }
1002
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001003 return false;
1004 }
1005} memcmpOptimizer;
1006
1007
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001008/// This LibCallOptimization will simplify a call to the memcpy library
1009/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001010/// bytes depending on the length of the string and the alignment. Additional
1011/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001012/// @brief Simplify the memcpy library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001013struct LLVMMemCpyOptimization : public LibCallOptimization {
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001014 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +00001015 LLVMMemCpyOptimization() : LibCallOptimization("llvm.memcpy",
Reid Spencer95d8efd2005-05-03 02:54:54 +00001016 "Number of 'llvm.memcpy' calls simplified") {}
1017
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001018protected:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001019 /// @brief Subclass Constructor
Reid Spencer170ae7f2005-05-07 20:15:59 +00001020 LLVMMemCpyOptimization(const char* fname, const char* desc)
1021 : LibCallOptimization(fname, desc) {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001022public:
Reid Spencerf2534c72005-04-25 21:11:48 +00001023
1024 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001025 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001026 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +00001027 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +00001028 }
1029
Reid Spencerb4f7b832005-04-26 07:45:18 +00001030 /// Because of alignment and instruction information that we don't have, we
1031 /// leave the bulk of this to the code generators. The optimization here just
1032 /// deals with a few degenerate cases where the length of the string and the
1033 /// alignment match the sizes of our intrinsic types so we can do a load and
1034 /// store instead of the memcpy call.
1035 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001036 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001037 // Make sure we have constant int values to work with
1038 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1039 if (!LEN)
1040 return false;
1041 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1042 if (!ALIGN)
1043 return false;
1044
1045 // If the length is larger than the alignment, we can't optimize
1046 uint64_t len = LEN->getRawValue();
1047 uint64_t alignment = ALIGN->getRawValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001048 if (alignment == 0)
1049 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001050 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001051 return false;
1052
Reid Spencer08b49402005-04-27 17:46:54 +00001053 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001054 Value* dest = ci->getOperand(1);
1055 Value* src = ci->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +00001056 Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001057 switch (len)
1058 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001059 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001060 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001061 ci->eraseFromParent();
1062 return true;
Reid Spencer08b49402005-04-27 17:46:54 +00001063 case 1: castType = Type::SByteTy; break;
1064 case 2: castType = Type::ShortTy; break;
1065 case 4: castType = Type::IntTy; break;
1066 case 8: castType = Type::LongTy; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001067 default:
1068 return false;
1069 }
Reid Spencer08b49402005-04-27 17:46:54 +00001070
1071 // Cast source and dest to the right sized primitive and then load/store
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001072 CastInst* SrcCast =
Reid Spencer08b49402005-04-27 17:46:54 +00001073 new CastInst(src,PointerType::get(castType),src->getName()+".cast",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001074 CastInst* DestCast =
Reid Spencer08b49402005-04-27 17:46:54 +00001075 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1076 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001077 StoreInst* SI = new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001078 ci->eraseFromParent();
1079 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001080 }
Reid Spencer38cabd72005-05-03 07:23:44 +00001081} LLVMMemCpyOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001082
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001083/// This LibCallOptimization will simplify a call to the memmove library
1084/// function. It is identical to MemCopyOptimization except for the name of
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001085/// the intrinsic.
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001086/// @brief Simplify the memmove library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001087struct LLVMMemMoveOptimization : public LLVMMemCpyOptimization {
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001088 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +00001089 LLVMMemMoveOptimization() : LLVMMemCpyOptimization("llvm.memmove",
Reid Spencer95d8efd2005-05-03 02:54:54 +00001090 "Number of 'llvm.memmove' calls simplified") {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001091
Reid Spencer38cabd72005-05-03 07:23:44 +00001092} LLVMMemMoveOptimizer;
1093
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001094/// This LibCallOptimization will simplify a call to the memset library
1095/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1096/// bytes depending on the length argument.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001097struct LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001098 /// @brief Default Constructor
1099 LLVMMemSetOptimization() : LibCallOptimization("llvm.memset",
Reid Spencer38cabd72005-05-03 07:23:44 +00001100 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001101public:
Reid Spencer38cabd72005-05-03 07:23:44 +00001102
1103 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001104 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001105 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001106 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001107 }
1108
1109 /// Because of alignment and instruction information that we don't have, we
1110 /// leave the bulk of this to the code generators. The optimization here just
1111 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001112 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001113 /// store instead of the memcpy call. Other calls are transformed into the
1114 /// llvm.memset intrinsic.
1115 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001116 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001117 // Make sure we have constant int values to work with
1118 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1119 if (!LEN)
1120 return false;
1121 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1122 if (!ALIGN)
1123 return false;
1124
1125 // Extract the length and alignment
1126 uint64_t len = LEN->getRawValue();
1127 uint64_t alignment = ALIGN->getRawValue();
1128
1129 // Alignment 0 is identity for alignment 1
1130 if (alignment == 0)
1131 alignment = 1;
1132
1133 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001134 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001135 // memset(d,c,0,a) -> noop
1136 ci->eraseFromParent();
1137 return true;
1138 }
1139
1140 // If the length is larger than the alignment, we can't optimize
1141 if (len > alignment)
1142 return false;
1143
1144 // Make sure we have a constant ubyte to work with so we can extract
1145 // the value to be filled.
1146 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1147 if (!FILL)
1148 return false;
1149 if (FILL->getType() != Type::UByteTy)
1150 return false;
1151
1152 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001153
Reid Spencer38cabd72005-05-03 07:23:44 +00001154 // Extract the fill character
1155 uint64_t fill_char = FILL->getValue();
1156 uint64_t fill_value = fill_char;
1157
1158 // Get the type we will cast to, based on size of memory area to fill, and
1159 // and the value we will store there.
1160 Value* dest = ci->getOperand(1);
1161 Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001162 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001163 case 1:
1164 castType = Type::UByteTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001165 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001166 case 2:
1167 castType = Type::UShortTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001168 fill_value |= fill_char << 8;
1169 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001170 case 4:
Reid Spencer38cabd72005-05-03 07:23:44 +00001171 castType = Type::UIntTy;
1172 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1173 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001174 case 8:
Reid Spencer38cabd72005-05-03 07:23:44 +00001175 castType = Type::ULongTy;
1176 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1177 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1178 fill_value |= fill_char << 56;
1179 break;
1180 default:
1181 return false;
1182 }
1183
1184 // Cast dest to the right sized primitive and then load/store
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001185 CastInst* DestCast =
Reid Spencer38cabd72005-05-03 07:23:44 +00001186 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1187 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1188 ci->eraseFromParent();
1189 return true;
1190 }
1191} LLVMMemSetOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001192
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001193/// This LibCallOptimization will simplify calls to the "pow" library
1194/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001195/// substitutes the appropriate value.
1196/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001197struct PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001198public:
1199 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001200 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001201 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001202
Reid Spencer93616972005-04-29 09:39:47 +00001203 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001204 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001205 // Just make sure this has 2 arguments
1206 return (f->arg_size() == 2);
1207 }
1208
1209 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001210 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001211 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1212 Value* base = ci->getOperand(1);
1213 Value* expn = ci->getOperand(2);
1214 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1215 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001216 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001217 // pow(1.0,x) -> 1.0
1218 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1219 ci->eraseFromParent();
1220 return true;
1221 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001222 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001223 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001224 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001225 // pow(x,0.0) -> 1.0
1226 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1227 ci->eraseFromParent();
1228 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001229 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001230 // pow(x,0.5) -> sqrt(x)
1231 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1232 ci->getName()+".pow",ci);
1233 ci->replaceAllUsesWith(sqrt_inst);
1234 ci->eraseFromParent();
1235 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001236 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001237 // pow(x,1.0) -> x
1238 ci->replaceAllUsesWith(base);
1239 ci->eraseFromParent();
1240 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001241 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001242 // pow(x,-1.0) -> 1.0/x
Chris Lattner4201cd12005-08-24 17:22:17 +00001243 BinaryOperator* div_inst= BinaryOperator::createDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001244 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1245 ci->replaceAllUsesWith(div_inst);
1246 ci->eraseFromParent();
1247 return true;
1248 }
1249 }
1250 return false; // opt failed
1251 }
1252} PowOptimizer;
1253
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001254/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001255/// function. It looks for cases where the result of fprintf is not used and the
1256/// operation can be reduced to something simpler.
1257/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001258struct FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001259public:
1260 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001261 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001262 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001263
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001264 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001265 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001266 // Just make sure this has at least 2 arguments
1267 return (f->arg_size() >= 2);
1268 }
1269
1270 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001271 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001272 // If the call has more than 3 operands, we can't optimize it
1273 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1274 return false;
1275
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001276 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001277 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001278 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001279 return false;
1280
1281 // All the optimizations depend on the length of the second argument and the
1282 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001283 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001284 ConstantArray* CA = 0;
1285 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1286 return false;
1287
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001288 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001289 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001290 for (unsigned i = 0; i < len; ++i) {
1291 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001292 // Check for the null terminator
1293 if (CI->getRawValue() == '%')
1294 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001295 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001296 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001297 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001298 }
1299
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001300 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001301 const Type* FILEptr_type = ci->getOperand(1)->getType();
1302 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1303 if (!fwrite_func)
1304 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001305
1306 // Make sure that the fprintf() and fwrite() functions both take the
1307 // same type of char pointer.
1308 if (ci->getOperand(2)->getType() !=
1309 fwrite_func->getFunctionType()->getParamType(0))
John Criswell4642afd2005-06-29 15:03:18 +00001310 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001311
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001312 std::vector<Value*> args;
1313 args.push_back(ci->getOperand(2));
1314 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1315 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1316 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001317 new CallInst(fwrite_func,args,ci->getName(),ci);
1318 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001319 ci->eraseFromParent();
1320 return true;
1321 }
1322
1323 // The remaining optimizations require the format string to be length 2
1324 // "%s" or "%c".
1325 if (len != 2)
1326 return false;
1327
1328 // The first character has to be a %
1329 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1330 if (CI->getRawValue() != '%')
1331 return false;
1332
1333 // Get the second character and switch on its value
1334 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001335 switch (CI->getRawValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001336 case 's':
1337 {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001338 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001339 ConstantArray* CA = 0;
1340 if (!getConstantStringLength(ci->getOperand(3), len, &CA))
1341 return false;
1342
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001343 // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001344 const Type* FILEptr_type = ci->getOperand(1)->getType();
1345 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1346 if (!fwrite_func)
1347 return false;
1348 std::vector<Value*> args;
Reid Spencer45bb4af2005-05-21 00:39:30 +00001349 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001350 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1351 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1352 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001353 new CallInst(fwrite_func,args,ci->getName(),ci);
1354 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001355 break;
1356 }
1357 case 'c':
1358 {
1359 ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(3));
1360 if (!CI)
1361 return false;
1362
1363 const Type* FILEptr_type = ci->getOperand(1)->getType();
1364 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1365 if (!fputc_func)
1366 return false;
1367 CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci);
1368 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001369 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001370 break;
1371 }
1372 default:
1373 return false;
1374 }
1375 ci->eraseFromParent();
1376 return true;
1377 }
1378} FPrintFOptimizer;
1379
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001380/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001381/// function. It looks for cases where the result of sprintf is not used and the
1382/// operation can be reduced to something simpler.
1383/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001384struct SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001385public:
1386 /// @brief Default Constructor
1387 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001388 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001389
Reid Spencer1e520fd2005-05-04 03:20:21 +00001390 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001391 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001392 // Just make sure this has at least 2 arguments
1393 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1394 }
1395
1396 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001397 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001398 // If the call has more than 3 operands, we can't optimize it
1399 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1400 return false;
1401
1402 // All the optimizations depend on the length of the second argument and the
1403 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001404 uint64_t len = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001405 ConstantArray* CA = 0;
1406 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1407 return false;
1408
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001409 if (ci->getNumOperands() == 3) {
1410 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001411 // If the length is 0, we just need to store a null byte
1412 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1413 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1414 ci->eraseFromParent();
1415 return true;
1416 }
1417
1418 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001419 for (unsigned i = 0; i < len; ++i) {
1420 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001421 // Check for the null terminator
1422 if (CI->getRawValue() == '%')
1423 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001424 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001425 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001426 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001427 }
1428
1429 // Increment length because we want to copy the null byte too
1430 len++;
1431
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001432 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001433 Function* memcpy_func = SLC.get_memcpy();
1434 if (!memcpy_func)
1435 return false;
1436 std::vector<Value*> args;
1437 args.push_back(ci->getOperand(1));
1438 args.push_back(ci->getOperand(2));
1439 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1440 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1441 new CallInst(memcpy_func,args,"",ci);
1442 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1443 ci->eraseFromParent();
1444 return true;
1445 }
1446
1447 // The remaining optimizations require the format string to be length 2
1448 // "%s" or "%c".
1449 if (len != 2)
1450 return false;
1451
1452 // The first character has to be a %
1453 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1454 if (CI->getRawValue() != '%')
1455 return false;
1456
1457 // Get the second character and switch on its value
1458 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner175463a2005-09-24 22:17:06 +00001459 switch (CI->getRawValue()) {
1460 case 's': {
1461 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1462 Function* strlen_func = SLC.get_strlen();
1463 Function* memcpy_func = SLC.get_memcpy();
1464 if (!strlen_func || !memcpy_func)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001465 return false;
Chris Lattner175463a2005-09-24 22:17:06 +00001466
1467 Value *Len = new CallInst(strlen_func, CastToCStr(ci->getOperand(3), *ci),
1468 ci->getOperand(3)->getName()+".len", ci);
1469 Value *Len1 = BinaryOperator::createAdd(Len,
1470 ConstantInt::get(Len->getType(), 1),
1471 Len->getName()+"1", ci);
1472 if (Len1->getType() != Type::UIntTy)
1473 Len1 = new CastInst(Len1, Type::UIntTy, Len1->getName(), ci);
1474 std::vector<Value*> args;
1475 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1476 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1477 args.push_back(Len1);
1478 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1479 new CallInst(memcpy_func, args, "", ci);
1480
1481 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001482 if (!ci->use_empty()) {
1483 if (Len->getType() != ci->getType())
1484 Len = new CastInst(Len, ci->getType(), Len->getName(), ci);
1485 ci->replaceAllUsesWith(Len);
1486 }
Chris Lattner175463a2005-09-24 22:17:06 +00001487 ci->eraseFromParent();
1488 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001489 }
Chris Lattner175463a2005-09-24 22:17:06 +00001490 case 'c': {
1491 // sprintf(dest,"%c",chr) -> store chr, dest
1492 CastInst* cast = new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1493 new StoreInst(cast, ci->getOperand(1), ci);
1494 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1495 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1496 ci);
1497 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1498 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1499 ci->eraseFromParent();
1500 return true;
1501 }
1502 }
1503 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001504 }
1505} SPrintFOptimizer;
1506
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001507/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001508/// function. It looks for cases where the result of fputs is not used and the
1509/// operation can be reduced to something simpler.
1510/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001511struct PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001512public:
1513 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001514 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001515 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001516
Reid Spencer93616972005-04-29 09:39:47 +00001517 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001518 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001519 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001520 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001521 }
1522
1523 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001524 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001525 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001526 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001527 return false;
1528
1529 // All the optimizations depend on the length of the first argument and the
1530 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001531 uint64_t len = 0;
Reid Spencer93616972005-04-29 09:39:47 +00001532 if (!getConstantStringLength(ci->getOperand(1), len))
1533 return false;
1534
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001535 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001536 case 0:
1537 // fputs("",F) -> noop
1538 break;
1539 case 1:
1540 {
1541 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001542 const Type* FILEptr_type = ci->getOperand(2)->getType();
1543 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001544 if (!fputc_func)
1545 return false;
1546 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1547 ci->getOperand(1)->getName()+".byte",ci);
1548 CastInst* casti = new CastInst(loadi,Type::IntTy,
1549 loadi->getName()+".int",ci);
1550 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1551 break;
1552 }
1553 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001554 {
Reid Spencer93616972005-04-29 09:39:47 +00001555 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001556 const Type* FILEptr_type = ci->getOperand(2)->getType();
1557 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001558 if (!fwrite_func)
1559 return false;
1560 std::vector<Value*> parms;
1561 parms.push_back(ci->getOperand(1));
1562 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1563 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1564 parms.push_back(ci->getOperand(2));
1565 new CallInst(fwrite_func,parms,"",ci);
1566 break;
1567 }
1568 }
1569 ci->eraseFromParent();
1570 return true; // success
1571 }
1572} PutsOptimizer;
1573
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001574/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001575/// function. It simply does range checks the parameter explicitly.
1576/// @brief Simplify the isdigit library function.
Chris Lattner5f6035f2005-09-29 06:16:11 +00001577struct isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001578public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001579 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001580 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001581
Chris Lattner5f6035f2005-09-29 06:16:11 +00001582 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001583 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001584 // Just make sure this has 1 argument
1585 return (f->arg_size() == 1);
1586 }
1587
1588 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001589 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1590 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001591 // isdigit(c) -> 0 or 1, if 'c' is constant
1592 uint64_t val = CI->getRawValue();
1593 if (val >= '0' && val <='9')
1594 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1595 else
1596 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1597 ci->eraseFromParent();
1598 return true;
1599 }
1600
1601 // isdigit(c) -> (unsigned)c - '0' <= 9
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001602 CastInst* cast =
Reid Spencer282d0572005-05-04 18:58:28 +00001603 new CastInst(ci->getOperand(1),Type::UIntTy,
1604 ci->getOperand(1)->getName()+".uint",ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001605 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencer282d0572005-05-04 18:58:28 +00001606 ConstantUInt::get(Type::UIntTy,0x30),
1607 ci->getOperand(1)->getName()+".sub",ci);
1608 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1609 ConstantUInt::get(Type::UIntTy,9),
1610 ci->getOperand(1)->getName()+".cmp",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001611 CastInst* c2 =
Reid Spencer282d0572005-05-04 18:58:28 +00001612 new CastInst(setcond_inst,Type::IntTy,
1613 ci->getOperand(1)->getName()+".isdigit",ci);
1614 ci->replaceAllUsesWith(c2);
1615 ci->eraseFromParent();
1616 return true;
1617 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001618} isdigitOptimizer;
1619
Chris Lattner87ef9432005-09-29 06:17:27 +00001620struct isasciiOptimization : public LibCallOptimization {
1621public:
1622 isasciiOptimization()
1623 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1624
1625 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1626 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1627 F->getReturnType()->isInteger();
1628 }
1629
1630 /// @brief Perform the isascii optimization.
1631 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1632 // isascii(c) -> (unsigned)c < 128
1633 Value *V = CI->getOperand(1);
1634 if (V->getType()->isSigned())
1635 V = new CastInst(V, V->getType()->getUnsignedVersion(), V->getName(), CI);
1636 Value *Cmp = BinaryOperator::createSetLT(V, ConstantUInt::get(V->getType(),
1637 128),
1638 V->getName()+".isascii", CI);
1639 if (Cmp->getType() != CI->getType())
1640 Cmp = new CastInst(Cmp, CI->getType(), Cmp->getName(), CI);
1641 CI->replaceAllUsesWith(Cmp);
1642 CI->eraseFromParent();
1643 return true;
1644 }
1645} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001646
Reid Spencer282d0572005-05-04 18:58:28 +00001647
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001648/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001649/// function. It simply does the corresponding and operation to restrict the
1650/// range of values to the ASCII character set (0-127).
1651/// @brief Simplify the toascii library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001652struct ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001653public:
1654 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001655 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001656 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001657
Reid Spencer4c444fe2005-04-30 03:17:54 +00001658 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001659 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001660 // Just make sure this has 2 arguments
1661 return (f->arg_size() == 1);
1662 }
1663
1664 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001665 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001666 // toascii(c) -> (c & 0x7f)
1667 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001668 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001669 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1670 ci->replaceAllUsesWith(and_inst);
1671 ci->eraseFromParent();
1672 return true;
1673 }
1674} ToAsciiOptimizer;
1675
Reid Spencerb195fcd2005-05-14 16:42:52 +00001676/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001677/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001678/// optimization is to compute the result at compile time if the argument is
1679/// a constant.
1680/// @brief Simplify the ffs library function.
Chris Lattner801f4752006-01-17 18:27:17 +00001681struct FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001682protected:
1683 /// @brief Subclass Constructor
1684 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001685 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001686
1687public:
1688 /// @brief Default Constructor
1689 FFSOptimization() : LibCallOptimization("ffs",
1690 "Number of 'ffs' calls simplified") {}
1691
Chris Lattner801f4752006-01-17 18:27:17 +00001692 /// @brief Make sure that the "ffs" function has the right prototype
1693 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001694 // Just make sure this has 2 arguments
Chris Lattner801f4752006-01-17 18:27:17 +00001695 return F->arg_size() == 1 && F->getReturnType() == Type::IntTy;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001696 }
1697
1698 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001699 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1700 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001701 // ffs(cnst) -> bit#
1702 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001703 // ffsll(cnst) -> bit#
Reid Spencerb195fcd2005-05-14 16:42:52 +00001704 uint64_t val = CI->getRawValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001705 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001706 if (val) {
1707 ++result;
1708 while ((val & 1) == 0) {
1709 ++result;
1710 val >>= 1;
1711 }
Reid Spencer17f77842005-05-15 21:19:45 +00001712 }
Chris Lattner801f4752006-01-17 18:27:17 +00001713 TheCall->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, result));
1714 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001715 return true;
1716 }
Reid Spencer17f77842005-05-15 21:19:45 +00001717
Chris Lattner801f4752006-01-17 18:27:17 +00001718 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1719 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1720 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1721 const Type *ArgType = TheCall->getOperand(1)->getType();
1722 ArgType = ArgType->getUnsignedVersion();
1723 const char *CTTZName;
1724 switch (ArgType->getTypeID()) {
1725 default: assert(0 && "Unknown unsigned type!");
1726 case Type::UByteTyID : CTTZName = "llvm.cttz.i8" ; break;
1727 case Type::UShortTyID: CTTZName = "llvm.cttz.i16"; break;
1728 case Type::UIntTyID : CTTZName = "llvm.cttz.i32"; break;
1729 case Type::ULongTyID : CTTZName = "llvm.cttz.i64"; break;
1730 }
1731
1732 Function *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
1733 ArgType, NULL);
1734 Value *V = new CastInst(TheCall->getOperand(1), ArgType, "tmp", TheCall);
1735 Value *V2 = new CallInst(F, V, "tmp", TheCall);
1736 V2 = new CastInst(V2, Type::IntTy, "tmp", TheCall);
1737 V2 = BinaryOperator::createAdd(V2, ConstantSInt::get(Type::IntTy, 1),
1738 "tmp", TheCall);
1739 Value *Cond =
1740 BinaryOperator::createSetEQ(V, Constant::getNullValue(V->getType()),
1741 "tmp", TheCall);
1742 V2 = new SelectInst(Cond, ConstantInt::get(Type::IntTy, 0), V2,
1743 TheCall->getName(), TheCall);
1744 TheCall->replaceAllUsesWith(V2);
1745 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001746 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001747 }
1748} FFSOptimizer;
1749
1750/// This LibCallOptimization will simplify calls to the "ffsl" library
1751/// calls. It simply uses FFSOptimization for which the transformation is
1752/// identical.
1753/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001754struct FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001755public:
1756 /// @brief Default Constructor
1757 FFSLOptimization() : FFSOptimization("ffsl",
1758 "Number of 'ffsl' calls simplified") {}
1759
1760} FFSLOptimizer;
1761
1762/// This LibCallOptimization will simplify calls to the "ffsll" library
1763/// calls. It simply uses FFSOptimization for which the transformation is
1764/// identical.
1765/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001766struct FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001767public:
1768 /// @brief Default Constructor
1769 FFSLLOptimization() : FFSOptimization("ffsll",
1770 "Number of 'ffsll' calls simplified") {}
1771
1772} FFSLLOptimizer;
1773
Chris Lattner57a28632006-01-23 05:57:36 +00001774/// This optimizes unary functions that take and return doubles.
1775struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1776 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1777 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001778
Chris Lattner57a28632006-01-23 05:57:36 +00001779 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001780 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1781 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1782 F->getReturnType() == Type::DoubleTy;
1783 }
Chris Lattner57a28632006-01-23 05:57:36 +00001784
1785 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1786 /// float, strength reduce this to a float version of the function,
1787 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1788 /// when the target supports the destination function and where there can be
1789 /// no precision loss.
1790 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
1791 Function *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001792 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1793 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001794 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001795 CI->getName(), CI);
1796 New = new CastInst(New, Type::DoubleTy, CI->getName(), CI);
1797 CI->replaceAllUsesWith(New);
1798 CI->eraseFromParent();
1799 if (Cast->use_empty())
1800 Cast->eraseFromParent();
1801 return true;
1802 }
Chris Lattner57a28632006-01-23 05:57:36 +00001803 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001804 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001805};
1806
Chris Lattner57a28632006-01-23 05:57:36 +00001807
1808/// This LibCallOptimization will simplify calls to the "floor" library
1809/// function.
1810/// @brief Simplify the floor library function.
1811struct FloorOptimization : public UnaryDoubleFPOptimizer {
1812 FloorOptimization()
1813 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1814
1815 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001816#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001817 // If this is a float argument passed in, convert to floorf.
1818 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1819 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001820#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001821 return false; // opt failed
1822 }
1823} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001824
1825
1826
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001827/// A function to compute the length of a null-terminated constant array of
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001828/// integers. This function can't rely on the size of the constant array
1829/// because there could be a null terminator in the middle of the array.
1830/// We also have to bail out if we find a non-integer constant initializer
1831/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001832/// below checks each of these conditions and will return true only if all
1833/// conditions are met. In that case, the \p len parameter is set to the length
1834/// of the null-terminated string. If false is returned, the conditions were
1835/// not met and len is set to 0.
1836/// @brief Get the length of a constant string (null-terminated array).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001837bool getConstantStringLength(Value *V, uint64_t &len, ConstantArray **CA) {
Reid Spencere249a822005-04-27 07:54:40 +00001838 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001839 len = 0; // make sure we initialize this
Reid Spencere249a822005-04-27 07:54:40 +00001840 User* GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001841 // If the value is not a GEP instruction nor a constant expression with a
1842 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00001843 // any other way
1844 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
1845 GEP = GEPI;
1846 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
1847 if (CE->getOpcode() == Instruction::GetElementPtr)
1848 GEP = CE;
1849 else
1850 return false;
1851 else
1852 return false;
1853
1854 // Make sure the GEP has exactly three arguments.
1855 if (GEP->getNumOperands() != 3)
1856 return false;
1857
1858 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001859 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001860 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere249a822005-04-27 07:54:40 +00001861 if (!op1->isNullValue())
1862 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001863 } else
Reid Spencere249a822005-04-27 07:54:40 +00001864 return false;
1865
1866 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001867 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencere249a822005-04-27 07:54:40 +00001868 // better of not optimizing it. While we're at it, get the second index
1869 // value. We'll need this later for indexing the ConstantArray.
1870 uint64_t start_idx = 0;
1871 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1872 start_idx = CI->getRawValue();
1873 else
1874 return false;
1875
1876 // The GEP instruction, constant or instruction, must reference a global
1877 // variable that is a constant and is initialized. The referenced constant
1878 // initializer is the array that we'll use for optimization.
1879 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1880 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1881 return false;
1882
1883 // Get the initializer.
1884 Constant* INTLZR = GV->getInitializer();
1885
1886 // Handle the ConstantAggregateZero case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001887 if (ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(INTLZR)) {
Reid Spencere249a822005-04-27 07:54:40 +00001888 // This is a degenerate case. The initializer is constant zero so the
1889 // length of the string must be zero.
1890 len = 0;
1891 return true;
1892 }
1893
1894 // Must be a Constant Array
1895 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
1896 if (!A)
1897 return false;
1898
1899 // Get the number of elements in the array
1900 uint64_t max_elems = A->getType()->getNumElements();
1901
1902 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001903 // the place the GEP refers to in the array.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001904 for (len = start_idx; len < max_elems; len++) {
1905 if (ConstantInt *CI = dyn_cast<ConstantInt>(A->getOperand(len))) {
Reid Spencere249a822005-04-27 07:54:40 +00001906 // Check for the null terminator
1907 if (CI->isNullValue())
1908 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001909 } else
Reid Spencere249a822005-04-27 07:54:40 +00001910 return false; // This array isn't suitable, non-int initializer
1911 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001912
Reid Spencere249a822005-04-27 07:54:40 +00001913 if (len >= max_elems)
1914 return false; // This array isn't null terminated
1915
1916 // Subtract out the initial value from the length
1917 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00001918 if (CA)
1919 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00001920 return true; // success!
1921}
1922
Reid Spencera7828ba2005-06-18 17:46:28 +00001923/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1924/// inserting the cast before IP, and return the cast.
1925/// @brief Cast a value to a "C" string.
1926Value *CastToCStr(Value *V, Instruction &IP) {
1927 const Type *SBPTy = PointerType::get(Type::SByteTy);
1928 if (V->getType() != SBPTy)
1929 return new CastInst(V, SBPTy, V->getName(), &IP);
1930 return V;
1931}
1932
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001933// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00001934// Additional cases that we need to add to this file:
1935//
Reid Spencer649ac282005-04-28 04:40:06 +00001936// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00001937// * cbrt(expN(X)) -> expN(x/3)
1938// * cbrt(sqrt(x)) -> pow(x,1/6)
1939// * cbrt(sqrt(x)) -> pow(x,1/9)
1940//
Reid Spencer649ac282005-04-28 04:40:06 +00001941// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00001942// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00001943//
1944// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00001945// * exp(log(x)) -> x
1946//
Reid Spencer649ac282005-04-28 04:40:06 +00001947// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00001948// * log(exp(x)) -> x
1949// * log(x**y) -> y*log(x)
1950// * log(exp(y)) -> y*log(e)
1951// * log(exp2(y)) -> y*log(2)
1952// * log(exp10(y)) -> y*log(10)
1953// * log(sqrt(x)) -> 0.5*log(x)
1954// * log(pow(x,y)) -> y*log(x)
1955//
1956// lround, lroundf, lroundl:
1957// * lround(cnst) -> cnst'
1958//
1959// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00001960// * memcmp(x,y,l) -> cnst
1961// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00001962//
Reid Spencer649ac282005-04-28 04:40:06 +00001963// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001964// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00001965// (if s is a global constant array)
1966//
Reid Spencer649ac282005-04-28 04:40:06 +00001967// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00001968// * pow(exp(x),y) -> exp(x*y)
1969// * pow(sqrt(x),y) -> pow(x,y*0.5)
1970// * pow(pow(x,y),z)-> pow(x,y*z)
1971//
1972// puts:
1973// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
1974//
1975// round, roundf, roundl:
1976// * round(cnst) -> cnst'
1977//
1978// signbit:
1979// * signbit(cnst) -> cnst'
1980// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
1981//
Reid Spencer649ac282005-04-28 04:40:06 +00001982// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00001983// * sqrt(expN(x)) -> expN(x*0.5)
1984// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
1985// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
1986//
Reid Spencer170ae7f2005-05-07 20:15:59 +00001987// stpcpy:
1988// * stpcpy(str, "literal") ->
1989// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00001990// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00001991// * strrchr(s,c) -> reverse_offset_of_in(c,s)
1992// (if c is a constant integer and s is a constant string)
1993// * strrchr(s1,0) -> strchr(s1,0)
1994//
Reid Spencer649ac282005-04-28 04:40:06 +00001995// strncat:
1996// * strncat(x,y,0) -> x
1997// * strncat(x,y,0) -> x (if strlen(y) = 0)
1998// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
1999//
Reid Spencer649ac282005-04-28 04:40:06 +00002000// strncpy:
2001// * strncpy(d,s,0) -> d
2002// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2003// (if s and l are constants)
2004//
2005// strpbrk:
2006// * strpbrk(s,a) -> offset_in_for(s,a)
2007// (if s and a are both constant strings)
2008// * strpbrk(s,"") -> 0
2009// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2010//
2011// strspn, strcspn:
2012// * strspn(s,a) -> const_int (if both args are constant)
2013// * strspn("",a) -> 0
2014// * strspn(s,"") -> 0
2015// * strcspn(s,a) -> const_int (if both args are constant)
2016// * strcspn("",a) -> 0
2017// * strcspn(s,"") -> strlen(a)
2018//
2019// strstr:
2020// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002021// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002022// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002023//
Reid Spencer649ac282005-04-28 04:40:06 +00002024// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002025// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002026//
Reid Spencer649ac282005-04-28 04:40:06 +00002027// trunc, truncf, truncl:
2028// * trunc(cnst) -> cnst'
2029//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002030//
Reid Spencer39a762d2005-04-25 02:53:12 +00002031}