blob: 51d70b1dac3dd2f0352e9c4ebe9e0de6bf7942b9 [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 Spencer557ab152007-02-05 23:32:05 +000029#include "llvm/Support/Compiler.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000030#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000031#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000032#include "llvm/Transforms/IPO.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000033using namespace llvm;
34
Reid Spencere249a822005-04-27 07:54:40 +000035/// This statistic keeps track of the total number of library calls that have
36/// been simplified regardless of which call it is.
Chris Lattner1631bcb2006-12-19 22:09:18 +000037STATISTIC(SimplifiedLibCalls, "Number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000038
Chris Lattner1631bcb2006-12-19 22:09:18 +000039namespace {
40 // Forward declarations
41 class LibCallOptimization;
42 class SimplifyLibCalls;
43
Chris Lattner33081b42006-01-22 23:10:26 +000044/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer9fbad132005-05-21 01:27:04 +000045/// Therefore all subclasses are registered here at static initialization time
46/// and this list is what the SimplifyLibCalls pass uses to apply the individual
47/// optimizations to the call sites.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000048/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattner33081b42006-01-22 23:10:26 +000049static LibCallOptimization *OptList = 0;
Reid Spencer39a762d2005-04-25 02:53:12 +000050
Reid Spencere249a822005-04-27 07:54:40 +000051/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000052/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000053/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000054/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000055/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer7ddcfb32005-04-27 21:29:20 +000056/// or attempt to perform, the optimization(s) for the library call. Otherwise,
57/// OptimizeCall won't be called. Subclasses are responsible for providing the
58/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
59/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000060/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer7ddcfb32005-04-27 21:29:20 +000061/// semantics", typically a library function that is defined by an international
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000062/// standard. Because the semantics are well known, the optimizations can
Reid Spencer7ddcfb32005-04-27 21:29:20 +000063/// generally short-circuit actually calling the function if there's a simpler
64/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000065/// @brief Base class for library call optimizations
Reid Spencer557ab152007-02-05 23:32:05 +000066class VISIBILITY_HIDDEN LibCallOptimization {
Chris Lattner33081b42006-01-22 23:10:26 +000067 LibCallOptimization **Prev, *Next;
68 const char *FunctionName; ///< Name of the library call we optimize
69#ifndef NDEBUG
Chris Lattner700b8732006-12-06 17:46:33 +000070 Statistic occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
Chris Lattner33081b42006-01-22 23:10:26 +000071#endif
Jeff Cohen4bc952f2005-04-29 03:05:44 +000072public:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000073 /// The \p fname argument must be the name of the library function being
Reid Spencer7ddcfb32005-04-27 21:29:20 +000074 /// optimized by the subclass.
75 /// @brief Constructor that registers the optimization.
Chris Lattner33081b42006-01-22 23:10:26 +000076 LibCallOptimization(const char *FName, const char *Description)
Chris Lattner575d3212006-12-19 23:16:47 +000077 : FunctionName(FName) {
78
Reid Spencere95a6472005-04-27 00:05:45 +000079#ifndef NDEBUG
Chris Lattner575d3212006-12-19 23:16:47 +000080 occurrences.construct("simplify-libcalls", Description);
Reid Spencere95a6472005-04-27 00:05:45 +000081#endif
Chris Lattner33081b42006-01-22 23:10:26 +000082 // Register this optimizer in the list of optimizations.
83 Next = OptList;
84 OptList = this;
85 Prev = &OptList;
86 if (Next) Next->Prev = &Next;
Reid Spencer39a762d2005-04-25 02:53:12 +000087 }
Chris Lattner33081b42006-01-22 23:10:26 +000088
89 /// getNext - All libcall optimizations are chained together into a list,
90 /// return the next one in the list.
91 LibCallOptimization *getNext() { return Next; }
Reid Spencer39a762d2005-04-25 02:53:12 +000092
Reid Spencer7ddcfb32005-04-27 21:29:20 +000093 /// @brief Deregister from the optlist
Chris Lattner33081b42006-01-22 23:10:26 +000094 virtual ~LibCallOptimization() {
95 *Prev = Next;
96 if (Next) Next->Prev = Prev;
97 }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000098
Reid Spencere249a822005-04-27 07:54:40 +000099 /// The implementation of this function in subclasses should determine if
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000100 /// \p F is suitable for the optimization. This method is called by
101 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
102 /// sites of such a function if that function is not suitable in the first
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000103 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000104 /// false, otherwise. This function should also perform any lazy
105 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencere249a822005-04-27 07:54:40 +0000106 /// true. This avoids doing initialization until the optimizer is actually
107 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000108 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +0000109 virtual bool ValidateCalledFunction(
110 const Function* F, ///< The function that is the target of call sites
111 SimplifyLibCalls& SLC ///< The pass object invoking us
112 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000113
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000114 /// The implementations of this function in subclasses is the heart of the
115 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencere249a822005-04-27 07:54:40 +0000116 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000117 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencere249a822005-04-27 07:54:40 +0000118 /// against ci, the subclass is responsible for returning true and ensuring
119 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000120 /// @brief Optimize a call, if possible.
121 virtual bool OptimizeCall(
122 CallInst* ci, ///< The call instruction that should be optimized.
123 SimplifyLibCalls& SLC ///< The pass object invoking us
124 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000125
Reid Spencere249a822005-04-27 07:54:40 +0000126 /// @brief Get the name of the library call being optimized
Chris Lattner33081b42006-01-22 23:10:26 +0000127 const char *getFunctionName() const { return FunctionName; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000128
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000129 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000130 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000131#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000132 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000133#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000134 }
Reid Spencere249a822005-04-27 07:54:40 +0000135};
136
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000137/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000138/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000139/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000140/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000141/// class provides the basic infrastructure for handling runOnModule. Whenever
142/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000143/// validate the call (ValidateLibraryCall). If it is validated, then
144/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000145/// @brief A ModulePass for optimizing well-known function calls.
Reid Spencer557ab152007-02-05 23:32:05 +0000146class VISIBILITY_HIDDEN SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000147public:
Reid Spencere249a822005-04-27 07:54:40 +0000148 /// We need some target data for accurate signature details that are
149 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000150 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000151 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000152 // Ask that the TargetData analysis be performed before us so we can use
153 // the target data.
154 Info.addRequired<TargetData>();
155 }
156
157 /// For this pass, process all of the function calls in the module, calling
158 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000159 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000160 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000161 reset(M);
162
163 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000164 hash_map<std::string, LibCallOptimization*> OptznMap;
165 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
166 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000167
168 // The call optimizations can be recursive. That is, the optimization might
169 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000170 // we make the LibCallOptimization instances very specific to the case they
171 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000172 // the module until we don't get any more optimizations possible.
173 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000174 do {
Reid Spencere249a822005-04-27 07:54:40 +0000175 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000176 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000177 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000178 // because they live in a runtime library somewhere and were (probably)
179 // not compiled by LLVM. So, we only act on external functions that
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000180 // have external or dllimport linkage and non-empty uses.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000181 if (!FI->isDeclaration() ||
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000182 !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
183 FI->use_empty())
Reid Spencere249a822005-04-27 07:54:40 +0000184 continue;
185
186 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000187 hash_map<std::string, LibCallOptimization*>::iterator OMI =
188 OptznMap.find(FI->getName());
189 if (OMI == OptznMap.end()) continue;
190
191 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000192
193 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000194 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000195 continue;
196
197 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000198 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000199 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000200 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000201 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000202 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000203 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000204 ++SimplifiedLibCalls;
205 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000206 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000207 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000208 }
209 }
210 }
Reid Spencere249a822005-04-27 07:54:40 +0000211 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000212
Reid Spencere249a822005-04-27 07:54:40 +0000213 return result;
214 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000215
Reid Spencere249a822005-04-27 07:54:40 +0000216 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000217 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000218
Reid Spencere249a822005-04-27 07:54:40 +0000219 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000220 TargetData* getTargetData() const { return TD; }
221
222 /// @brief Return the size_t type -- syntactic shortcut
223 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
224
Evan Cheng1fc40252006-06-16 08:36:35 +0000225 /// @brief Return a Function* for the putchar libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000226 Constant *get_putchar() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000227 if (!putchar_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000228 putchar_func =
229 M->getOrInsertFunction("putchar", Type::Int32Ty, Type::Int32Ty, NULL);
Evan Cheng1fc40252006-06-16 08:36:35 +0000230 return putchar_func;
231 }
232
233 /// @brief Return a Function* for the puts libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000234 Constant *get_puts() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000235 if (!puts_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000236 puts_func = M->getOrInsertFunction("puts", Type::Int32Ty,
237 PointerType::get(Type::Int8Ty),
Evan Cheng1fc40252006-06-16 08:36:35 +0000238 NULL);
239 return puts_func;
240 }
241
Reid Spencer93616972005-04-29 09:39:47 +0000242 /// @brief Return a Function* for the fputc libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000243 Constant *get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000244 if (!fputc_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000245 fputc_func = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000246 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000247 return fputc_func;
248 }
249
Evan Chengf2ea5872006-06-16 04:52:30 +0000250 /// @brief Return a Function* for the fputs libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000251 Constant *get_fputs(const Type* FILEptr_type) {
Evan Chengf2ea5872006-06-16 04:52:30 +0000252 if (!fputs_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000253 fputs_func = M->getOrInsertFunction("fputs", Type::Int32Ty,
254 PointerType::get(Type::Int8Ty),
Evan Chengf2ea5872006-06-16 04:52:30 +0000255 FILEptr_type, NULL);
256 return fputs_func;
257 }
258
Reid Spencer93616972005-04-29 09:39:47 +0000259 /// @brief Return a Function* for the fwrite libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000260 Constant *get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000261 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000262 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000263 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000264 TD->getIntPtrType(),
265 TD->getIntPtrType(),
266 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000267 return fwrite_func;
268 }
269
270 /// @brief Return a Function* for the sqrt libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000271 Constant *get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000272 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000273 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
274 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000275 return sqrt_func;
276 }
Reid Spencere249a822005-04-27 07:54:40 +0000277
Owen Andersondfd79ad2007-01-20 10:07:23 +0000278 /// @brief Return a Function* for the strcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000279 Constant *get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000280 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000281 strcpy_func = M->getOrInsertFunction("strcpy",
Reid Spencerc635f472006-12-31 05:48:39 +0000282 PointerType::get(Type::Int8Ty),
283 PointerType::get(Type::Int8Ty),
284 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000285 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000286 return strcpy_func;
287 }
288
289 /// @brief Return a Function* for the strlen libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000290 Constant *get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000291 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000292 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000293 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000294 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000295 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000296 }
297
Reid Spencer38cabd72005-05-03 07:23:44 +0000298 /// @brief Return a Function* for the memchr libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000299 Constant *get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000300 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000301 memchr_func = M->getOrInsertFunction("memchr",
Reid Spencerc635f472006-12-31 05:48:39 +0000302 PointerType::get(Type::Int8Ty),
303 PointerType::get(Type::Int8Ty),
304 Type::Int32Ty, TD->getIntPtrType(),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000305 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000306 return memchr_func;
307 }
308
Reid Spencere249a822005-04-27 07:54:40 +0000309 /// @brief Return a Function* for the memcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000310 Constant *get_memcpy() {
Chris Lattner4201cd12005-08-24 17:22:17 +0000311 if (!memcpy_func) {
Reid Spencerc635f472006-12-31 05:48:39 +0000312 const Type *SBP = PointerType::get(Type::Int8Ty);
313 const char *N = TD->getIntPtrType() == Type::Int32Ty ?
Chris Lattnerea7986a2006-03-03 01:30:23 +0000314 "llvm.memcpy.i32" : "llvm.memcpy.i64";
315 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
Reid Spencerc635f472006-12-31 05:48:39 +0000316 TD->getIntPtrType(), Type::Int32Ty,
Chris Lattnerea7986a2006-03-03 01:30:23 +0000317 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000318 }
Reid Spencere249a822005-04-27 07:54:40 +0000319 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000320 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000321
Chris Lattner34acba42007-01-07 08:12:01 +0000322 Constant *getUnaryFloatFunction(const char *Name, Constant *&Cache) {
Chris Lattner57740402006-01-23 06:24:46 +0000323 if (!Cache)
324 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
325 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000326 }
327
Chris Lattner34acba42007-01-07 08:12:01 +0000328 Constant *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
329 Constant *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
330 Constant *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
331 Constant *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
332 Constant *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
Chris Lattner57740402006-01-23 06:24:46 +0000333 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000334private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000335 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000336 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000337 M = &mod;
338 TD = &getAnalysis<TargetData>();
Evan Cheng1fc40252006-06-16 08:36:35 +0000339 putchar_func = 0;
340 puts_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000341 fputc_func = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +0000342 fputs_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000343 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000344 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000345 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000346 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000347 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000348 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000349 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000350 ceilf_func = 0;
351 roundf_func = 0;
352 rintf_func = 0;
353 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000354 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000355
Reid Spencere249a822005-04-27 07:54:40 +0000356private:
Chris Lattner57740402006-01-23 06:24:46 +0000357 /// Caches for function pointers.
Chris Lattner34acba42007-01-07 08:12:01 +0000358 Constant *putchar_func, *puts_func;
359 Constant *fputc_func, *fputs_func, *fwrite_func;
360 Constant *memcpy_func, *memchr_func;
361 Constant *sqrt_func;
362 Constant *strcpy_func, *strlen_func;
363 Constant *floorf_func, *ceilf_func, *roundf_func;
364 Constant *rintf_func, *nearbyintf_func;
Chris Lattner57740402006-01-23 06:24:46 +0000365 Module *M; ///< Cached Module
366 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000367};
368
369// Register the pass
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000370RegisterPass<SimplifyLibCalls>
371X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencere249a822005-04-27 07:54:40 +0000372
373} // anonymous namespace
374
375// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000376ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000377 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000378}
379
380// Classes below here, in the anonymous namespace, are all subclasses of the
381// LibCallOptimization class, each implementing all optimizations possible for a
382// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000383// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000384namespace {
385
Reid Spencera7828ba2005-06-18 17:46:28 +0000386// Forward declare utility functions.
Reid Spencer557ab152007-02-05 23:32:05 +0000387static bool getConstantStringLength(Value* V, uint64_t& len,
388 ConstantArray** A = 0 );
389static Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000390
391/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000392/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000393/// the same value passed to the exit function. When this is done, it splits the
394/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000395/// @brief Replace calls to exit in main with a simple return
Reid Spencer557ab152007-02-05 23:32:05 +0000396struct VISIBILITY_HIDDEN ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000397 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000398 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000399
400 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000401 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000402 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +0000403 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000404 }
405
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000406 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000407 // To be careful, we check that the call to exit is coming from "main", that
408 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000409 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000410 Function *from = ci->getParent()->getParent();
411 if (from->hasExternalLinkage())
412 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000413 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000414 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000415 // block of the call instruction
416 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000417
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000418 // Create a return instruction that we'll replace the call with.
419 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000420 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000421 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000422
Reid Spencerf2534c72005-04-25 21:11:48 +0000423 // Split the block at the call instruction which places it in a new
424 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000425 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000426
Reid Spencerf2534c72005-04-25 21:11:48 +0000427 // The block split caused a branch instruction to be inserted into
428 // the end of the original block, right after the return instruction
429 // that we put there. That's not a valid block, so delete the branch
430 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000431 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000432
Reid Spencerf2534c72005-04-25 21:11:48 +0000433 // Now we can finally get rid of the call instruction which now lives
434 // in the new basic block.
435 ci->eraseFromParent();
436
437 // Optimization succeeded, return true.
438 return true;
439 }
440 // We didn't pass the criteria for this optimization so return false
441 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000442 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000443} ExitInMainOptimizer;
444
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000445/// This LibCallOptimization will simplify a call to the strcat library
446/// function. The simplification is possible only if the string being
447/// concatenated is a constant array or a constant expression that results in
448/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000449/// of the constant string. Both of these calls are further reduced, if possible
450/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000451/// @brief Simplify the strcat library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000452struct VISIBILITY_HIDDEN StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000453public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000454 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000455 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000456 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000457
458public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000459
460 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000461 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000462 if (f->getReturnType() == PointerType::get(Type::Int8Ty))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000463 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000464 {
465 Function::const_arg_iterator AI = f->arg_begin();
Reid Spencerc635f472006-12-31 05:48:39 +0000466 if (AI++->getType() == PointerType::get(Type::Int8Ty))
467 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000468 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000469 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000470 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000471 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000472 }
473 return false;
474 }
475
Reid Spencere249a822005-04-27 07:54:40 +0000476 /// @brief Optimize the strcat library function
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000477 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000478 // Extract some information from the instruction
Reid Spencer08b49402005-04-27 17:46:54 +0000479 Value* dest = ci->getOperand(1);
480 Value* src = ci->getOperand(2);
481
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000482 // Extract the initializer (while making numerous checks) from the
Reid Spencer76dab9a2005-04-26 05:24:00 +0000483 // source operand of the call to strcat. If we get null back, one of
484 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000485 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000486 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000487 return false;
488
Reid Spencerb4f7b832005-04-26 07:45:18 +0000489 // Handle the simple, do-nothing case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000490 if (len == 0) {
Reid Spencer08b49402005-04-27 17:46:54 +0000491 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000492 ci->eraseFromParent();
493 return true;
494 }
495
Reid Spencerb4f7b832005-04-26 07:45:18 +0000496 // Increment the length because we actually want to memcpy the null
497 // terminator as well.
498 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000499
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000500 // We need to find the end of the destination string. That's where the
501 // memory is to be moved to. We just generate a call to strlen (further
502 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000503 // caches the Function* for us.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000504 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000505 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000506
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000507 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000508 // destination's pointer to get the actual memcpy destination (end of
509 // the string .. we're concatenating).
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000510 GetElementPtrInst* gep =
Chris Lattner927653f2007-01-31 19:59:55 +0000511 new GetElementPtrInst(dest, strlen_inst, dest->getName()+".indexed", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000512
513 // We have enough information to now generate the memcpy call to
514 // do the concatenation for us.
515 std::vector<Value*> vals;
516 vals.push_back(gep); // destination
517 vals.push_back(ci->getOperand(2)); // source
Reid Spencere0fc4df2006-10-20 07:07:24 +0000518 vals.push_back(ConstantInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencerc635f472006-12-31 05:48:39 +0000519 vals.push_back(ConstantInt::get(Type::Int32Ty,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000520 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000521
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000522 // Finally, substitute the first operand of the strcat call for the
523 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000524 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000525 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000526 ci->eraseFromParent();
527 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000528 }
529} StrCatOptimizer;
530
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000531/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000532/// function. It optimizes out cases where the arguments are both constant
533/// and the result can be determined statically.
534/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000535struct VISIBILITY_HIDDEN StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000536public:
537 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000538 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000539
540 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000541 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000542 if (f->getReturnType() == PointerType::get(Type::Int8Ty) &&
Reid Spencer38cabd72005-05-03 07:23:44 +0000543 f->arg_size() == 2)
544 return true;
545 return false;
546 }
547
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000548 /// @brief Perform the strchr optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000549 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000550 // If there aren't three operands, bail
551 if (ci->getNumOperands() != 3)
552 return false;
553
554 // Check that the first argument to strchr is a constant array of sbyte.
555 // If it is, get the length and data, otherwise return false.
556 uint64_t len = 0;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000557 ConstantArray* CA = 0;
Reid Spencerc635f472006-12-31 05:48:39 +0000558 if (!getConstantStringLength(ci->getOperand(1), len, &CA))
Reid Spencer38cabd72005-05-03 07:23:44 +0000559 return false;
560
Reid Spencere0fc4df2006-10-20 07:07:24 +0000561 // Check that the second argument to strchr is a constant int. If it isn't
562 // a constant signed integer, we can try an alternate optimization
563 ConstantInt* CSI = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencerc635f472006-12-31 05:48:39 +0000564 if (!CSI) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000565 // The second operand is not constant, or not signed. Just lower this to
566 // memchr since we know the length of the string since it is constant.
Chris Lattner34acba42007-01-07 08:12:01 +0000567 Constant *f = SLC.get_memchr();
Reid Spencer38cabd72005-05-03 07:23:44 +0000568 std::vector<Value*> args;
569 args.push_back(ci->getOperand(1));
570 args.push_back(ci->getOperand(2));
Reid Spencerc635f472006-12-31 05:48:39 +0000571 args.push_back(ConstantInt::get(SLC.getIntPtrType(), len));
Chris Lattner34acba42007-01-07 08:12:01 +0000572 ci->replaceAllUsesWith(new CallInst(f, args, ci->getName(), ci));
Reid Spencer38cabd72005-05-03 07:23:44 +0000573 ci->eraseFromParent();
574 return true;
575 }
576
577 // Get the character we're looking for
Reid Spencere0fc4df2006-10-20 07:07:24 +0000578 int64_t chr = CSI->getSExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +0000579
580 // Compute the offset
581 uint64_t offset = 0;
582 bool char_found = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000583 for (uint64_t i = 0; i < len; ++i) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000584 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000585 // Check for the null terminator
586 if (CI->isNullValue())
587 break; // we found end of string
Reid Spencere0fc4df2006-10-20 07:07:24 +0000588 else if (CI->getSExtValue() == chr) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000589 char_found = true;
590 offset = i;
591 break;
592 }
593 }
594 }
595
596 // strchr(s,c) -> offset_of_in(c,s)
597 // (if c is a constant integer and s is a constant string)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000598 if (char_found) {
Chris Lattner927653f2007-01-31 19:59:55 +0000599 Value* Idx = ConstantInt::get(Type::Int64Ty,offset);
600 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1), Idx,
Reid Spencer38cabd72005-05-03 07:23:44 +0000601 ci->getOperand(1)->getName()+".strchr",ci);
602 ci->replaceAllUsesWith(GEP);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000603 } else {
Reid Spencer38cabd72005-05-03 07:23:44 +0000604 ci->replaceAllUsesWith(
Reid Spencerc635f472006-12-31 05:48:39 +0000605 ConstantPointerNull::get(PointerType::get(Type::Int8Ty)));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000606 }
Reid Spencer38cabd72005-05-03 07:23:44 +0000607 ci->eraseFromParent();
608 return true;
609 }
610} StrChrOptimizer;
611
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000612/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000613/// function. It optimizes out cases where one or both arguments are constant
614/// and the result can be determined statically.
615/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000616struct VISIBILITY_HIDDEN StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000617public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000618 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000619 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000620
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000621 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000622 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000623 return F->getReturnType() == Type::Int32Ty && F->arg_size() == 2;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000624 }
625
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000626 /// @brief Perform the strcmp optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000627 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000628 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000629 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000630 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000631 Value* s1 = ci->getOperand(1);
632 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000633 if (s1 == s2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000634 // strcmp(x,x) -> 0
Reid Spencerc635f472006-12-31 05:48:39 +0000635 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer4c444fe2005-04-30 03:17:54 +0000636 ci->eraseFromParent();
637 return true;
638 }
639
640 bool isstr_1 = false;
641 uint64_t len_1 = 0;
642 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000643 if (getConstantStringLength(s1,len_1,&A1)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000644 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000645 if (len_1 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000646 // strcmp("",x) -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000647 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000648 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000649 CastInst* cast =
Reid Spencerc635f472006-12-31 05:48:39 +0000650 CastInst::create(Instruction::SExt, load, Type::Int32Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000651 ci->getName()+".int", ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000652 ci->replaceAllUsesWith(cast);
653 ci->eraseFromParent();
654 return true;
655 }
656 }
657
658 bool isstr_2 = false;
659 uint64_t len_2 = 0;
660 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000661 if (getConstantStringLength(s2, len_2, &A2)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000662 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000663 if (len_2 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000664 // strcmp(x,"") -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000665 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000666 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000667 CastInst* cast =
Reid Spencerc635f472006-12-31 05:48:39 +0000668 CastInst::create(Instruction::SExt, load, Type::Int32Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000669 ci->getName()+".int", ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000670 ci->replaceAllUsesWith(cast);
671 ci->eraseFromParent();
672 return true;
673 }
674 }
675
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000676 if (isstr_1 && isstr_2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000677 // strcmp(x,y) -> cnst (if both x and y are constant strings)
678 std::string str1 = A1->getAsString();
679 std::string str2 = A2->getAsString();
680 int result = strcmp(str1.c_str(), str2.c_str());
Reid Spencerc635f472006-12-31 05:48:39 +0000681 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,result));
Reid Spencer4c444fe2005-04-30 03:17:54 +0000682 ci->eraseFromParent();
683 return true;
684 }
685 return false;
686 }
687} StrCmpOptimizer;
688
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000689/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000690/// function. It optimizes out cases where one or both arguments are constant
691/// and the result can be determined statically.
692/// @brief Simplify the strncmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000693struct VISIBILITY_HIDDEN StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000694public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000695 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000696 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000697
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000698 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000699 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000700 if (f->getReturnType() == Type::Int32Ty && f->arg_size() == 3)
Reid Spencer49fa07042005-05-03 01:43:45 +0000701 return true;
702 return false;
703 }
704
705 /// @brief Perform the strncpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000706 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000707 // First, check to see if src and destination are the same. If they are,
708 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000709 // because the call is a no-op.
Reid Spencer49fa07042005-05-03 01:43:45 +0000710 Value* s1 = ci->getOperand(1);
711 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000712 if (s1 == s2) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000713 // strncmp(x,x,l) -> 0
Reid Spencerc635f472006-12-31 05:48:39 +0000714 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer49fa07042005-05-03 01:43:45 +0000715 ci->eraseFromParent();
716 return true;
717 }
718
719 // Check the length argument, if it is Constant zero then the strings are
720 // considered equal.
721 uint64_t len_arg = 0;
722 bool len_arg_is_const = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000723 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3))) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000724 len_arg_is_const = true;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000725 len_arg = len_CI->getZExtValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000726 if (len_arg == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000727 // strncmp(x,y,0) -> 0
Reid Spencerc635f472006-12-31 05:48:39 +0000728 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer49fa07042005-05-03 01:43:45 +0000729 ci->eraseFromParent();
730 return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000731 }
Reid Spencer49fa07042005-05-03 01:43:45 +0000732 }
733
734 bool isstr_1 = false;
735 uint64_t len_1 = 0;
736 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000737 if (getConstantStringLength(s1, len_1, &A1)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000738 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000739 if (len_1 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000740 // strncmp("",x) -> *x
741 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000742 CastInst* cast =
Reid Spencerc635f472006-12-31 05:48:39 +0000743 CastInst::create(Instruction::SExt, load, Type::Int32Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000744 ci->getName()+".int", ci);
Reid Spencer49fa07042005-05-03 01:43:45 +0000745 ci->replaceAllUsesWith(cast);
746 ci->eraseFromParent();
747 return true;
748 }
749 }
750
751 bool isstr_2 = false;
752 uint64_t len_2 = 0;
753 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000754 if (getConstantStringLength(s2,len_2,&A2)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000755 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000756 if (len_2 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000757 // strncmp(x,"") -> *x
758 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000759 CastInst* cast =
Reid Spencerc635f472006-12-31 05:48:39 +0000760 CastInst::create(Instruction::SExt, load, Type::Int32Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000761 ci->getName()+".int", ci);
Reid Spencer49fa07042005-05-03 01:43:45 +0000762 ci->replaceAllUsesWith(cast);
763 ci->eraseFromParent();
764 return true;
765 }
766 }
767
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000768 if (isstr_1 && isstr_2 && len_arg_is_const) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000769 // strncmp(x,y,const) -> constant
770 std::string str1 = A1->getAsString();
771 std::string str2 = A2->getAsString();
772 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
Reid Spencerc635f472006-12-31 05:48:39 +0000773 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,result));
Reid Spencer49fa07042005-05-03 01:43:45 +0000774 ci->eraseFromParent();
775 return true;
776 }
777 return false;
778 }
779} StrNCmpOptimizer;
780
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000781/// This LibCallOptimization will simplify a call to the strcpy library
782/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000783/// (1) If src and dest are the same and not volatile, just return dest
784/// (2) If the src is a constant then we can convert to llvm.memmove
785/// @brief Simplify the strcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000786struct VISIBILITY_HIDDEN StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000787public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000788 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000789 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000790
791 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000792 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000793 if (f->getReturnType() == PointerType::get(Type::Int8Ty))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000794 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000795 Function::const_arg_iterator AI = f->arg_begin();
Reid Spencerc635f472006-12-31 05:48:39 +0000796 if (AI++->getType() == PointerType::get(Type::Int8Ty))
797 if (AI->getType() == PointerType::get(Type::Int8Ty)) {
Reid Spencere249a822005-04-27 07:54:40 +0000798 // Indicate this is a suitable call type.
799 return true;
800 }
801 }
802 return false;
803 }
804
805 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000806 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000807 // First, check to see if src and destination are the same. If they are,
808 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000809 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000810 // degenerate strcpy(X,X) case which should have "undefined" results
811 // according to the C specification. However, it occurs sometimes and
812 // we optimize it as a no-op.
813 Value* dest = ci->getOperand(1);
814 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000815 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000816 ci->replaceAllUsesWith(dest);
817 ci->eraseFromParent();
818 return true;
819 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000820
Reid Spencere249a822005-04-27 07:54:40 +0000821 // Get the length of the constant string referenced by the second operand,
822 // the "src" parameter. Fail the optimization if we can't get the length
823 // (note that getConstantStringLength does lots of checks to make sure this
824 // is valid).
825 uint64_t len = 0;
826 if (!getConstantStringLength(ci->getOperand(2),len))
827 return false;
828
829 // If the constant string's length is zero we can optimize this by just
830 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000831 if (len == 0) {
Reid Spencerc635f472006-12-31 05:48:39 +0000832 new StoreInst(ConstantInt::get(Type::Int8Ty,0),ci->getOperand(1),ci);
Reid Spencere249a822005-04-27 07:54:40 +0000833 ci->replaceAllUsesWith(dest);
834 ci->eraseFromParent();
835 return true;
836 }
837
838 // Increment the length because we actually want to memcpy the null
839 // terminator as well.
840 len++;
841
Reid Spencere249a822005-04-27 07:54:40 +0000842 // We have enough information to now generate the memcpy call to
843 // do the concatenation for us.
844 std::vector<Value*> vals;
845 vals.push_back(dest); // destination
846 vals.push_back(src); // source
Reid Spencere0fc4df2006-10-20 07:07:24 +0000847 vals.push_back(ConstantInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencerc635f472006-12-31 05:48:39 +0000848 vals.push_back(ConstantInt::get(Type::Int32Ty,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000849 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000850
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000851 // Finally, substitute the first operand of the strcat call for the
852 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000853 // kill the strcat CallInst.
854 ci->replaceAllUsesWith(dest);
855 ci->eraseFromParent();
856 return true;
857 }
858} StrCpyOptimizer;
859
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000860/// This LibCallOptimization will simplify a call to the strlen library
861/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000862/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000863/// @brief Simplify the strlen library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000864struct VISIBILITY_HIDDEN StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000865 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000866 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000867
868 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000869 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000870 {
Reid Spencere249a822005-04-27 07:54:40 +0000871 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000872 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000873 if (Function::const_arg_iterator AI = f->arg_begin())
Reid Spencerc635f472006-12-31 05:48:39 +0000874 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000875 return true;
876 return false;
877 }
878
879 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000880 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000881 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000882 // Make sure we're dealing with an sbyte* here.
883 Value* str = ci->getOperand(1);
Reid Spencerc635f472006-12-31 05:48:39 +0000884 if (str->getType() != PointerType::get(Type::Int8Ty))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000885 return false;
886
887 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000888 if (ci->hasOneUse())
Reid Spencer266e42b2006-12-23 06:05:41 +0000889 // Is that single use a icmp operator?
890 if (ICmpInst* bop = dyn_cast<ICmpInst>(ci->use_back()))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000891 // Is it compared against a constant integer?
892 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
893 {
894 // Get the value the strlen result is compared to
Reid Spencere0fc4df2006-10-20 07:07:24 +0000895 uint64_t val = CI->getZExtValue();
Reid Spencer170ae7f2005-05-07 20:15:59 +0000896
897 // If its compared against length 0 with == or !=
898 if (val == 0 &&
Reid Spencer266e42b2006-12-23 06:05:41 +0000899 (bop->getPredicate() == ICmpInst::ICMP_EQ ||
900 bop->getPredicate() == ICmpInst::ICMP_NE))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000901 {
902 // strlen(x) != 0 -> *x != 0
903 // strlen(x) == 0 -> *x == 0
904 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +0000905 ICmpInst* rbop = new ICmpInst(bop->getPredicate(), load,
Reid Spencerc635f472006-12-31 05:48:39 +0000906 ConstantInt::get(Type::Int8Ty,0),
Reid Spencer266e42b2006-12-23 06:05:41 +0000907 bop->getName()+".strlen", ci);
Reid Spencer170ae7f2005-05-07 20:15:59 +0000908 bop->replaceAllUsesWith(rbop);
909 bop->eraseFromParent();
910 ci->eraseFromParent();
911 return true;
912 }
913 }
914
915 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000916 uint64_t len = 0;
917 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000918 return false;
919
Reid Spencer170ae7f2005-05-07 20:15:59 +0000920 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000921 const Type *Ty = SLC.getTargetData()->getIntPtrType();
Reid Spencer4720d4d2006-12-21 07:15:54 +0000922 ci->replaceAllUsesWith(ConstantInt::get(Ty, len));
Chris Lattnere17c5d02005-08-01 16:52:50 +0000923
Reid Spencerb4f7b832005-04-26 07:45:18 +0000924 ci->eraseFromParent();
925 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000926 }
927} StrLenOptimizer;
928
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000929/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
930/// is equal or not-equal to zero.
931static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
932 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
933 UI != E; ++UI) {
934 Instruction *User = cast<Instruction>(*UI);
Reid Spencer266e42b2006-12-23 06:05:41 +0000935 if (ICmpInst *IC = dyn_cast<ICmpInst>(User)) {
936 if ((IC->getPredicate() == ICmpInst::ICMP_NE ||
937 IC->getPredicate() == ICmpInst::ICMP_EQ) &&
938 isa<Constant>(IC->getOperand(1)) &&
939 cast<Constant>(IC->getOperand(1))->isNullValue())
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000940 continue;
941 } else if (CastInst *CI = dyn_cast<CastInst>(User))
Reid Spencer542964f2007-01-11 18:21:29 +0000942 if (CI->getType() == Type::Int1Ty)
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000943 continue;
944 // Unknown instruction.
945 return false;
946 }
947 return true;
948}
949
950/// This memcmpOptimization will simplify a call to the memcmp library
951/// function.
Reid Spencer557ab152007-02-05 23:32:05 +0000952struct VISIBILITY_HIDDEN memcmpOptimization : public LibCallOptimization {
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000953 /// @brief Default Constructor
954 memcmpOptimization()
955 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
956
957 /// @brief Make sure that the "memcmp" function has the right prototype
958 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
959 Function::const_arg_iterator AI = F->arg_begin();
960 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
961 if (!isa<PointerType>((++AI)->getType())) return false;
Chris Lattner03c49532007-01-15 02:27:26 +0000962 if (!(++AI)->getType()->isInteger()) return false;
963 if (!F->getReturnType()->isInteger()) return false;
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000964 return true;
965 }
966
967 /// Because of alignment and instruction information that we don't have, we
968 /// leave the bulk of this to the code generators.
969 ///
970 /// Note that we could do much more if we could force alignment on otherwise
971 /// small aligned allocas, or if we could indicate that loads have a small
972 /// alignment.
973 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
974 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
975
976 // If the two operands are the same, return zero.
977 if (LHS == RHS) {
978 // memcmp(s,s,x) -> 0
979 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
980 CI->eraseFromParent();
981 return true;
982 }
983
984 // Make sure we have a constant length.
985 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
986 if (!LenC) return false;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000987 uint64_t Len = LenC->getZExtValue();
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000988
989 // If the length is zero, this returns 0.
990 switch (Len) {
991 case 0:
992 // memcmp(s1,s2,0) -> 0
993 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
994 CI->eraseFromParent();
995 return true;
996 case 1: {
997 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
Reid Spencerc635f472006-12-31 05:48:39 +0000998 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000999 CastInst *Op1Cast = CastInst::create(
1000 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
1001 CastInst *Op2Cast = CastInst::create(
1002 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001003 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
1004 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
1005 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
1006 if (RV->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001007 RV = CastInst::createIntegerCast(RV, CI->getType(), false,
1008 RV->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001009 CI->replaceAllUsesWith(RV);
1010 CI->eraseFromParent();
1011 return true;
1012 }
1013 case 2:
1014 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
1015 // TODO: IF both are aligned, use a short load/compare.
1016
1017 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
Reid Spencerc635f472006-12-31 05:48:39 +00001018 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001019 CastInst *Op1Cast = CastInst::create(
1020 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
1021 CastInst *Op2Cast = CastInst::create(
1022 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001023 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
1024 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
1025 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
1026 CI->getName()+".d1", CI);
Reid Spencerc635f472006-12-31 05:48:39 +00001027 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001028 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
1029 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
1030 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +00001031 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001032 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
1033 CI->getName()+".d1", CI);
1034 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
1035 if (Or->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001036 Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/,
1037 Or->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001038 CI->replaceAllUsesWith(Or);
1039 CI->eraseFromParent();
1040 return true;
1041 }
1042 break;
1043 default:
1044 break;
1045 }
1046
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001047 return false;
1048 }
1049} memcmpOptimizer;
1050
1051
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001052/// This LibCallOptimization will simplify a call to the memcpy library
1053/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001054/// bytes depending on the length of the string and the alignment. Additional
1055/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001056/// @brief Simplify the memcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001057struct VISIBILITY_HIDDEN LLVMMemCpyMoveOptzn : public LibCallOptimization {
Chris Lattnerea7986a2006-03-03 01:30:23 +00001058 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
1059 : LibCallOptimization(fname, desc) {}
Reid Spencerf2534c72005-04-25 21:11:48 +00001060
1061 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001062 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001063 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +00001064 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +00001065 }
1066
Reid Spencerb4f7b832005-04-26 07:45:18 +00001067 /// Because of alignment and instruction information that we don't have, we
1068 /// leave the bulk of this to the code generators. The optimization here just
1069 /// deals with a few degenerate cases where the length of the string and the
1070 /// alignment match the sizes of our intrinsic types so we can do a load and
1071 /// store instead of the memcpy call.
1072 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001073 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001074 // Make sure we have constant int values to work with
1075 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1076 if (!LEN)
1077 return false;
1078 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1079 if (!ALIGN)
1080 return false;
1081
1082 // If the length is larger than the alignment, we can't optimize
Reid Spencere0fc4df2006-10-20 07:07:24 +00001083 uint64_t len = LEN->getZExtValue();
1084 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001085 if (alignment == 0)
1086 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001087 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001088 return false;
1089
Reid Spencer08b49402005-04-27 17:46:54 +00001090 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001091 Value* dest = ci->getOperand(1);
1092 Value* src = ci->getOperand(2);
Reid Spencer4f98e622007-01-07 21:45:41 +00001093 const Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001094 switch (len)
1095 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001096 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001097 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001098 ci->eraseFromParent();
1099 return true;
Reid Spencerc635f472006-12-31 05:48:39 +00001100 case 1: castType = Type::Int8Ty; break;
1101 case 2: castType = Type::Int16Ty; break;
1102 case 4: castType = Type::Int32Ty; break;
1103 case 8: castType = Type::Int64Ty; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001104 default:
1105 return false;
1106 }
Reid Spencer08b49402005-04-27 17:46:54 +00001107
1108 // Cast source and dest to the right sized primitive and then load/store
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001109 CastInst* SrcCast = CastInst::create(Instruction::BitCast,
1110 src, PointerType::get(castType), src->getName()+".cast", ci);
1111 CastInst* DestCast = CastInst::create(Instruction::BitCast,
1112 dest, PointerType::get(castType),dest->getName()+".cast", ci);
Reid Spencer08b49402005-04-27 17:46:54 +00001113 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerde46e482006-11-02 20:25:50 +00001114 new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001115 ci->eraseFromParent();
1116 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001117 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001118};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001119
Chris Lattnerea7986a2006-03-03 01:30:23 +00001120/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1121/// functions.
1122LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1123 "Number of 'llvm.memcpy' calls simplified");
1124LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1125 "Number of 'llvm.memcpy' calls simplified");
1126LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1127 "Number of 'llvm.memmove' calls simplified");
1128LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1129 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001130
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001131/// This LibCallOptimization will simplify a call to the memset library
1132/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1133/// bytes depending on the length argument.
Reid Spencer557ab152007-02-05 23:32:05 +00001134struct VISIBILITY_HIDDEN LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001135 /// @brief Default Constructor
Chris Lattnerea7986a2006-03-03 01:30:23 +00001136 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001137 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001138
1139 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001140 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001141 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001142 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001143 }
1144
1145 /// Because of alignment and instruction information that we don't have, we
1146 /// leave the bulk of this to the code generators. The optimization here just
1147 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001148 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001149 /// store instead of the memcpy call. Other calls are transformed into the
1150 /// llvm.memset intrinsic.
1151 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001152 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001153 // Make sure we have constant int values to work with
1154 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1155 if (!LEN)
1156 return false;
1157 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1158 if (!ALIGN)
1159 return false;
1160
1161 // Extract the length and alignment
Reid Spencere0fc4df2006-10-20 07:07:24 +00001162 uint64_t len = LEN->getZExtValue();
1163 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001164
1165 // Alignment 0 is identity for alignment 1
1166 if (alignment == 0)
1167 alignment = 1;
1168
1169 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001170 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001171 // memset(d,c,0,a) -> noop
1172 ci->eraseFromParent();
1173 return true;
1174 }
1175
1176 // If the length is larger than the alignment, we can't optimize
1177 if (len > alignment)
1178 return false;
1179
1180 // Make sure we have a constant ubyte to work with so we can extract
1181 // the value to be filled.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001182 ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencer38cabd72005-05-03 07:23:44 +00001183 if (!FILL)
1184 return false;
Reid Spencerc635f472006-12-31 05:48:39 +00001185 if (FILL->getType() != Type::Int8Ty)
Reid Spencer38cabd72005-05-03 07:23:44 +00001186 return false;
1187
1188 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001189
Reid Spencer38cabd72005-05-03 07:23:44 +00001190 // Extract the fill character
Reid Spencere0fc4df2006-10-20 07:07:24 +00001191 uint64_t fill_char = FILL->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001192 uint64_t fill_value = fill_char;
1193
1194 // Get the type we will cast to, based on size of memory area to fill, and
1195 // and the value we will store there.
1196 Value* dest = ci->getOperand(1);
Reid Spencer4f98e622007-01-07 21:45:41 +00001197 const Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001198 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001199 case 1:
Reid Spencerc635f472006-12-31 05:48:39 +00001200 castType = Type::Int8Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001201 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001202 case 2:
Reid Spencerc635f472006-12-31 05:48:39 +00001203 castType = Type::Int16Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001204 fill_value |= fill_char << 8;
1205 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001206 case 4:
Reid Spencerc635f472006-12-31 05:48:39 +00001207 castType = Type::Int32Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001208 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1209 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001210 case 8:
Reid Spencerc635f472006-12-31 05:48:39 +00001211 castType = Type::Int64Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001212 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1213 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1214 fill_value |= fill_char << 56;
1215 break;
1216 default:
1217 return false;
1218 }
1219
1220 // Cast dest to the right sized primitive and then load/store
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001221 CastInst* DestCast = new BitCastInst(dest, PointerType::get(castType),
1222 dest->getName()+".cast", ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001223 new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
Reid Spencer38cabd72005-05-03 07:23:44 +00001224 ci->eraseFromParent();
1225 return true;
1226 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001227};
1228
1229LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1230LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1231
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001232
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001233/// This LibCallOptimization will simplify calls to the "pow" library
1234/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001235/// substitutes the appropriate value.
1236/// @brief Simplify the pow library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001237struct VISIBILITY_HIDDEN PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001238public:
1239 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001240 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001241 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001242
Reid Spencer93616972005-04-29 09:39:47 +00001243 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001244 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001245 // Just make sure this has 2 arguments
1246 return (f->arg_size() == 2);
1247 }
1248
1249 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001250 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001251 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1252 Value* base = ci->getOperand(1);
1253 Value* expn = ci->getOperand(2);
1254 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1255 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001256 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001257 // pow(1.0,x) -> 1.0
1258 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1259 ci->eraseFromParent();
1260 return true;
1261 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001262 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001263 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001264 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001265 // pow(x,0.0) -> 1.0
1266 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1267 ci->eraseFromParent();
1268 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001269 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001270 // pow(x,0.5) -> sqrt(x)
1271 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1272 ci->getName()+".pow",ci);
1273 ci->replaceAllUsesWith(sqrt_inst);
1274 ci->eraseFromParent();
1275 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001276 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001277 // pow(x,1.0) -> x
1278 ci->replaceAllUsesWith(base);
1279 ci->eraseFromParent();
1280 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001281 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001282 // pow(x,-1.0) -> 1.0/x
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001283 BinaryOperator* div_inst= BinaryOperator::createFDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001284 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1285 ci->replaceAllUsesWith(div_inst);
1286 ci->eraseFromParent();
1287 return true;
1288 }
1289 }
1290 return false; // opt failed
1291 }
1292} PowOptimizer;
1293
Evan Cheng1fc40252006-06-16 08:36:35 +00001294/// This LibCallOptimization will simplify calls to the "printf" library
1295/// function. It looks for cases where the result of printf is not used and the
1296/// operation can be reduced to something simpler.
1297/// @brief Simplify the printf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001298struct VISIBILITY_HIDDEN PrintfOptimization : public LibCallOptimization {
Evan Cheng1fc40252006-06-16 08:36:35 +00001299public:
1300 /// @brief Default Constructor
1301 PrintfOptimization() : LibCallOptimization("printf",
1302 "Number of 'printf' calls simplified") {}
1303
1304 /// @brief Make sure that the "printf" function has the right prototype
1305 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1306 // Just make sure this has at least 1 arguments
1307 return (f->arg_size() >= 1);
1308 }
1309
1310 /// @brief Perform the printf optimization.
1311 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
1312 // If the call has more than 2 operands, we can't optimize it
1313 if (ci->getNumOperands() > 3 || ci->getNumOperands() <= 2)
1314 return false;
1315
1316 // If the result of the printf call is used, none of these optimizations
1317 // can be made.
1318 if (!ci->use_empty())
1319 return false;
1320
1321 // All the optimizations depend on the length of the first argument and the
1322 // fact that it is a constant string array. Check that now
1323 uint64_t len = 0;
1324 ConstantArray* CA = 0;
1325 if (!getConstantStringLength(ci->getOperand(1), len, &CA))
1326 return false;
1327
1328 if (len != 2 && len != 3)
1329 return false;
1330
1331 // The first character has to be a %
1332 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001333 if (CI->getZExtValue() != '%')
Evan Cheng1fc40252006-06-16 08:36:35 +00001334 return false;
1335
1336 // Get the second character and switch on its value
1337 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001338 switch (CI->getZExtValue()) {
Evan Cheng1fc40252006-06-16 08:36:35 +00001339 case 's':
1340 {
1341 if (len != 3 ||
Reid Spencere0fc4df2006-10-20 07:07:24 +00001342 dyn_cast<ConstantInt>(CA->getOperand(2))->getZExtValue() != '\n')
Evan Cheng1fc40252006-06-16 08:36:35 +00001343 return false;
1344
1345 // printf("%s\n",str) -> puts(str)
Evan Cheng1fc40252006-06-16 08:36:35 +00001346 std::vector<Value*> args;
Chris Lattner34acba42007-01-07 08:12:01 +00001347 new CallInst(SLC.get_puts(), CastToCStr(ci->getOperand(2), *ci),
1348 ci->getName(), ci);
1349 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, len));
Evan Cheng1fc40252006-06-16 08:36:35 +00001350 break;
1351 }
1352 case 'c':
1353 {
1354 // printf("%c",c) -> putchar(c)
1355 if (len != 2)
1356 return false;
1357
Chris Lattner34acba42007-01-07 08:12:01 +00001358 CastInst *Char = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001359 ci->getOperand(2), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001360 new CallInst(SLC.get_putchar(), Char, "", ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001361 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, 1));
Evan Cheng1fc40252006-06-16 08:36:35 +00001362 break;
1363 }
1364 default:
1365 return false;
1366 }
1367 ci->eraseFromParent();
1368 return true;
1369 }
1370} PrintfOptimizer;
1371
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001372/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001373/// function. It looks for cases where the result of fprintf is not used and the
1374/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001375/// @brief Simplify the fprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001376struct VISIBILITY_HIDDEN FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001377public:
1378 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001379 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001380 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001381
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001382 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001383 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001384 // Just make sure this has at least 2 arguments
1385 return (f->arg_size() >= 2);
1386 }
1387
1388 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001389 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001390 // If the call has more than 3 operands, we can't optimize it
1391 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1392 return false;
1393
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001394 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001395 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001396 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001397 return false;
1398
1399 // All the optimizations depend on the length of the second argument and the
1400 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001401 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001402 ConstantArray* CA = 0;
1403 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1404 return false;
1405
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001406 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001407 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001408 for (unsigned i = 0; i < len; ++i) {
1409 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001410 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001411 if (CI->getZExtValue() == '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001412 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001413 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001414 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001415 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001416 }
1417
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001418 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001419 const Type* FILEptr_type = ci->getOperand(1)->getType();
John Criswell4642afd2005-06-29 15:03:18 +00001420
1421 // Make sure that the fprintf() and fwrite() functions both take the
1422 // same type of char pointer.
Chris Lattner34acba42007-01-07 08:12:01 +00001423 if (ci->getOperand(2)->getType() != PointerType::get(Type::Int8Ty))
John Criswell4642afd2005-06-29 15:03:18 +00001424 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001425
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001426 std::vector<Value*> args;
1427 args.push_back(ci->getOperand(2));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001428 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1429 args.push_back(ConstantInt::get(SLC.getIntPtrType(),1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001430 args.push_back(ci->getOperand(1));
Chris Lattner34acba42007-01-07 08:12:01 +00001431 new CallInst(SLC.get_fwrite(FILEptr_type), args, ci->getName(), ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001432 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001433 ci->eraseFromParent();
1434 return true;
1435 }
1436
1437 // The remaining optimizations require the format string to be length 2
1438 // "%s" or "%c".
1439 if (len != 2)
1440 return false;
1441
1442 // The first character has to be a %
1443 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001444 if (CI->getZExtValue() != '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001445 return false;
1446
1447 // Get the second character and switch on its value
1448 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001449 switch (CI->getZExtValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001450 case 's':
1451 {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001452 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001453 ConstantArray* CA = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +00001454 if (getConstantStringLength(ci->getOperand(3), len, &CA)) {
1455 // fprintf(file,"%s",str) -> fwrite(str,strlen(str),1,file)
1456 const Type* FILEptr_type = ci->getOperand(1)->getType();
Evan Chengf2ea5872006-06-16 04:52:30 +00001457 std::vector<Value*> args;
1458 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Chris Lattner34acba42007-01-07 08:12:01 +00001459 args.push_back(ConstantInt::get(SLC.getIntPtrType(), len));
1460 args.push_back(ConstantInt::get(SLC.getIntPtrType(), 1));
Evan Chengf2ea5872006-06-16 04:52:30 +00001461 args.push_back(ci->getOperand(1));
Chris Lattner34acba42007-01-07 08:12:01 +00001462 new CallInst(SLC.get_fwrite(FILEptr_type), args, ci->getName(), ci);
1463 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001464 } else {
1465 // fprintf(file,"%s",str) -> fputs(str,file)
1466 const Type* FILEptr_type = ci->getOperand(1)->getType();
Chris Lattner34acba42007-01-07 08:12:01 +00001467 new CallInst(SLC.get_fputs(FILEptr_type),
1468 CastToCStr(ci->getOperand(3), *ci),
1469 ci->getOperand(1), ci->getName(),ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001470 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001471 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001472 break;
1473 }
1474 case 'c':
1475 {
Evan Cheng1fc40252006-06-16 08:36:35 +00001476 // fprintf(file,"%c",c) -> fputc(c,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001477 const Type* FILEptr_type = ci->getOperand(1)->getType();
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001478 CastInst* cast = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001479 ci->getOperand(3), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001480 new CallInst(SLC.get_fputc(FILEptr_type), cast,ci->getOperand(1),"",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001481 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001482 break;
1483 }
1484 default:
1485 return false;
1486 }
1487 ci->eraseFromParent();
1488 return true;
1489 }
1490} FPrintFOptimizer;
1491
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001492/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001493/// function. It looks for cases where the result of sprintf is not used and the
1494/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001495/// @brief Simplify the sprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001496struct VISIBILITY_HIDDEN SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001497public:
1498 /// @brief Default Constructor
1499 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001500 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001501
Reid Spencer1e520fd2005-05-04 03:20:21 +00001502 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001503 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001504 // Just make sure this has at least 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001505 return (f->getReturnType() == Type::Int32Ty && f->arg_size() >= 2);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001506 }
1507
1508 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001509 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001510 // If the call has more than 3 operands, we can't optimize it
1511 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1512 return false;
1513
1514 // All the optimizations depend on the length of the second argument and the
1515 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001516 uint64_t len = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001517 ConstantArray* CA = 0;
1518 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1519 return false;
1520
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001521 if (ci->getNumOperands() == 3) {
1522 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001523 // If the length is 0, we just need to store a null byte
Reid Spencerc635f472006-12-31 05:48:39 +00001524 new StoreInst(ConstantInt::get(Type::Int8Ty,0),ci->getOperand(1),ci);
1525 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001526 ci->eraseFromParent();
1527 return true;
1528 }
1529
1530 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001531 for (unsigned i = 0; i < len; ++i) {
1532 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001533 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001534 if (CI->getZExtValue() == '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001535 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001536 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001537 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001538 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001539 }
1540
1541 // Increment length because we want to copy the null byte too
1542 len++;
1543
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001544 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001545 std::vector<Value*> args;
1546 args.push_back(ci->getOperand(1));
1547 args.push_back(ci->getOperand(2));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001548 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
Reid Spencerc635f472006-12-31 05:48:39 +00001549 args.push_back(ConstantInt::get(Type::Int32Ty,1));
Chris Lattner34acba42007-01-07 08:12:01 +00001550 new CallInst(SLC.get_memcpy(), args, "", ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001551 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001552 ci->eraseFromParent();
1553 return true;
1554 }
1555
1556 // The remaining optimizations require the format string to be length 2
1557 // "%s" or "%c".
1558 if (len != 2)
1559 return false;
1560
1561 // The first character has to be a %
1562 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001563 if (CI->getZExtValue() != '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001564 return false;
1565
1566 // Get the second character and switch on its value
1567 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001568 switch (CI->getZExtValue()) {
Chris Lattner175463a2005-09-24 22:17:06 +00001569 case 's': {
1570 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Chris Lattner34acba42007-01-07 08:12:01 +00001571 Value *Len = new CallInst(SLC.get_strlen(),
1572 CastToCStr(ci->getOperand(3), *ci),
Chris Lattner175463a2005-09-24 22:17:06 +00001573 ci->getOperand(3)->getName()+".len", ci);
1574 Value *Len1 = BinaryOperator::createAdd(Len,
1575 ConstantInt::get(Len->getType(), 1),
1576 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001577 if (Len1->getType() != SLC.getIntPtrType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001578 Len1 = CastInst::createIntegerCast(Len1, SLC.getIntPtrType(), false,
1579 Len1->getName(), ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001580 std::vector<Value*> args;
1581 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1582 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1583 args.push_back(Len1);
Reid Spencerc635f472006-12-31 05:48:39 +00001584 args.push_back(ConstantInt::get(Type::Int32Ty,1));
Chris Lattner34acba42007-01-07 08:12:01 +00001585 new CallInst(SLC.get_memcpy(), args, "", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001586
1587 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001588 if (!ci->use_empty()) {
1589 if (Len->getType() != ci->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001590 Len = CastInst::createIntegerCast(Len, ci->getType(), false,
1591 Len->getName(), ci);
Chris Lattnerf4877682005-09-25 07:06:48 +00001592 ci->replaceAllUsesWith(Len);
1593 }
Chris Lattner175463a2005-09-24 22:17:06 +00001594 ci->eraseFromParent();
1595 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001596 }
Chris Lattner175463a2005-09-24 22:17:06 +00001597 case 'c': {
1598 // sprintf(dest,"%c",chr) -> store chr, dest
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001599 CastInst* cast = CastInst::createTruncOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001600 ci->getOperand(3), Type::Int8Ty, "char", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001601 new StoreInst(cast, ci->getOperand(1), ci);
1602 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001603 ConstantInt::get(Type::Int32Ty,1),ci->getOperand(1)->getName()+".end",
Chris Lattner175463a2005-09-24 22:17:06 +00001604 ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001605 new StoreInst(ConstantInt::get(Type::Int8Ty,0),gep,ci);
1606 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Chris Lattner175463a2005-09-24 22:17:06 +00001607 ci->eraseFromParent();
1608 return true;
1609 }
1610 }
1611 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001612 }
1613} SPrintFOptimizer;
1614
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001615/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001616/// function. It looks for cases where the result of fputs is not used and the
1617/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001618/// @brief Simplify the puts library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001619struct VISIBILITY_HIDDEN PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001620public:
1621 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001622 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001623 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001624
Reid Spencer93616972005-04-29 09:39:47 +00001625 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001626 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001627 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001628 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001629 }
1630
1631 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001632 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001633 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001634 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001635 return false;
1636
1637 // All the optimizations depend on the length of the first argument and the
1638 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001639 uint64_t len = 0;
Reid Spencer93616972005-04-29 09:39:47 +00001640 if (!getConstantStringLength(ci->getOperand(1), len))
1641 return false;
1642
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001643 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001644 case 0:
1645 // fputs("",F) -> noop
1646 break;
1647 case 1:
1648 {
1649 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001650 const Type* FILEptr_type = ci->getOperand(2)->getType();
Reid Spencer93616972005-04-29 09:39:47 +00001651 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1652 ci->getOperand(1)->getName()+".byte",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001653 CastInst* casti = new SExtInst(loadi, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001654 loadi->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001655 new CallInst(SLC.get_fputc(FILEptr_type), casti,
1656 ci->getOperand(2), "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001657 break;
1658 }
1659 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001660 {
Reid Spencer93616972005-04-29 09:39:47 +00001661 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001662 const Type* FILEptr_type = ci->getOperand(2)->getType();
Reid Spencer93616972005-04-29 09:39:47 +00001663 std::vector<Value*> parms;
1664 parms.push_back(ci->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001665 parms.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1666 parms.push_back(ConstantInt::get(SLC.getIntPtrType(),1));
Reid Spencer93616972005-04-29 09:39:47 +00001667 parms.push_back(ci->getOperand(2));
Chris Lattner34acba42007-01-07 08:12:01 +00001668 new CallInst(SLC.get_fwrite(FILEptr_type), parms, "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001669 break;
1670 }
1671 }
1672 ci->eraseFromParent();
1673 return true; // success
1674 }
1675} PutsOptimizer;
1676
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001677/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001678/// function. It simply does range checks the parameter explicitly.
1679/// @brief Simplify the isdigit library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001680struct VISIBILITY_HIDDEN isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001681public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001682 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001683 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001684
Chris Lattner5f6035f2005-09-29 06:16:11 +00001685 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001686 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001687 // Just make sure this has 1 argument
1688 return (f->arg_size() == 1);
1689 }
1690
1691 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001692 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1693 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001694 // isdigit(c) -> 0 or 1, if 'c' is constant
Reid Spencere0fc4df2006-10-20 07:07:24 +00001695 uint64_t val = CI->getZExtValue();
Reid Spencer282d0572005-05-04 18:58:28 +00001696 if (val >= '0' && val <='9')
Reid Spencerc635f472006-12-31 05:48:39 +00001697 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Reid Spencer282d0572005-05-04 18:58:28 +00001698 else
Reid Spencerc635f472006-12-31 05:48:39 +00001699 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer282d0572005-05-04 18:58:28 +00001700 ci->eraseFromParent();
1701 return true;
1702 }
1703
1704 // isdigit(c) -> (unsigned)c - '0' <= 9
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001705 CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001706 Type::Int32Ty, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001707 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencerc635f472006-12-31 05:48:39 +00001708 ConstantInt::get(Type::Int32Ty,0x30),
Reid Spencer282d0572005-05-04 18:58:28 +00001709 ci->getOperand(1)->getName()+".sub",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +00001710 ICmpInst* setcond_inst = new ICmpInst(ICmpInst::ICMP_ULE,sub_inst,
Reid Spencerc635f472006-12-31 05:48:39 +00001711 ConstantInt::get(Type::Int32Ty,9),
Reid Spencer282d0572005-05-04 18:58:28 +00001712 ci->getOperand(1)->getName()+".cmp",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001713 CastInst* c2 = new ZExtInst(setcond_inst, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001714 ci->getOperand(1)->getName()+".isdigit", ci);
Reid Spencer282d0572005-05-04 18:58:28 +00001715 ci->replaceAllUsesWith(c2);
1716 ci->eraseFromParent();
1717 return true;
1718 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001719} isdigitOptimizer;
1720
Reid Spencer557ab152007-02-05 23:32:05 +00001721struct VISIBILITY_HIDDEN isasciiOptimization : public LibCallOptimization {
Chris Lattner87ef9432005-09-29 06:17:27 +00001722public:
1723 isasciiOptimization()
1724 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1725
1726 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +00001727 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1728 F->getReturnType()->isInteger();
Chris Lattner87ef9432005-09-29 06:17:27 +00001729 }
1730
1731 /// @brief Perform the isascii optimization.
1732 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1733 // isascii(c) -> (unsigned)c < 128
1734 Value *V = CI->getOperand(1);
Reid Spencer266e42b2006-12-23 06:05:41 +00001735 Value *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, V,
1736 ConstantInt::get(V->getType(), 128),
1737 V->getName()+".isascii", CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001738 if (Cmp->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001739 Cmp = new BitCastInst(Cmp, CI->getType(), Cmp->getName(), CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001740 CI->replaceAllUsesWith(Cmp);
1741 CI->eraseFromParent();
1742 return true;
1743 }
1744} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001745
Reid Spencer282d0572005-05-04 18:58:28 +00001746
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001747/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001748/// function. It simply does the corresponding and operation to restrict the
1749/// range of values to the ASCII character set (0-127).
1750/// @brief Simplify the toascii library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001751struct VISIBILITY_HIDDEN ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001752public:
1753 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001754 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001755 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001756
Reid Spencer4c444fe2005-04-30 03:17:54 +00001757 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001758 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001759 // Just make sure this has 2 arguments
1760 return (f->arg_size() == 1);
1761 }
1762
1763 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001764 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001765 // toascii(c) -> (c & 0x7f)
1766 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001767 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001768 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1769 ci->replaceAllUsesWith(and_inst);
1770 ci->eraseFromParent();
1771 return true;
1772 }
1773} ToAsciiOptimizer;
1774
Reid Spencerb195fcd2005-05-14 16:42:52 +00001775/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001776/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001777/// optimization is to compute the result at compile time if the argument is
1778/// a constant.
1779/// @brief Simplify the ffs library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001780struct VISIBILITY_HIDDEN FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001781protected:
1782 /// @brief Subclass Constructor
1783 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001784 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001785
1786public:
1787 /// @brief Default Constructor
1788 FFSOptimization() : LibCallOptimization("ffs",
1789 "Number of 'ffs' calls simplified") {}
1790
Chris Lattner801f4752006-01-17 18:27:17 +00001791 /// @brief Make sure that the "ffs" function has the right prototype
1792 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001793 // Just make sure this has 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001794 return F->arg_size() == 1 && F->getReturnType() == Type::Int32Ty;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001795 }
1796
1797 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001798 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1799 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001800 // ffs(cnst) -> bit#
1801 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001802 // ffsll(cnst) -> bit#
Reid Spencere0fc4df2006-10-20 07:07:24 +00001803 uint64_t val = CI->getZExtValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001804 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001805 if (val) {
1806 ++result;
1807 while ((val & 1) == 0) {
1808 ++result;
1809 val >>= 1;
1810 }
Reid Spencer17f77842005-05-15 21:19:45 +00001811 }
Reid Spencerc635f472006-12-31 05:48:39 +00001812 TheCall->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, result));
Chris Lattner801f4752006-01-17 18:27:17 +00001813 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001814 return true;
1815 }
Reid Spencer17f77842005-05-15 21:19:45 +00001816
Chris Lattner801f4752006-01-17 18:27:17 +00001817 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1818 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1819 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1820 const Type *ArgType = TheCall->getOperand(1)->getType();
Chris Lattner801f4752006-01-17 18:27:17 +00001821 const char *CTTZName;
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001822 assert(ArgType->getTypeID() == Type::IntegerTyID &&
1823 "llvm.cttz argument is not an integer?");
1824 unsigned BitWidth = cast<IntegerType>(ArgType)->getBitWidth();
Chris Lattner3b6058c2007-01-12 22:49:11 +00001825 if (BitWidth == 8)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001826 CTTZName = "llvm.cttz.i8";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001827 else if (BitWidth == 16)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001828 CTTZName = "llvm.cttz.i16";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001829 else if (BitWidth == 32)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001830 CTTZName = "llvm.cttz.i32";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001831 else {
1832 assert(BitWidth == 64 && "Unknown bitwidth");
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001833 CTTZName = "llvm.cttz.i64";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001834 }
Chris Lattner801f4752006-01-17 18:27:17 +00001835
Chris Lattner34acba42007-01-07 08:12:01 +00001836 Constant *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
Chris Lattner801f4752006-01-17 18:27:17 +00001837 ArgType, NULL);
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001838 Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType,
1839 false/*ZExt*/, "tmp", TheCall);
Chris Lattner801f4752006-01-17 18:27:17 +00001840 Value *V2 = new CallInst(F, V, "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001841 V2 = CastInst::createIntegerCast(V2, Type::Int32Ty, false/*ZExt*/,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001842 "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001843 V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::Int32Ty, 1),
Chris Lattner801f4752006-01-17 18:27:17 +00001844 "tmp", TheCall);
Reid Spencer266e42b2006-12-23 06:05:41 +00001845 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, V,
1846 Constant::getNullValue(V->getType()), "tmp",
1847 TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001848 V2 = new SelectInst(Cond, ConstantInt::get(Type::Int32Ty, 0), V2,
Chris Lattner801f4752006-01-17 18:27:17 +00001849 TheCall->getName(), TheCall);
1850 TheCall->replaceAllUsesWith(V2);
1851 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001852 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001853 }
1854} FFSOptimizer;
1855
1856/// This LibCallOptimization will simplify calls to the "ffsl" library
1857/// calls. It simply uses FFSOptimization for which the transformation is
1858/// identical.
1859/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001860struct VISIBILITY_HIDDEN FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001861public:
1862 /// @brief Default Constructor
1863 FFSLOptimization() : FFSOptimization("ffsl",
1864 "Number of 'ffsl' calls simplified") {}
1865
1866} FFSLOptimizer;
1867
1868/// This LibCallOptimization will simplify calls to the "ffsll" library
1869/// calls. It simply uses FFSOptimization for which the transformation is
1870/// identical.
1871/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001872struct VISIBILITY_HIDDEN FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001873public:
1874 /// @brief Default Constructor
1875 FFSLLOptimization() : FFSOptimization("ffsll",
1876 "Number of 'ffsll' calls simplified") {}
1877
1878} FFSLLOptimizer;
1879
Chris Lattner57a28632006-01-23 05:57:36 +00001880/// This optimizes unary functions that take and return doubles.
1881struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1882 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1883 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001884
Chris Lattner57a28632006-01-23 05:57:36 +00001885 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001886 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1887 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1888 F->getReturnType() == Type::DoubleTy;
1889 }
Chris Lattner57a28632006-01-23 05:57:36 +00001890
1891 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1892 /// float, strength reduce this to a float version of the function,
1893 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1894 /// when the target supports the destination function and where there can be
1895 /// no precision loss.
1896 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
Chris Lattner34acba42007-01-07 08:12:01 +00001897 Constant *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001898 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1899 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001900 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001901 CI->getName(), CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001902 New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
Chris Lattner4201cd12005-08-24 17:22:17 +00001903 CI->replaceAllUsesWith(New);
1904 CI->eraseFromParent();
1905 if (Cast->use_empty())
1906 Cast->eraseFromParent();
1907 return true;
1908 }
Chris Lattner57a28632006-01-23 05:57:36 +00001909 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001910 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001911};
1912
Chris Lattner57a28632006-01-23 05:57:36 +00001913
Reid Spencer557ab152007-02-05 23:32:05 +00001914struct VISIBILITY_HIDDEN FloorOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57a28632006-01-23 05:57:36 +00001915 FloorOptimization()
1916 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1917
1918 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001919#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001920 // If this is a float argument passed in, convert to floorf.
1921 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1922 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001923#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001924 return false; // opt failed
1925 }
1926} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001927
Reid Spencer557ab152007-02-05 23:32:05 +00001928struct VISIBILITY_HIDDEN CeilOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001929 CeilOptimization()
1930 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1931
1932 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1933#ifdef HAVE_CEILF
1934 // If this is a float argument passed in, convert to ceilf.
1935 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1936 return true;
1937#endif
1938 return false; // opt failed
1939 }
1940} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001941
Reid Spencer557ab152007-02-05 23:32:05 +00001942struct VISIBILITY_HIDDEN RoundOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001943 RoundOptimization()
1944 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1945
1946 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1947#ifdef HAVE_ROUNDF
1948 // If this is a float argument passed in, convert to roundf.
1949 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1950 return true;
1951#endif
1952 return false; // opt failed
1953 }
1954} RoundOptimizer;
1955
Reid Spencer557ab152007-02-05 23:32:05 +00001956struct VISIBILITY_HIDDEN RintOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001957 RintOptimization()
1958 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1959
1960 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1961#ifdef HAVE_RINTF
1962 // If this is a float argument passed in, convert to rintf.
1963 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1964 return true;
1965#endif
1966 return false; // opt failed
1967 }
1968} RintOptimizer;
1969
Reid Spencer557ab152007-02-05 23:32:05 +00001970struct VISIBILITY_HIDDEN NearByIntOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001971 NearByIntOptimization()
1972 : UnaryDoubleFPOptimizer("nearbyint",
1973 "Number of 'nearbyint' calls simplified") {}
1974
1975 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1976#ifdef HAVE_NEARBYINTF
1977 // If this is a float argument passed in, convert to nearbyintf.
1978 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1979 return true;
1980#endif
1981 return false; // opt failed
1982 }
1983} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001984
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001985/// A function to compute the length of a null-terminated constant array of
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001986/// integers. This function can't rely on the size of the constant array
1987/// because there could be a null terminator in the middle of the array.
1988/// We also have to bail out if we find a non-integer constant initializer
1989/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001990/// below checks each of these conditions and will return true only if all
1991/// conditions are met. In that case, the \p len parameter is set to the length
1992/// of the null-terminated string. If false is returned, the conditions were
1993/// not met and len is set to 0.
1994/// @brief Get the length of a constant string (null-terminated array).
Reid Spencer557ab152007-02-05 23:32:05 +00001995static bool getConstantStringLength(Value *V, uint64_t &len, ConstantArray **CA)
1996{
Reid Spencere249a822005-04-27 07:54:40 +00001997 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001998 len = 0; // make sure we initialize this
Reid Spencere249a822005-04-27 07:54:40 +00001999 User* GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002000 // If the value is not a GEP instruction nor a constant expression with a
2001 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00002002 // any other way
2003 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
2004 GEP = GEPI;
2005 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
2006 if (CE->getOpcode() == Instruction::GetElementPtr)
2007 GEP = CE;
2008 else
2009 return false;
2010 else
2011 return false;
2012
2013 // Make sure the GEP has exactly three arguments.
2014 if (GEP->getNumOperands() != 3)
2015 return false;
2016
2017 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002018 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002019 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere249a822005-04-27 07:54:40 +00002020 if (!op1->isNullValue())
2021 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002022 } else
Reid Spencere249a822005-04-27 07:54:40 +00002023 return false;
2024
2025 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002026 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencere249a822005-04-27 07:54:40 +00002027 // better of not optimizing it. While we're at it, get the second index
2028 // value. We'll need this later for indexing the ConstantArray.
2029 uint64_t start_idx = 0;
2030 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00002031 start_idx = CI->getZExtValue();
Reid Spencere249a822005-04-27 07:54:40 +00002032 else
2033 return false;
2034
2035 // The GEP instruction, constant or instruction, must reference a global
2036 // variable that is a constant and is initialized. The referenced constant
2037 // initializer is the array that we'll use for optimization.
2038 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
2039 if (!GV || !GV->isConstant() || !GV->hasInitializer())
2040 return false;
2041
2042 // Get the initializer.
2043 Constant* INTLZR = GV->getInitializer();
2044
2045 // Handle the ConstantAggregateZero case
Reid Spencerde46e482006-11-02 20:25:50 +00002046 if (isa<ConstantAggregateZero>(INTLZR)) {
Reid Spencere249a822005-04-27 07:54:40 +00002047 // This is a degenerate case. The initializer is constant zero so the
2048 // length of the string must be zero.
2049 len = 0;
2050 return true;
2051 }
2052
2053 // Must be a Constant Array
2054 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
2055 if (!A)
2056 return false;
2057
2058 // Get the number of elements in the array
2059 uint64_t max_elems = A->getType()->getNumElements();
2060
2061 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002062 // the place the GEP refers to in the array.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002063 for (len = start_idx; len < max_elems; len++) {
2064 if (ConstantInt *CI = dyn_cast<ConstantInt>(A->getOperand(len))) {
Reid Spencere249a822005-04-27 07:54:40 +00002065 // Check for the null terminator
2066 if (CI->isNullValue())
2067 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002068 } else
Reid Spencere249a822005-04-27 07:54:40 +00002069 return false; // This array isn't suitable, non-int initializer
2070 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002071
Reid Spencere249a822005-04-27 07:54:40 +00002072 if (len >= max_elems)
2073 return false; // This array isn't null terminated
2074
2075 // Subtract out the initial value from the length
2076 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00002077 if (CA)
2078 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00002079 return true; // success!
2080}
2081
Reid Spencera7828ba2005-06-18 17:46:28 +00002082/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
2083/// inserting the cast before IP, and return the cast.
2084/// @brief Cast a value to a "C" string.
Reid Spencer557ab152007-02-05 23:32:05 +00002085static Value *CastToCStr(Value *V, Instruction &IP) {
Reid Spencera730cf82006-12-13 08:04:32 +00002086 assert(isa<PointerType>(V->getType()) &&
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002087 "Can't cast non-pointer type to C string type");
Reid Spencerc635f472006-12-31 05:48:39 +00002088 const Type *SBPTy = PointerType::get(Type::Int8Ty);
Reid Spencera7828ba2005-06-18 17:46:28 +00002089 if (V->getType() != SBPTy)
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002090 return new BitCastInst(V, SBPTy, V->getName(), &IP);
Reid Spencera7828ba2005-06-18 17:46:28 +00002091 return V;
2092}
2093
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002094// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00002095// Additional cases that we need to add to this file:
2096//
Reid Spencer649ac282005-04-28 04:40:06 +00002097// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00002098// * cbrt(expN(X)) -> expN(x/3)
2099// * cbrt(sqrt(x)) -> pow(x,1/6)
2100// * cbrt(sqrt(x)) -> pow(x,1/9)
2101//
Reid Spencer649ac282005-04-28 04:40:06 +00002102// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00002103// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00002104//
2105// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00002106// * exp(log(x)) -> x
2107//
Reid Spencer649ac282005-04-28 04:40:06 +00002108// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00002109// * log(exp(x)) -> x
2110// * log(x**y) -> y*log(x)
2111// * log(exp(y)) -> y*log(e)
2112// * log(exp2(y)) -> y*log(2)
2113// * log(exp10(y)) -> y*log(10)
2114// * log(sqrt(x)) -> 0.5*log(x)
2115// * log(pow(x,y)) -> y*log(x)
2116//
2117// lround, lroundf, lroundl:
2118// * lround(cnst) -> cnst'
2119//
2120// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002121// * memcmp(x,y,l) -> cnst
2122// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002123//
Reid Spencer649ac282005-04-28 04:40:06 +00002124// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002125// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002126// (if s is a global constant array)
2127//
Reid Spencer649ac282005-04-28 04:40:06 +00002128// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002129// * pow(exp(x),y) -> exp(x*y)
2130// * pow(sqrt(x),y) -> pow(x,y*0.5)
2131// * pow(pow(x,y),z)-> pow(x,y*z)
2132//
2133// puts:
2134// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2135//
2136// round, roundf, roundl:
2137// * round(cnst) -> cnst'
2138//
2139// signbit:
2140// * signbit(cnst) -> cnst'
2141// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2142//
Reid Spencer649ac282005-04-28 04:40:06 +00002143// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002144// * sqrt(expN(x)) -> expN(x*0.5)
2145// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2146// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2147//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002148// stpcpy:
2149// * stpcpy(str, "literal") ->
2150// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002151// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002152// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2153// (if c is a constant integer and s is a constant string)
2154// * strrchr(s1,0) -> strchr(s1,0)
2155//
Reid Spencer649ac282005-04-28 04:40:06 +00002156// strncat:
2157// * strncat(x,y,0) -> x
2158// * strncat(x,y,0) -> x (if strlen(y) = 0)
2159// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2160//
Reid Spencer649ac282005-04-28 04:40:06 +00002161// strncpy:
2162// * strncpy(d,s,0) -> d
2163// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2164// (if s and l are constants)
2165//
2166// strpbrk:
2167// * strpbrk(s,a) -> offset_in_for(s,a)
2168// (if s and a are both constant strings)
2169// * strpbrk(s,"") -> 0
2170// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2171//
2172// strspn, strcspn:
2173// * strspn(s,a) -> const_int (if both args are constant)
2174// * strspn("",a) -> 0
2175// * strspn(s,"") -> 0
2176// * strcspn(s,a) -> const_int (if both args are constant)
2177// * strcspn("",a) -> 0
2178// * strcspn(s,"") -> strlen(a)
2179//
2180// strstr:
2181// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002182// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002183// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002184//
Reid Spencer649ac282005-04-28 04:40:06 +00002185// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002186// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002187//
Reid Spencer649ac282005-04-28 04:40:06 +00002188// trunc, truncf, truncl:
2189// * trunc(cnst) -> cnst'
2190//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002191//
Reid Spencer39a762d2005-04-25 02:53:12 +00002192}