blob: 0f19740e2ded3ad3a20c6b89c8a7aff6249033e8 [file] [log] [blame]
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencer39a762d2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000010// This file implements a module pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
12// library functions). For example, a call to the function "exit(3)" that
Reid Spencer0b13cda2005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000014// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
Reid Spencer39a762d2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spencer18b99812005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
Reid Spencerade18212006-01-19 08:36:56 +000028#include "llvm/Config/config.h"
Reid Spencer557ab152007-02-05 23:32:05 +000029#include "llvm/Support/Compiler.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000030#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000031#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000032#include "llvm/Transforms/IPO.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000033using namespace llvm;
34
Reid Spencere249a822005-04-27 07:54:40 +000035/// This statistic keeps track of the total number of library calls that have
36/// been simplified regardless of which call it is.
Chris Lattner1631bcb2006-12-19 22:09:18 +000037STATISTIC(SimplifiedLibCalls, "Number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000038
Chris Lattner1631bcb2006-12-19 22:09:18 +000039namespace {
40 // Forward declarations
41 class LibCallOptimization;
42 class SimplifyLibCalls;
43
Chris Lattner33081b42006-01-22 23:10:26 +000044/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer9fbad132005-05-21 01:27:04 +000045/// Therefore all subclasses are registered here at static initialization time
46/// and this list is what the SimplifyLibCalls pass uses to apply the individual
47/// optimizations to the call sites.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000048/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattner33081b42006-01-22 23:10:26 +000049static LibCallOptimization *OptList = 0;
Reid Spencer39a762d2005-04-25 02:53:12 +000050
Reid Spencere249a822005-04-27 07:54:40 +000051/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000052/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000053/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000054/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000055/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer7ddcfb32005-04-27 21:29:20 +000056/// or attempt to perform, the optimization(s) for the library call. Otherwise,
57/// OptimizeCall won't be called. Subclasses are responsible for providing the
58/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
59/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000060/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer7ddcfb32005-04-27 21:29:20 +000061/// semantics", typically a library function that is defined by an international
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000062/// standard. Because the semantics are well known, the optimizations can
Reid Spencer7ddcfb32005-04-27 21:29:20 +000063/// generally short-circuit actually calling the function if there's a simpler
64/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000065/// @brief Base class for library call optimizations
Reid Spencer557ab152007-02-05 23:32:05 +000066class VISIBILITY_HIDDEN LibCallOptimization {
Chris Lattner33081b42006-01-22 23:10:26 +000067 LibCallOptimization **Prev, *Next;
68 const char *FunctionName; ///< Name of the library call we optimize
69#ifndef NDEBUG
Chris Lattner700b8732006-12-06 17:46:33 +000070 Statistic occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
Chris Lattner33081b42006-01-22 23:10:26 +000071#endif
Jeff Cohen4bc952f2005-04-29 03:05:44 +000072public:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000073 /// The \p fname argument must be the name of the library function being
Reid Spencer7ddcfb32005-04-27 21:29:20 +000074 /// optimized by the subclass.
75 /// @brief Constructor that registers the optimization.
Chris Lattner33081b42006-01-22 23:10:26 +000076 LibCallOptimization(const char *FName, const char *Description)
Chris Lattner575d3212006-12-19 23:16:47 +000077 : FunctionName(FName) {
78
Reid Spencere95a6472005-04-27 00:05:45 +000079#ifndef NDEBUG
Chris Lattner575d3212006-12-19 23:16:47 +000080 occurrences.construct("simplify-libcalls", Description);
Reid Spencere95a6472005-04-27 00:05:45 +000081#endif
Chris Lattner33081b42006-01-22 23:10:26 +000082 // Register this optimizer in the list of optimizations.
83 Next = OptList;
84 OptList = this;
85 Prev = &OptList;
86 if (Next) Next->Prev = &Next;
Reid Spencer39a762d2005-04-25 02:53:12 +000087 }
Chris Lattner33081b42006-01-22 23:10:26 +000088
89 /// getNext - All libcall optimizations are chained together into a list,
90 /// return the next one in the list.
91 LibCallOptimization *getNext() { return Next; }
Reid Spencer39a762d2005-04-25 02:53:12 +000092
Reid Spencer7ddcfb32005-04-27 21:29:20 +000093 /// @brief Deregister from the optlist
Chris Lattner33081b42006-01-22 23:10:26 +000094 virtual ~LibCallOptimization() {
95 *Prev = Next;
96 if (Next) Next->Prev = Prev;
97 }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000098
Reid Spencere249a822005-04-27 07:54:40 +000099 /// The implementation of this function in subclasses should determine if
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000100 /// \p F is suitable for the optimization. This method is called by
101 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
102 /// sites of such a function if that function is not suitable in the first
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000103 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000104 /// false, otherwise. This function should also perform any lazy
105 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencere249a822005-04-27 07:54:40 +0000106 /// true. This avoids doing initialization until the optimizer is actually
107 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000108 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +0000109 virtual bool ValidateCalledFunction(
110 const Function* F, ///< The function that is the target of call sites
111 SimplifyLibCalls& SLC ///< The pass object invoking us
112 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000113
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000114 /// The implementations of this function in subclasses is the heart of the
115 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencere249a822005-04-27 07:54:40 +0000116 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000117 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencere249a822005-04-27 07:54:40 +0000118 /// against ci, the subclass is responsible for returning true and ensuring
119 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000120 /// @brief Optimize a call, if possible.
121 virtual bool OptimizeCall(
122 CallInst* ci, ///< The call instruction that should be optimized.
123 SimplifyLibCalls& SLC ///< The pass object invoking us
124 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000125
Reid Spencere249a822005-04-27 07:54:40 +0000126 /// @brief Get the name of the library call being optimized
Chris Lattner33081b42006-01-22 23:10:26 +0000127 const char *getFunctionName() const { return FunctionName; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000128
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000129 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000130 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000131#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000132 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000133#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000134 }
Reid Spencere249a822005-04-27 07:54:40 +0000135};
136
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000137/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000138/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000139/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000140/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000141/// class provides the basic infrastructure for handling runOnModule. Whenever
142/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000143/// validate the call (ValidateLibraryCall). If it is validated, then
144/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000145/// @brief A ModulePass for optimizing well-known function calls.
Reid Spencer557ab152007-02-05 23:32:05 +0000146class VISIBILITY_HIDDEN SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000147public:
Reid Spencere249a822005-04-27 07:54:40 +0000148 /// We need some target data for accurate signature details that are
149 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000150 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000151 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000152 // Ask that the TargetData analysis be performed before us so we can use
153 // the target data.
154 Info.addRequired<TargetData>();
155 }
156
157 /// For this pass, process all of the function calls in the module, calling
158 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000159 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000160 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000161 reset(M);
162
163 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000164 hash_map<std::string, LibCallOptimization*> OptznMap;
165 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
166 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000167
168 // The call optimizations can be recursive. That is, the optimization might
169 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000170 // we make the LibCallOptimization instances very specific to the case they
171 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000172 // the module until we don't get any more optimizations possible.
173 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000174 do {
Reid Spencere249a822005-04-27 07:54:40 +0000175 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000176 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000177 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000178 // because they live in a runtime library somewhere and were (probably)
179 // not compiled by LLVM. So, we only act on external functions that
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000180 // have external or dllimport linkage and non-empty uses.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000181 if (!FI->isDeclaration() ||
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000182 !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
183 FI->use_empty())
Reid Spencere249a822005-04-27 07:54:40 +0000184 continue;
185
186 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000187 hash_map<std::string, LibCallOptimization*>::iterator OMI =
188 OptznMap.find(FI->getName());
189 if (OMI == OptznMap.end()) continue;
190
191 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000192
193 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000194 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000195 continue;
196
197 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000198 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000199 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000200 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000201 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000202 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000203 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000204 ++SimplifiedLibCalls;
205 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000206 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000207 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000208 }
209 }
210 }
Reid Spencere249a822005-04-27 07:54:40 +0000211 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000212
Reid Spencere249a822005-04-27 07:54:40 +0000213 return result;
214 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000215
Reid Spencere249a822005-04-27 07:54:40 +0000216 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000217 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000218
Reid Spencere249a822005-04-27 07:54:40 +0000219 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000220 TargetData* getTargetData() const { return TD; }
221
222 /// @brief Return the size_t type -- syntactic shortcut
223 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
224
Evan Cheng1fc40252006-06-16 08:36:35 +0000225 /// @brief Return a Function* for the putchar libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000226 Constant *get_putchar() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000227 if (!putchar_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000228 putchar_func =
229 M->getOrInsertFunction("putchar", Type::Int32Ty, Type::Int32Ty, NULL);
Evan Cheng1fc40252006-06-16 08:36:35 +0000230 return putchar_func;
231 }
232
233 /// @brief Return a Function* for the puts libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000234 Constant *get_puts() {
Evan Cheng1fc40252006-06-16 08:36:35 +0000235 if (!puts_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000236 puts_func = M->getOrInsertFunction("puts", Type::Int32Ty,
237 PointerType::get(Type::Int8Ty),
Evan Cheng1fc40252006-06-16 08:36:35 +0000238 NULL);
239 return puts_func;
240 }
241
Reid Spencer93616972005-04-29 09:39:47 +0000242 /// @brief Return a Function* for the fputc libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000243 Constant *get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000244 if (!fputc_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000245 fputc_func = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000246 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000247 return fputc_func;
248 }
249
Evan Chengf2ea5872006-06-16 04:52:30 +0000250 /// @brief Return a Function* for the fputs libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000251 Constant *get_fputs(const Type* FILEptr_type) {
Evan Chengf2ea5872006-06-16 04:52:30 +0000252 if (!fputs_func)
Reid Spencerc635f472006-12-31 05:48:39 +0000253 fputs_func = M->getOrInsertFunction("fputs", Type::Int32Ty,
254 PointerType::get(Type::Int8Ty),
Evan Chengf2ea5872006-06-16 04:52:30 +0000255 FILEptr_type, NULL);
256 return fputs_func;
257 }
258
Reid Spencer93616972005-04-29 09:39:47 +0000259 /// @brief Return a Function* for the fwrite libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000260 Constant *get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000261 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000262 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000263 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000264 TD->getIntPtrType(),
265 TD->getIntPtrType(),
266 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000267 return fwrite_func;
268 }
269
270 /// @brief Return a Function* for the sqrt libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000271 Constant *get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000272 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000273 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
274 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000275 return sqrt_func;
276 }
Reid Spencere249a822005-04-27 07:54:40 +0000277
Owen Andersondfd79ad2007-01-20 10:07:23 +0000278 /// @brief Return a Function* for the strcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000279 Constant *get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000280 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000281 strcpy_func = M->getOrInsertFunction("strcpy",
Reid Spencerc635f472006-12-31 05:48:39 +0000282 PointerType::get(Type::Int8Ty),
283 PointerType::get(Type::Int8Ty),
284 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000285 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000286 return strcpy_func;
287 }
288
289 /// @brief Return a Function* for the strlen libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000290 Constant *get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000291 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000292 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
Reid Spencerc635f472006-12-31 05:48:39 +0000293 PointerType::get(Type::Int8Ty),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000294 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000295 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000296 }
297
Reid Spencer38cabd72005-05-03 07:23:44 +0000298 /// @brief Return a Function* for the memchr libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000299 Constant *get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000300 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000301 memchr_func = M->getOrInsertFunction("memchr",
Reid Spencerc635f472006-12-31 05:48:39 +0000302 PointerType::get(Type::Int8Ty),
303 PointerType::get(Type::Int8Ty),
304 Type::Int32Ty, TD->getIntPtrType(),
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000305 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000306 return memchr_func;
307 }
308
Reid Spencere249a822005-04-27 07:54:40 +0000309 /// @brief Return a Function* for the memcpy libcall
Chris Lattner34acba42007-01-07 08:12:01 +0000310 Constant *get_memcpy() {
Chris Lattner4201cd12005-08-24 17:22:17 +0000311 if (!memcpy_func) {
Reid Spencerc635f472006-12-31 05:48:39 +0000312 const Type *SBP = PointerType::get(Type::Int8Ty);
313 const char *N = TD->getIntPtrType() == Type::Int32Ty ?
Chris Lattnerea7986a2006-03-03 01:30:23 +0000314 "llvm.memcpy.i32" : "llvm.memcpy.i64";
315 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
Reid Spencerc635f472006-12-31 05:48:39 +0000316 TD->getIntPtrType(), Type::Int32Ty,
Chris Lattnerea7986a2006-03-03 01:30:23 +0000317 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000318 }
Reid Spencere249a822005-04-27 07:54:40 +0000319 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000320 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000321
Chris Lattner34acba42007-01-07 08:12:01 +0000322 Constant *getUnaryFloatFunction(const char *Name, Constant *&Cache) {
Chris Lattner57740402006-01-23 06:24:46 +0000323 if (!Cache)
324 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
325 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000326 }
327
Chris Lattner34acba42007-01-07 08:12:01 +0000328 Constant *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
329 Constant *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
330 Constant *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
331 Constant *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
332 Constant *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
Chris Lattner57740402006-01-23 06:24:46 +0000333 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000334private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000335 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000336 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000337 M = &mod;
338 TD = &getAnalysis<TargetData>();
Evan Cheng1fc40252006-06-16 08:36:35 +0000339 putchar_func = 0;
340 puts_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000341 fputc_func = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +0000342 fputs_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000343 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000344 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000345 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000346 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000347 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000348 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000349 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000350 ceilf_func = 0;
351 roundf_func = 0;
352 rintf_func = 0;
353 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000354 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000355
Reid Spencere249a822005-04-27 07:54:40 +0000356private:
Chris Lattner57740402006-01-23 06:24:46 +0000357 /// Caches for function pointers.
Chris Lattner34acba42007-01-07 08:12:01 +0000358 Constant *putchar_func, *puts_func;
359 Constant *fputc_func, *fputs_func, *fwrite_func;
360 Constant *memcpy_func, *memchr_func;
361 Constant *sqrt_func;
362 Constant *strcpy_func, *strlen_func;
363 Constant *floorf_func, *ceilf_func, *roundf_func;
364 Constant *rintf_func, *nearbyintf_func;
Chris Lattner57740402006-01-23 06:24:46 +0000365 Module *M; ///< Cached Module
366 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000367};
368
369// Register the pass
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000370RegisterPass<SimplifyLibCalls>
371X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencere249a822005-04-27 07:54:40 +0000372
373} // anonymous namespace
374
375// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000376ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000377 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000378}
379
380// Classes below here, in the anonymous namespace, are all subclasses of the
381// LibCallOptimization class, each implementing all optimizations possible for a
382// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000383// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000384namespace {
385
Reid Spencera7828ba2005-06-18 17:46:28 +0000386// Forward declare utility functions.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000387static bool GetConstantStringInfo(Value *V, ConstantArray *&Array,
388 uint64_t &Length, uint64_t &StartIdx);
Reid Spencer557ab152007-02-05 23:32:05 +0000389static Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000390
391/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000392/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000393/// the same value passed to the exit function. When this is done, it splits the
394/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000395/// @brief Replace calls to exit in main with a simple return
Reid Spencer557ab152007-02-05 23:32:05 +0000396struct VISIBILITY_HIDDEN ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000397 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000398 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000399
400 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000401 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000402 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +0000403 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000404 }
405
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000406 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000407 // To be careful, we check that the call to exit is coming from "main", that
408 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000409 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000410 Function *from = ci->getParent()->getParent();
411 if (from->hasExternalLinkage())
412 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000413 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000414 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000415 // block of the call instruction
416 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000417
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000418 // Create a return instruction that we'll replace the call with.
419 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000420 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000421 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000422
Reid Spencerf2534c72005-04-25 21:11:48 +0000423 // Split the block at the call instruction which places it in a new
424 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000425 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000426
Reid Spencerf2534c72005-04-25 21:11:48 +0000427 // The block split caused a branch instruction to be inserted into
428 // the end of the original block, right after the return instruction
429 // that we put there. That's not a valid block, so delete the branch
430 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000431 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000432
Reid Spencerf2534c72005-04-25 21:11:48 +0000433 // Now we can finally get rid of the call instruction which now lives
434 // in the new basic block.
435 ci->eraseFromParent();
436
437 // Optimization succeeded, return true.
438 return true;
439 }
440 // We didn't pass the criteria for this optimization so return false
441 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000442 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000443} ExitInMainOptimizer;
444
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000445/// This LibCallOptimization will simplify a call to the strcat library
446/// function. The simplification is possible only if the string being
447/// concatenated is a constant array or a constant expression that results in
448/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000449/// of the constant string. Both of these calls are further reduced, if possible
450/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000451/// @brief Simplify the strcat library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000452struct VISIBILITY_HIDDEN StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000453public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000454 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000455 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000456 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000457
458public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000459
460 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000461 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000462 if (f->getReturnType() == PointerType::get(Type::Int8Ty))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000463 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000464 {
465 Function::const_arg_iterator AI = f->arg_begin();
Reid Spencerc635f472006-12-31 05:48:39 +0000466 if (AI++->getType() == PointerType::get(Type::Int8Ty))
467 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000468 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000469 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000470 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000471 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000472 }
473 return false;
474 }
475
Reid Spencere249a822005-04-27 07:54:40 +0000476 /// @brief Optimize the strcat library function
Chris Lattner56b7fc72007-04-06 22:59:33 +0000477 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000478 // Extract some information from the instruction
Chris Lattner56b7fc72007-04-06 22:59:33 +0000479 Value *Dst = CI->getOperand(1);
480 Value *Src = CI->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +0000481
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000482 // Extract the initializer (while making numerous checks) from the
Chris Lattner56b7fc72007-04-06 22:59:33 +0000483 // source operand of the call to strcat.
484 uint64_t SrcLength, StartIdx;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000485 ConstantArray *Arr;
Chris Lattner56b7fc72007-04-06 22:59:33 +0000486 if (!GetConstantStringInfo(Src, Arr, SrcLength, StartIdx))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000487 return false;
488
Reid Spencerb4f7b832005-04-26 07:45:18 +0000489 // Handle the simple, do-nothing case
Chris Lattner56b7fc72007-04-06 22:59:33 +0000490 if (SrcLength == 0) {
491 CI->replaceAllUsesWith(Dst);
492 CI->eraseFromParent();
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000493 return true;
494 }
495
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000496 // We need to find the end of the destination string. That's where the
497 // memory is to be moved to. We just generate a call to strlen (further
Chris Lattner56b7fc72007-04-06 22:59:33 +0000498 // optimized in another pass).
499 CallInst *DstLen = new CallInst(SLC.get_strlen(), Dst,
500 Dst->getName()+".len", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000501
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000502 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000503 // destination's pointer to get the actual memcpy destination (end of
504 // the string .. we're concatenating).
Chris Lattner56b7fc72007-04-06 22:59:33 +0000505 Dst = new GetElementPtrInst(Dst, DstLen, Dst->getName()+".indexed", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000506
507 // We have enough information to now generate the memcpy call to
508 // do the concatenation for us.
Chris Lattner56b7fc72007-04-06 22:59:33 +0000509 Value *Vals[] = {
510 Dst, Src,
511 ConstantInt::get(SLC.getIntPtrType(), SrcLength+1), // copy nul term.
512 ConstantInt::get(Type::Int32Ty, 1) // alignment
513 };
514 new CallInst(SLC.get_memcpy(), Vals, 4, "", CI);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000515
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000516 // Finally, substitute the first operand of the strcat call for the
517 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000518 // kill the strcat CallInst.
Chris Lattner56b7fc72007-04-06 22:59:33 +0000519 CI->replaceAllUsesWith(Dst);
520 CI->eraseFromParent();
Reid Spencerb4f7b832005-04-26 07:45:18 +0000521 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000522 }
523} StrCatOptimizer;
524
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000525/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000526/// function. It optimizes out cases where the arguments are both constant
527/// and the result can be determined statically.
528/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000529struct VISIBILITY_HIDDEN StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000530public:
531 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000532 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000533
534 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner39f0bb92007-04-06 23:38:55 +0000535 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
536 const FunctionType *FT = F->getFunctionType();
537 return FT->getNumParams() == 2 &&
538 FT->getReturnType() == PointerType::get(Type::Int8Ty) &&
539 FT->getParamType(0) == FT->getReturnType() &&
540 isa<IntegerType>(FT->getParamType(1));
Reid Spencer38cabd72005-05-03 07:23:44 +0000541 }
542
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000543 /// @brief Perform the strchr optimizations
Chris Lattner39f0bb92007-04-06 23:38:55 +0000544 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000545 // Check that the first argument to strchr is a constant array of sbyte.
546 // If it is, get the length and data, otherwise return false.
Chris Lattner39f0bb92007-04-06 23:38:55 +0000547 uint64_t StrLength, StartIdx;
548 ConstantArray *CA = 0;
549 if (!GetConstantStringInfo(CI->getOperand(1), CA, StrLength, StartIdx))
Reid Spencer38cabd72005-05-03 07:23:44 +0000550 return false;
551
Chris Lattner39f0bb92007-04-06 23:38:55 +0000552 // If the second operand is not constant, just lower this to memchr since we
553 // know the length of the input string.
554 ConstantInt *CSI = dyn_cast<ConstantInt>(CI->getOperand(2));
Reid Spencerc635f472006-12-31 05:48:39 +0000555 if (!CSI) {
Chris Lattner39f0bb92007-04-06 23:38:55 +0000556 Value *Args[3] = {
557 CI->getOperand(1),
558 CI->getOperand(2),
559 ConstantInt::get(SLC.getIntPtrType(), StrLength+1)
Chris Lattnerade1c2b2007-02-13 05:58:53 +0000560 };
Chris Lattner39f0bb92007-04-06 23:38:55 +0000561 CI->replaceAllUsesWith(new CallInst(SLC.get_memchr(), Args, 3,
562 CI->getName(), CI));
563 CI->eraseFromParent();
Reid Spencer38cabd72005-05-03 07:23:44 +0000564 return true;
565 }
566
567 // Get the character we're looking for
Chris Lattner39f0bb92007-04-06 23:38:55 +0000568 int64_t CharValue = CSI->getSExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +0000569
Chris Lattner39f0bb92007-04-06 23:38:55 +0000570 if (StrLength == 0) {
571 // If the length of the string is zero, and we are searching for zero,
572 // return the input pointer.
573 if (CharValue == 0) {
574 CI->replaceAllUsesWith(CI->getOperand(1));
575 } else {
576 // Otherwise, char wasn't found.
577 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
578 }
579 CI->eraseFromParent();
580 return true;
581 }
582
Reid Spencer38cabd72005-05-03 07:23:44 +0000583 // Compute the offset
Chris Lattner39f0bb92007-04-06 23:38:55 +0000584 uint64_t i = 0;
585 while (1) {
586 assert(i <= StrLength && "Didn't find null terminator?");
587 if (ConstantInt *C = dyn_cast<ConstantInt>(CA->getOperand(i+StartIdx))) {
588 // Did we find our match?
589 if (C->getSExtValue() == CharValue)
Reid Spencer38cabd72005-05-03 07:23:44 +0000590 break;
Chris Lattner39f0bb92007-04-06 23:38:55 +0000591 if (C->isZero()) {
592 // We found the end of the string. strchr returns null.
593 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
594 CI->eraseFromParent();
595 return true;
Reid Spencer38cabd72005-05-03 07:23:44 +0000596 }
597 }
Chris Lattner39f0bb92007-04-06 23:38:55 +0000598 ++i;
Reid Spencer38cabd72005-05-03 07:23:44 +0000599 }
600
Chris Lattner39f0bb92007-04-06 23:38:55 +0000601 // strchr(s+n,c) -> gep(s+n+i,c)
Reid Spencer38cabd72005-05-03 07:23:44 +0000602 // (if c is a constant integer and s is a constant string)
Chris Lattner39f0bb92007-04-06 23:38:55 +0000603 Value *Idx = ConstantInt::get(Type::Int64Ty, i);
604 Value *GEP = new GetElementPtrInst(CI->getOperand(1), Idx,
605 CI->getOperand(1)->getName() +
606 ".strchr", CI);
607 CI->replaceAllUsesWith(GEP);
608 CI->eraseFromParent();
Reid Spencer38cabd72005-05-03 07:23:44 +0000609 return true;
610 }
611} StrChrOptimizer;
612
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000613/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000614/// function. It optimizes out cases where one or both arguments are constant
615/// and the result can be determined statically.
616/// @brief Simplify the strcmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000617struct VISIBILITY_HIDDEN StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000618public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000619 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000620 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000621
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000622 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000623 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000624 const FunctionType *FT = F->getFunctionType();
625 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 2 &&
626 FT->getParamType(0) == FT->getParamType(1) &&
627 FT->getParamType(0) == PointerType::get(Type::Int8Ty);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000628 }
629
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000630 /// @brief Perform the strcmp optimization
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000631 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000632 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000633 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000634 // because the call is a no-op.
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000635 Value *Str1P = CI->getOperand(1);
636 Value *Str2P = CI->getOperand(2);
637 if (Str1P == Str2P) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000638 // strcmp(x,x) -> 0
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000639 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 0));
640 CI->eraseFromParent();
Reid Spencer4c444fe2005-04-30 03:17:54 +0000641 return true;
642 }
643
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000644 uint64_t Str1Len, Str1StartIdx;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000645 ConstantArray *A1;
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000646 bool Str1IsCst = GetConstantStringInfo(Str1P, A1, Str1Len, Str1StartIdx);
647 if (Str1IsCst && Str1Len == 0) {
648 // strcmp("", x) -> *x
649 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
650 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
651 CI->replaceAllUsesWith(V);
652 CI->eraseFromParent();
653 return true;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000654 }
655
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000656 uint64_t Str2Len, Str2StartIdx;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000657 ConstantArray* A2;
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000658 bool Str2IsCst = GetConstantStringInfo(Str2P, A2, Str2Len, Str2StartIdx);
659 if (Str2IsCst && Str2Len == 0) {
660 // strcmp(x,"") -> *x
661 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
662 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
663 CI->replaceAllUsesWith(V);
664 CI->eraseFromParent();
665 return true;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000666 }
667
Chris Lattnerc9ccc302007-04-07 00:01:51 +0000668 if (Str1IsCst && Str2IsCst && A1->isCString() && A2->isCString()) {
669 // strcmp(x, y) -> cnst (if both x and y are constant strings)
670 std::string S1 = A1->getAsString();
671 std::string S2 = A2->getAsString();
672 int R = strcmp(S1.c_str()+Str1StartIdx, S2.c_str()+Str2StartIdx);
673 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), R));
674 CI->eraseFromParent();
Reid Spencer4c444fe2005-04-30 03:17:54 +0000675 return true;
676 }
677 return false;
678 }
679} StrCmpOptimizer;
680
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000681/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000682/// function. It optimizes out cases where one or both arguments are constant
683/// and the result can be determined statically.
684/// @brief Simplify the strncmp library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000685struct VISIBILITY_HIDDEN StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000686public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000687 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000688 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000689
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000690 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000691 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
692 const FunctionType *FT = F->getFunctionType();
693 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 3 &&
694 FT->getParamType(0) == FT->getParamType(1) &&
695 FT->getParamType(0) == PointerType::get(Type::Int8Ty) &&
696 isa<IntegerType>(FT->getParamType(2));
Reid Spencer49fa07042005-05-03 01:43:45 +0000697 return false;
698 }
699
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000700 /// @brief Perform the strncmp optimization
701 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000702 // First, check to see if src and destination are the same. If they are,
703 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000704 // because the call is a no-op.
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000705 Value *Str1P = CI->getOperand(1);
706 Value *Str2P = CI->getOperand(2);
707 if (Str1P == Str2P) {
708 // strcmp(x,x) -> 0
709 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 0));
710 CI->eraseFromParent();
Reid Spencer49fa07042005-05-03 01:43:45 +0000711 return true;
712 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000713
Reid Spencer49fa07042005-05-03 01:43:45 +0000714 // Check the length argument, if it is Constant zero then the strings are
715 // considered equal.
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000716 ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3));
717 if (LengthArg && LengthArg->isZero()) {
718 // strncmp(x,y,0) -> 0
719 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 0));
720 CI->eraseFromParent();
721 return true;
Reid Spencer49fa07042005-05-03 01:43:45 +0000722 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000723
724 uint64_t Str1Len, Str1StartIdx;
725 ConstantArray *A1;
726 bool Str1IsCst = GetConstantStringInfo(Str1P, A1, Str1Len, Str1StartIdx);
727 if (Str1IsCst && Str1Len == 0) {
728 // strcmp("", x) -> *x
729 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
730 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
731 CI->replaceAllUsesWith(V);
732 CI->eraseFromParent();
733 return true;
Reid Spencer49fa07042005-05-03 01:43:45 +0000734 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000735
736 uint64_t Str2Len, Str2StartIdx;
Reid Spencer49fa07042005-05-03 01:43:45 +0000737 ConstantArray* A2;
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000738 bool Str2IsCst = GetConstantStringInfo(Str2P, A2, Str2Len, Str2StartIdx);
739 if (Str2IsCst && Str2Len == 0) {
740 // strcmp(x,"") -> *x
741 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
742 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
743 CI->replaceAllUsesWith(V);
744 CI->eraseFromParent();
745 return true;
Reid Spencer49fa07042005-05-03 01:43:45 +0000746 }
Chris Lattnerf9ee6472007-04-07 00:06:57 +0000747
748 if (LengthArg && Str1IsCst && Str2IsCst && A1->isCString() &&
749 A2->isCString()) {
750 // strcmp(x, y) -> cnst (if both x and y are constant strings)
751 std::string S1 = A1->getAsString();
752 std::string S2 = A2->getAsString();
753 int R = strncmp(S1.c_str()+Str1StartIdx, S2.c_str()+Str2StartIdx,
754 LengthArg->getZExtValue());
755 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), R));
756 CI->eraseFromParent();
Reid Spencer49fa07042005-05-03 01:43:45 +0000757 return true;
758 }
759 return false;
760 }
761} StrNCmpOptimizer;
762
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000763/// This LibCallOptimization will simplify a call to the strcpy library
764/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000765/// (1) If src and dest are the same and not volatile, just return dest
766/// (2) If the src is a constant then we can convert to llvm.memmove
767/// @brief Simplify the strcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000768struct VISIBILITY_HIDDEN StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000769public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000770 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000771 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000772
773 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000774 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerc635f472006-12-31 05:48:39 +0000775 if (f->getReturnType() == PointerType::get(Type::Int8Ty))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000776 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000777 Function::const_arg_iterator AI = f->arg_begin();
Reid Spencerc635f472006-12-31 05:48:39 +0000778 if (AI++->getType() == PointerType::get(Type::Int8Ty))
779 if (AI->getType() == PointerType::get(Type::Int8Ty)) {
Reid Spencere249a822005-04-27 07:54:40 +0000780 // Indicate this is a suitable call type.
781 return true;
782 }
783 }
784 return false;
785 }
786
787 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000788 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000789 // First, check to see if src and destination are the same. If they are,
790 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000791 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000792 // degenerate strcpy(X,X) case which should have "undefined" results
793 // according to the C specification. However, it occurs sometimes and
794 // we optimize it as a no-op.
795 Value* dest = ci->getOperand(1);
796 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000797 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000798 ci->replaceAllUsesWith(dest);
799 ci->eraseFromParent();
800 return true;
801 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000802
Reid Spencere249a822005-04-27 07:54:40 +0000803 // Get the length of the constant string referenced by the second operand,
804 // the "src" parameter. Fail the optimization if we can't get the length
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000805 // (note that GetConstantStringInfo does lots of checks to make sure this
Reid Spencere249a822005-04-27 07:54:40 +0000806 // is valid).
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000807 uint64_t len, StartIdx;
808 ConstantArray *A;
809 if (!GetConstantStringInfo(ci->getOperand(2), A, len, StartIdx))
Reid Spencere249a822005-04-27 07:54:40 +0000810 return false;
811
812 // If the constant string's length is zero we can optimize this by just
813 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000814 if (len == 0) {
Reid Spencerc635f472006-12-31 05:48:39 +0000815 new StoreInst(ConstantInt::get(Type::Int8Ty,0),ci->getOperand(1),ci);
Reid Spencere249a822005-04-27 07:54:40 +0000816 ci->replaceAllUsesWith(dest);
817 ci->eraseFromParent();
818 return true;
819 }
820
821 // Increment the length because we actually want to memcpy the null
822 // terminator as well.
823 len++;
824
Reid Spencere249a822005-04-27 07:54:40 +0000825 // We have enough information to now generate the memcpy call to
826 // do the concatenation for us.
Chris Lattnerade1c2b2007-02-13 05:58:53 +0000827 Value *vals[4] = {
828 dest, src,
829 ConstantInt::get(SLC.getIntPtrType(),len), // length
830 ConstantInt::get(Type::Int32Ty, 1) // alignment
831 };
832 new CallInst(SLC.get_memcpy(), vals, 4, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000833
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000834 // Finally, substitute the first operand of the strcat call for the
835 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000836 // kill the strcat CallInst.
837 ci->replaceAllUsesWith(dest);
838 ci->eraseFromParent();
839 return true;
840 }
841} StrCpyOptimizer;
842
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000843/// This LibCallOptimization will simplify a call to the strlen library
844/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000845/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000846/// @brief Simplify the strlen library function.
Reid Spencer557ab152007-02-05 23:32:05 +0000847struct VISIBILITY_HIDDEN StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000848 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000849 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000850
851 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000852 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000853 {
Reid Spencere249a822005-04-27 07:54:40 +0000854 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000855 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000856 if (Function::const_arg_iterator AI = f->arg_begin())
Reid Spencerc635f472006-12-31 05:48:39 +0000857 if (AI->getType() == PointerType::get(Type::Int8Ty))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000858 return true;
859 return false;
860 }
861
862 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000863 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000864 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000865 // Make sure we're dealing with an sbyte* here.
866 Value* str = ci->getOperand(1);
Reid Spencerc635f472006-12-31 05:48:39 +0000867 if (str->getType() != PointerType::get(Type::Int8Ty))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000868 return false;
869
870 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000871 if (ci->hasOneUse())
Reid Spencer266e42b2006-12-23 06:05:41 +0000872 // Is that single use a icmp operator?
873 if (ICmpInst* bop = dyn_cast<ICmpInst>(ci->use_back()))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000874 // Is it compared against a constant integer?
875 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
876 {
877 // Get the value the strlen result is compared to
Reid Spencere0fc4df2006-10-20 07:07:24 +0000878 uint64_t val = CI->getZExtValue();
Reid Spencer170ae7f2005-05-07 20:15:59 +0000879
880 // If its compared against length 0 with == or !=
881 if (val == 0 &&
Reid Spencer266e42b2006-12-23 06:05:41 +0000882 (bop->getPredicate() == ICmpInst::ICMP_EQ ||
883 bop->getPredicate() == ICmpInst::ICMP_NE))
Reid Spencer170ae7f2005-05-07 20:15:59 +0000884 {
885 // strlen(x) != 0 -> *x != 0
886 // strlen(x) == 0 -> *x == 0
887 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +0000888 ICmpInst* rbop = new ICmpInst(bop->getPredicate(), load,
Reid Spencerc635f472006-12-31 05:48:39 +0000889 ConstantInt::get(Type::Int8Ty,0),
Reid Spencer266e42b2006-12-23 06:05:41 +0000890 bop->getName()+".strlen", ci);
Reid Spencer170ae7f2005-05-07 20:15:59 +0000891 bop->replaceAllUsesWith(rbop);
892 bop->eraseFromParent();
893 ci->eraseFromParent();
894 return true;
895 }
896 }
897
898 // Get the length of the constant string operand
Chris Lattner9b2b8ab2007-04-06 22:54:17 +0000899 uint64_t len = 0, StartIdx;
900 ConstantArray *A;
901 if (!GetConstantStringInfo(ci->getOperand(1), A, len, StartIdx))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000902 return false;
903
Reid Spencer170ae7f2005-05-07 20:15:59 +0000904 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000905 const Type *Ty = SLC.getTargetData()->getIntPtrType();
Reid Spencer4720d4d2006-12-21 07:15:54 +0000906 ci->replaceAllUsesWith(ConstantInt::get(Ty, len));
Chris Lattnere17c5d02005-08-01 16:52:50 +0000907
Reid Spencerb4f7b832005-04-26 07:45:18 +0000908 ci->eraseFromParent();
909 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000910 }
911} StrLenOptimizer;
912
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000913/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
914/// is equal or not-equal to zero.
915static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
916 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
917 UI != E; ++UI) {
918 Instruction *User = cast<Instruction>(*UI);
Reid Spencer266e42b2006-12-23 06:05:41 +0000919 if (ICmpInst *IC = dyn_cast<ICmpInst>(User)) {
920 if ((IC->getPredicate() == ICmpInst::ICMP_NE ||
921 IC->getPredicate() == ICmpInst::ICMP_EQ) &&
922 isa<Constant>(IC->getOperand(1)) &&
923 cast<Constant>(IC->getOperand(1))->isNullValue())
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000924 continue;
925 } else if (CastInst *CI = dyn_cast<CastInst>(User))
Reid Spencer542964f2007-01-11 18:21:29 +0000926 if (CI->getType() == Type::Int1Ty)
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000927 continue;
928 // Unknown instruction.
929 return false;
930 }
931 return true;
932}
933
934/// This memcmpOptimization will simplify a call to the memcmp library
935/// function.
Reid Spencer557ab152007-02-05 23:32:05 +0000936struct VISIBILITY_HIDDEN memcmpOptimization : public LibCallOptimization {
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000937 /// @brief Default Constructor
938 memcmpOptimization()
939 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
940
941 /// @brief Make sure that the "memcmp" function has the right prototype
942 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
943 Function::const_arg_iterator AI = F->arg_begin();
944 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
945 if (!isa<PointerType>((++AI)->getType())) return false;
Chris Lattner03c49532007-01-15 02:27:26 +0000946 if (!(++AI)->getType()->isInteger()) return false;
947 if (!F->getReturnType()->isInteger()) return false;
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000948 return true;
949 }
950
951 /// Because of alignment and instruction information that we don't have, we
952 /// leave the bulk of this to the code generators.
953 ///
954 /// Note that we could do much more if we could force alignment on otherwise
955 /// small aligned allocas, or if we could indicate that loads have a small
956 /// alignment.
957 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
958 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
959
960 // If the two operands are the same, return zero.
961 if (LHS == RHS) {
962 // memcmp(s,s,x) -> 0
963 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
964 CI->eraseFromParent();
965 return true;
966 }
967
968 // Make sure we have a constant length.
969 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
970 if (!LenC) return false;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000971 uint64_t Len = LenC->getZExtValue();
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000972
973 // If the length is zero, this returns 0.
974 switch (Len) {
975 case 0:
976 // memcmp(s1,s2,0) -> 0
977 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
978 CI->eraseFromParent();
979 return true;
980 case 1: {
981 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
Reid Spencerc635f472006-12-31 05:48:39 +0000982 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000983 CastInst *Op1Cast = CastInst::create(
984 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
985 CastInst *Op2Cast = CastInst::create(
986 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000987 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
988 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
989 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
990 if (RV->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +0000991 RV = CastInst::createIntegerCast(RV, CI->getType(), false,
992 RV->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000993 CI->replaceAllUsesWith(RV);
994 CI->eraseFromParent();
995 return true;
996 }
997 case 2:
998 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
999 // TODO: IF both are aligned, use a short load/compare.
1000
1001 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
Reid Spencerc635f472006-12-31 05:48:39 +00001002 const Type *UCharPtr = PointerType::get(Type::Int8Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001003 CastInst *Op1Cast = CastInst::create(
1004 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
1005 CastInst *Op2Cast = CastInst::create(
1006 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001007 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
1008 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
1009 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
1010 CI->getName()+".d1", CI);
Reid Spencerc635f472006-12-31 05:48:39 +00001011 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001012 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
1013 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
1014 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +00001015 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001016 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
1017 CI->getName()+".d1", CI);
1018 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
1019 if (Or->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001020 Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/,
1021 Or->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001022 CI->replaceAllUsesWith(Or);
1023 CI->eraseFromParent();
1024 return true;
1025 }
1026 break;
1027 default:
1028 break;
1029 }
1030
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001031 return false;
1032 }
1033} memcmpOptimizer;
1034
1035
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001036/// This LibCallOptimization will simplify a call to the memcpy library
1037/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001038/// bytes depending on the length of the string and the alignment. Additional
1039/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001040/// @brief Simplify the memcpy library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001041struct VISIBILITY_HIDDEN LLVMMemCpyMoveOptzn : public LibCallOptimization {
Chris Lattnerea7986a2006-03-03 01:30:23 +00001042 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
1043 : LibCallOptimization(fname, desc) {}
Reid Spencerf2534c72005-04-25 21:11:48 +00001044
1045 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001046 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001047 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +00001048 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +00001049 }
1050
Reid Spencerb4f7b832005-04-26 07:45:18 +00001051 /// Because of alignment and instruction information that we don't have, we
1052 /// leave the bulk of this to the code generators. The optimization here just
1053 /// deals with a few degenerate cases where the length of the string and the
1054 /// alignment match the sizes of our intrinsic types so we can do a load and
1055 /// store instead of the memcpy call.
1056 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001057 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001058 // Make sure we have constant int values to work with
1059 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1060 if (!LEN)
1061 return false;
1062 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1063 if (!ALIGN)
1064 return false;
1065
1066 // If the length is larger than the alignment, we can't optimize
Reid Spencere0fc4df2006-10-20 07:07:24 +00001067 uint64_t len = LEN->getZExtValue();
1068 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001069 if (alignment == 0)
1070 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001071 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001072 return false;
1073
Reid Spencer08b49402005-04-27 17:46:54 +00001074 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001075 Value* dest = ci->getOperand(1);
1076 Value* src = ci->getOperand(2);
Reid Spencer4f98e622007-01-07 21:45:41 +00001077 const Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001078 switch (len)
1079 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001080 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001081 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001082 ci->eraseFromParent();
1083 return true;
Reid Spencerc635f472006-12-31 05:48:39 +00001084 case 1: castType = Type::Int8Ty; break;
1085 case 2: castType = Type::Int16Ty; break;
1086 case 4: castType = Type::Int32Ty; break;
1087 case 8: castType = Type::Int64Ty; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001088 default:
1089 return false;
1090 }
Reid Spencer08b49402005-04-27 17:46:54 +00001091
1092 // Cast source and dest to the right sized primitive and then load/store
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001093 CastInst* SrcCast = CastInst::create(Instruction::BitCast,
1094 src, PointerType::get(castType), src->getName()+".cast", ci);
1095 CastInst* DestCast = CastInst::create(Instruction::BitCast,
1096 dest, PointerType::get(castType),dest->getName()+".cast", ci);
Reid Spencer08b49402005-04-27 17:46:54 +00001097 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerde46e482006-11-02 20:25:50 +00001098 new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001099 ci->eraseFromParent();
1100 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001101 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001102};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001103
Chris Lattnerea7986a2006-03-03 01:30:23 +00001104/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1105/// functions.
1106LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1107 "Number of 'llvm.memcpy' calls simplified");
1108LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1109 "Number of 'llvm.memcpy' calls simplified");
1110LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1111 "Number of 'llvm.memmove' calls simplified");
1112LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1113 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001114
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001115/// This LibCallOptimization will simplify a call to the memset library
1116/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1117/// bytes depending on the length argument.
Reid Spencer557ab152007-02-05 23:32:05 +00001118struct VISIBILITY_HIDDEN LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001119 /// @brief Default Constructor
Chris Lattnerea7986a2006-03-03 01:30:23 +00001120 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001121 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001122
1123 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001124 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001125 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001126 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001127 }
1128
1129 /// Because of alignment and instruction information that we don't have, we
1130 /// leave the bulk of this to the code generators. The optimization here just
1131 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001132 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001133 /// store instead of the memcpy call. Other calls are transformed into the
1134 /// llvm.memset intrinsic.
1135 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001136 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001137 // Make sure we have constant int values to work with
1138 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1139 if (!LEN)
1140 return false;
1141 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1142 if (!ALIGN)
1143 return false;
1144
1145 // Extract the length and alignment
Reid Spencere0fc4df2006-10-20 07:07:24 +00001146 uint64_t len = LEN->getZExtValue();
1147 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001148
1149 // Alignment 0 is identity for alignment 1
1150 if (alignment == 0)
1151 alignment = 1;
1152
1153 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001154 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001155 // memset(d,c,0,a) -> noop
1156 ci->eraseFromParent();
1157 return true;
1158 }
1159
1160 // If the length is larger than the alignment, we can't optimize
1161 if (len > alignment)
1162 return false;
1163
1164 // Make sure we have a constant ubyte to work with so we can extract
1165 // the value to be filled.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001166 ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencer38cabd72005-05-03 07:23:44 +00001167 if (!FILL)
1168 return false;
Reid Spencerc635f472006-12-31 05:48:39 +00001169 if (FILL->getType() != Type::Int8Ty)
Reid Spencer38cabd72005-05-03 07:23:44 +00001170 return false;
1171
1172 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001173
Reid Spencer38cabd72005-05-03 07:23:44 +00001174 // Extract the fill character
Reid Spencere0fc4df2006-10-20 07:07:24 +00001175 uint64_t fill_char = FILL->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001176 uint64_t fill_value = fill_char;
1177
1178 // Get the type we will cast to, based on size of memory area to fill, and
1179 // and the value we will store there.
1180 Value* dest = ci->getOperand(1);
Reid Spencer4f98e622007-01-07 21:45:41 +00001181 const Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001182 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001183 case 1:
Reid Spencerc635f472006-12-31 05:48:39 +00001184 castType = Type::Int8Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001185 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001186 case 2:
Reid Spencerc635f472006-12-31 05:48:39 +00001187 castType = Type::Int16Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001188 fill_value |= fill_char << 8;
1189 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001190 case 4:
Reid Spencerc635f472006-12-31 05:48:39 +00001191 castType = Type::Int32Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001192 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1193 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001194 case 8:
Reid Spencerc635f472006-12-31 05:48:39 +00001195 castType = Type::Int64Ty;
Reid Spencer38cabd72005-05-03 07:23:44 +00001196 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1197 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1198 fill_value |= fill_char << 56;
1199 break;
1200 default:
1201 return false;
1202 }
1203
1204 // Cast dest to the right sized primitive and then load/store
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001205 CastInst* DestCast = new BitCastInst(dest, PointerType::get(castType),
1206 dest->getName()+".cast", ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001207 new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
Reid Spencer38cabd72005-05-03 07:23:44 +00001208 ci->eraseFromParent();
1209 return true;
1210 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001211};
1212
1213LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1214LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1215
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001216
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001217/// This LibCallOptimization will simplify calls to the "pow" library
1218/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001219/// substitutes the appropriate value.
1220/// @brief Simplify the pow library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001221struct VISIBILITY_HIDDEN PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001222public:
1223 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001224 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001225 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001226
Reid Spencer93616972005-04-29 09:39:47 +00001227 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001228 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001229 // Just make sure this has 2 arguments
1230 return (f->arg_size() == 2);
1231 }
1232
1233 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001234 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001235 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1236 Value* base = ci->getOperand(1);
1237 Value* expn = ci->getOperand(2);
1238 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1239 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001240 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001241 // pow(1.0,x) -> 1.0
1242 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1243 ci->eraseFromParent();
1244 return true;
1245 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001246 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001247 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001248 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001249 // pow(x,0.0) -> 1.0
1250 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1251 ci->eraseFromParent();
1252 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001253 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001254 // pow(x,0.5) -> sqrt(x)
1255 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1256 ci->getName()+".pow",ci);
1257 ci->replaceAllUsesWith(sqrt_inst);
1258 ci->eraseFromParent();
1259 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001260 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001261 // pow(x,1.0) -> x
1262 ci->replaceAllUsesWith(base);
1263 ci->eraseFromParent();
1264 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001265 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001266 // pow(x,-1.0) -> 1.0/x
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001267 BinaryOperator* div_inst= BinaryOperator::createFDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001268 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1269 ci->replaceAllUsesWith(div_inst);
1270 ci->eraseFromParent();
1271 return true;
1272 }
1273 }
1274 return false; // opt failed
1275 }
1276} PowOptimizer;
1277
Evan Cheng1fc40252006-06-16 08:36:35 +00001278/// This LibCallOptimization will simplify calls to the "printf" library
1279/// function. It looks for cases where the result of printf is not used and the
1280/// operation can be reduced to something simpler.
1281/// @brief Simplify the printf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001282struct VISIBILITY_HIDDEN PrintfOptimization : public LibCallOptimization {
Evan Cheng1fc40252006-06-16 08:36:35 +00001283public:
1284 /// @brief Default Constructor
1285 PrintfOptimization() : LibCallOptimization("printf",
1286 "Number of 'printf' calls simplified") {}
1287
1288 /// @brief Make sure that the "printf" function has the right prototype
1289 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1290 // Just make sure this has at least 1 arguments
1291 return (f->arg_size() >= 1);
1292 }
1293
1294 /// @brief Perform the printf optimization.
1295 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
1296 // If the call has more than 2 operands, we can't optimize it
1297 if (ci->getNumOperands() > 3 || ci->getNumOperands() <= 2)
1298 return false;
1299
1300 // If the result of the printf call is used, none of these optimizations
1301 // can be made.
1302 if (!ci->use_empty())
1303 return false;
1304
1305 // All the optimizations depend on the length of the first argument and the
1306 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001307 uint64_t len, StartIdx;
Evan Cheng1fc40252006-06-16 08:36:35 +00001308 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001309 if (!GetConstantStringInfo(ci->getOperand(1), CA, len, StartIdx))
Evan Cheng1fc40252006-06-16 08:36:35 +00001310 return false;
1311
1312 if (len != 2 && len != 3)
1313 return false;
1314
1315 // The first character has to be a %
1316 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001317 if (CI->getZExtValue() != '%')
Evan Cheng1fc40252006-06-16 08:36:35 +00001318 return false;
1319
1320 // Get the second character and switch on its value
1321 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001322 switch (CI->getZExtValue()) {
Evan Cheng1fc40252006-06-16 08:36:35 +00001323 case 's':
1324 {
1325 if (len != 3 ||
Reid Spencere0fc4df2006-10-20 07:07:24 +00001326 dyn_cast<ConstantInt>(CA->getOperand(2))->getZExtValue() != '\n')
Evan Cheng1fc40252006-06-16 08:36:35 +00001327 return false;
1328
1329 // printf("%s\n",str) -> puts(str)
Evan Cheng1fc40252006-06-16 08:36:35 +00001330 std::vector<Value*> args;
Chris Lattner34acba42007-01-07 08:12:01 +00001331 new CallInst(SLC.get_puts(), CastToCStr(ci->getOperand(2), *ci),
1332 ci->getName(), ci);
1333 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, len));
Evan Cheng1fc40252006-06-16 08:36:35 +00001334 break;
1335 }
1336 case 'c':
1337 {
1338 // printf("%c",c) -> putchar(c)
1339 if (len != 2)
1340 return false;
1341
Chris Lattner34acba42007-01-07 08:12:01 +00001342 CastInst *Char = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001343 ci->getOperand(2), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001344 new CallInst(SLC.get_putchar(), Char, "", ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001345 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, 1));
Evan Cheng1fc40252006-06-16 08:36:35 +00001346 break;
1347 }
1348 default:
1349 return false;
1350 }
1351 ci->eraseFromParent();
1352 return true;
1353 }
1354} PrintfOptimizer;
1355
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001356/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001357/// function. It looks for cases where the result of fprintf is not used and the
1358/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001359/// @brief Simplify the fprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001360struct VISIBILITY_HIDDEN FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001361public:
1362 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001363 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001364 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001365
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001366 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001367 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001368 // Just make sure this has at least 2 arguments
1369 return (f->arg_size() >= 2);
1370 }
1371
1372 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001373 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001374 // If the call has more than 3 operands, we can't optimize it
1375 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1376 return false;
1377
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001378 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001379 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001380 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001381 return false;
1382
1383 // All the optimizations depend on the length of the second argument and the
1384 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001385 uint64_t len, StartIdx;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001386 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001387 if (!GetConstantStringInfo(ci->getOperand(2), CA, len, StartIdx))
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001388 return false;
1389
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001390 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001391 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001392 for (unsigned i = 0; i < len; ++i) {
1393 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001394 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001395 if (CI->getZExtValue() == '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001396 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001397 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001398 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001399 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001400 }
1401
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001402 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001403 const Type* FILEptr_type = ci->getOperand(1)->getType();
John Criswell4642afd2005-06-29 15:03:18 +00001404
1405 // Make sure that the fprintf() and fwrite() functions both take the
1406 // same type of char pointer.
Chris Lattner34acba42007-01-07 08:12:01 +00001407 if (ci->getOperand(2)->getType() != PointerType::get(Type::Int8Ty))
John Criswell4642afd2005-06-29 15:03:18 +00001408 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001409
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001410 Value* args[4] = {
1411 ci->getOperand(2),
1412 ConstantInt::get(SLC.getIntPtrType(),len),
1413 ConstantInt::get(SLC.getIntPtrType(),1),
1414 ci->getOperand(1)
1415 };
1416 new CallInst(SLC.get_fwrite(FILEptr_type), args, 4, ci->getName(), ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001417 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001418 ci->eraseFromParent();
1419 return true;
1420 }
1421
1422 // The remaining optimizations require the format string to be length 2
1423 // "%s" or "%c".
1424 if (len != 2)
1425 return false;
1426
1427 // The first character has to be a %
1428 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001429 if (CI->getZExtValue() != '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001430 return false;
1431
1432 // Get the second character and switch on its value
1433 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001434 switch (CI->getZExtValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001435 case 's':
1436 {
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001437 uint64_t len, StartIdx;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001438 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001439 if (GetConstantStringInfo(ci->getOperand(3), CA, len, StartIdx)) {
Evan Chengf2ea5872006-06-16 04:52:30 +00001440 // fprintf(file,"%s",str) -> fwrite(str,strlen(str),1,file)
1441 const Type* FILEptr_type = ci->getOperand(1)->getType();
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001442 Value* args[4] = {
1443 CastToCStr(ci->getOperand(3), *ci),
1444 ConstantInt::get(SLC.getIntPtrType(), len),
1445 ConstantInt::get(SLC.getIntPtrType(), 1),
1446 ci->getOperand(1)
1447 };
1448 new CallInst(SLC.get_fwrite(FILEptr_type), args, 4,ci->getName(), ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001449 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001450 } else {
1451 // fprintf(file,"%s",str) -> fputs(str,file)
1452 const Type* FILEptr_type = ci->getOperand(1)->getType();
Chris Lattner34acba42007-01-07 08:12:01 +00001453 new CallInst(SLC.get_fputs(FILEptr_type),
1454 CastToCStr(ci->getOperand(3), *ci),
1455 ci->getOperand(1), ci->getName(),ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001456 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001457 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001458 break;
1459 }
1460 case 'c':
1461 {
Evan Cheng1fc40252006-06-16 08:36:35 +00001462 // fprintf(file,"%c",c) -> fputc(c,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001463 const Type* FILEptr_type = ci->getOperand(1)->getType();
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001464 CastInst* cast = CastInst::createSExtOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001465 ci->getOperand(3), Type::Int32Ty, CI->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001466 new CallInst(SLC.get_fputc(FILEptr_type), cast,ci->getOperand(1),"",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001467 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001468 break;
1469 }
1470 default:
1471 return false;
1472 }
1473 ci->eraseFromParent();
1474 return true;
1475 }
1476} FPrintFOptimizer;
1477
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001478/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001479/// function. It looks for cases where the result of sprintf is not used and the
1480/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001481/// @brief Simplify the sprintf library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001482struct VISIBILITY_HIDDEN SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001483public:
1484 /// @brief Default Constructor
1485 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001486 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001487
Reid Spencer1e520fd2005-05-04 03:20:21 +00001488 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001489 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001490 // Just make sure this has at least 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001491 return (f->getReturnType() == Type::Int32Ty && f->arg_size() >= 2);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001492 }
1493
1494 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001495 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001496 // If the call has more than 3 operands, we can't optimize it
1497 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1498 return false;
1499
1500 // All the optimizations depend on the length of the second argument and the
1501 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001502 uint64_t len, StartIdx;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001503 ConstantArray* CA = 0;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001504 if (!GetConstantStringInfo(ci->getOperand(2), CA, len, StartIdx))
Reid Spencer1e520fd2005-05-04 03:20:21 +00001505 return false;
1506
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001507 if (ci->getNumOperands() == 3) {
1508 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001509 // If the length is 0, we just need to store a null byte
Reid Spencerc635f472006-12-31 05:48:39 +00001510 new StoreInst(ConstantInt::get(Type::Int8Ty,0),ci->getOperand(1),ci);
1511 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001512 ci->eraseFromParent();
1513 return true;
1514 }
1515
1516 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001517 for (unsigned i = 0; i < len; ++i) {
1518 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001519 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001520 if (CI->getZExtValue() == '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001521 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001522 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001523 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001524 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001525 }
1526
1527 // Increment length because we want to copy the null byte too
1528 len++;
1529
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001530 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001531 Value *args[4] = {
1532 ci->getOperand(1),
1533 ci->getOperand(2),
1534 ConstantInt::get(SLC.getIntPtrType(),len),
1535 ConstantInt::get(Type::Int32Ty, 1)
1536 };
1537 new CallInst(SLC.get_memcpy(), args, 4, "", ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001538 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001539 ci->eraseFromParent();
1540 return true;
1541 }
1542
1543 // The remaining optimizations require the format string to be length 2
1544 // "%s" or "%c".
1545 if (len != 2)
1546 return false;
1547
1548 // The first character has to be a %
1549 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001550 if (CI->getZExtValue() != '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001551 return false;
1552
1553 // Get the second character and switch on its value
1554 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001555 switch (CI->getZExtValue()) {
Chris Lattner175463a2005-09-24 22:17:06 +00001556 case 's': {
1557 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Chris Lattner34acba42007-01-07 08:12:01 +00001558 Value *Len = new CallInst(SLC.get_strlen(),
1559 CastToCStr(ci->getOperand(3), *ci),
Chris Lattner175463a2005-09-24 22:17:06 +00001560 ci->getOperand(3)->getName()+".len", ci);
1561 Value *Len1 = BinaryOperator::createAdd(Len,
1562 ConstantInt::get(Len->getType(), 1),
1563 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001564 if (Len1->getType() != SLC.getIntPtrType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001565 Len1 = CastInst::createIntegerCast(Len1, SLC.getIntPtrType(), false,
1566 Len1->getName(), ci);
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001567 Value *args[4] = {
1568 CastToCStr(ci->getOperand(1), *ci),
1569 CastToCStr(ci->getOperand(3), *ci),
1570 Len1,
1571 ConstantInt::get(Type::Int32Ty,1)
1572 };
1573 new CallInst(SLC.get_memcpy(), args, 4, "", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001574
1575 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001576 if (!ci->use_empty()) {
1577 if (Len->getType() != ci->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001578 Len = CastInst::createIntegerCast(Len, ci->getType(), false,
1579 Len->getName(), ci);
Chris Lattnerf4877682005-09-25 07:06:48 +00001580 ci->replaceAllUsesWith(Len);
1581 }
Chris Lattner175463a2005-09-24 22:17:06 +00001582 ci->eraseFromParent();
1583 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001584 }
Chris Lattner175463a2005-09-24 22:17:06 +00001585 case 'c': {
1586 // sprintf(dest,"%c",chr) -> store chr, dest
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001587 CastInst* cast = CastInst::createTruncOrBitCast(
Reid Spencerc635f472006-12-31 05:48:39 +00001588 ci->getOperand(3), Type::Int8Ty, "char", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001589 new StoreInst(cast, ci->getOperand(1), ci);
1590 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001591 ConstantInt::get(Type::Int32Ty,1),ci->getOperand(1)->getName()+".end",
Chris Lattner175463a2005-09-24 22:17:06 +00001592 ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001593 new StoreInst(ConstantInt::get(Type::Int8Ty,0),gep,ci);
1594 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Chris Lattner175463a2005-09-24 22:17:06 +00001595 ci->eraseFromParent();
1596 return true;
1597 }
1598 }
1599 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001600 }
1601} SPrintFOptimizer;
1602
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001603/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001604/// function. It looks for cases where the result of fputs is not used and the
1605/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001606/// @brief Simplify the puts library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001607struct VISIBILITY_HIDDEN PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001608public:
1609 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001610 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001611 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001612
Reid Spencer93616972005-04-29 09:39:47 +00001613 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001614 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001615 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001616 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001617 }
1618
1619 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001620 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001621 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001622 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001623 return false;
1624
1625 // All the optimizations depend on the length of the first argument and the
1626 // fact that it is a constant string array. Check that now
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001627 uint64_t len, StartIdx;
1628 ConstantArray *CA;
1629 if (!GetConstantStringInfo(ci->getOperand(1), CA, len, StartIdx))
Reid Spencer93616972005-04-29 09:39:47 +00001630 return false;
1631
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001632 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001633 case 0:
1634 // fputs("",F) -> noop
1635 break;
1636 case 1:
1637 {
1638 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001639 const Type* FILEptr_type = ci->getOperand(2)->getType();
Reid Spencer93616972005-04-29 09:39:47 +00001640 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1641 ci->getOperand(1)->getName()+".byte",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001642 CastInst* casti = new SExtInst(loadi, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001643 loadi->getName()+".int", ci);
Chris Lattner34acba42007-01-07 08:12:01 +00001644 new CallInst(SLC.get_fputc(FILEptr_type), casti,
1645 ci->getOperand(2), "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001646 break;
1647 }
1648 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001649 {
Reid Spencer93616972005-04-29 09:39:47 +00001650 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001651 const Type* FILEptr_type = ci->getOperand(2)->getType();
Chris Lattnerade1c2b2007-02-13 05:58:53 +00001652 Value *parms[4] = {
1653 ci->getOperand(1),
1654 ConstantInt::get(SLC.getIntPtrType(),len),
1655 ConstantInt::get(SLC.getIntPtrType(),1),
1656 ci->getOperand(2)
1657 };
1658 new CallInst(SLC.get_fwrite(FILEptr_type), parms, 4, "", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001659 break;
1660 }
1661 }
1662 ci->eraseFromParent();
1663 return true; // success
1664 }
1665} PutsOptimizer;
1666
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001667/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001668/// function. It simply does range checks the parameter explicitly.
1669/// @brief Simplify the isdigit library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001670struct VISIBILITY_HIDDEN isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001671public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001672 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001673 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001674
Chris Lattner5f6035f2005-09-29 06:16:11 +00001675 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001676 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001677 // Just make sure this has 1 argument
1678 return (f->arg_size() == 1);
1679 }
1680
1681 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001682 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1683 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001684 // isdigit(c) -> 0 or 1, if 'c' is constant
Reid Spencere0fc4df2006-10-20 07:07:24 +00001685 uint64_t val = CI->getZExtValue();
Reid Spencer282d0572005-05-04 18:58:28 +00001686 if (val >= '0' && val <='9')
Reid Spencerc635f472006-12-31 05:48:39 +00001687 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,1));
Reid Spencer282d0572005-05-04 18:58:28 +00001688 else
Reid Spencerc635f472006-12-31 05:48:39 +00001689 ci->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty,0));
Reid Spencer282d0572005-05-04 18:58:28 +00001690 ci->eraseFromParent();
1691 return true;
1692 }
1693
1694 // isdigit(c) -> (unsigned)c - '0' <= 9
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001695 CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
Reid Spencerc635f472006-12-31 05:48:39 +00001696 Type::Int32Ty, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001697 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencerc635f472006-12-31 05:48:39 +00001698 ConstantInt::get(Type::Int32Ty,0x30),
Reid Spencer282d0572005-05-04 18:58:28 +00001699 ci->getOperand(1)->getName()+".sub",ci);
Reid Spencer266e42b2006-12-23 06:05:41 +00001700 ICmpInst* setcond_inst = new ICmpInst(ICmpInst::ICMP_ULE,sub_inst,
Reid Spencerc635f472006-12-31 05:48:39 +00001701 ConstantInt::get(Type::Int32Ty,9),
Reid Spencer282d0572005-05-04 18:58:28 +00001702 ci->getOperand(1)->getName()+".cmp",ci);
Reid Spencerc635f472006-12-31 05:48:39 +00001703 CastInst* c2 = new ZExtInst(setcond_inst, Type::Int32Ty,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001704 ci->getOperand(1)->getName()+".isdigit", ci);
Reid Spencer282d0572005-05-04 18:58:28 +00001705 ci->replaceAllUsesWith(c2);
1706 ci->eraseFromParent();
1707 return true;
1708 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001709} isdigitOptimizer;
1710
Reid Spencer557ab152007-02-05 23:32:05 +00001711struct VISIBILITY_HIDDEN isasciiOptimization : public LibCallOptimization {
Chris Lattner87ef9432005-09-29 06:17:27 +00001712public:
1713 isasciiOptimization()
1714 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1715
1716 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner03c49532007-01-15 02:27:26 +00001717 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1718 F->getReturnType()->isInteger();
Chris Lattner87ef9432005-09-29 06:17:27 +00001719 }
1720
1721 /// @brief Perform the isascii optimization.
1722 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1723 // isascii(c) -> (unsigned)c < 128
1724 Value *V = CI->getOperand(1);
Reid Spencer266e42b2006-12-23 06:05:41 +00001725 Value *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, V,
1726 ConstantInt::get(V->getType(), 128),
1727 V->getName()+".isascii", CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001728 if (Cmp->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001729 Cmp = new BitCastInst(Cmp, CI->getType(), Cmp->getName(), CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001730 CI->replaceAllUsesWith(Cmp);
1731 CI->eraseFromParent();
1732 return true;
1733 }
1734} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001735
Reid Spencer282d0572005-05-04 18:58:28 +00001736
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001737/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001738/// function. It simply does the corresponding and operation to restrict the
1739/// range of values to the ASCII character set (0-127).
1740/// @brief Simplify the toascii library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001741struct VISIBILITY_HIDDEN ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001742public:
1743 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001744 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001745 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001746
Reid Spencer4c444fe2005-04-30 03:17:54 +00001747 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001748 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001749 // Just make sure this has 2 arguments
1750 return (f->arg_size() == 1);
1751 }
1752
1753 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001754 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001755 // toascii(c) -> (c & 0x7f)
1756 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001757 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001758 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1759 ci->replaceAllUsesWith(and_inst);
1760 ci->eraseFromParent();
1761 return true;
1762 }
1763} ToAsciiOptimizer;
1764
Reid Spencerb195fcd2005-05-14 16:42:52 +00001765/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001766/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001767/// optimization is to compute the result at compile time if the argument is
1768/// a constant.
1769/// @brief Simplify the ffs library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001770struct VISIBILITY_HIDDEN FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001771protected:
1772 /// @brief Subclass Constructor
1773 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001774 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001775
1776public:
1777 /// @brief Default Constructor
1778 FFSOptimization() : LibCallOptimization("ffs",
1779 "Number of 'ffs' calls simplified") {}
1780
Chris Lattner801f4752006-01-17 18:27:17 +00001781 /// @brief Make sure that the "ffs" function has the right prototype
1782 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001783 // Just make sure this has 2 arguments
Reid Spencerc635f472006-12-31 05:48:39 +00001784 return F->arg_size() == 1 && F->getReturnType() == Type::Int32Ty;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001785 }
1786
1787 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001788 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1789 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001790 // ffs(cnst) -> bit#
1791 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001792 // ffsll(cnst) -> bit#
Reid Spencere0fc4df2006-10-20 07:07:24 +00001793 uint64_t val = CI->getZExtValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001794 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001795 if (val) {
1796 ++result;
1797 while ((val & 1) == 0) {
1798 ++result;
1799 val >>= 1;
1800 }
Reid Spencer17f77842005-05-15 21:19:45 +00001801 }
Reid Spencerc635f472006-12-31 05:48:39 +00001802 TheCall->replaceAllUsesWith(ConstantInt::get(Type::Int32Ty, result));
Chris Lattner801f4752006-01-17 18:27:17 +00001803 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001804 return true;
1805 }
Reid Spencer17f77842005-05-15 21:19:45 +00001806
Chris Lattner801f4752006-01-17 18:27:17 +00001807 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1808 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1809 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1810 const Type *ArgType = TheCall->getOperand(1)->getType();
Chris Lattner801f4752006-01-17 18:27:17 +00001811 const char *CTTZName;
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001812 assert(ArgType->getTypeID() == Type::IntegerTyID &&
1813 "llvm.cttz argument is not an integer?");
1814 unsigned BitWidth = cast<IntegerType>(ArgType)->getBitWidth();
Chris Lattner3b6058c2007-01-12 22:49:11 +00001815 if (BitWidth == 8)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001816 CTTZName = "llvm.cttz.i8";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001817 else if (BitWidth == 16)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001818 CTTZName = "llvm.cttz.i16";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001819 else if (BitWidth == 32)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001820 CTTZName = "llvm.cttz.i32";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001821 else {
1822 assert(BitWidth == 64 && "Unknown bitwidth");
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001823 CTTZName = "llvm.cttz.i64";
Chris Lattner3b6058c2007-01-12 22:49:11 +00001824 }
Chris Lattner801f4752006-01-17 18:27:17 +00001825
Chris Lattner34acba42007-01-07 08:12:01 +00001826 Constant *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
Chris Lattner801f4752006-01-17 18:27:17 +00001827 ArgType, NULL);
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001828 Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType,
1829 false/*ZExt*/, "tmp", TheCall);
Chris Lattner801f4752006-01-17 18:27:17 +00001830 Value *V2 = new CallInst(F, V, "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001831 V2 = CastInst::createIntegerCast(V2, Type::Int32Ty, false/*ZExt*/,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001832 "tmp", TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001833 V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::Int32Ty, 1),
Chris Lattner801f4752006-01-17 18:27:17 +00001834 "tmp", TheCall);
Reid Spencer266e42b2006-12-23 06:05:41 +00001835 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, V,
1836 Constant::getNullValue(V->getType()), "tmp",
1837 TheCall);
Reid Spencerc635f472006-12-31 05:48:39 +00001838 V2 = new SelectInst(Cond, ConstantInt::get(Type::Int32Ty, 0), V2,
Chris Lattner801f4752006-01-17 18:27:17 +00001839 TheCall->getName(), TheCall);
1840 TheCall->replaceAllUsesWith(V2);
1841 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001842 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001843 }
1844} FFSOptimizer;
1845
1846/// This LibCallOptimization will simplify calls to the "ffsl" library
1847/// calls. It simply uses FFSOptimization for which the transformation is
1848/// identical.
1849/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001850struct VISIBILITY_HIDDEN FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001851public:
1852 /// @brief Default Constructor
1853 FFSLOptimization() : FFSOptimization("ffsl",
1854 "Number of 'ffsl' calls simplified") {}
1855
1856} FFSLOptimizer;
1857
1858/// This LibCallOptimization will simplify calls to the "ffsll" library
1859/// calls. It simply uses FFSOptimization for which the transformation is
1860/// identical.
1861/// @brief Simplify the ffsl library function.
Reid Spencer557ab152007-02-05 23:32:05 +00001862struct VISIBILITY_HIDDEN FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001863public:
1864 /// @brief Default Constructor
1865 FFSLLOptimization() : FFSOptimization("ffsll",
1866 "Number of 'ffsll' calls simplified") {}
1867
1868} FFSLLOptimizer;
1869
Chris Lattner57a28632006-01-23 05:57:36 +00001870/// This optimizes unary functions that take and return doubles.
1871struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1872 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1873 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001874
Chris Lattner57a28632006-01-23 05:57:36 +00001875 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001876 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1877 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1878 F->getReturnType() == Type::DoubleTy;
1879 }
Chris Lattner57a28632006-01-23 05:57:36 +00001880
1881 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1882 /// float, strength reduce this to a float version of the function,
1883 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1884 /// when the target supports the destination function and where there can be
1885 /// no precision loss.
1886 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
Chris Lattner34acba42007-01-07 08:12:01 +00001887 Constant *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001888 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1889 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001890 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001891 CI->getName(), CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001892 New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
Chris Lattner4201cd12005-08-24 17:22:17 +00001893 CI->replaceAllUsesWith(New);
1894 CI->eraseFromParent();
1895 if (Cast->use_empty())
1896 Cast->eraseFromParent();
1897 return true;
1898 }
Chris Lattner57a28632006-01-23 05:57:36 +00001899 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001900 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001901};
1902
Chris Lattner57a28632006-01-23 05:57:36 +00001903
Reid Spencer557ab152007-02-05 23:32:05 +00001904struct VISIBILITY_HIDDEN FloorOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57a28632006-01-23 05:57:36 +00001905 FloorOptimization()
1906 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1907
1908 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001909#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001910 // If this is a float argument passed in, convert to floorf.
1911 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1912 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001913#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001914 return false; // opt failed
1915 }
1916} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001917
Reid Spencer557ab152007-02-05 23:32:05 +00001918struct VISIBILITY_HIDDEN CeilOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001919 CeilOptimization()
1920 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1921
1922 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1923#ifdef HAVE_CEILF
1924 // If this is a float argument passed in, convert to ceilf.
1925 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1926 return true;
1927#endif
1928 return false; // opt failed
1929 }
1930} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001931
Reid Spencer557ab152007-02-05 23:32:05 +00001932struct VISIBILITY_HIDDEN RoundOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001933 RoundOptimization()
1934 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1935
1936 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1937#ifdef HAVE_ROUNDF
1938 // If this is a float argument passed in, convert to roundf.
1939 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1940 return true;
1941#endif
1942 return false; // opt failed
1943 }
1944} RoundOptimizer;
1945
Reid Spencer557ab152007-02-05 23:32:05 +00001946struct VISIBILITY_HIDDEN RintOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001947 RintOptimization()
1948 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1949
1950 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1951#ifdef HAVE_RINTF
1952 // If this is a float argument passed in, convert to rintf.
1953 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1954 return true;
1955#endif
1956 return false; // opt failed
1957 }
1958} RintOptimizer;
1959
Reid Spencer557ab152007-02-05 23:32:05 +00001960struct VISIBILITY_HIDDEN NearByIntOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner57740402006-01-23 06:24:46 +00001961 NearByIntOptimization()
1962 : UnaryDoubleFPOptimizer("nearbyint",
1963 "Number of 'nearbyint' calls simplified") {}
1964
1965 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1966#ifdef HAVE_NEARBYINTF
1967 // If this is a float argument passed in, convert to nearbyintf.
1968 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1969 return true;
1970#endif
1971 return false; // opt failed
1972 }
1973} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001974
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001975/// GetConstantStringInfo - This function computes the length of a
1976/// null-terminated constant array of integers. This function can't rely on the
1977/// size of the constant array because there could be a null terminator in the
1978/// middle of the array.
1979///
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001980/// We also have to bail out if we find a non-integer constant initializer
1981/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001982/// below checks each of these conditions and will return true only if all
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00001983/// conditions are met. If the conditions aren't met, this returns false.
1984///
1985/// If successful, the \p Array param is set to the constant array being
1986/// indexed, the \p Length parameter is set to the length of the null-terminated
1987/// string pointed to by V, the \p StartIdx value is set to the first
1988/// element of the Array that V points to, and true is returned.
1989static bool GetConstantStringInfo(Value *V, ConstantArray *&Array,
1990 uint64_t &Length, uint64_t &StartIdx) {
1991 assert(V != 0 && "Invalid args to GetConstantStringInfo");
1992 // Initialize results.
1993 Length = 0;
1994 StartIdx = 0;
1995 Array = 0;
1996
1997 User *GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001998 // If the value is not a GEP instruction nor a constant expression with a
1999 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00002000 // any other way
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002001 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
Reid Spencere249a822005-04-27 07:54:40 +00002002 GEP = GEPI;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002003 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
2004 if (CE->getOpcode() != Instruction::GetElementPtr)
Reid Spencere249a822005-04-27 07:54:40 +00002005 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002006 GEP = CE;
2007 } else {
Reid Spencere249a822005-04-27 07:54:40 +00002008 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002009 }
Reid Spencere249a822005-04-27 07:54:40 +00002010
2011 // Make sure the GEP has exactly three arguments.
2012 if (GEP->getNumOperands() != 3)
2013 return false;
2014
2015 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002016 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002017 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencer2e54a152007-03-02 00:28:52 +00002018 if (!op1->isZero())
Reid Spencere249a822005-04-27 07:54:40 +00002019 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002020 } else
Reid Spencere249a822005-04-27 07:54:40 +00002021 return false;
2022
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002023 // If the second index isn't a ConstantInt, then this is a variable index
2024 // into the array. If this occurs, we can't say anything meaningful about
2025 // the string.
2026 StartIdx = 0;
2027 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
2028 StartIdx = CI->getZExtValue();
Reid Spencere249a822005-04-27 07:54:40 +00002029 else
2030 return false;
2031
2032 // The GEP instruction, constant or instruction, must reference a global
2033 // variable that is a constant and is initialized. The referenced constant
2034 // initializer is the array that we'll use for optimization.
2035 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
2036 if (!GV || !GV->isConstant() || !GV->hasInitializer())
2037 return false;
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002038 Constant *GlobalInit = GV->getInitializer();
Reid Spencere249a822005-04-27 07:54:40 +00002039
2040 // Handle the ConstantAggregateZero case
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002041 if (isa<ConstantAggregateZero>(GlobalInit)) {
Reid Spencere249a822005-04-27 07:54:40 +00002042 // This is a degenerate case. The initializer is constant zero so the
2043 // length of the string must be zero.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002044 Length = 0;
Reid Spencere249a822005-04-27 07:54:40 +00002045 return true;
2046 }
2047
2048 // Must be a Constant Array
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002049 Array = dyn_cast<ConstantArray>(GlobalInit);
2050 if (!Array) return false;
Reid Spencere249a822005-04-27 07:54:40 +00002051
2052 // Get the number of elements in the array
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002053 uint64_t NumElts = Array->getType()->getNumElements();
Reid Spencere249a822005-04-27 07:54:40 +00002054
2055 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002056 // the place the GEP refers to in the array.
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002057 Length = StartIdx;
2058 while (1) {
2059 if (Length >= NumElts)
2060 return false; // The array isn't null terminated.
2061
2062 Constant *Elt = Array->getOperand(Length);
2063 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt)) {
2064 // Check for the null terminator.
Reid Spencer2e54a152007-03-02 00:28:52 +00002065 if (CI->isZero())
Reid Spencere249a822005-04-27 07:54:40 +00002066 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002067 } else
Reid Spencere249a822005-04-27 07:54:40 +00002068 return false; // This array isn't suitable, non-int initializer
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002069 ++Length;
Reid Spencere249a822005-04-27 07:54:40 +00002070 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002071
Reid Spencere249a822005-04-27 07:54:40 +00002072 // Subtract out the initial value from the length
Chris Lattner9b2b8ab2007-04-06 22:54:17 +00002073 Length -= StartIdx;
Reid Spencere249a822005-04-27 07:54:40 +00002074 return true; // success!
2075}
2076
Reid Spencera7828ba2005-06-18 17:46:28 +00002077/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
2078/// inserting the cast before IP, and return the cast.
2079/// @brief Cast a value to a "C" string.
Reid Spencer557ab152007-02-05 23:32:05 +00002080static Value *CastToCStr(Value *V, Instruction &IP) {
Reid Spencera730cf82006-12-13 08:04:32 +00002081 assert(isa<PointerType>(V->getType()) &&
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002082 "Can't cast non-pointer type to C string type");
Reid Spencerc635f472006-12-31 05:48:39 +00002083 const Type *SBPTy = PointerType::get(Type::Int8Ty);
Reid Spencera7828ba2005-06-18 17:46:28 +00002084 if (V->getType() != SBPTy)
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002085 return new BitCastInst(V, SBPTy, V->getName(), &IP);
Reid Spencera7828ba2005-06-18 17:46:28 +00002086 return V;
2087}
2088
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002089// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00002090// Additional cases that we need to add to this file:
2091//
Reid Spencer649ac282005-04-28 04:40:06 +00002092// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00002093// * cbrt(expN(X)) -> expN(x/3)
2094// * cbrt(sqrt(x)) -> pow(x,1/6)
2095// * cbrt(sqrt(x)) -> pow(x,1/9)
2096//
Reid Spencer649ac282005-04-28 04:40:06 +00002097// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00002098// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00002099//
2100// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00002101// * exp(log(x)) -> x
2102//
Reid Spencer649ac282005-04-28 04:40:06 +00002103// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00002104// * log(exp(x)) -> x
2105// * log(x**y) -> y*log(x)
2106// * log(exp(y)) -> y*log(e)
2107// * log(exp2(y)) -> y*log(2)
2108// * log(exp10(y)) -> y*log(10)
2109// * log(sqrt(x)) -> 0.5*log(x)
2110// * log(pow(x,y)) -> y*log(x)
2111//
2112// lround, lroundf, lroundl:
2113// * lround(cnst) -> cnst'
2114//
2115// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002116// * memcmp(x,y,l) -> cnst
2117// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002118//
Reid Spencer649ac282005-04-28 04:40:06 +00002119// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002120// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002121// (if s is a global constant array)
2122//
Reid Spencer649ac282005-04-28 04:40:06 +00002123// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002124// * pow(exp(x),y) -> exp(x*y)
2125// * pow(sqrt(x),y) -> pow(x,y*0.5)
2126// * pow(pow(x,y),z)-> pow(x,y*z)
2127//
2128// puts:
2129// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2130//
2131// round, roundf, roundl:
2132// * round(cnst) -> cnst'
2133//
2134// signbit:
2135// * signbit(cnst) -> cnst'
2136// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2137//
Reid Spencer649ac282005-04-28 04:40:06 +00002138// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002139// * sqrt(expN(x)) -> expN(x*0.5)
2140// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2141// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2142//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002143// stpcpy:
2144// * stpcpy(str, "literal") ->
2145// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002146// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002147// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2148// (if c is a constant integer and s is a constant string)
2149// * strrchr(s1,0) -> strchr(s1,0)
2150//
Reid Spencer649ac282005-04-28 04:40:06 +00002151// strncat:
2152// * strncat(x,y,0) -> x
2153// * strncat(x,y,0) -> x (if strlen(y) = 0)
2154// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2155//
Reid Spencer649ac282005-04-28 04:40:06 +00002156// strncpy:
2157// * strncpy(d,s,0) -> d
2158// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2159// (if s and l are constants)
2160//
2161// strpbrk:
2162// * strpbrk(s,a) -> offset_in_for(s,a)
2163// (if s and a are both constant strings)
2164// * strpbrk(s,"") -> 0
2165// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2166//
2167// strspn, strcspn:
2168// * strspn(s,a) -> const_int (if both args are constant)
2169// * strspn("",a) -> 0
2170// * strspn(s,"") -> 0
2171// * strcspn(s,a) -> const_int (if both args are constant)
2172// * strcspn("",a) -> 0
2173// * strcspn(s,"") -> strlen(a)
2174//
2175// strstr:
2176// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002177// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002178// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002179//
Reid Spencer649ac282005-04-28 04:40:06 +00002180// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002181// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002182//
Reid Spencer649ac282005-04-28 04:40:06 +00002183// trunc, truncf, truncl:
2184// * trunc(cnst) -> cnst'
2185//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002186//
Reid Spencer39a762d2005-04-25 02:53:12 +00002187}