blob: fefb100c37f56d6ac1cea9a043f1e591e4300955 [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);
Chris Lattnerea7986a2006-03-03 01:30:23 +0000286 const char *N = TD->getIntPtrType() == Type::UIntTy ?
287 "llvm.memcpy.i32" : "llvm.memcpy.i64";
288 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
289 TD->getIntPtrType(), Type::UIntTy,
290 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000291 }
Reid Spencere249a822005-04-27 07:54:40 +0000292 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000293 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000294
Chris Lattner57740402006-01-23 06:24:46 +0000295 Function *getUnaryFloatFunction(const char *Name, Function *&Cache) {
296 if (!Cache)
297 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
298 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000299 }
300
Chris Lattner57740402006-01-23 06:24:46 +0000301 Function *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
302 Function *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
303 Function *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
304 Function *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
305 Function *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
306 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000307private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000308 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000309 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000310 M = &mod;
311 TD = &getAnalysis<TargetData>();
Reid Spencer93616972005-04-29 09:39:47 +0000312 fputc_func = 0;
313 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000314 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000315 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000316 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000317 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000318 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000319 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000320 ceilf_func = 0;
321 roundf_func = 0;
322 rintf_func = 0;
323 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000324 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000325
Reid Spencere249a822005-04-27 07:54:40 +0000326private:
Chris Lattner57740402006-01-23 06:24:46 +0000327 /// Caches for function pointers.
328 Function *fputc_func, *fwrite_func;
329 Function *memcpy_func, *memchr_func;
330 Function* sqrt_func;
331 Function *strcpy_func, *strlen_func;
332 Function *floorf_func, *ceilf_func, *roundf_func;
333 Function *rintf_func, *nearbyintf_func;
334 Module *M; ///< Cached Module
335 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000336};
337
338// Register the pass
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000339RegisterOpt<SimplifyLibCalls>
Reid Spencere249a822005-04-27 07:54:40 +0000340X("simplify-libcalls","Simplify well-known library calls");
341
342} // anonymous namespace
343
344// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000345ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000346 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000347}
348
349// Classes below here, in the anonymous namespace, are all subclasses of the
350// LibCallOptimization class, each implementing all optimizations possible for a
351// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000352// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000353namespace {
354
Reid Spencera7828ba2005-06-18 17:46:28 +0000355// Forward declare utility functions.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000356bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencera7828ba2005-06-18 17:46:28 +0000357Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000358
359/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000360/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000361/// the same value passed to the exit function. When this is done, it splits the
362/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000363/// @brief Replace calls to exit in main with a simple return
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000364struct ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000365 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000366 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000367
368 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000369 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000370 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
371 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000372 }
373
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000374 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000375 // To be careful, we check that the call to exit is coming from "main", that
376 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000377 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000378 Function *from = ci->getParent()->getParent();
379 if (from->hasExternalLinkage())
380 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000381 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000382 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000383 // block of the call instruction
384 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000385
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000386 // Create a return instruction that we'll replace the call with.
387 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000388 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000389 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000390
Reid Spencerf2534c72005-04-25 21:11:48 +0000391 // Split the block at the call instruction which places it in a new
392 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000393 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000394
Reid Spencerf2534c72005-04-25 21:11:48 +0000395 // The block split caused a branch instruction to be inserted into
396 // the end of the original block, right after the return instruction
397 // that we put there. That's not a valid block, so delete the branch
398 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000399 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000400
Reid Spencerf2534c72005-04-25 21:11:48 +0000401 // Now we can finally get rid of the call instruction which now lives
402 // in the new basic block.
403 ci->eraseFromParent();
404
405 // Optimization succeeded, return true.
406 return true;
407 }
408 // We didn't pass the criteria for this optimization so return false
409 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000410 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000411} ExitInMainOptimizer;
412
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000413/// This LibCallOptimization will simplify a call to the strcat library
414/// function. The simplification is possible only if the string being
415/// concatenated is a constant array or a constant expression that results in
416/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000417/// of the constant string. Both of these calls are further reduced, if possible
418/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000419/// @brief Simplify the strcat library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000420struct StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000421public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000422 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000423 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000424 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000425
426public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000427
428 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000429 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerf2534c72005-04-25 21:11:48 +0000430 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000431 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000432 {
433 Function::const_arg_iterator AI = f->arg_begin();
434 if (AI++->getType() == PointerType::get(Type::SByteTy))
435 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000436 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000437 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000438 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000439 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000440 }
441 return false;
442 }
443
Reid Spencere249a822005-04-27 07:54:40 +0000444 /// @brief Optimize the strcat library function
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000445 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000446 // Extract some information from the instruction
Reid Spencer08b49402005-04-27 17:46:54 +0000447 Value* dest = ci->getOperand(1);
448 Value* src = ci->getOperand(2);
449
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000450 // Extract the initializer (while making numerous checks) from the
Reid Spencer76dab9a2005-04-26 05:24:00 +0000451 // source operand of the call to strcat. If we get null back, one of
452 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000453 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000454 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000455 return false;
456
Reid Spencerb4f7b832005-04-26 07:45:18 +0000457 // Handle the simple, do-nothing case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000458 if (len == 0) {
Reid Spencer08b49402005-04-27 17:46:54 +0000459 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000460 ci->eraseFromParent();
461 return true;
462 }
463
Reid Spencerb4f7b832005-04-26 07:45:18 +0000464 // Increment the length because we actually want to memcpy the null
465 // terminator as well.
466 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000467
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000468 // We need to find the end of the destination string. That's where the
469 // memory is to be moved to. We just generate a call to strlen (further
470 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000471 // caches the Function* for us.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000472 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000473 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000474
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000475 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000476 // destination's pointer to get the actual memcpy destination (end of
477 // the string .. we're concatenating).
478 std::vector<Value*> idx;
479 idx.push_back(strlen_inst);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000480 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000481 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000482
483 // We have enough information to now generate the memcpy call to
484 // do the concatenation for us.
485 std::vector<Value*> vals;
486 vals.push_back(gep); // destination
487 vals.push_back(ci->getOperand(2)); // source
Andrew Lenharth47da6012006-02-15 21:13:37 +0000488 vals.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencer1e520fd2005-05-04 03:20:21 +0000489 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000490 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000491
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000492 // Finally, substitute the first operand of the strcat call for the
493 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000494 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000495 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000496 ci->eraseFromParent();
497 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000498 }
499} StrCatOptimizer;
500
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000501/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000502/// function. It optimizes out cases where the arguments are both constant
503/// and the result can be determined statically.
504/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000505struct StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000506public:
507 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000508 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000509
510 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000511 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000512 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
Reid Spencer38cabd72005-05-03 07:23:44 +0000513 f->arg_size() == 2)
514 return true;
515 return false;
516 }
517
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000518 /// @brief Perform the strchr optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000519 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000520 // If there aren't three operands, bail
521 if (ci->getNumOperands() != 3)
522 return false;
523
524 // Check that the first argument to strchr is a constant array of sbyte.
525 // If it is, get the length and data, otherwise return false.
526 uint64_t len = 0;
527 ConstantArray* CA;
528 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
529 return false;
530
531 // Check that the second argument to strchr is a constant int, return false
532 // if it isn't
533 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000534 if (!CSI) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000535 // Just lower this to memchr since we know the length of the string as
536 // it is constant.
537 Function* f = SLC.get_memchr();
538 std::vector<Value*> args;
539 args.push_back(ci->getOperand(1));
540 args.push_back(ci->getOperand(2));
541 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
542 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
543 ci->eraseFromParent();
544 return true;
545 }
546
547 // Get the character we're looking for
548 int64_t chr = CSI->getValue();
549
550 // Compute the offset
551 uint64_t offset = 0;
552 bool char_found = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000553 for (uint64_t i = 0; i < len; ++i) {
554 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i))) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000555 // Check for the null terminator
556 if (CI->isNullValue())
557 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000558 else if (CI->getValue() == chr) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000559 char_found = true;
560 offset = i;
561 break;
562 }
563 }
564 }
565
566 // strchr(s,c) -> offset_of_in(c,s)
567 // (if c is a constant integer and s is a constant string)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000568 if (char_found) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000569 std::vector<Value*> indices;
570 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
571 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
572 ci->getOperand(1)->getName()+".strchr",ci);
573 ci->replaceAllUsesWith(GEP);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000574 } else {
Reid Spencer38cabd72005-05-03 07:23:44 +0000575 ci->replaceAllUsesWith(
576 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000577 }
Reid Spencer38cabd72005-05-03 07:23:44 +0000578 ci->eraseFromParent();
579 return true;
580 }
581} StrChrOptimizer;
582
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000583/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000584/// function. It optimizes out cases where one or both arguments are constant
585/// and the result can be determined statically.
586/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000587struct StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000588public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000589 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000590 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000591
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000592 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000593 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
594 return F->getReturnType() == Type::IntTy && F->arg_size() == 2;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000595 }
596
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000597 /// @brief Perform the strcmp optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000598 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000599 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000600 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000601 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000602 Value* s1 = ci->getOperand(1);
603 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000604 if (s1 == s2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000605 // strcmp(x,x) -> 0
606 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
607 ci->eraseFromParent();
608 return true;
609 }
610
611 bool isstr_1 = false;
612 uint64_t len_1 = 0;
613 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000614 if (getConstantStringLength(s1,len_1,&A1)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000615 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000616 if (len_1 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000617 // strcmp("",x) -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000618 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000619 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000620 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000621 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
622 ci->replaceAllUsesWith(cast);
623 ci->eraseFromParent();
624 return true;
625 }
626 }
627
628 bool isstr_2 = false;
629 uint64_t len_2 = 0;
630 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000631 if (getConstantStringLength(s2, len_2, &A2)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000632 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000633 if (len_2 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000634 // strcmp(x,"") -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000635 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000636 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000637 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000638 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
639 ci->replaceAllUsesWith(cast);
640 ci->eraseFromParent();
641 return true;
642 }
643 }
644
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000645 if (isstr_1 && isstr_2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000646 // strcmp(x,y) -> cnst (if both x and y are constant strings)
647 std::string str1 = A1->getAsString();
648 std::string str2 = A2->getAsString();
649 int result = strcmp(str1.c_str(), str2.c_str());
650 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
651 ci->eraseFromParent();
652 return true;
653 }
654 return false;
655 }
656} StrCmpOptimizer;
657
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000658/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000659/// function. It optimizes out cases where one or both arguments are constant
660/// and the result can be determined statically.
661/// @brief Simplify the strncmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000662struct StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000663public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000664 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000665 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000666
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000667 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000668 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer49fa07042005-05-03 01:43:45 +0000669 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
670 return true;
671 return false;
672 }
673
674 /// @brief Perform the strncpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000675 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000676 // First, check to see if src and destination are the same. If they are,
677 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000678 // because the call is a no-op.
Reid Spencer49fa07042005-05-03 01:43:45 +0000679 Value* s1 = ci->getOperand(1);
680 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000681 if (s1 == s2) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000682 // strncmp(x,x,l) -> 0
683 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
684 ci->eraseFromParent();
685 return true;
686 }
687
688 // Check the length argument, if it is Constant zero then the strings are
689 // considered equal.
690 uint64_t len_arg = 0;
691 bool len_arg_is_const = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000692 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3))) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000693 len_arg_is_const = true;
694 len_arg = len_CI->getRawValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000695 if (len_arg == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000696 // strncmp(x,y,0) -> 0
697 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
698 ci->eraseFromParent();
699 return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000700 }
Reid Spencer49fa07042005-05-03 01:43:45 +0000701 }
702
703 bool isstr_1 = false;
704 uint64_t len_1 = 0;
705 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000706 if (getConstantStringLength(s1, len_1, &A1)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000707 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000708 if (len_1 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000709 // strncmp("",x) -> *x
710 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000711 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000712 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
713 ci->replaceAllUsesWith(cast);
714 ci->eraseFromParent();
715 return true;
716 }
717 }
718
719 bool isstr_2 = false;
720 uint64_t len_2 = 0;
721 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000722 if (getConstantStringLength(s2,len_2,&A2)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000723 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000724 if (len_2 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000725 // strncmp(x,"") -> *x
726 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000727 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000728 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
729 ci->replaceAllUsesWith(cast);
730 ci->eraseFromParent();
731 return true;
732 }
733 }
734
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000735 if (isstr_1 && isstr_2 && len_arg_is_const) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000736 // strncmp(x,y,const) -> constant
737 std::string str1 = A1->getAsString();
738 std::string str2 = A2->getAsString();
739 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
740 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
741 ci->eraseFromParent();
742 return true;
743 }
744 return false;
745 }
746} StrNCmpOptimizer;
747
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000748/// This LibCallOptimization will simplify a call to the strcpy library
749/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000750/// (1) If src and dest are the same and not volatile, just return dest
751/// (2) If the src is a constant then we can convert to llvm.memmove
752/// @brief Simplify the strcpy library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000753struct StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000754public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000755 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000756 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000757
758 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000759 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencere249a822005-04-27 07:54:40 +0000760 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000761 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000762 Function::const_arg_iterator AI = f->arg_begin();
763 if (AI++->getType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000764 if (AI->getType() == PointerType::get(Type::SByteTy)) {
Reid Spencere249a822005-04-27 07:54:40 +0000765 // Indicate this is a suitable call type.
766 return true;
767 }
768 }
769 return false;
770 }
771
772 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000773 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000774 // First, check to see if src and destination are the same. If they are,
775 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000776 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000777 // degenerate strcpy(X,X) case which should have "undefined" results
778 // according to the C specification. However, it occurs sometimes and
779 // we optimize it as a no-op.
780 Value* dest = ci->getOperand(1);
781 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000782 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000783 ci->replaceAllUsesWith(dest);
784 ci->eraseFromParent();
785 return true;
786 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000787
Reid Spencere249a822005-04-27 07:54:40 +0000788 // Get the length of the constant string referenced by the second operand,
789 // the "src" parameter. Fail the optimization if we can't get the length
790 // (note that getConstantStringLength does lots of checks to make sure this
791 // is valid).
792 uint64_t len = 0;
793 if (!getConstantStringLength(ci->getOperand(2),len))
794 return false;
795
796 // If the constant string's length is zero we can optimize this by just
797 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000798 if (len == 0) {
Reid Spencere249a822005-04-27 07:54:40 +0000799 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
800 ci->replaceAllUsesWith(dest);
801 ci->eraseFromParent();
802 return true;
803 }
804
805 // Increment the length because we actually want to memcpy the null
806 // terminator as well.
807 len++;
808
Reid Spencere249a822005-04-27 07:54:40 +0000809 // We have enough information to now generate the memcpy call to
810 // do the concatenation for us.
811 std::vector<Value*> vals;
812 vals.push_back(dest); // destination
813 vals.push_back(src); // source
Andrew Lenharth47da6012006-02-15 21:13:37 +0000814 vals.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencer1e520fd2005-05-04 03:20:21 +0000815 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000816 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000817
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000818 // Finally, substitute the first operand of the strcat call for the
819 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000820 // kill the strcat CallInst.
821 ci->replaceAllUsesWith(dest);
822 ci->eraseFromParent();
823 return true;
824 }
825} StrCpyOptimizer;
826
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000827/// This LibCallOptimization will simplify a call to the strlen library
828/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000829/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000830/// @brief Simplify the strlen library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000831struct StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000832 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000833 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000834
835 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000836 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000837 {
Reid Spencere249a822005-04-27 07:54:40 +0000838 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000839 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000840 if (Function::const_arg_iterator AI = f->arg_begin())
841 if (AI->getType() == PointerType::get(Type::SByteTy))
842 return true;
843 return false;
844 }
845
846 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000847 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000848 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000849 // Make sure we're dealing with an sbyte* here.
850 Value* str = ci->getOperand(1);
851 if (str->getType() != PointerType::get(Type::SByteTy))
852 return false;
853
854 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000855 if (ci->hasOneUse())
Reid Spencer170ae7f2005-05-07 20:15:59 +0000856 // Is that single use a binary operator?
857 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
858 // Is it compared against a constant integer?
859 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
860 {
861 // Get the value the strlen result is compared to
862 uint64_t val = CI->getRawValue();
863
864 // If its compared against length 0 with == or !=
865 if (val == 0 &&
866 (bop->getOpcode() == Instruction::SetEQ ||
867 bop->getOpcode() == Instruction::SetNE))
868 {
869 // strlen(x) != 0 -> *x != 0
870 // strlen(x) == 0 -> *x == 0
871 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
872 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
873 load, ConstantSInt::get(Type::SByteTy,0),
874 bop->getName()+".strlen", ci);
875 bop->replaceAllUsesWith(rbop);
876 bop->eraseFromParent();
877 ci->eraseFromParent();
878 return true;
879 }
880 }
881
882 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000883 uint64_t len = 0;
884 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000885 return false;
886
Reid Spencer170ae7f2005-05-07 20:15:59 +0000887 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000888 const Type *Ty = SLC.getTargetData()->getIntPtrType();
889 if (Ty->isSigned())
890 ci->replaceAllUsesWith(ConstantSInt::get(Ty, len));
891 else
892 ci->replaceAllUsesWith(ConstantUInt::get(Ty, len));
893
Reid Spencerb4f7b832005-04-26 07:45:18 +0000894 ci->eraseFromParent();
895 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000896 }
897} StrLenOptimizer;
898
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000899/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
900/// is equal or not-equal to zero.
901static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
902 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
903 UI != E; ++UI) {
904 Instruction *User = cast<Instruction>(*UI);
905 if (User->getOpcode() == Instruction::SetNE ||
906 User->getOpcode() == Instruction::SetEQ) {
907 if (isa<Constant>(User->getOperand(1)) &&
908 cast<Constant>(User->getOperand(1))->isNullValue())
909 continue;
910 } else if (CastInst *CI = dyn_cast<CastInst>(User))
911 if (CI->getType() == Type::BoolTy)
912 continue;
913 // Unknown instruction.
914 return false;
915 }
916 return true;
917}
918
919/// This memcmpOptimization will simplify a call to the memcmp library
920/// function.
921struct memcmpOptimization : public LibCallOptimization {
922 /// @brief Default Constructor
923 memcmpOptimization()
924 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
925
926 /// @brief Make sure that the "memcmp" function has the right prototype
927 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
928 Function::const_arg_iterator AI = F->arg_begin();
929 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
930 if (!isa<PointerType>((++AI)->getType())) return false;
931 if (!(++AI)->getType()->isInteger()) return false;
932 if (!F->getReturnType()->isInteger()) return false;
933 return true;
934 }
935
936 /// Because of alignment and instruction information that we don't have, we
937 /// leave the bulk of this to the code generators.
938 ///
939 /// Note that we could do much more if we could force alignment on otherwise
940 /// small aligned allocas, or if we could indicate that loads have a small
941 /// alignment.
942 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
943 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
944
945 // If the two operands are the same, return zero.
946 if (LHS == RHS) {
947 // memcmp(s,s,x) -> 0
948 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
949 CI->eraseFromParent();
950 return true;
951 }
952
953 // Make sure we have a constant length.
954 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
955 if (!LenC) return false;
956 uint64_t Len = LenC->getRawValue();
957
958 // If the length is zero, this returns 0.
959 switch (Len) {
960 case 0:
961 // memcmp(s1,s2,0) -> 0
962 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
963 CI->eraseFromParent();
964 return true;
965 case 1: {
966 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
967 const Type *UCharPtr = PointerType::get(Type::UByteTy);
968 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
969 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
970 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
971 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
972 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
973 if (RV->getType() != CI->getType())
974 RV = new CastInst(RV, CI->getType(), RV->getName(), CI);
975 CI->replaceAllUsesWith(RV);
976 CI->eraseFromParent();
977 return true;
978 }
979 case 2:
980 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
981 // TODO: IF both are aligned, use a short load/compare.
982
983 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
984 const Type *UCharPtr = PointerType::get(Type::UByteTy);
985 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
986 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
987 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
988 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
989 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
990 CI->getName()+".d1", CI);
991 Constant *One = ConstantInt::get(Type::IntTy, 1);
992 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
993 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
994 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +0000995 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000996 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
997 CI->getName()+".d1", CI);
998 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
999 if (Or->getType() != CI->getType())
1000 Or = new CastInst(Or, CI->getType(), Or->getName(), CI);
1001 CI->replaceAllUsesWith(Or);
1002 CI->eraseFromParent();
1003 return true;
1004 }
1005 break;
1006 default:
1007 break;
1008 }
1009
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001010 return false;
1011 }
1012} memcmpOptimizer;
1013
1014
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001015/// This LibCallOptimization will simplify a call to the memcpy library
1016/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001017/// bytes depending on the length of the string and the alignment. Additional
1018/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001019/// @brief Simplify the memcpy library function.
Chris Lattnerea7986a2006-03-03 01:30:23 +00001020struct LLVMMemCpyMoveOptzn : public LibCallOptimization {
1021 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
1022 : LibCallOptimization(fname, desc) {}
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 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001081};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001082
Chris Lattnerea7986a2006-03-03 01:30:23 +00001083/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1084/// functions.
1085LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1086 "Number of 'llvm.memcpy' calls simplified");
1087LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1088 "Number of 'llvm.memcpy' calls simplified");
1089LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1090 "Number of 'llvm.memmove' calls simplified");
1091LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1092 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001093
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
Chris Lattnerea7986a2006-03-03 01:30:23 +00001099 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001100 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001101
1102 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001103 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001104 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001105 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001106 }
1107
1108 /// Because of alignment and instruction information that we don't have, we
1109 /// leave the bulk of this to the code generators. The optimization here just
1110 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001111 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001112 /// store instead of the memcpy call. Other calls are transformed into the
1113 /// llvm.memset intrinsic.
1114 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001115 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001116 // Make sure we have constant int values to work with
1117 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1118 if (!LEN)
1119 return false;
1120 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1121 if (!ALIGN)
1122 return false;
1123
1124 // Extract the length and alignment
1125 uint64_t len = LEN->getRawValue();
1126 uint64_t alignment = ALIGN->getRawValue();
1127
1128 // Alignment 0 is identity for alignment 1
1129 if (alignment == 0)
1130 alignment = 1;
1131
1132 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001133 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001134 // memset(d,c,0,a) -> noop
1135 ci->eraseFromParent();
1136 return true;
1137 }
1138
1139 // If the length is larger than the alignment, we can't optimize
1140 if (len > alignment)
1141 return false;
1142
1143 // Make sure we have a constant ubyte to work with so we can extract
1144 // the value to be filled.
1145 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1146 if (!FILL)
1147 return false;
1148 if (FILL->getType() != Type::UByteTy)
1149 return false;
1150
1151 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001152
Reid Spencer38cabd72005-05-03 07:23:44 +00001153 // Extract the fill character
1154 uint64_t fill_char = FILL->getValue();
1155 uint64_t fill_value = fill_char;
1156
1157 // Get the type we will cast to, based on size of memory area to fill, and
1158 // and the value we will store there.
1159 Value* dest = ci->getOperand(1);
1160 Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001161 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001162 case 1:
1163 castType = Type::UByteTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001164 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001165 case 2:
1166 castType = Type::UShortTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001167 fill_value |= fill_char << 8;
1168 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001169 case 4:
Reid Spencer38cabd72005-05-03 07:23:44 +00001170 castType = Type::UIntTy;
1171 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1172 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001173 case 8:
Reid Spencer38cabd72005-05-03 07:23:44 +00001174 castType = Type::ULongTy;
1175 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1176 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1177 fill_value |= fill_char << 56;
1178 break;
1179 default:
1180 return false;
1181 }
1182
1183 // Cast dest to the right sized primitive and then load/store
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001184 CastInst* DestCast =
Reid Spencer38cabd72005-05-03 07:23:44 +00001185 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1186 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1187 ci->eraseFromParent();
1188 return true;
1189 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001190};
1191
1192LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1193LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1194
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001195
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001196/// This LibCallOptimization will simplify calls to the "pow" library
1197/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001198/// substitutes the appropriate value.
1199/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001200struct PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001201public:
1202 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001203 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001204 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001205
Reid Spencer93616972005-04-29 09:39:47 +00001206 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001207 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001208 // Just make sure this has 2 arguments
1209 return (f->arg_size() == 2);
1210 }
1211
1212 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001213 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001214 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1215 Value* base = ci->getOperand(1);
1216 Value* expn = ci->getOperand(2);
1217 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1218 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001219 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001220 // pow(1.0,x) -> 1.0
1221 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1222 ci->eraseFromParent();
1223 return true;
1224 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001225 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001226 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001227 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001228 // pow(x,0.0) -> 1.0
1229 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1230 ci->eraseFromParent();
1231 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001232 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001233 // pow(x,0.5) -> sqrt(x)
1234 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1235 ci->getName()+".pow",ci);
1236 ci->replaceAllUsesWith(sqrt_inst);
1237 ci->eraseFromParent();
1238 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001239 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001240 // pow(x,1.0) -> x
1241 ci->replaceAllUsesWith(base);
1242 ci->eraseFromParent();
1243 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001244 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001245 // pow(x,-1.0) -> 1.0/x
Chris Lattner4201cd12005-08-24 17:22:17 +00001246 BinaryOperator* div_inst= BinaryOperator::createDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001247 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1248 ci->replaceAllUsesWith(div_inst);
1249 ci->eraseFromParent();
1250 return true;
1251 }
1252 }
1253 return false; // opt failed
1254 }
1255} PowOptimizer;
1256
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001257/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001258/// function. It looks for cases where the result of fprintf is not used and the
1259/// operation can be reduced to something simpler.
1260/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001261struct FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001262public:
1263 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001264 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001265 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001266
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001267 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001268 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001269 // Just make sure this has at least 2 arguments
1270 return (f->arg_size() >= 2);
1271 }
1272
1273 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001274 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001275 // If the call has more than 3 operands, we can't optimize it
1276 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1277 return false;
1278
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001279 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001280 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001281 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001282 return false;
1283
1284 // All the optimizations depend on the length of the second argument and the
1285 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001286 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001287 ConstantArray* CA = 0;
1288 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1289 return false;
1290
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001291 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001292 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001293 for (unsigned i = 0; i < len; ++i) {
1294 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001295 // Check for the null terminator
1296 if (CI->getRawValue() == '%')
1297 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001298 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001299 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001300 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001301 }
1302
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001303 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001304 const Type* FILEptr_type = ci->getOperand(1)->getType();
1305 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1306 if (!fwrite_func)
1307 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001308
1309 // Make sure that the fprintf() and fwrite() functions both take the
1310 // same type of char pointer.
1311 if (ci->getOperand(2)->getType() !=
1312 fwrite_func->getFunctionType()->getParamType(0))
John Criswell4642afd2005-06-29 15:03:18 +00001313 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001314
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001315 std::vector<Value*> args;
1316 args.push_back(ci->getOperand(2));
1317 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1318 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1319 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001320 new CallInst(fwrite_func,args,ci->getName(),ci);
1321 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001322 ci->eraseFromParent();
1323 return true;
1324 }
1325
1326 // The remaining optimizations require the format string to be length 2
1327 // "%s" or "%c".
1328 if (len != 2)
1329 return false;
1330
1331 // The first character has to be a %
1332 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1333 if (CI->getRawValue() != '%')
1334 return false;
1335
1336 // Get the second character and switch on its value
1337 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001338 switch (CI->getRawValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001339 case 's':
1340 {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001341 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001342 ConstantArray* CA = 0;
1343 if (!getConstantStringLength(ci->getOperand(3), len, &CA))
1344 return false;
1345
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001346 // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001347 const Type* FILEptr_type = ci->getOperand(1)->getType();
1348 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1349 if (!fwrite_func)
1350 return false;
1351 std::vector<Value*> args;
Reid Spencer45bb4af2005-05-21 00:39:30 +00001352 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001353 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1354 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1355 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001356 new CallInst(fwrite_func,args,ci->getName(),ci);
1357 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001358 break;
1359 }
1360 case 'c':
1361 {
1362 ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(3));
1363 if (!CI)
1364 return false;
1365
1366 const Type* FILEptr_type = ci->getOperand(1)->getType();
1367 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1368 if (!fputc_func)
1369 return false;
1370 CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci);
1371 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001372 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001373 break;
1374 }
1375 default:
1376 return false;
1377 }
1378 ci->eraseFromParent();
1379 return true;
1380 }
1381} FPrintFOptimizer;
1382
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001383/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001384/// function. It looks for cases where the result of sprintf is not used and the
1385/// operation can be reduced to something simpler.
1386/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001387struct SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001388public:
1389 /// @brief Default Constructor
1390 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001391 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001392
Reid Spencer1e520fd2005-05-04 03:20:21 +00001393 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001394 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001395 // Just make sure this has at least 2 arguments
1396 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1397 }
1398
1399 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001400 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001401 // If the call has more than 3 operands, we can't optimize it
1402 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1403 return false;
1404
1405 // All the optimizations depend on the length of the second argument and the
1406 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001407 uint64_t len = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001408 ConstantArray* CA = 0;
1409 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1410 return false;
1411
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001412 if (ci->getNumOperands() == 3) {
1413 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001414 // If the length is 0, we just need to store a null byte
1415 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1416 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1417 ci->eraseFromParent();
1418 return true;
1419 }
1420
1421 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001422 for (unsigned i = 0; i < len; ++i) {
1423 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001424 // Check for the null terminator
1425 if (CI->getRawValue() == '%')
1426 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001427 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001428 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001429 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001430 }
1431
1432 // Increment length because we want to copy the null byte too
1433 len++;
1434
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001435 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001436 Function* memcpy_func = SLC.get_memcpy();
1437 if (!memcpy_func)
1438 return false;
1439 std::vector<Value*> args;
1440 args.push_back(ci->getOperand(1));
1441 args.push_back(ci->getOperand(2));
Andrew Lenharth47da6012006-02-15 21:13:37 +00001442 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001443 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1444 new CallInst(memcpy_func,args,"",ci);
1445 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1446 ci->eraseFromParent();
1447 return true;
1448 }
1449
1450 // The remaining optimizations require the format string to be length 2
1451 // "%s" or "%c".
1452 if (len != 2)
1453 return false;
1454
1455 // The first character has to be a %
1456 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1457 if (CI->getRawValue() != '%')
1458 return false;
1459
1460 // Get the second character and switch on its value
1461 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner175463a2005-09-24 22:17:06 +00001462 switch (CI->getRawValue()) {
1463 case 's': {
1464 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1465 Function* strlen_func = SLC.get_strlen();
1466 Function* memcpy_func = SLC.get_memcpy();
1467 if (!strlen_func || !memcpy_func)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001468 return false;
Chris Lattner175463a2005-09-24 22:17:06 +00001469
1470 Value *Len = new CallInst(strlen_func, CastToCStr(ci->getOperand(3), *ci),
1471 ci->getOperand(3)->getName()+".len", ci);
1472 Value *Len1 = BinaryOperator::createAdd(Len,
1473 ConstantInt::get(Len->getType(), 1),
1474 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001475 if (Len1->getType() != SLC.getIntPtrType())
1476 Len1 = new CastInst(Len1, SLC.getIntPtrType(), Len1->getName(), ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001477 std::vector<Value*> args;
1478 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1479 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1480 args.push_back(Len1);
1481 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1482 new CallInst(memcpy_func, args, "", ci);
1483
1484 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001485 if (!ci->use_empty()) {
1486 if (Len->getType() != ci->getType())
1487 Len = new CastInst(Len, ci->getType(), Len->getName(), ci);
1488 ci->replaceAllUsesWith(Len);
1489 }
Chris Lattner175463a2005-09-24 22:17:06 +00001490 ci->eraseFromParent();
1491 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001492 }
Chris Lattner175463a2005-09-24 22:17:06 +00001493 case 'c': {
1494 // sprintf(dest,"%c",chr) -> store chr, dest
1495 CastInst* cast = new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1496 new StoreInst(cast, ci->getOperand(1), ci);
1497 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1498 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1499 ci);
1500 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1501 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1502 ci->eraseFromParent();
1503 return true;
1504 }
1505 }
1506 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001507 }
1508} SPrintFOptimizer;
1509
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001510/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001511/// function. It looks for cases where the result of fputs is not used and the
1512/// operation can be reduced to something simpler.
1513/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001514struct PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001515public:
1516 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001517 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001518 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001519
Reid Spencer93616972005-04-29 09:39:47 +00001520 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001521 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001522 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001523 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001524 }
1525
1526 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001527 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001528 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001529 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001530 return false;
1531
1532 // All the optimizations depend on the length of the first argument and the
1533 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001534 uint64_t len = 0;
Reid Spencer93616972005-04-29 09:39:47 +00001535 if (!getConstantStringLength(ci->getOperand(1), len))
1536 return false;
1537
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001538 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001539 case 0:
1540 // fputs("",F) -> noop
1541 break;
1542 case 1:
1543 {
1544 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001545 const Type* FILEptr_type = ci->getOperand(2)->getType();
1546 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001547 if (!fputc_func)
1548 return false;
1549 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1550 ci->getOperand(1)->getName()+".byte",ci);
1551 CastInst* casti = new CastInst(loadi,Type::IntTy,
1552 loadi->getName()+".int",ci);
1553 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1554 break;
1555 }
1556 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001557 {
Reid Spencer93616972005-04-29 09:39:47 +00001558 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001559 const Type* FILEptr_type = ci->getOperand(2)->getType();
1560 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001561 if (!fwrite_func)
1562 return false;
1563 std::vector<Value*> parms;
1564 parms.push_back(ci->getOperand(1));
1565 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1566 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1567 parms.push_back(ci->getOperand(2));
1568 new CallInst(fwrite_func,parms,"",ci);
1569 break;
1570 }
1571 }
1572 ci->eraseFromParent();
1573 return true; // success
1574 }
1575} PutsOptimizer;
1576
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001577/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001578/// function. It simply does range checks the parameter explicitly.
1579/// @brief Simplify the isdigit library function.
Chris Lattner5f6035f2005-09-29 06:16:11 +00001580struct isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001581public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001582 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001583 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001584
Chris Lattner5f6035f2005-09-29 06:16:11 +00001585 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001586 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001587 // Just make sure this has 1 argument
1588 return (f->arg_size() == 1);
1589 }
1590
1591 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001592 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1593 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001594 // isdigit(c) -> 0 or 1, if 'c' is constant
1595 uint64_t val = CI->getRawValue();
1596 if (val >= '0' && val <='9')
1597 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1598 else
1599 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1600 ci->eraseFromParent();
1601 return true;
1602 }
1603
1604 // isdigit(c) -> (unsigned)c - '0' <= 9
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001605 CastInst* cast =
Reid Spencer282d0572005-05-04 18:58:28 +00001606 new CastInst(ci->getOperand(1),Type::UIntTy,
1607 ci->getOperand(1)->getName()+".uint",ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001608 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencer282d0572005-05-04 18:58:28 +00001609 ConstantUInt::get(Type::UIntTy,0x30),
1610 ci->getOperand(1)->getName()+".sub",ci);
1611 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1612 ConstantUInt::get(Type::UIntTy,9),
1613 ci->getOperand(1)->getName()+".cmp",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001614 CastInst* c2 =
Reid Spencer282d0572005-05-04 18:58:28 +00001615 new CastInst(setcond_inst,Type::IntTy,
1616 ci->getOperand(1)->getName()+".isdigit",ci);
1617 ci->replaceAllUsesWith(c2);
1618 ci->eraseFromParent();
1619 return true;
1620 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001621} isdigitOptimizer;
1622
Chris Lattner87ef9432005-09-29 06:17:27 +00001623struct isasciiOptimization : public LibCallOptimization {
1624public:
1625 isasciiOptimization()
1626 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1627
1628 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1629 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1630 F->getReturnType()->isInteger();
1631 }
1632
1633 /// @brief Perform the isascii optimization.
1634 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1635 // isascii(c) -> (unsigned)c < 128
1636 Value *V = CI->getOperand(1);
1637 if (V->getType()->isSigned())
1638 V = new CastInst(V, V->getType()->getUnsignedVersion(), V->getName(), CI);
1639 Value *Cmp = BinaryOperator::createSetLT(V, ConstantUInt::get(V->getType(),
1640 128),
1641 V->getName()+".isascii", CI);
1642 if (Cmp->getType() != CI->getType())
1643 Cmp = new CastInst(Cmp, CI->getType(), Cmp->getName(), CI);
1644 CI->replaceAllUsesWith(Cmp);
1645 CI->eraseFromParent();
1646 return true;
1647 }
1648} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001649
Reid Spencer282d0572005-05-04 18:58:28 +00001650
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001651/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001652/// function. It simply does the corresponding and operation to restrict the
1653/// range of values to the ASCII character set (0-127).
1654/// @brief Simplify the toascii library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001655struct ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001656public:
1657 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001658 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001659 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001660
Reid Spencer4c444fe2005-04-30 03:17:54 +00001661 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001662 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001663 // Just make sure this has 2 arguments
1664 return (f->arg_size() == 1);
1665 }
1666
1667 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001668 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001669 // toascii(c) -> (c & 0x7f)
1670 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001671 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001672 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1673 ci->replaceAllUsesWith(and_inst);
1674 ci->eraseFromParent();
1675 return true;
1676 }
1677} ToAsciiOptimizer;
1678
Reid Spencerb195fcd2005-05-14 16:42:52 +00001679/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001680/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001681/// optimization is to compute the result at compile time if the argument is
1682/// a constant.
1683/// @brief Simplify the ffs library function.
Chris Lattner801f4752006-01-17 18:27:17 +00001684struct FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001685protected:
1686 /// @brief Subclass Constructor
1687 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001688 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001689
1690public:
1691 /// @brief Default Constructor
1692 FFSOptimization() : LibCallOptimization("ffs",
1693 "Number of 'ffs' calls simplified") {}
1694
Chris Lattner801f4752006-01-17 18:27:17 +00001695 /// @brief Make sure that the "ffs" function has the right prototype
1696 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001697 // Just make sure this has 2 arguments
Chris Lattner801f4752006-01-17 18:27:17 +00001698 return F->arg_size() == 1 && F->getReturnType() == Type::IntTy;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001699 }
1700
1701 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001702 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1703 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001704 // ffs(cnst) -> bit#
1705 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001706 // ffsll(cnst) -> bit#
Reid Spencerb195fcd2005-05-14 16:42:52 +00001707 uint64_t val = CI->getRawValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001708 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001709 if (val) {
1710 ++result;
1711 while ((val & 1) == 0) {
1712 ++result;
1713 val >>= 1;
1714 }
Reid Spencer17f77842005-05-15 21:19:45 +00001715 }
Chris Lattner801f4752006-01-17 18:27:17 +00001716 TheCall->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, result));
1717 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001718 return true;
1719 }
Reid Spencer17f77842005-05-15 21:19:45 +00001720
Chris Lattner801f4752006-01-17 18:27:17 +00001721 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1722 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1723 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1724 const Type *ArgType = TheCall->getOperand(1)->getType();
1725 ArgType = ArgType->getUnsignedVersion();
1726 const char *CTTZName;
1727 switch (ArgType->getTypeID()) {
1728 default: assert(0 && "Unknown unsigned type!");
1729 case Type::UByteTyID : CTTZName = "llvm.cttz.i8" ; break;
1730 case Type::UShortTyID: CTTZName = "llvm.cttz.i16"; break;
1731 case Type::UIntTyID : CTTZName = "llvm.cttz.i32"; break;
1732 case Type::ULongTyID : CTTZName = "llvm.cttz.i64"; break;
1733 }
1734
1735 Function *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
1736 ArgType, NULL);
1737 Value *V = new CastInst(TheCall->getOperand(1), ArgType, "tmp", TheCall);
1738 Value *V2 = new CallInst(F, V, "tmp", TheCall);
1739 V2 = new CastInst(V2, Type::IntTy, "tmp", TheCall);
1740 V2 = BinaryOperator::createAdd(V2, ConstantSInt::get(Type::IntTy, 1),
1741 "tmp", TheCall);
1742 Value *Cond =
1743 BinaryOperator::createSetEQ(V, Constant::getNullValue(V->getType()),
1744 "tmp", TheCall);
1745 V2 = new SelectInst(Cond, ConstantInt::get(Type::IntTy, 0), V2,
1746 TheCall->getName(), TheCall);
1747 TheCall->replaceAllUsesWith(V2);
1748 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001749 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001750 }
1751} FFSOptimizer;
1752
1753/// This LibCallOptimization will simplify calls to the "ffsl" library
1754/// calls. It simply uses FFSOptimization for which the transformation is
1755/// identical.
1756/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001757struct FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001758public:
1759 /// @brief Default Constructor
1760 FFSLOptimization() : FFSOptimization("ffsl",
1761 "Number of 'ffsl' calls simplified") {}
1762
1763} FFSLOptimizer;
1764
1765/// This LibCallOptimization will simplify calls to the "ffsll" library
1766/// calls. It simply uses FFSOptimization for which the transformation is
1767/// identical.
1768/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001769struct FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001770public:
1771 /// @brief Default Constructor
1772 FFSLLOptimization() : FFSOptimization("ffsll",
1773 "Number of 'ffsll' calls simplified") {}
1774
1775} FFSLLOptimizer;
1776
Chris Lattner57a28632006-01-23 05:57:36 +00001777/// This optimizes unary functions that take and return doubles.
1778struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1779 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1780 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001781
Chris Lattner57a28632006-01-23 05:57:36 +00001782 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001783 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1784 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1785 F->getReturnType() == Type::DoubleTy;
1786 }
Chris Lattner57a28632006-01-23 05:57:36 +00001787
1788 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1789 /// float, strength reduce this to a float version of the function,
1790 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1791 /// when the target supports the destination function and where there can be
1792 /// no precision loss.
1793 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
1794 Function *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001795 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1796 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001797 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001798 CI->getName(), CI);
1799 New = new CastInst(New, Type::DoubleTy, CI->getName(), CI);
1800 CI->replaceAllUsesWith(New);
1801 CI->eraseFromParent();
1802 if (Cast->use_empty())
1803 Cast->eraseFromParent();
1804 return true;
1805 }
Chris Lattner57a28632006-01-23 05:57:36 +00001806 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001807 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001808};
1809
Chris Lattner57a28632006-01-23 05:57:36 +00001810
Chris Lattner57a28632006-01-23 05:57:36 +00001811struct 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
Chris Lattner57740402006-01-23 06:24:46 +00001825struct CeilOptimization : public UnaryDoubleFPOptimizer {
1826 CeilOptimization()
1827 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1828
1829 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1830#ifdef HAVE_CEILF
1831 // If this is a float argument passed in, convert to ceilf.
1832 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1833 return true;
1834#endif
1835 return false; // opt failed
1836 }
1837} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001838
Chris Lattner57740402006-01-23 06:24:46 +00001839struct RoundOptimization : public UnaryDoubleFPOptimizer {
1840 RoundOptimization()
1841 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1842
1843 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1844#ifdef HAVE_ROUNDF
1845 // If this is a float argument passed in, convert to roundf.
1846 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1847 return true;
1848#endif
1849 return false; // opt failed
1850 }
1851} RoundOptimizer;
1852
1853struct RintOptimization : public UnaryDoubleFPOptimizer {
1854 RintOptimization()
1855 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1856
1857 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1858#ifdef HAVE_RINTF
1859 // If this is a float argument passed in, convert to rintf.
1860 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1861 return true;
1862#endif
1863 return false; // opt failed
1864 }
1865} RintOptimizer;
1866
1867struct NearByIntOptimization : public UnaryDoubleFPOptimizer {
1868 NearByIntOptimization()
1869 : UnaryDoubleFPOptimizer("nearbyint",
1870 "Number of 'nearbyint' calls simplified") {}
1871
1872 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1873#ifdef HAVE_NEARBYINTF
1874 // If this is a float argument passed in, convert to nearbyintf.
1875 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1876 return true;
1877#endif
1878 return false; // opt failed
1879 }
1880} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001881
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001882/// A function to compute the length of a null-terminated constant array of
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001883/// integers. This function can't rely on the size of the constant array
1884/// because there could be a null terminator in the middle of the array.
1885/// We also have to bail out if we find a non-integer constant initializer
1886/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001887/// below checks each of these conditions and will return true only if all
1888/// conditions are met. In that case, the \p len parameter is set to the length
1889/// of the null-terminated string. If false is returned, the conditions were
1890/// not met and len is set to 0.
1891/// @brief Get the length of a constant string (null-terminated array).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001892bool getConstantStringLength(Value *V, uint64_t &len, ConstantArray **CA) {
Reid Spencere249a822005-04-27 07:54:40 +00001893 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001894 len = 0; // make sure we initialize this
Reid Spencere249a822005-04-27 07:54:40 +00001895 User* GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001896 // If the value is not a GEP instruction nor a constant expression with a
1897 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00001898 // any other way
1899 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
1900 GEP = GEPI;
1901 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
1902 if (CE->getOpcode() == Instruction::GetElementPtr)
1903 GEP = CE;
1904 else
1905 return false;
1906 else
1907 return false;
1908
1909 // Make sure the GEP has exactly three arguments.
1910 if (GEP->getNumOperands() != 3)
1911 return false;
1912
1913 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001914 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001915 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere249a822005-04-27 07:54:40 +00001916 if (!op1->isNullValue())
1917 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001918 } else
Reid Spencere249a822005-04-27 07:54:40 +00001919 return false;
1920
1921 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001922 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencere249a822005-04-27 07:54:40 +00001923 // better of not optimizing it. While we're at it, get the second index
1924 // value. We'll need this later for indexing the ConstantArray.
1925 uint64_t start_idx = 0;
1926 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1927 start_idx = CI->getRawValue();
1928 else
1929 return false;
1930
1931 // The GEP instruction, constant or instruction, must reference a global
1932 // variable that is a constant and is initialized. The referenced constant
1933 // initializer is the array that we'll use for optimization.
1934 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1935 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1936 return false;
1937
1938 // Get the initializer.
1939 Constant* INTLZR = GV->getInitializer();
1940
1941 // Handle the ConstantAggregateZero case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001942 if (ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(INTLZR)) {
Reid Spencere249a822005-04-27 07:54:40 +00001943 // This is a degenerate case. The initializer is constant zero so the
1944 // length of the string must be zero.
1945 len = 0;
1946 return true;
1947 }
1948
1949 // Must be a Constant Array
1950 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
1951 if (!A)
1952 return false;
1953
1954 // Get the number of elements in the array
1955 uint64_t max_elems = A->getType()->getNumElements();
1956
1957 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001958 // the place the GEP refers to in the array.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001959 for (len = start_idx; len < max_elems; len++) {
1960 if (ConstantInt *CI = dyn_cast<ConstantInt>(A->getOperand(len))) {
Reid Spencere249a822005-04-27 07:54:40 +00001961 // Check for the null terminator
1962 if (CI->isNullValue())
1963 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001964 } else
Reid Spencere249a822005-04-27 07:54:40 +00001965 return false; // This array isn't suitable, non-int initializer
1966 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001967
Reid Spencere249a822005-04-27 07:54:40 +00001968 if (len >= max_elems)
1969 return false; // This array isn't null terminated
1970
1971 // Subtract out the initial value from the length
1972 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00001973 if (CA)
1974 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00001975 return true; // success!
1976}
1977
Reid Spencera7828ba2005-06-18 17:46:28 +00001978/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1979/// inserting the cast before IP, and return the cast.
1980/// @brief Cast a value to a "C" string.
1981Value *CastToCStr(Value *V, Instruction &IP) {
1982 const Type *SBPTy = PointerType::get(Type::SByteTy);
1983 if (V->getType() != SBPTy)
1984 return new CastInst(V, SBPTy, V->getName(), &IP);
1985 return V;
1986}
1987
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001988// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00001989// Additional cases that we need to add to this file:
1990//
Reid Spencer649ac282005-04-28 04:40:06 +00001991// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00001992// * cbrt(expN(X)) -> expN(x/3)
1993// * cbrt(sqrt(x)) -> pow(x,1/6)
1994// * cbrt(sqrt(x)) -> pow(x,1/9)
1995//
Reid Spencer649ac282005-04-28 04:40:06 +00001996// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00001997// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00001998//
1999// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00002000// * exp(log(x)) -> x
2001//
Reid Spencer649ac282005-04-28 04:40:06 +00002002// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00002003// * log(exp(x)) -> x
2004// * log(x**y) -> y*log(x)
2005// * log(exp(y)) -> y*log(e)
2006// * log(exp2(y)) -> y*log(2)
2007// * log(exp10(y)) -> y*log(10)
2008// * log(sqrt(x)) -> 0.5*log(x)
2009// * log(pow(x,y)) -> y*log(x)
2010//
2011// lround, lroundf, lroundl:
2012// * lround(cnst) -> cnst'
2013//
2014// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002015// * memcmp(x,y,l) -> cnst
2016// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002017//
Reid Spencer649ac282005-04-28 04:40:06 +00002018// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002019// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002020// (if s is a global constant array)
2021//
Reid Spencer649ac282005-04-28 04:40:06 +00002022// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002023// * pow(exp(x),y) -> exp(x*y)
2024// * pow(sqrt(x),y) -> pow(x,y*0.5)
2025// * pow(pow(x,y),z)-> pow(x,y*z)
2026//
2027// puts:
2028// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2029//
2030// round, roundf, roundl:
2031// * round(cnst) -> cnst'
2032//
2033// signbit:
2034// * signbit(cnst) -> cnst'
2035// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2036//
Reid Spencer649ac282005-04-28 04:40:06 +00002037// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002038// * sqrt(expN(x)) -> expN(x*0.5)
2039// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2040// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2041//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002042// stpcpy:
2043// * stpcpy(str, "literal") ->
2044// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002045// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002046// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2047// (if c is a constant integer and s is a constant string)
2048// * strrchr(s1,0) -> strchr(s1,0)
2049//
Reid Spencer649ac282005-04-28 04:40:06 +00002050// strncat:
2051// * strncat(x,y,0) -> x
2052// * strncat(x,y,0) -> x (if strlen(y) = 0)
2053// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2054//
Reid Spencer649ac282005-04-28 04:40:06 +00002055// strncpy:
2056// * strncpy(d,s,0) -> d
2057// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2058// (if s and l are constants)
2059//
2060// strpbrk:
2061// * strpbrk(s,a) -> offset_in_for(s,a)
2062// (if s and a are both constant strings)
2063// * strpbrk(s,"") -> 0
2064// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2065//
2066// strspn, strcspn:
2067// * strspn(s,a) -> const_int (if both args are constant)
2068// * strspn("",a) -> 0
2069// * strspn(s,"") -> 0
2070// * strcspn(s,a) -> const_int (if both args are constant)
2071// * strcspn("",a) -> 0
2072// * strcspn(s,"") -> strlen(a)
2073//
2074// strstr:
2075// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002076// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002077// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002078//
Reid Spencer649ac282005-04-28 04:40:06 +00002079// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002080// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002081//
Reid Spencer649ac282005-04-28 04:40:06 +00002082// trunc, truncf, truncl:
2083// * trunc(cnst) -> cnst'
2084//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002085//
Reid Spencer39a762d2005-04-25 02:53:12 +00002086}