blob: e375e62d61a41510f52f14b45ce0f99c45f18d3c [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
Chris Lattner485b6412007-04-07 00:42:32 +0000129 bool ReplaceCallWith(CallInst *CI, Value *V) {
130 if (!CI->use_empty())
131 CI->replaceAllUsesWith(V);
132 CI->eraseFromParent();
133 return true;
134 }
135
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000136 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000137 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000138#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000139 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000140#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000141 }
Reid Spencere249a822005-04-27 07:54:40 +0000142};
143
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000144/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000145/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000146/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000147/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000148/// class provides the basic infrastructure for handling runOnModule. Whenever
149/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000150/// validate the call (ValidateLibraryCall). If it is validated, then
151/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000152/// @brief A ModulePass for optimizing well-known function calls.
Reid Spencer557ab152007-02-05 23:32:05 +0000153class VISIBILITY_HIDDEN SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000154public:
Reid Spencere249a822005-04-27 07:54:40 +0000155 /// We need some target data for accurate signature details that are
156 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000157 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000158 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000159 // Ask that the TargetData analysis be performed before us so we can use
160 // the target data.
161 Info.addRequired<TargetData>();
162 }
163
164 /// For this pass, process all of the function calls in the module, calling
165 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000166 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000167 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000168 reset(M);
169
170 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000171 hash_map<std::string, LibCallOptimization*> OptznMap;
172 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
173 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000174
175 // The call optimizations can be recursive. That is, the optimization might
176 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000177 // we make the LibCallOptimization instances very specific to the case they
178 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000179 // the module until we don't get any more optimizations possible.
180 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000181 do {
Reid Spencere249a822005-04-27 07:54:40 +0000182 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000183 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000184 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000185 // because they live in a runtime library somewhere and were (probably)
186 // not compiled by LLVM. So, we only act on external functions that
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000187 // have external or dllimport linkage and non-empty uses.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000188 if (!FI->isDeclaration() ||
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000189 !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
190 FI->use_empty())
Reid Spencere249a822005-04-27 07:54:40 +0000191 continue;
192
193 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000194 hash_map<std::string, LibCallOptimization*>::iterator OMI =
195 OptznMap.find(FI->getName());
196 if (OMI == OptznMap.end()) continue;
197
198 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000199
200 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000201 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000202 continue;
203
204 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000205 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000206 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000207 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000208 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000209 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000210 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000211 ++SimplifiedLibCalls;
212 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000213 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000214 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000215 }
216 }
217 }
Reid Spencere249a822005-04-27 07:54:40 +0000218 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000219
Reid Spencere249a822005-04-27 07:54:40 +0000220 return result;
221 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000222
Reid Spencere249a822005-04-27 07:54:40 +0000223 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000224 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000225
Reid Spencere249a822005-04-27 07:54:40 +0000226 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000227 TargetData* getTargetData() const { return TD; }
228
229 /// @brief Return the size_t type -- syntactic shortcut
230 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
231
Evan Cheng1fc40252006-06-16 08:36:35 +0000232 /// @brief Return a Function* for the putchar libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000233 Constant *get_putchar() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000234 if (!putchar_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000235 putchar_func =
236 M->getOrInsertFunction("putchar", Type::Int32Ty, Type::Int32Ty, NULL);
Evan Cheng1fc40252006-06-16 08:36:35 +0000237 return putchar_func;
238 }
239
240 /// @brief Return a Function* for the puts libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000241 Constant *get_puts() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000242 if (!puts_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000243 puts_func = M->getOrInsertFunction("puts", Type::Int32Ty,
244 PointerType::get(Type::Int8Ty),
Evan Cheng1fc40252006-06-16 08:36:35 +0000245 NULL);
246 return puts_func;
247 }
248
Reid Spencer93616972005-04-29 09:39:47 +0000249 /// @brief Return a Function* for the fputc libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000250 Constant *get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000251 if (!fputc_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000252 fputc_func = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000253 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000254 return fputc_func;
255 }
256
Evan Chengf2ea5872006-06-16 04:52:30 +0000257 /// @brief Return a Function* for the fputs libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000258 Constant *get_fputs(const Type* FILEptr_type) {
Evan Chengf2ea5872006-06-16 04:52:30 +0000259 if (!fputs_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000260 fputs_func = M->getOrInsertFunction("fputs", Type::Int32Ty,
261 PointerType::get(Type::Int8Ty),
Evan Chengf2ea5872006-06-16 04:52:30 +0000262 FILEptr_type, NULL);
263 return fputs_func;
264 }
265
Reid Spencer93616972005-04-29 09:39:47 +0000266 /// @brief Return a Function* for the fwrite libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000267 Constant *get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000268 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000269 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000270 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000271 TD->getIntPtrType(),
272 TD->getIntPtrType(),
273 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000274 return fwrite_func;
275 }
276
277 /// @brief Return a Function* for the sqrt libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000278 Constant *get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000279 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000280 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
281 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000282 return sqrt_func;
283 }
Reid Spencere249a822005-04-27 07:54:40 +0000284
Owen Andersondfd79ad2007-01-20 10:07:23 +0000285 /// @brief Return a Function* for the strcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000286 Constant *get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000287 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000288 strcpy_func = M->getOrInsertFunction("strcpy",
Reid Spencerc635f472006-12-31 05:48:39 +0000289 PointerType::get(Type::Int8Ty),
290 PointerType::get(Type::Int8Ty),
291 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000292 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000293 return strcpy_func;
294 }
295
296 /// @brief Return a Function* for the strlen libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000297 Constant *get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000298 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000299 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000300 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000301 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000302 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000303 }
304
Reid Spencer38cabd72005-05-03 07:23:44 +0000305 /// @brief Return a Function* for the memchr libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000306 Constant *get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000307 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000308 memchr_func = M->getOrInsertFunction("memchr",
Reid Spencerc635f472006-12-31 05:48:39 +0000309 PointerType::get(Type::Int8Ty),
310 PointerType::get(Type::Int8Ty),
311 Type::Int32Ty, TD->getIntPtrType(),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000312 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000313 return memchr_func;
314 }
315
Reid Spencere249a822005-04-27 07:54:40 +0000316 /// @brief Return a Function* for the memcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000317 Constant *get_memcpy() {
Chris Lattner4201cd12005-08-24 17:22:17 +0000318 if (!memcpy_func) {
Reid Spencerc635f472006-12-31 05:48:39 +0000319 const Type *SBP = PointerType::get(Type::Int8Ty);
320 const char *N = TD->getIntPtrType() == Type::Int32Ty ?
Chris Lattnerea7986a2006-03-03 01:30:23 +0000321 "llvm.memcpy.i32" : "llvm.memcpy.i64";
322 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
Reid Spencerc635f472006-12-31 05:48:39 +0000323 TD->getIntPtrType(), Type::Int32Ty,
Chris Lattnerea7986a2006-03-03 01:30:23 +0000324 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000325 }
Reid Spencere249a822005-04-27 07:54:40 +0000326 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000327 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000328
Chris Lattner34acba42007-01-07 08:12:01 +0000329 Constant *getUnaryFloatFunction(const char *Name, Constant *&Cache) {
Chris Lattner57740402006-01-23 06:24:46 +0000330 if (!Cache)
331 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
332 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000333 }
334
Chris Lattner34acba42007-01-07 08:12:01 +0000335 Constant *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
336 Constant *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
337 Constant *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
338 Constant *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
339 Constant *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
Chris Lattner57740402006-01-23 06:24:46 +0000340 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000341private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000342 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000343 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000344 M = &mod;
345 TD = &getAnalysis<TargetData>();
Evan Cheng1fc40252006-06-16 08:36:35 +0000346 putchar_func = 0;
347 puts_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000348 fputc_func = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +0000349 fputs_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000350 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000351 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000352 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000353 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000354 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000355 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000356 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000357 ceilf_func = 0;
358 roundf_func = 0;
359 rintf_func = 0;
360 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000361 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000362
Reid Spencere249a822005-04-27 07:54:40 +0000363private:
Chris Lattner57740402006-01-23 06:24:46 +0000364 /// Caches for function pointers.
Chris Lattner34acba42007-01-07 08:12:01 +0000365 Constant *putchar_func, *puts_func;
366 Constant *fputc_func, *fputs_func, *fwrite_func;
367 Constant *memcpy_func, *memchr_func;
368 Constant *sqrt_func;
369 Constant *strcpy_func, *strlen_func;
370 Constant *floorf_func, *ceilf_func, *roundf_func;
371 Constant *rintf_func, *nearbyintf_func;
Chris Lattner57740402006-01-23 06:24:46 +0000372 Module *M; ///< Cached Module
373 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000374};
375
376// Register the pass
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000377RegisterPass<SimplifyLibCalls>
378X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencere249a822005-04-27 07:54:40 +0000379
380} // anonymous namespace
381
382// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000383ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000384 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000385}
386
387// Classes below here, in the anonymous namespace, are all subclasses of the
388// LibCallOptimization class, each implementing all optimizations possible for a
389// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000390// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000391namespace {
392
Reid Spencera7828ba2005-06-18 17:46:28 +0000393// Forward declare utility functions.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000394static bool GetConstantStringInfo(Value *V, ConstantArray *&Array,
395 uint64_t &Length, uint64_t &StartIdx);
Reid Spencer557ab152007-02-05 23:32:05 +0000396static Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000397
398/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000399/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000400/// the same value passed to the exit function. When this is done, it splits the
401/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000402/// @brief Replace calls to exit in main with a simple return
Reid Spencer557ab152007-02-05 23:32:05 +0000403struct VISIBILITY_HIDDEN ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000404 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000405 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000406
407 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000408 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000409 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +0000410 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000411 }
412
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000413 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000414 // To be careful, we check that the call to exit is coming from "main", that
415 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000416 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000417 Function *from = ci->getParent()->getParent();
418 if (from->hasExternalLinkage())
419 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000420 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000421 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000422 // block of the call instruction
423 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000424
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000425 // Create a return instruction that we'll replace the call with.
426 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000427 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000428 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000429
Reid Spencerf2534c72005-04-25 21:11:48 +0000430 // Split the block at the call instruction which places it in a new
431 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000432 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000433
Reid Spencerf2534c72005-04-25 21:11:48 +0000434 // The block split caused a branch instruction to be inserted into
435 // the end of the original block, right after the return instruction
436 // that we put there. That's not a valid block, so delete the branch
437 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000438 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000439
Reid Spencerf2534c72005-04-25 21:11:48 +0000440 // Now we can finally get rid of the call instruction which now lives
441 // in the new basic block.
442 ci->eraseFromParent();
443
444 // Optimization succeeded, return true.
445 return true;
446 }
447 // We didn't pass the criteria for this optimization so return false
448 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000449 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000450} ExitInMainOptimizer;
451
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000452/// This LibCallOptimization will simplify a call to the strcat library
453/// function. The simplification is possible only if the string being
454/// concatenated is a constant array or a constant expression that results in
455/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000456/// of the constant string. Both of these calls are further reduced, if possible
457/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000458/// @brief Simplify the strcat library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000459struct VISIBILITY_HIDDEN StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000460public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000461 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000462 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000463 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000464
465public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000466
467 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000468 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000469 if (f->getReturnType() == PointerType::get(Type::Int8Ty))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000470 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000471 {
472 Function::const_arg_iterator AI = f->arg_begin();
Reid Spencerc635f472006-12-31 05:48:39 +0000473 if (AI++->getType() == PointerType::get(Type::Int8Ty))
474 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000475 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000476 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000477 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000478 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000479 }
480 return false;
481 }
482
Reid Spencere249a822005-04-27 07:54:40 +0000483 /// @brief Optimize the strcat library function
Chris Lattner56b7fc72007-04-06 22:59:33 +0000484 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000485 // Extract some information from the instruction
Chris Lattner56b7fc72007-04-06 22:59:33 +0000486 Value *Dst = CI->getOperand(1);
487 Value *Src = CI->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +0000488
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000489 // Extract the initializer (while making numerous checks) from the
Chris Lattner56b7fc72007-04-06 22:59:33 +0000490 // source operand of the call to strcat.
491 uint64_t SrcLength, StartIdx;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000492 ConstantArray *Arr;
Chris Lattner56b7fc72007-04-06 22:59:33 +0000493 if (!GetConstantStringInfo(Src, Arr, SrcLength, StartIdx))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000494 return false;
495
Reid Spencerb4f7b832005-04-26 07:45:18 +0000496 // Handle the simple, do-nothing case
Chris Lattner485b6412007-04-07 00:42:32 +0000497 if (SrcLength == 0)
498 return ReplaceCallWith(CI, Dst);
Reid Spencer8ee5aac2005-04-26 03:26:15 +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
Chris Lattner56b7fc72007-04-06 22:59:33 +0000502 // optimized in another pass).
503 CallInst *DstLen = new CallInst(SLC.get_strlen(), Dst,
504 Dst->getName()+".len", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000505
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000506 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000507 // destination's pointer to get the actual memcpy destination (end of
508 // the string .. we're concatenating).
Chris Lattner56b7fc72007-04-06 22:59:33 +0000509 Dst = new GetElementPtrInst(Dst, DstLen, Dst->getName()+".indexed", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000510
511 // We have enough information to now generate the memcpy call to
512 // do the concatenation for us.
Chris Lattner56b7fc72007-04-06 22:59:33 +0000513 Value *Vals[] = {
514 Dst, Src,
515 ConstantInt::get(SLC.getIntPtrType(), SrcLength+1), // copy nul term.
516 ConstantInt::get(Type::Int32Ty, 1) // alignment
517 };
518 new CallInst(SLC.get_memcpy(), Vals, 4, "", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000519
Chris Lattner485b6412007-04-07 00:42:32 +0000520 return ReplaceCallWith(CI, Dst);
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000521 }
522} StrCatOptimizer;
523
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000524/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000525/// function. It optimizes out cases where the arguments are both constant
526/// and the result can be determined statically.
527/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000528struct VISIBILITY_HIDDEN StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000529public:
530 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000531 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000532
533 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner39f0bb92007-04-06 23:38:55 +0000534 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
535 const FunctionType *FT = F->getFunctionType();
536 return FT->getNumParams() == 2 &&
537 FT->getReturnType() == PointerType::get(Type::Int8Ty) &&
538 FT->getParamType(0) == FT->getReturnType() &&
539 isa<IntegerType>(FT->getParamType(1));
Reid Spencer38cabd72005-05-03 07:23:44 +0000540 }
541
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000542 /// @brief Perform the strchr optimizations
Chris Lattner39f0bb92007-04-06 23:38:55 +0000543 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000544 // Check that the first argument to strchr is a constant array of sbyte.
545 // If it is, get the length and data, otherwise return false.
Chris Lattner39f0bb92007-04-06 23:38:55 +0000546 uint64_t StrLength, StartIdx;
547 ConstantArray *CA = 0;
548 if (!GetConstantStringInfo(CI->getOperand(1), CA, StrLength, StartIdx))
Reid Spencer38cabd72005-05-03 07:23:44 +0000549 return false;
550
Chris Lattner39f0bb92007-04-06 23:38:55 +0000551 // If the second operand is not constant, just lower this to memchr since we
552 // know the length of the input string.
553 ConstantInt *CSI = dyn_cast<ConstantInt>(CI->getOperand(2));
Reid Spencerc635f472006-12-31 05:48:39 +0000554 if (!CSI) {
Chris Lattner39f0bb92007-04-06 23:38:55 +0000555 Value *Args[3] = {
556 CI->getOperand(1),
557 CI->getOperand(2),
558 ConstantInt::get(SLC.getIntPtrType(), StrLength+1)
Chris Lattnerade1c2b2007-02-13 05:58:53 +0000559 };
Chris Lattner485b6412007-04-07 00:42:32 +0000560 return ReplaceCallWith(CI, new CallInst(SLC.get_memchr(), Args, 3,
561 CI->getName(), CI));
Reid Spencer38cabd72005-05-03 07:23:44 +0000562 }
563
564 // Get the character we're looking for
Chris Lattner39f0bb92007-04-06 23:38:55 +0000565 int64_t CharValue = CSI->getSExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +0000566
Chris Lattner39f0bb92007-04-06 23:38:55 +0000567 if (StrLength == 0) {
568 // If the length of the string is zero, and we are searching for zero,
569 // return the input pointer.
Chris Lattner485b6412007-04-07 00:42:32 +0000570 if (CharValue == 0)
571 return ReplaceCallWith(CI, CI->getOperand(1));
572 // Otherwise, char wasn't found.
573 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Chris Lattner39f0bb92007-04-06 23:38:55 +0000574 }
575
Reid Spencer38cabd72005-05-03 07:23:44 +0000576 // Compute the offset
Chris Lattner39f0bb92007-04-06 23:38:55 +0000577 uint64_t i = 0;
578 while (1) {
579 assert(i <= StrLength && "Didn't find null terminator?");
580 if (ConstantInt *C = dyn_cast<ConstantInt>(CA->getOperand(i+StartIdx))) {
581 // Did we find our match?
582 if (C->getSExtValue() == CharValue)
Reid Spencer38cabd72005-05-03 07:23:44 +0000583 break;
Chris Lattner485b6412007-04-07 00:42:32 +0000584 if (C->isZero()) // We found the end of the string. strchr returns null.
585 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Reid Spencer38cabd72005-05-03 07:23:44 +0000586 }
Chris Lattner39f0bb92007-04-06 23:38:55 +0000587 ++i;
Reid Spencer38cabd72005-05-03 07:23:44 +0000588 }
589
Chris Lattner39f0bb92007-04-06 23:38:55 +0000590 // strchr(s+n,c) -> gep(s+n+i,c)
Reid Spencer38cabd72005-05-03 07:23:44 +0000591 // (if c is a constant integer and s is a constant string)
Chris Lattner39f0bb92007-04-06 23:38:55 +0000592 Value *Idx = ConstantInt::get(Type::Int64Ty, i);
593 Value *GEP = new GetElementPtrInst(CI->getOperand(1), Idx,
594 CI->getOperand(1)->getName() +
595 ".strchr", CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000596 return ReplaceCallWith(CI, GEP);
Reid Spencer38cabd72005-05-03 07:23:44 +0000597 }
598} StrChrOptimizer;
599
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000600/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000601/// function. It optimizes out cases where one or both arguments are constant
602/// and the result can be determined statically.
603/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000604struct VISIBILITY_HIDDEN StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000605public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000606 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000607 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000608
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000609 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000610 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000611 const FunctionType *FT = F->getFunctionType();
612 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 2 &&
613 FT->getParamType(0) == FT->getParamType(1) &&
614 FT->getParamType(0) == PointerType::get(Type::Int8Ty);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000615 }
616
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000617 /// @brief Perform the strcmp optimization
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000618 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000619 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000620 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000621 // because the call is a no-op.
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000622 Value *Str1P = CI->getOperand(1);
623 Value *Str2P = CI->getOperand(2);
Chris Lattner485b6412007-04-07 00:42:32 +0000624 if (Str1P == Str2P) // strcmp(x,x) -> 0
625 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Reid Spencer4c444fe2005-04-30 03:17:54 +0000626
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000627 uint64_t Str1Len, Str1StartIdx;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000628 ConstantArray *A1;
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000629 bool Str1IsCst = GetConstantStringInfo(Str1P, A1, Str1Len, Str1StartIdx);
630 if (Str1IsCst && Str1Len == 0) {
631 // strcmp("", x) -> *x
632 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
633 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000634 return ReplaceCallWith(CI, V);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000635 }
636
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000637 uint64_t Str2Len, Str2StartIdx;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000638 ConstantArray* A2;
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000639 bool Str2IsCst = GetConstantStringInfo(Str2P, A2, Str2Len, Str2StartIdx);
640 if (Str2IsCst && Str2Len == 0) {
641 // strcmp(x,"") -> *x
642 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
643 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000644 return ReplaceCallWith(CI, V);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000645 }
646
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000647 if (Str1IsCst && Str2IsCst && A1->isCString() && A2->isCString()) {
648 // strcmp(x, y) -> cnst (if both x and y are constant strings)
649 std::string S1 = A1->getAsString();
650 std::string S2 = A2->getAsString();
651 int R = strcmp(S1.c_str()+Str1StartIdx, S2.c_str()+Str2StartIdx);
Chris Lattner485b6412007-04-07 00:42:32 +0000652 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
Reid Spencer4c444fe2005-04-30 03:17:54 +0000653 }
654 return false;
655 }
656} StrCmpOptimizer;
657
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000658/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000659/// function. It optimizes out cases where one or both arguments are constant
660/// and the result can be determined statically.
661/// @brief Simplify the strncmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000662struct VISIBILITY_HIDDEN StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000663public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000664 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000665 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000666
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000667 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000668 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
669 const FunctionType *FT = F->getFunctionType();
670 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 3 &&
671 FT->getParamType(0) == FT->getParamType(1) &&
672 FT->getParamType(0) == PointerType::get(Type::Int8Ty) &&
673 isa<IntegerType>(FT->getParamType(2));
Reid Spencer49fa07042005-05-03 01:43:45 +0000674 return false;
675 }
676
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000677 /// @brief Perform the strncmp optimization
678 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000679 // First, check to see if src and destination are the same. If they are,
680 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000681 // because the call is a no-op.
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000682 Value *Str1P = CI->getOperand(1);
683 Value *Str2P = CI->getOperand(2);
Chris Lattner485b6412007-04-07 00:42:32 +0000684 if (Str1P == Str2P) // strncmp(x,x) -> 0
685 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000686
Reid Spencer49fa07042005-05-03 01:43:45 +0000687 // Check the length argument, if it is Constant zero then the strings are
688 // considered equal.
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000689 uint64_t Length;
690 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
691 Length = LengthArg->getZExtValue();
692 else
693 return false;
694
695 if (Length == 0) {
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000696 // strncmp(x,y,0) -> 0
Chris Lattner485b6412007-04-07 00:42:32 +0000697 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Reid Spencer49fa07042005-05-03 01:43:45 +0000698 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000699
700 uint64_t Str1Len, Str1StartIdx;
701 ConstantArray *A1;
702 bool Str1IsCst = GetConstantStringInfo(Str1P, A1, Str1Len, Str1StartIdx);
703 if (Str1IsCst && Str1Len == 0) {
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000704 // strncmp("", x) -> *x
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000705 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
706 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000707 return ReplaceCallWith(CI, V);
Reid Spencer49fa07042005-05-03 01:43:45 +0000708 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000709
710 uint64_t Str2Len, Str2StartIdx;
Reid Spencer49fa07042005-05-03 01:43:45 +0000711 ConstantArray* A2;
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000712 bool Str2IsCst = GetConstantStringInfo(Str2P, A2, Str2Len, Str2StartIdx);
713 if (Str2IsCst && Str2Len == 0) {
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000714 // strncmp(x,"") -> *x
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000715 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
716 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000717 return ReplaceCallWith(CI, V);
Reid Spencer49fa07042005-05-03 01:43:45 +0000718 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000719
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000720 if (Str1IsCst && Str2IsCst && A1->isCString() &&
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000721 A2->isCString()) {
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000722 // strncmp(x, y) -> cnst (if both x and y are constant strings)
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000723 std::string S1 = A1->getAsString();
724 std::string S2 = A2->getAsString();
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000725 int R = strncmp(S1.c_str()+Str1StartIdx, S2.c_str()+Str2StartIdx, Length);
Chris Lattner485b6412007-04-07 00:42:32 +0000726 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
Reid Spencer49fa07042005-05-03 01:43:45 +0000727 }
728 return false;
729 }
730} StrNCmpOptimizer;
731
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000732/// This LibCallOptimization will simplify a call to the strcpy library
733/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000734/// (1) If src and dest are the same and not volatile, just return dest
735/// (2) If the src is a constant then we can convert to llvm.memmove
736/// @brief Simplify the strcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000737struct VISIBILITY_HIDDEN StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000738public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000739 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000740 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000741
742 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000743 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
744 const FunctionType *FT = F->getFunctionType();
745 return FT->getNumParams() == 2 &&
746 FT->getParamType(0) == FT->getParamType(1) &&
747 FT->getReturnType() == FT->getParamType(0) &&
748 FT->getParamType(0) == PointerType::get(Type::Int8Ty);
Reid Spencere249a822005-04-27 07:54:40 +0000749 }
750
751 /// @brief Perform the strcpy optimization
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000752 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000753 // First, check to see if src and destination are the same. If they are,
754 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000755 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000756 // degenerate strcpy(X,X) case which should have "undefined" results
757 // according to the C specification. However, it occurs sometimes and
758 // we optimize it as a no-op.
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000759 Value *Dst = CI->getOperand(1);
760 Value *Src = CI->getOperand(2);
761 if (Dst == Src) {
762 // strcpy(x, x) -> x
Chris Lattner485b6412007-04-07 00:42:32 +0000763 return ReplaceCallWith(CI, Dst);
Reid Spencere249a822005-04-27 07:54:40 +0000764 }
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000765
766 // Get the length of the constant string referenced by the Src operand.
767 uint64_t SrcLen, SrcStartIdx;
768 ConstantArray *SrcArr;
769 if (!GetConstantStringInfo(Src, SrcArr, SrcLen, SrcStartIdx))
Reid Spencere249a822005-04-27 07:54:40 +0000770 return false;
771
772 // If the constant string's length is zero we can optimize this by just
773 // doing a store of 0 at the first byte of the destination
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000774 if (SrcLen == 0) {
775 new StoreInst(ConstantInt::get(Type::Int8Ty, 0), Dst, CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000776 return ReplaceCallWith(CI, Dst);
Reid Spencere249a822005-04-27 07:54:40 +0000777 }
778
Reid Spencere249a822005-04-27 07:54:40 +0000779 // We have enough information to now generate the memcpy call to
780 // do the concatenation for us.
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000781 Value *MemcpyOps[] = {
782 Dst, Src,
783 ConstantInt::get(SLC.getIntPtrType(), SrcLen), // length including nul.
Chris Lattnerade1c2b2007-02-13 05:58:53 +0000784 ConstantInt::get(Type::Int32Ty, 1) // alignment
785 };
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000786 new CallInst(SLC.get_memcpy(), MemcpyOps, 4, "", CI);
Reid Spencere249a822005-04-27 07:54:40 +0000787
Chris Lattner485b6412007-04-07 00:42:32 +0000788 return ReplaceCallWith(CI, Dst);
Reid Spencere249a822005-04-27 07:54:40 +0000789 }
790} StrCpyOptimizer;
791
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000792/// This LibCallOptimization will simplify a call to the strlen library
793/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000794/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000795/// @brief Simplify the strlen library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000796struct VISIBILITY_HIDDEN StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000797 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000798 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000799
800 /// @brief Make sure that the "strlen" function has the right prototype
Chris Lattner6a6c1f12007-04-07 00:26:18 +0000801 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner485b6412007-04-07 00:42:32 +0000802 if (F->getReturnType() == SLC.getTargetData()->getIntPtrType())
803 if (F->arg_size() == 1)
804 if (Function::const_arg_iterator AI = F->arg_begin())
Reid Spencerc635f472006-12-31 05:48:39 +0000805 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000806 return true;
807 return false;
808 }
809
810 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000811 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000812 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000813 // Make sure we're dealing with an sbyte* here.
814 Value* str = ci->getOperand(1);
Reid Spencerc635f472006-12-31 05:48:39 +0000815 if (str->getType() != PointerType::get(Type::Int8Ty))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000816 return false;
817
818 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000819 if (ci->hasOneUse())
Reid Spencer266e42b2006-12-23 06:05:41 +0000820 // Is that single use a icmp operator?
821 if (ICmpInst* bop = dyn_cast<ICmpInst>(ci->use_back()))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000822 // Is it compared against a constant integer?
823 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
824 {
825 // Get the value the strlen result is compared to
Reid Spencere0fc4df2006-10-20 07:07:24 +0000826 uint64_t val = CI->getZExtValue();
Reid Spencer170ae7f2005-05-07 20:15:59 +0000827
828 // If its compared against length 0 with == or !=
829 if (val == 0 &&
Reid Spencer266e42b2006-12-23 06:05:41 +0000830 (bop->getPredicate() == ICmpInst::ICMP_EQ ||
831 bop->getPredicate() == ICmpInst::ICMP_NE))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000832 {
833 // strlen(x) != 0 -> *x != 0
834 // strlen(x) == 0 -> *x == 0
835 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +0000836 ICmpInst* rbop = new ICmpInst(bop->getPredicate(), load,
Reid Spencerc635f472006-12-31 05:48:39 +0000837 ConstantInt::get(Type::Int8Ty,0),
Reid Spencer266e42b2006-12-23 06:05:41 +0000838 bop->getName()+".strlen", ci);
Reid Spencer170ae7f2005-05-07 20:15:59 +0000839 bop->replaceAllUsesWith(rbop);
840 bop->eraseFromParent();
841 ci->eraseFromParent();
842 return true;
843 }
844 }
845
846 // Get the length of the constant string operand
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000847 uint64_t len = 0, StartIdx;
848 ConstantArray *A;
849 if (!GetConstantStringInfo(ci->getOperand(1), A, len, StartIdx))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000850 return false;
851
Reid Spencer170ae7f2005-05-07 20:15:59 +0000852 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000853 const Type *Ty = SLC.getTargetData()->getIntPtrType();
Chris Lattner485b6412007-04-07 00:42:32 +0000854 return ReplaceCallWith(ci, ConstantInt::get(Ty, len));
Reid Spencer76dab9a2005-04-26 05:24:00 +0000855 }
856} StrLenOptimizer;
857
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000858/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
859/// is equal or not-equal to zero.
860static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
861 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
862 UI != E; ++UI) {
863 Instruction *User = cast<Instruction>(*UI);
Reid Spencer266e42b2006-12-23 06:05:41 +0000864 if (ICmpInst *IC = dyn_cast<ICmpInst>(User)) {
865 if ((IC->getPredicate() == ICmpInst::ICMP_NE ||
866 IC->getPredicate() == ICmpInst::ICMP_EQ) &&
867 isa<Constant>(IC->getOperand(1)) &&
868 cast<Constant>(IC->getOperand(1))->isNullValue())
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000869 continue;
870 } else if (CastInst *CI = dyn_cast<CastInst>(User))
Reid Spencer542964f2007-01-11 18:21:29 +0000871 if (CI->getType() == Type::Int1Ty)
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000872 continue;
873 // Unknown instruction.
874 return false;
875 }
876 return true;
877}
878
879/// This memcmpOptimization will simplify a call to the memcmp library
880/// function.
Reid Spencer557ab152007-02-05 23:32:05 +0000881struct VISIBILITY_HIDDEN memcmpOptimization : public LibCallOptimization {
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000882 /// @brief Default Constructor
883 memcmpOptimization()
884 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
885
886 /// @brief Make sure that the "memcmp" function has the right prototype
887 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
888 Function::const_arg_iterator AI = F->arg_begin();
889 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
890 if (!isa<PointerType>((++AI)->getType())) return false;
Chris Lattner03c49532007-01-15 02:27:26 +0000891 if (!(++AI)->getType()->isInteger()) return false;
892 if (!F->getReturnType()->isInteger()) return false;
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000893 return true;
894 }
895
896 /// Because of alignment and instruction information that we don't have, we
897 /// leave the bulk of this to the code generators.
898 ///
899 /// Note that we could do much more if we could force alignment on otherwise
900 /// small aligned allocas, or if we could indicate that loads have a small
901 /// alignment.
902 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
903 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
904
905 // If the two operands are the same, return zero.
906 if (LHS == RHS) {
907 // memcmp(s,s,x) -> 0
Chris Lattner485b6412007-04-07 00:42:32 +0000908 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000909 }
910
911 // Make sure we have a constant length.
912 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
913 if (!LenC) return false;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000914 uint64_t Len = LenC->getZExtValue();
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000915
916 // If the length is zero, this returns 0.
917 switch (Len) {
918 case 0:
919 // memcmp(s1,s2,0) -> 0
Chris Lattner485b6412007-04-07 00:42:32 +0000920 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000921 case 1: {
922 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
Reid Spencerc635f472006-12-31 05:48:39 +0000923 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000924 CastInst *Op1Cast = CastInst::create(
925 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
926 CastInst *Op2Cast = CastInst::create(
927 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000928 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
929 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
930 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
931 if (RV->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +0000932 RV = CastInst::createIntegerCast(RV, CI->getType(), false,
933 RV->getName(), CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000934 return ReplaceCallWith(CI, RV);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000935 }
936 case 2:
937 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
938 // TODO: IF both are aligned, use a short load/compare.
939
940 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
Reid Spencerc635f472006-12-31 05:48:39 +0000941 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000942 CastInst *Op1Cast = CastInst::create(
943 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
944 CastInst *Op2Cast = CastInst::create(
945 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000946 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
947 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
948 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
949 CI->getName()+".d1", CI);
Reid Spencerc635f472006-12-31 05:48:39 +0000950 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000951 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
952 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
953 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +0000954 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000955 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
956 CI->getName()+".d1", CI);
957 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
958 if (Or->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +0000959 Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/,
960 Or->getName(), CI);
Chris Lattner485b6412007-04-07 00:42:32 +0000961 return ReplaceCallWith(CI, Or);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000962 }
963 break;
964 default:
965 break;
966 }
967
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000968 return false;
969 }
970} memcmpOptimizer;
971
972
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000973/// This LibCallOptimization will simplify a call to the memcpy library
974/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000975/// bytes depending on the length of the string and the alignment. Additional
976/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +0000977/// @brief Simplify the memcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000978struct VISIBILITY_HIDDEN LLVMMemCpyMoveOptzn : public LibCallOptimization {
Chris Lattnerea7986a2006-03-03 01:30:23 +0000979 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
980 : LibCallOptimization(fname, desc) {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000981
982 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000983 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000984 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +0000985 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +0000986 }
987
Reid Spencerb4f7b832005-04-26 07:45:18 +0000988 /// Because of alignment and instruction information that we don't have, we
989 /// leave the bulk of this to the code generators. The optimization here just
990 /// deals with a few degenerate cases where the length of the string and the
991 /// alignment match the sizes of our intrinsic types so we can do a load and
992 /// store instead of the memcpy call.
993 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000994 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +0000995 // Make sure we have constant int values to work with
996 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
997 if (!LEN)
998 return false;
999 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1000 if (!ALIGN)
1001 return false;
1002
1003 // If the length is larger than the alignment, we can't optimize
Reid Spencere0fc4df2006-10-20 07:07:24 +00001004 uint64_t len = LEN->getZExtValue();
1005 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001006 if (alignment == 0)
1007 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001008 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001009 return false;
1010
Reid Spencer08b49402005-04-27 17:46:54 +00001011 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001012 Value* dest = ci->getOperand(1);
1013 Value* src = ci->getOperand(2);
Reid Spencer4f98e622007-01-07 21:45:41 +00001014 const Type* castType = 0;
Chris Lattner485b6412007-04-07 00:42:32 +00001015 switch (len) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001016 case 0:
Chris Lattner485b6412007-04-07 00:42:32 +00001017 // memcpy(d,s,0,a) -> d
1018 return ReplaceCallWith(ci, 0);
Reid Spencerc635f472006-12-31 05:48:39 +00001019 case 1: castType = Type::Int8Ty; break;
1020 case 2: castType = Type::Int16Ty; break;
1021 case 4: castType = Type::Int32Ty; break;
1022 case 8: castType = Type::Int64Ty; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001023 default:
1024 return false;
1025 }
Reid Spencer08b49402005-04-27 17:46:54 +00001026
1027 // Cast source and dest to the right sized primitive and then load/store
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001028 CastInst* SrcCast = CastInst::create(Instruction::BitCast,
1029 src, PointerType::get(castType), src->getName()+".cast", ci);
1030 CastInst* DestCast = CastInst::create(Instruction::BitCast,
1031 dest, PointerType::get(castType),dest->getName()+".cast", ci);
Reid Spencer08b49402005-04-27 17:46:54 +00001032 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerde46e482006-11-02 20:25:50 +00001033 new StoreInst(LI, DestCast, ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001034 return ReplaceCallWith(ci, 0);
Reid Spencerf2534c72005-04-25 21:11:48 +00001035 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001036};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001037
Chris Lattnerea7986a2006-03-03 01:30:23 +00001038/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1039/// functions.
1040LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1041 "Number of 'llvm.memcpy' calls simplified");
1042LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1043 "Number of 'llvm.memcpy' calls simplified");
1044LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1045 "Number of 'llvm.memmove' calls simplified");
1046LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1047 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001048
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001049/// This LibCallOptimization will simplify a call to the memset library
1050/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1051/// bytes depending on the length argument.
Reid Spencer557ab152007-02-05 23:32:05 +00001052struct VISIBILITY_HIDDEN LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001053 /// @brief Default Constructor
Chris Lattnerea7986a2006-03-03 01:30:23 +00001054 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001055 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001056
1057 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001058 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001059 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001060 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001061 }
1062
1063 /// Because of alignment and instruction information that we don't have, we
1064 /// leave the bulk of this to the code generators. The optimization here just
1065 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001066 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001067 /// store instead of the memcpy call. Other calls are transformed into the
1068 /// llvm.memset intrinsic.
1069 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001070 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001071 // Make sure we have constant int values to work with
1072 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1073 if (!LEN)
1074 return false;
1075 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1076 if (!ALIGN)
1077 return false;
1078
1079 // Extract the length and alignment
Reid Spencere0fc4df2006-10-20 07:07:24 +00001080 uint64_t len = LEN->getZExtValue();
1081 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001082
1083 // Alignment 0 is identity for alignment 1
1084 if (alignment == 0)
1085 alignment = 1;
1086
1087 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001088 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001089 // memset(d,c,0,a) -> noop
Chris Lattner485b6412007-04-07 00:42:32 +00001090 return ReplaceCallWith(ci, 0);
Reid Spencer38cabd72005-05-03 07:23:44 +00001091 }
1092
1093 // If the length is larger than the alignment, we can't optimize
1094 if (len > alignment)
1095 return false;
1096
1097 // Make sure we have a constant ubyte to work with so we can extract
1098 // the value to be filled.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001099 ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencer38cabd72005-05-03 07:23:44 +00001100 if (!FILL)
1101 return false;
Reid Spencerc635f472006-12-31 05:48:39 +00001102 if (FILL->getType() != Type::Int8Ty)
Reid Spencer38cabd72005-05-03 07:23:44 +00001103 return false;
1104
1105 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001106
Reid Spencer38cabd72005-05-03 07:23:44 +00001107 // Extract the fill character
Reid Spencere0fc4df2006-10-20 07:07:24 +00001108 uint64_t fill_char = FILL->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001109 uint64_t fill_value = fill_char;
1110
1111 // Get the type we will cast to, based on size of memory area to fill, and
1112 // and the value we will store there.
1113 Value* dest = ci->getOperand(1);
Reid Spencer4f98e622007-01-07 21:45:41 +00001114 const Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001115 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001116 case 1:
Reid Spencerc635f472006-12-31 05:48:39 +00001117 castType = Type::Int8Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001118 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001119 case 2:
Reid Spencerc635f472006-12-31 05:48:39 +00001120 castType = Type::Int16Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001121 fill_value |= fill_char << 8;
1122 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001123 case 4:
Reid Spencerc635f472006-12-31 05:48:39 +00001124 castType = Type::Int32Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001125 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1126 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001127 case 8:
Reid Spencerc635f472006-12-31 05:48:39 +00001128 castType = Type::Int64Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001129 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1130 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1131 fill_value |= fill_char << 56;
1132 break;
1133 default:
1134 return false;
1135 }
1136
1137 // Cast dest to the right sized primitive and then load/store
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001138 CastInst* DestCast = new BitCastInst(dest, PointerType::get(castType),
1139 dest->getName()+".cast", ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001140 new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001141 return ReplaceCallWith(ci, 0);
Reid Spencer38cabd72005-05-03 07:23:44 +00001142 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001143};
1144
1145LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1146LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1147
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001148
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001149/// This LibCallOptimization will simplify calls to the "pow" library
1150/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001151/// substitutes the appropriate value.
1152/// @brief Simplify the pow library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001153struct VISIBILITY_HIDDEN PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001154public:
1155 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001156 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001157 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001158
Reid Spencer93616972005-04-29 09:39:47 +00001159 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001160 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001161 // Just make sure this has 2 arguments
1162 return (f->arg_size() == 2);
1163 }
1164
1165 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001166 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001167 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1168 Value* base = ci->getOperand(1);
1169 Value* expn = ci->getOperand(2);
1170 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1171 double Op1V = Op1->getValue();
Chris Lattner485b6412007-04-07 00:42:32 +00001172 if (Op1V == 1.0) // pow(1.0,x) -> 1.0
1173 return ReplaceCallWith(ci, ConstantFP::get(Ty, 1.0));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001174 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001175 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001176 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001177 // pow(x,0.0) -> 1.0
Chris Lattner485b6412007-04-07 00:42:32 +00001178 return ReplaceCallWith(ci, ConstantFP::get(Ty,1.0));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001179 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001180 // pow(x,0.5) -> sqrt(x)
1181 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1182 ci->getName()+".pow",ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001183 return ReplaceCallWith(ci, sqrt_inst);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001184 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001185 // pow(x,1.0) -> x
Chris Lattner485b6412007-04-07 00:42:32 +00001186 return ReplaceCallWith(ci, base);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001187 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001188 // pow(x,-1.0) -> 1.0/x
Chris Lattner485b6412007-04-07 00:42:32 +00001189 Value *div_inst =
1190 BinaryOperator::createFDiv(ConstantFP::get(Ty, 1.0), base,
1191 ci->getName()+".pow", ci);
1192 return ReplaceCallWith(ci, div_inst);
Reid Spencer93616972005-04-29 09:39:47 +00001193 }
1194 }
1195 return false; // opt failed
1196 }
1197} PowOptimizer;
1198
Evan Cheng1fc40252006-06-16 08:36:35 +00001199/// This LibCallOptimization will simplify calls to the "printf" library
1200/// function. It looks for cases where the result of printf is not used and the
1201/// operation can be reduced to something simpler.
1202/// @brief Simplify the printf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001203struct VISIBILITY_HIDDEN PrintfOptimization : public LibCallOptimization {
Evan Cheng1fc40252006-06-16 08:36:35 +00001204public:
1205 /// @brief Default Constructor
1206 PrintfOptimization() : LibCallOptimization("printf",
1207 "Number of 'printf' calls simplified") {}
1208
1209 /// @brief Make sure that the "printf" function has the right prototype
1210 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1211 // Just make sure this has at least 1 arguments
1212 return (f->arg_size() >= 1);
1213 }
1214
1215 /// @brief Perform the printf optimization.
1216 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
1217 // If the call has more than 2 operands, we can't optimize it
1218 if (ci->getNumOperands() > 3 || ci->getNumOperands() <= 2)
1219 return false;
1220
1221 // If the result of the printf call is used, none of these optimizations
1222 // can be made.
1223 if (!ci->use_empty())
1224 return false;
1225
1226 // All the optimizations depend on the length of the first argument and the
1227 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001228 uint64_t len, StartIdx;
Evan Cheng1fc40252006-06-16 08:36:35 +00001229 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001230 if (!GetConstantStringInfo(ci->getOperand(1), CA, len, StartIdx))
Evan Cheng1fc40252006-06-16 08:36:35 +00001231 return false;
1232
1233 if (len != 2 && len != 3)
1234 return false;
1235
1236 // The first character has to be a %
1237 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001238 if (CI->getZExtValue() != '%')
Evan Cheng1fc40252006-06-16 08:36:35 +00001239 return false;
1240
1241 // Get the second character and switch on its value
1242 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001243 switch (CI->getZExtValue()) {
Evan Cheng1fc40252006-06-16 08:36:35 +00001244 case 's':
1245 {
1246 if (len != 3 ||
Reid Spencere0fc4df2006-10-20 07:07:24 +00001247 dyn_cast<ConstantInt>(CA->getOperand(2))->getZExtValue() != '\n')
Evan Cheng1fc40252006-06-16 08:36:35 +00001248 return false;
1249
1250 // printf("%s\n",str) -> puts(str)
Evan Cheng1fc40252006-06-16 08:36:35 +00001251 std::vector<Value*> args;
Chris Lattner34acba42007-01-07 08:12:01 +00001252 new CallInst(SLC.get_puts(), CastToCStr(ci->getOperand(2), *ci),
1253 ci->getName(), ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001254 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, len));
Evan Cheng1fc40252006-06-16 08:36:35 +00001255 }
1256 case 'c':
1257 {
1258 // printf("%c",c) -> putchar(c)
1259 if (len != 2)
1260 return false;
1261
Chris Lattner34acba42007-01-07 08:12:01 +00001262 CastInst *Char = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001263 ci->getOperand(2), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001264 new CallInst(SLC.get_putchar(), Char, "", ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001265 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 1));
Evan Cheng1fc40252006-06-16 08:36:35 +00001266 }
1267 default:
1268 return false;
1269 }
Chris Lattner485b6412007-04-07 00:42:32 +00001270 return false;
Evan Cheng1fc40252006-06-16 08:36:35 +00001271 }
1272} PrintfOptimizer;
1273
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001274/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001275/// function. It looks for cases where the result of fprintf is not used and the
1276/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001277/// @brief Simplify the fprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001278struct VISIBILITY_HIDDEN FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001279public:
1280 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001281 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001282 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001283
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001284 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001285 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001286 // Just make sure this has at least 2 arguments
1287 return (f->arg_size() >= 2);
1288 }
1289
1290 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001291 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001292 // If the call has more than 3 operands, we can't optimize it
1293 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1294 return false;
1295
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001296 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001297 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001298 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001299 return false;
1300
1301 // All the optimizations depend on the length of the second argument and the
1302 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001303 uint64_t len, StartIdx;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001304 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001305 if (!GetConstantStringInfo(ci->getOperand(2), CA, len, StartIdx))
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001306 return false;
1307
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001308 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001309 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001310 for (unsigned i = 0; i < len; ++i) {
1311 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001312 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001313 if (CI->getZExtValue() == '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001314 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001315 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001316 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001317 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001318 }
1319
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001320 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001321 const Type* FILEptr_type = ci->getOperand(1)->getType();
John Criswell4642afd2005-06-29 15:03:18 +00001322
1323 // Make sure that the fprintf() and fwrite() functions both take the
1324 // same type of char pointer.
Chris Lattner34acba42007-01-07 08:12:01 +00001325 if (ci->getOperand(2)->getType() != PointerType::get(Type::Int8Ty))
John Criswell4642afd2005-06-29 15:03:18 +00001326 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001327
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001328 Value* args[4] = {
1329 ci->getOperand(2),
1330 ConstantInt::get(SLC.getIntPtrType(),len),
1331 ConstantInt::get(SLC.getIntPtrType(),1),
1332 ci->getOperand(1)
1333 };
1334 new CallInst(SLC.get_fwrite(FILEptr_type), args, 4, ci->getName(), ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001335 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001336 }
1337
1338 // The remaining optimizations require the format string to be length 2
1339 // "%s" or "%c".
1340 if (len != 2)
1341 return false;
1342
1343 // The first character has to be a %
1344 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001345 if (CI->getZExtValue() != '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001346 return false;
1347
1348 // Get the second character and switch on its value
1349 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001350 switch (CI->getZExtValue()) {
Chris Lattner485b6412007-04-07 00:42:32 +00001351 case 's': {
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001352 uint64_t len, StartIdx;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001353 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001354 if (GetConstantStringInfo(ci->getOperand(3), CA, len, StartIdx)) {
Evan Chengf2ea5872006-06-16 04:52:30 +00001355 // fprintf(file,"%s",str) -> fwrite(str,strlen(str),1,file)
1356 const Type* FILEptr_type = ci->getOperand(1)->getType();
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001357 Value* args[4] = {
1358 CastToCStr(ci->getOperand(3), *ci),
1359 ConstantInt::get(SLC.getIntPtrType(), len),
1360 ConstantInt::get(SLC.getIntPtrType(), 1),
1361 ci->getOperand(1)
1362 };
1363 new CallInst(SLC.get_fwrite(FILEptr_type), args, 4,ci->getName(), ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001364 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001365 }
Chris Lattner485b6412007-04-07 00:42:32 +00001366 // fprintf(file,"%s",str) -> fputs(str,file)
1367 const Type* FILEptr_type = ci->getOperand(1)->getType();
1368 new CallInst(SLC.get_fputs(FILEptr_type),
1369 CastToCStr(ci->getOperand(3), *ci),
1370 ci->getOperand(1), ci->getName(),ci);
1371 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001372 }
Chris Lattner485b6412007-04-07 00:42:32 +00001373 case 'c': {
Evan Cheng1fc40252006-06-16 08:36:35 +00001374 // fprintf(file,"%c",c) -> fputc(c,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001375 const Type* FILEptr_type = ci->getOperand(1)->getType();
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001376 CastInst* cast = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001377 ci->getOperand(3), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001378 new CallInst(SLC.get_fputc(FILEptr_type), cast,ci->getOperand(1),"",ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001379 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001380 }
1381 default:
1382 return false;
1383 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001384 }
1385} FPrintFOptimizer;
1386
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001387/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001388/// function. It looks for cases where the result of sprintf is not used and the
1389/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001390/// @brief Simplify the sprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001391struct VISIBILITY_HIDDEN SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001392public:
1393 /// @brief Default Constructor
1394 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001395 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001396
Reid Spencer1e520fd2005-05-04 03:20:21 +00001397 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001398 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001399 // Just make sure this has at least 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001400 return (f->getReturnType() == Type::Int32Ty && f->arg_size() >= 2);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001401 }
1402
1403 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001404 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001405 // If the call has more than 3 operands, we can't optimize it
1406 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1407 return false;
1408
1409 // All the optimizations depend on the length of the second argument and the
1410 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001411 uint64_t len, StartIdx;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001412 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001413 if (!GetConstantStringInfo(ci->getOperand(2), CA, len, StartIdx))
Reid Spencer1e520fd2005-05-04 03:20:21 +00001414 return false;
1415
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001416 if (ci->getNumOperands() == 3) {
1417 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001418 // If the length is 0, we just need to store a null byte
Reid Spencerc635f472006-12-31 05:48:39 +00001419 new StoreInst(ConstantInt::get(Type::Int8Ty,0),ci->getOperand(1),ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001420 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty,0));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001421 }
1422
1423 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001424 for (unsigned i = 0; i < len; ++i) {
1425 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001426 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001427 if (CI->getZExtValue() == '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001428 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001429 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001430 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001431 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001432 }
1433
1434 // Increment length because we want to copy the null byte too
1435 len++;
1436
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001437 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001438 Value *args[4] = {
1439 ci->getOperand(1),
1440 ci->getOperand(2),
1441 ConstantInt::get(SLC.getIntPtrType(),len),
1442 ConstantInt::get(Type::Int32Ty, 1)
1443 };
1444 new CallInst(SLC.get_memcpy(), args, 4, "", ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001445 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty,len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001446 }
1447
1448 // The remaining optimizations require the format string to be length 2
1449 // "%s" or "%c".
1450 if (len != 2)
1451 return false;
1452
1453 // The first character has to be a %
1454 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001455 if (CI->getZExtValue() != '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001456 return false;
1457
1458 // Get the second character and switch on its value
1459 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001460 switch (CI->getZExtValue()) {
Chris Lattner175463a2005-09-24 22:17:06 +00001461 case 's': {
1462 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Chris Lattner34acba42007-01-07 08:12:01 +00001463 Value *Len = new CallInst(SLC.get_strlen(),
1464 CastToCStr(ci->getOperand(3), *ci),
Chris Lattner175463a2005-09-24 22:17:06 +00001465 ci->getOperand(3)->getName()+".len", ci);
1466 Value *Len1 = BinaryOperator::createAdd(Len,
1467 ConstantInt::get(Len->getType(), 1),
1468 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001469 if (Len1->getType() != SLC.getIntPtrType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001470 Len1 = CastInst::createIntegerCast(Len1, SLC.getIntPtrType(), false,
1471 Len1->getName(), ci);
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001472 Value *args[4] = {
1473 CastToCStr(ci->getOperand(1), *ci),
1474 CastToCStr(ci->getOperand(3), *ci),
1475 Len1,
1476 ConstantInt::get(Type::Int32Ty,1)
1477 };
1478 new CallInst(SLC.get_memcpy(), args, 4, "", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001479
1480 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001481 if (!ci->use_empty()) {
1482 if (Len->getType() != ci->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001483 Len = CastInst::createIntegerCast(Len, ci->getType(), false,
1484 Len->getName(), ci);
Chris Lattnerf4877682005-09-25 07:06:48 +00001485 ci->replaceAllUsesWith(Len);
1486 }
Chris Lattner485b6412007-04-07 00:42:32 +00001487 return ReplaceCallWith(ci, 0);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001488 }
Chris Lattner175463a2005-09-24 22:17:06 +00001489 case 'c': {
1490 // sprintf(dest,"%c",chr) -> store chr, dest
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001491 CastInst* cast = CastInst::createTruncOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001492 ci->getOperand(3), Type::Int8Ty, "char", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001493 new StoreInst(cast, ci->getOperand(1), ci);
1494 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001495 ConstantInt::get(Type::Int32Ty,1),ci->getOperand(1)->getName()+".end",
Chris Lattner175463a2005-09-24 22:17:06 +00001496 ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001497 new StoreInst(ConstantInt::get(Type::Int8Ty,0),gep,ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001498 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 1));
Chris Lattner175463a2005-09-24 22:17:06 +00001499 }
1500 }
1501 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001502 }
1503} SPrintFOptimizer;
1504
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001505/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001506/// function. It looks for cases where the result of fputs is not used and the
1507/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001508/// @brief Simplify the puts library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001509struct VISIBILITY_HIDDEN PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001510public:
1511 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001512 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001513 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001514
Reid Spencer93616972005-04-29 09:39:47 +00001515 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001516 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001517 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001518 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001519 }
1520
1521 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001522 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001523 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001524 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001525 return false;
1526
1527 // All the optimizations depend on the length of the first argument and the
1528 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001529 uint64_t len, StartIdx;
1530 ConstantArray *CA;
1531 if (!GetConstantStringInfo(ci->getOperand(1), CA, len, StartIdx))
Reid Spencer93616972005-04-29 09:39:47 +00001532 return false;
1533
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001534 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001535 case 0:
1536 // fputs("",F) -> noop
1537 break;
1538 case 1:
1539 {
1540 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001541 const Type* FILEptr_type = ci->getOperand(2)->getType();
Reid Spencer93616972005-04-29 09:39:47 +00001542 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1543 ci->getOperand(1)->getName()+".byte",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001544 CastInst* casti = new SExtInst(loadi, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001545 loadi->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001546 new CallInst(SLC.get_fputc(FILEptr_type), casti,
1547 ci->getOperand(2), "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001548 break;
1549 }
1550 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001551 {
Reid Spencer93616972005-04-29 09:39:47 +00001552 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001553 const Type* FILEptr_type = ci->getOperand(2)->getType();
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001554 Value *parms[4] = {
1555 ci->getOperand(1),
1556 ConstantInt::get(SLC.getIntPtrType(),len),
1557 ConstantInt::get(SLC.getIntPtrType(),1),
1558 ci->getOperand(2)
1559 };
1560 new CallInst(SLC.get_fwrite(FILEptr_type), parms, 4, "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001561 break;
1562 }
1563 }
Chris Lattner485b6412007-04-07 00:42:32 +00001564 return ReplaceCallWith(ci, 0); // Known to have no uses (see above).
Reid Spencer93616972005-04-29 09:39:47 +00001565 }
1566} PutsOptimizer;
1567
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001568/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001569/// function. It simply does range checks the parameter explicitly.
1570/// @brief Simplify the isdigit library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001571struct VISIBILITY_HIDDEN isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001572public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001573 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001574 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001575
Chris Lattner5f6035f2005-09-29 06:16:11 +00001576 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001577 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001578 // Just make sure this has 1 argument
1579 return (f->arg_size() == 1);
1580 }
1581
1582 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001583 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1584 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001585 // isdigit(c) -> 0 or 1, if 'c' is constant
Reid Spencere0fc4df2006-10-20 07:07:24 +00001586 uint64_t val = CI->getZExtValue();
Chris Lattner485b6412007-04-07 00:42:32 +00001587 if (val >= '0' && val <= '9')
1588 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 1));
Reid Spencer282d0572005-05-04 18:58:28 +00001589 else
Chris Lattner485b6412007-04-07 00:42:32 +00001590 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 0));
Reid Spencer282d0572005-05-04 18:58:28 +00001591 }
1592
1593 // isdigit(c) -> (unsigned)c - '0' <= 9
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001594 CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001595 Type::Int32Ty, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001596 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencerc635f472006-12-31 05:48:39 +00001597 ConstantInt::get(Type::Int32Ty,0x30),
Reid Spencer282d0572005-05-04 18:58:28 +00001598 ci->getOperand(1)->getName()+".sub",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +00001599 ICmpInst* setcond_inst = new ICmpInst(ICmpInst::ICMP_ULE,sub_inst,
Reid Spencerc635f472006-12-31 05:48:39 +00001600 ConstantInt::get(Type::Int32Ty,9),
Reid Spencer282d0572005-05-04 18:58:28 +00001601 ci->getOperand(1)->getName()+".cmp",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001602 CastInst* c2 = new ZExtInst(setcond_inst, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001603 ci->getOperand(1)->getName()+".isdigit", ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001604 return ReplaceCallWith(ci, c2);
Reid Spencer282d0572005-05-04 18:58:28 +00001605 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001606} isdigitOptimizer;
1607
Reid Spencer557ab152007-02-05 23:32:05 +00001608struct VISIBILITY_HIDDEN isasciiOptimization : public LibCallOptimization {
Chris Lattner87ef9432005-09-29 06:17:27 +00001609public:
1610 isasciiOptimization()
1611 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1612
1613 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +00001614 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1615 F->getReturnType()->isInteger();
Chris Lattner87ef9432005-09-29 06:17:27 +00001616 }
1617
1618 /// @brief Perform the isascii optimization.
1619 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1620 // isascii(c) -> (unsigned)c < 128
1621 Value *V = CI->getOperand(1);
Reid Spencer266e42b2006-12-23 06:05:41 +00001622 Value *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, V,
1623 ConstantInt::get(V->getType(), 128),
1624 V->getName()+".isascii", CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001625 if (Cmp->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001626 Cmp = new BitCastInst(Cmp, CI->getType(), Cmp->getName(), CI);
Chris Lattner485b6412007-04-07 00:42:32 +00001627 return ReplaceCallWith(CI, Cmp);
Chris Lattner87ef9432005-09-29 06:17:27 +00001628 }
1629} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001630
Reid Spencer282d0572005-05-04 18:58:28 +00001631
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001632/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001633/// function. It simply does the corresponding and operation to restrict the
1634/// range of values to the ASCII character set (0-127).
1635/// @brief Simplify the toascii library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001636struct VISIBILITY_HIDDEN ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001637public:
1638 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001639 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001640 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001641
Reid Spencer4c444fe2005-04-30 03:17:54 +00001642 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001643 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001644 // Just make sure this has 2 arguments
1645 return (f->arg_size() == 1);
1646 }
1647
1648 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001649 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001650 // toascii(c) -> (c & 0x7f)
Chris Lattner485b6412007-04-07 00:42:32 +00001651 Value *chr = ci->getOperand(1);
1652 Value *and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001653 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
Chris Lattner485b6412007-04-07 00:42:32 +00001654 return ReplaceCallWith(ci, and_inst);
Reid Spencer4c444fe2005-04-30 03:17:54 +00001655 }
1656} ToAsciiOptimizer;
1657
Reid Spencerb195fcd2005-05-14 16:42:52 +00001658/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001659/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001660/// optimization is to compute the result at compile time if the argument is
1661/// a constant.
1662/// @brief Simplify the ffs library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001663struct VISIBILITY_HIDDEN FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001664protected:
1665 /// @brief Subclass Constructor
1666 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001667 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001668
1669public:
1670 /// @brief Default Constructor
1671 FFSOptimization() : LibCallOptimization("ffs",
1672 "Number of 'ffs' calls simplified") {}
1673
Chris Lattner801f4752006-01-17 18:27:17 +00001674 /// @brief Make sure that the "ffs" function has the right prototype
1675 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001676 // Just make sure this has 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001677 return F->arg_size() == 1 && F->getReturnType() == Type::Int32Ty;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001678 }
1679
1680 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001681 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1682 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001683 // ffs(cnst) -> bit#
1684 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001685 // ffsll(cnst) -> bit#
Reid Spencere0fc4df2006-10-20 07:07:24 +00001686 uint64_t val = CI->getZExtValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001687 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001688 if (val) {
1689 ++result;
1690 while ((val & 1) == 0) {
1691 ++result;
1692 val >>= 1;
1693 }
Reid Spencer17f77842005-05-15 21:19:45 +00001694 }
Chris Lattner485b6412007-04-07 00:42:32 +00001695 return ReplaceCallWith(TheCall, ConstantInt::get(Type::Int32Ty, result));
Reid Spencerb195fcd2005-05-14 16:42:52 +00001696 }
Reid Spencer17f77842005-05-15 21:19:45 +00001697
Chris Lattner801f4752006-01-17 18:27:17 +00001698 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1699 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1700 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1701 const Type *ArgType = TheCall->getOperand(1)->getType();
Chris Lattner801f4752006-01-17 18:27:17 +00001702 const char *CTTZName;
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001703 assert(ArgType->getTypeID() == Type::IntegerTyID &&
1704 "llvm.cttz argument is not an integer?");
1705 unsigned BitWidth = cast<IntegerType>(ArgType)->getBitWidth();
Chris Lattner3b6058c2007-01-12 22:49:11 +00001706 if (BitWidth == 8)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001707 CTTZName = "llvm.cttz.i8";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001708 else if (BitWidth == 16)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001709 CTTZName = "llvm.cttz.i16";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001710 else if (BitWidth == 32)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001711 CTTZName = "llvm.cttz.i32";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001712 else {
1713 assert(BitWidth == 64 && "Unknown bitwidth");
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001714 CTTZName = "llvm.cttz.i64";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001715 }
Chris Lattner801f4752006-01-17 18:27:17 +00001716
Chris Lattner34acba42007-01-07 08:12:01 +00001717 Constant *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
Chris Lattner801f4752006-01-17 18:27:17 +00001718 ArgType, NULL);
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001719 Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType,
1720 false/*ZExt*/, "tmp", TheCall);
Chris Lattner801f4752006-01-17 18:27:17 +00001721 Value *V2 = new CallInst(F, V, "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001722 V2 = CastInst::createIntegerCast(V2, Type::Int32Ty, false/*ZExt*/,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001723 "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001724 V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::Int32Ty, 1),
Chris Lattner801f4752006-01-17 18:27:17 +00001725 "tmp", TheCall);
Reid Spencer266e42b2006-12-23 06:05:41 +00001726 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, V,
1727 Constant::getNullValue(V->getType()), "tmp",
1728 TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001729 V2 = new SelectInst(Cond, ConstantInt::get(Type::Int32Ty, 0), V2,
Chris Lattner801f4752006-01-17 18:27:17 +00001730 TheCall->getName(), TheCall);
Chris Lattner485b6412007-04-07 00:42:32 +00001731 return ReplaceCallWith(TheCall, V2);
Reid Spencerb195fcd2005-05-14 16:42:52 +00001732 }
1733} FFSOptimizer;
1734
1735/// This LibCallOptimization will simplify calls to the "ffsl" library
1736/// calls. It simply uses FFSOptimization for which the transformation is
1737/// identical.
1738/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001739struct VISIBILITY_HIDDEN FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001740public:
1741 /// @brief Default Constructor
1742 FFSLOptimization() : FFSOptimization("ffsl",
1743 "Number of 'ffsl' calls simplified") {}
1744
1745} FFSLOptimizer;
1746
1747/// This LibCallOptimization will simplify calls to the "ffsll" library
1748/// calls. It simply uses FFSOptimization for which the transformation is
1749/// identical.
1750/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001751struct VISIBILITY_HIDDEN FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001752public:
1753 /// @brief Default Constructor
1754 FFSLLOptimization() : FFSOptimization("ffsll",
1755 "Number of 'ffsll' calls simplified") {}
1756
1757} FFSLLOptimizer;
1758
Chris Lattner57a28632006-01-23 05:57:36 +00001759/// This optimizes unary functions that take and return doubles.
1760struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1761 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1762 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001763
Chris Lattner57a28632006-01-23 05:57:36 +00001764 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001765 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1766 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1767 F->getReturnType() == Type::DoubleTy;
1768 }
Chris Lattner57a28632006-01-23 05:57:36 +00001769
1770 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1771 /// float, strength reduce this to a float version of the function,
1772 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1773 /// when the target supports the destination function and where there can be
1774 /// no precision loss.
1775 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
Chris Lattner34acba42007-01-07 08:12:01 +00001776 Constant *(SimplifyLibCalls::*FP)()){
Chris Lattner485b6412007-04-07 00:42:32 +00001777 if (FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getOperand(1)))
Chris Lattner4201cd12005-08-24 17:22:17 +00001778 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001779 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001780 CI->getName(), CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001781 New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
Chris Lattner4201cd12005-08-24 17:22:17 +00001782 CI->replaceAllUsesWith(New);
1783 CI->eraseFromParent();
1784 if (Cast->use_empty())
1785 Cast->eraseFromParent();
1786 return true;
1787 }
Chris Lattner57a28632006-01-23 05:57:36 +00001788 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001789 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001790};
1791
Chris Lattner57a28632006-01-23 05:57:36 +00001792
Reid Spencer557ab152007-02-05 23:32:05 +00001793struct VISIBILITY_HIDDEN FloorOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57a28632006-01-23 05:57:36 +00001794 FloorOptimization()
1795 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1796
1797 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001798#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001799 // If this is a float argument passed in, convert to floorf.
1800 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1801 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001802#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001803 return false; // opt failed
1804 }
1805} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001806
Reid Spencer557ab152007-02-05 23:32:05 +00001807struct VISIBILITY_HIDDEN CeilOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001808 CeilOptimization()
1809 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1810
1811 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1812#ifdef HAVE_CEILF
1813 // If this is a float argument passed in, convert to ceilf.
1814 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1815 return true;
1816#endif
1817 return false; // opt failed
1818 }
1819} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001820
Reid Spencer557ab152007-02-05 23:32:05 +00001821struct VISIBILITY_HIDDEN RoundOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001822 RoundOptimization()
1823 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1824
1825 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1826#ifdef HAVE_ROUNDF
1827 // If this is a float argument passed in, convert to roundf.
1828 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1829 return true;
1830#endif
1831 return false; // opt failed
1832 }
1833} RoundOptimizer;
1834
Reid Spencer557ab152007-02-05 23:32:05 +00001835struct VISIBILITY_HIDDEN RintOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001836 RintOptimization()
1837 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1838
1839 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1840#ifdef HAVE_RINTF
1841 // If this is a float argument passed in, convert to rintf.
1842 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1843 return true;
1844#endif
1845 return false; // opt failed
1846 }
1847} RintOptimizer;
1848
Reid Spencer557ab152007-02-05 23:32:05 +00001849struct VISIBILITY_HIDDEN NearByIntOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001850 NearByIntOptimization()
1851 : UnaryDoubleFPOptimizer("nearbyint",
1852 "Number of 'nearbyint' calls simplified") {}
1853
1854 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1855#ifdef HAVE_NEARBYINTF
1856 // If this is a float argument passed in, convert to nearbyintf.
1857 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1858 return true;
1859#endif
1860 return false; // opt failed
1861 }
1862} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001863
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001864/// GetConstantStringInfo - This function computes the length of a
1865/// null-terminated constant array of integers. This function can't rely on the
1866/// size of the constant array because there could be a null terminator in the
1867/// middle of the array.
1868///
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001869/// We also have to bail out if we find a non-integer constant initializer
1870/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001871/// below checks each of these conditions and will return true only if all
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001872/// conditions are met. If the conditions aren't met, this returns false.
1873///
1874/// If successful, the \p Array param is set to the constant array being
1875/// indexed, the \p Length parameter is set to the length of the null-terminated
1876/// string pointed to by V, the \p StartIdx value is set to the first
1877/// element of the Array that V points to, and true is returned.
1878static bool GetConstantStringInfo(Value *V, ConstantArray *&Array,
1879 uint64_t &Length, uint64_t &StartIdx) {
1880 assert(V != 0 && "Invalid args to GetConstantStringInfo");
1881 // Initialize results.
1882 Length = 0;
1883 StartIdx = 0;
1884 Array = 0;
1885
1886 User *GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001887 // If the value is not a GEP instruction nor a constant expression with a
1888 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00001889 // any other way
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001890 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
Reid Spencere249a822005-04-27 07:54:40 +00001891 GEP = GEPI;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001892 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
1893 if (CE->getOpcode() != Instruction::GetElementPtr)
Reid Spencere249a822005-04-27 07:54:40 +00001894 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001895 GEP = CE;
1896 } else {
Reid Spencere249a822005-04-27 07:54:40 +00001897 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001898 }
Reid Spencere249a822005-04-27 07:54:40 +00001899
1900 // Make sure the GEP has exactly three arguments.
1901 if (GEP->getNumOperands() != 3)
1902 return false;
1903
1904 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001905 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001906 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencer2e54a152007-03-02 00:28:52 +00001907 if (!op1->isZero())
Reid Spencere249a822005-04-27 07:54:40 +00001908 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001909 } else
Reid Spencere249a822005-04-27 07:54:40 +00001910 return false;
1911
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001912 // If the second index isn't a ConstantInt, then this is a variable index
1913 // into the array. If this occurs, we can't say anything meaningful about
1914 // the string.
1915 StartIdx = 0;
1916 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1917 StartIdx = CI->getZExtValue();
Reid Spencere249a822005-04-27 07:54:40 +00001918 else
1919 return false;
1920
1921 // The GEP instruction, constant or instruction, must reference a global
1922 // variable that is a constant and is initialized. The referenced constant
1923 // initializer is the array that we'll use for optimization.
1924 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1925 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1926 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001927 Constant *GlobalInit = GV->getInitializer();
Reid Spencere249a822005-04-27 07:54:40 +00001928
1929 // Handle the ConstantAggregateZero case
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001930 if (isa<ConstantAggregateZero>(GlobalInit)) {
Reid Spencere249a822005-04-27 07:54:40 +00001931 // This is a degenerate case. The initializer is constant zero so the
1932 // length of the string must be zero.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001933 Length = 0;
Reid Spencere249a822005-04-27 07:54:40 +00001934 return true;
1935 }
1936
1937 // Must be a Constant Array
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001938 Array = dyn_cast<ConstantArray>(GlobalInit);
1939 if (!Array) return false;
Reid Spencere249a822005-04-27 07:54:40 +00001940
1941 // Get the number of elements in the array
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001942 uint64_t NumElts = Array->getType()->getNumElements();
Reid Spencere249a822005-04-27 07:54:40 +00001943
1944 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001945 // the place the GEP refers to in the array.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001946 Length = StartIdx;
1947 while (1) {
1948 if (Length >= NumElts)
1949 return false; // The array isn't null terminated.
1950
1951 Constant *Elt = Array->getOperand(Length);
1952 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt)) {
1953 // Check for the null terminator.
Reid Spencer2e54a152007-03-02 00:28:52 +00001954 if (CI->isZero())
Reid Spencere249a822005-04-27 07:54:40 +00001955 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001956 } else
Reid Spencere249a822005-04-27 07:54:40 +00001957 return false; // This array isn't suitable, non-int initializer
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001958 ++Length;
Reid Spencere249a822005-04-27 07:54:40 +00001959 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001960
Reid Spencere249a822005-04-27 07:54:40 +00001961 // Subtract out the initial value from the length
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001962 Length -= StartIdx;
Reid Spencere249a822005-04-27 07:54:40 +00001963 return true; // success!
1964}
1965
Reid Spencera7828ba2005-06-18 17:46:28 +00001966/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1967/// inserting the cast before IP, and return the cast.
1968/// @brief Cast a value to a "C" string.
Reid Spencer557ab152007-02-05 23:32:05 +00001969static Value *CastToCStr(Value *V, Instruction &IP) {
Reid Spencera730cf82006-12-13 08:04:32 +00001970 assert(isa<PointerType>(V->getType()) &&
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001971 "Can't cast non-pointer type to C string type");
Reid Spencerc635f472006-12-31 05:48:39 +00001972 const Type *SBPTy = PointerType::get(Type::Int8Ty);
Reid Spencera7828ba2005-06-18 17:46:28 +00001973 if (V->getType() != SBPTy)
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001974 return new BitCastInst(V, SBPTy, V->getName(), &IP);
Reid Spencera7828ba2005-06-18 17:46:28 +00001975 return V;
1976}
1977
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001978// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00001979// Additional cases that we need to add to this file:
1980//
Reid Spencer649ac282005-04-28 04:40:06 +00001981// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00001982// * cbrt(expN(X)) -> expN(x/3)
1983// * cbrt(sqrt(x)) -> pow(x,1/6)
1984// * cbrt(sqrt(x)) -> pow(x,1/9)
1985//
Reid Spencer649ac282005-04-28 04:40:06 +00001986// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00001987// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00001988//
1989// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00001990// * exp(log(x)) -> x
1991//
Reid Spencer649ac282005-04-28 04:40:06 +00001992// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00001993// * log(exp(x)) -> x
1994// * log(x**y) -> y*log(x)
1995// * log(exp(y)) -> y*log(e)
1996// * log(exp2(y)) -> y*log(2)
1997// * log(exp10(y)) -> y*log(10)
1998// * log(sqrt(x)) -> 0.5*log(x)
1999// * log(pow(x,y)) -> y*log(x)
2000//
2001// lround, lroundf, lroundl:
2002// * lround(cnst) -> cnst'
2003//
2004// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002005// * memcmp(x,y,l) -> cnst
2006// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002007//
Reid Spencer649ac282005-04-28 04:40:06 +00002008// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002009// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002010// (if s is a global constant array)
2011//
Reid Spencer649ac282005-04-28 04:40:06 +00002012// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002013// * pow(exp(x),y) -> exp(x*y)
2014// * pow(sqrt(x),y) -> pow(x,y*0.5)
2015// * pow(pow(x,y),z)-> pow(x,y*z)
2016//
2017// puts:
2018// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2019//
2020// round, roundf, roundl:
2021// * round(cnst) -> cnst'
2022//
2023// signbit:
2024// * signbit(cnst) -> cnst'
2025// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2026//
Reid Spencer649ac282005-04-28 04:40:06 +00002027// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002028// * sqrt(expN(x)) -> expN(x*0.5)
2029// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2030// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2031//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002032// stpcpy:
2033// * stpcpy(str, "literal") ->
2034// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002035// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002036// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2037// (if c is a constant integer and s is a constant string)
2038// * strrchr(s1,0) -> strchr(s1,0)
2039//
Reid Spencer649ac282005-04-28 04:40:06 +00002040// strncat:
2041// * strncat(x,y,0) -> x
2042// * strncat(x,y,0) -> x (if strlen(y) = 0)
2043// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2044//
Reid Spencer649ac282005-04-28 04:40:06 +00002045// strncpy:
2046// * strncpy(d,s,0) -> d
2047// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2048// (if s and l are constants)
2049//
2050// strpbrk:
2051// * strpbrk(s,a) -> offset_in_for(s,a)
2052// (if s and a are both constant strings)
2053// * strpbrk(s,"") -> 0
2054// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2055//
2056// strspn, strcspn:
2057// * strspn(s,a) -> const_int (if both args are constant)
2058// * strspn("",a) -> 0
2059// * strspn(s,"") -> 0
2060// * strcspn(s,a) -> const_int (if both args are constant)
2061// * strcspn("",a) -> 0
2062// * strcspn(s,"") -> strlen(a)
2063//
2064// strstr:
2065// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002066// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002067// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002068//
Reid Spencer649ac282005-04-28 04:40:06 +00002069// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002070// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002071//
Reid Spencer649ac282005-04-28 04:40:06 +00002072// trunc, truncf, truncl:
2073// * trunc(cnst) -> cnst'
2074//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002075//
Reid Spencer39a762d2005-04-25 02:53:12 +00002076}