blob: 79cdf28e0a4bfeeb02b241cade09828b81eb540c [file] [log] [blame]
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencer39a762d2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000010// This file implements a module pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
12// library functions). For example, a call to the function "exit(3)" that
Reid Spencer0b13cda2005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000014// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
Reid Spencer39a762d2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spencer18b99812005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
Reid Spencerade18212006-01-19 08:36:56 +000028#include "llvm/Config/config.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000029#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000030#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000031#include "llvm/Transforms/IPO.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000032using namespace llvm;
33
34namespace {
Reid Spencer39a762d2005-04-25 02:53:12 +000035
Reid Spencere249a822005-04-27 07:54:40 +000036/// This statistic keeps track of the total number of library calls that have
37/// been simplified regardless of which call it is.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000038Statistic<> SimplifiedLibCalls("simplify-libcalls",
Chris Lattner579b20b2005-08-07 20:02:04 +000039 "Number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000040
Reid Spencer7ddcfb32005-04-27 21:29:20 +000041// Forward declarations
Reid Spencere249a822005-04-27 07:54:40 +000042class LibCallOptimization;
43class SimplifyLibCalls;
Reid Spencer7ddcfb32005-04-27 21:29:20 +000044
Chris Lattner33081b42006-01-22 23:10:26 +000045/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer9fbad132005-05-21 01:27:04 +000046/// Therefore all subclasses are registered here at static initialization time
47/// and this list is what the SimplifyLibCalls pass uses to apply the individual
48/// optimizations to the call sites.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000049/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattner33081b42006-01-22 23:10:26 +000050static LibCallOptimization *OptList = 0;
Reid Spencer39a762d2005-04-25 02:53:12 +000051
Reid Spencere249a822005-04-27 07:54:40 +000052/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000053/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000054/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000055/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000056/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer7ddcfb32005-04-27 21:29:20 +000057/// or attempt to perform, the optimization(s) for the library call. Otherwise,
58/// OptimizeCall won't be called. Subclasses are responsible for providing the
59/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
60/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000061/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer7ddcfb32005-04-27 21:29:20 +000062/// semantics", typically a library function that is defined by an international
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000063/// standard. Because the semantics are well known, the optimizations can
Reid Spencer7ddcfb32005-04-27 21:29:20 +000064/// generally short-circuit actually calling the function if there's a simpler
65/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000066/// @brief Base class for library call optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +000067class LibCallOptimization {
Chris Lattner33081b42006-01-22 23:10:26 +000068 LibCallOptimization **Prev, *Next;
69 const char *FunctionName; ///< Name of the library call we optimize
70#ifndef NDEBUG
71 Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
72#endif
Jeff Cohen4bc952f2005-04-29 03:05:44 +000073public:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000074 /// The \p fname argument must be the name of the library function being
Reid Spencer7ddcfb32005-04-27 21:29:20 +000075 /// optimized by the subclass.
76 /// @brief Constructor that registers the optimization.
Chris Lattner33081b42006-01-22 23:10:26 +000077 LibCallOptimization(const char *FName, const char *Description)
78 : FunctionName(FName)
Reid Spencere95a6472005-04-27 00:05:45 +000079#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +000080 , occurrences("simplify-libcalls", Description)
Reid Spencere95a6472005-04-27 00:05:45 +000081#endif
Reid Spencer39a762d2005-04-25 02:53:12 +000082 {
Chris Lattner33081b42006-01-22 23:10:26 +000083 // Register this optimizer in the list of optimizations.
84 Next = OptList;
85 OptList = this;
86 Prev = &OptList;
87 if (Next) Next->Prev = &Next;
Reid Spencer39a762d2005-04-25 02:53:12 +000088 }
Chris Lattner33081b42006-01-22 23:10:26 +000089
90 /// getNext - All libcall optimizations are chained together into a list,
91 /// return the next one in the list.
92 LibCallOptimization *getNext() { return Next; }
Reid Spencer39a762d2005-04-25 02:53:12 +000093
Reid Spencer7ddcfb32005-04-27 21:29:20 +000094 /// @brief Deregister from the optlist
Chris Lattner33081b42006-01-22 23:10:26 +000095 virtual ~LibCallOptimization() {
96 *Prev = Next;
97 if (Next) Next->Prev = Prev;
98 }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000099
Reid Spencere249a822005-04-27 07:54:40 +0000100 /// The implementation of this function in subclasses should determine if
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000101 /// \p F is suitable for the optimization. This method is called by
102 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
103 /// sites of such a function if that function is not suitable in the first
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000104 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000105 /// false, otherwise. This function should also perform any lazy
106 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencere249a822005-04-27 07:54:40 +0000107 /// true. This avoids doing initialization until the optimizer is actually
108 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000109 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +0000110 virtual bool ValidateCalledFunction(
111 const Function* F, ///< The function that is the target of call sites
112 SimplifyLibCalls& SLC ///< The pass object invoking us
113 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000114
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000115 /// The implementations of this function in subclasses is the heart of the
116 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencere249a822005-04-27 07:54:40 +0000117 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000118 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencere249a822005-04-27 07:54:40 +0000119 /// against ci, the subclass is responsible for returning true and ensuring
120 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000121 /// @brief Optimize a call, if possible.
122 virtual bool OptimizeCall(
123 CallInst* ci, ///< The call instruction that should be optimized.
124 SimplifyLibCalls& SLC ///< The pass object invoking us
125 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000126
Reid Spencere249a822005-04-27 07:54:40 +0000127 /// @brief Get the name of the library call being optimized
Chris Lattner33081b42006-01-22 23:10:26 +0000128 const char *getFunctionName() const { return FunctionName; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000129
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000130 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000131 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000132#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000133 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000134#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000135 }
Reid Spencere249a822005-04-27 07:54:40 +0000136};
137
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000138/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000139/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000140/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000141/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000142/// class provides the basic infrastructure for handling runOnModule. Whenever
143/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000144/// validate the call (ValidateLibraryCall). If it is validated, then
145/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000146/// @brief A ModulePass for optimizing well-known function calls.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000147class SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000148public:
Reid Spencere249a822005-04-27 07:54:40 +0000149 /// We need some target data for accurate signature details that are
150 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000151 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000152 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000153 // Ask that the TargetData analysis be performed before us so we can use
154 // the target data.
155 Info.addRequired<TargetData>();
156 }
157
158 /// For this pass, process all of the function calls in the module, calling
159 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000160 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000161 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000162 reset(M);
163
164 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000165 hash_map<std::string, LibCallOptimization*> OptznMap;
166 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
167 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000168
169 // The call optimizations can be recursive. That is, the optimization might
170 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000171 // we make the LibCallOptimization instances very specific to the case they
172 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000173 // the module until we don't get any more optimizations possible.
174 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000175 do {
Reid Spencere249a822005-04-27 07:54:40 +0000176 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000177 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000178 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000179 // because they live in a runtime library somewhere and were (probably)
180 // not compiled by LLVM. So, we only act on external functions that
Reid Spencer38cabd72005-05-03 07:23:44 +0000181 // have external linkage and non-empty uses.
Reid Spencere249a822005-04-27 07:54:40 +0000182 if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty())
183 continue;
184
185 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000186 hash_map<std::string, LibCallOptimization*>::iterator OMI =
187 OptznMap.find(FI->getName());
188 if (OMI == OptznMap.end()) continue;
189
190 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000191
192 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000193 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000194 continue;
195
196 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000197 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000198 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000199 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000200 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000201 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000202 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000203 ++SimplifiedLibCalls;
204 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000205 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000206 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000207 }
208 }
209 }
Reid Spencere249a822005-04-27 07:54:40 +0000210 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000211
Reid Spencere249a822005-04-27 07:54:40 +0000212 return result;
213 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000214
Reid Spencere249a822005-04-27 07:54:40 +0000215 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000216 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000217
Reid Spencere249a822005-04-27 07:54:40 +0000218 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000219 TargetData* getTargetData() const { return TD; }
220
221 /// @brief Return the size_t type -- syntactic shortcut
222 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
223
Evan Cheng1fc40252006-06-16 08:36:35 +0000224 /// @brief Return a Function* for the putchar libcall
225 Function* get_putchar() {
226 if (!putchar_func)
227 putchar_func = M->getOrInsertFunction("putchar", Type::IntTy, Type::IntTy,
228 NULL);
229 return putchar_func;
230 }
231
232 /// @brief Return a Function* for the puts libcall
233 Function* get_puts() {
234 if (!puts_func)
235 puts_func = M->getOrInsertFunction("puts", Type::IntTy,
236 PointerType::get(Type::SByteTy),
237 NULL);
238 return puts_func;
239 }
240
Reid Spencer93616972005-04-29 09:39:47 +0000241 /// @brief Return a Function* for the fputc libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000242 Function* get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000243 if (!fputc_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000244 fputc_func = M->getOrInsertFunction("fputc", Type::IntTy, Type::IntTy,
245 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000246 return fputc_func;
247 }
248
Evan Chengf2ea5872006-06-16 04:52:30 +0000249 /// @brief Return a Function* for the fputs libcall
250 Function* get_fputs(const Type* FILEptr_type) {
251 if (!fputs_func)
252 fputs_func = M->getOrInsertFunction("fputs", Type::IntTy,
253 PointerType::get(Type::SByteTy),
254 FILEptr_type, NULL);
255 return fputs_func;
256 }
257
Reid Spencer93616972005-04-29 09:39:47 +0000258 /// @brief Return a Function* for the fwrite libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000259 Function* get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000260 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000261 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
262 PointerType::get(Type::SByteTy),
263 TD->getIntPtrType(),
264 TD->getIntPtrType(),
265 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000266 return fwrite_func;
267 }
268
269 /// @brief Return a Function* for the sqrt libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000270 Function* get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000271 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000272 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
273 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000274 return sqrt_func;
275 }
Reid Spencere249a822005-04-27 07:54:40 +0000276
277 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000278 Function* get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000279 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000280 strcpy_func = M->getOrInsertFunction("strcpy",
281 PointerType::get(Type::SByteTy),
282 PointerType::get(Type::SByteTy),
283 PointerType::get(Type::SByteTy),
284 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000285 return strcpy_func;
286 }
287
288 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000289 Function* get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000290 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000291 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
292 PointerType::get(Type::SByteTy),
293 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000294 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000295 }
296
Reid Spencer38cabd72005-05-03 07:23:44 +0000297 /// @brief Return a Function* for the memchr libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000298 Function* get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000299 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000300 memchr_func = M->getOrInsertFunction("memchr",
301 PointerType::get(Type::SByteTy),
302 PointerType::get(Type::SByteTy),
303 Type::IntTy, TD->getIntPtrType(),
304 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000305 return memchr_func;
306 }
307
Reid Spencere249a822005-04-27 07:54:40 +0000308 /// @brief Return a Function* for the memcpy libcall
Chris Lattner4201cd12005-08-24 17:22:17 +0000309 Function* get_memcpy() {
310 if (!memcpy_func) {
311 const Type *SBP = PointerType::get(Type::SByteTy);
Chris Lattnerea7986a2006-03-03 01:30:23 +0000312 const char *N = TD->getIntPtrType() == Type::UIntTy ?
313 "llvm.memcpy.i32" : "llvm.memcpy.i64";
314 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
315 TD->getIntPtrType(), Type::UIntTy,
316 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000317 }
Reid Spencere249a822005-04-27 07:54:40 +0000318 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000319 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000320
Chris Lattner57740402006-01-23 06:24:46 +0000321 Function *getUnaryFloatFunction(const char *Name, Function *&Cache) {
322 if (!Cache)
323 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
324 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000325 }
326
Chris Lattner57740402006-01-23 06:24:46 +0000327 Function *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
328 Function *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
329 Function *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
330 Function *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
331 Function *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
332 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000333private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000334 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000335 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000336 M = &mod;
337 TD = &getAnalysis<TargetData>();
Evan Cheng1fc40252006-06-16 08:36:35 +0000338 putchar_func = 0;
339 puts_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000340 fputc_func = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +0000341 fputs_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000342 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000343 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000344 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000345 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000346 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000347 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000348 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000349 ceilf_func = 0;
350 roundf_func = 0;
351 rintf_func = 0;
352 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000353 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000354
Reid Spencere249a822005-04-27 07:54:40 +0000355private:
Chris Lattner57740402006-01-23 06:24:46 +0000356 /// Caches for function pointers.
Evan Cheng1fc40252006-06-16 08:36:35 +0000357 Function *putchar_func, *puts_func;
Evan Chengf2ea5872006-06-16 04:52:30 +0000358 Function *fputc_func, *fputs_func, *fwrite_func;
Chris Lattner57740402006-01-23 06:24:46 +0000359 Function *memcpy_func, *memchr_func;
360 Function* sqrt_func;
361 Function *strcpy_func, *strlen_func;
362 Function *floorf_func, *ceilf_func, *roundf_func;
363 Function *rintf_func, *nearbyintf_func;
364 Module *M; ///< Cached Module
365 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000366};
367
368// Register the pass
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000369RegisterPass<SimplifyLibCalls>
370X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencere249a822005-04-27 07:54:40 +0000371
372} // anonymous namespace
373
374// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000375ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000376 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000377}
378
379// Classes below here, in the anonymous namespace, are all subclasses of the
380// LibCallOptimization class, each implementing all optimizations possible for a
381// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000382// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000383namespace {
384
Reid Spencera7828ba2005-06-18 17:46:28 +0000385// Forward declare utility functions.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000386bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencera7828ba2005-06-18 17:46:28 +0000387Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000388
389/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000390/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000391/// the same value passed to the exit function. When this is done, it splits the
392/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000393/// @brief Replace calls to exit in main with a simple return
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000394struct ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000395 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000396 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000397
398 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000399 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000400 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
401 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000402 }
403
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000404 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000405 // To be careful, we check that the call to exit is coming from "main", that
406 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000407 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000408 Function *from = ci->getParent()->getParent();
409 if (from->hasExternalLinkage())
410 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000411 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000412 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000413 // block of the call instruction
414 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000415
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000416 // Create a return instruction that we'll replace the call with.
417 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000418 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000419 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000420
Reid Spencerf2534c72005-04-25 21:11:48 +0000421 // Split the block at the call instruction which places it in a new
422 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000423 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000424
Reid Spencerf2534c72005-04-25 21:11:48 +0000425 // The block split caused a branch instruction to be inserted into
426 // the end of the original block, right after the return instruction
427 // that we put there. That's not a valid block, so delete the branch
428 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000429 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000430
Reid Spencerf2534c72005-04-25 21:11:48 +0000431 // Now we can finally get rid of the call instruction which now lives
432 // in the new basic block.
433 ci->eraseFromParent();
434
435 // Optimization succeeded, return true.
436 return true;
437 }
438 // We didn't pass the criteria for this optimization so return false
439 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000440 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000441} ExitInMainOptimizer;
442
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000443/// This LibCallOptimization will simplify a call to the strcat library
444/// function. The simplification is possible only if the string being
445/// concatenated is a constant array or a constant expression that results in
446/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000447/// of the constant string. Both of these calls are further reduced, if possible
448/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000449/// @brief Simplify the strcat library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000450struct StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000451public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000452 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000453 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000454 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000455
456public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000457
458 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000459 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerf2534c72005-04-25 21:11:48 +0000460 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000461 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000462 {
463 Function::const_arg_iterator AI = f->arg_begin();
464 if (AI++->getType() == PointerType::get(Type::SByteTy))
465 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000466 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000467 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000468 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000469 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000470 }
471 return false;
472 }
473
Reid Spencere249a822005-04-27 07:54:40 +0000474 /// @brief Optimize the strcat library function
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000475 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000476 // Extract some information from the instruction
Reid Spencer08b49402005-04-27 17:46:54 +0000477 Value* dest = ci->getOperand(1);
478 Value* src = ci->getOperand(2);
479
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000480 // Extract the initializer (while making numerous checks) from the
Reid Spencer76dab9a2005-04-26 05:24:00 +0000481 // source operand of the call to strcat. If we get null back, one of
482 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000483 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000484 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000485 return false;
486
Reid Spencerb4f7b832005-04-26 07:45:18 +0000487 // Handle the simple, do-nothing case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000488 if (len == 0) {
Reid Spencer08b49402005-04-27 17:46:54 +0000489 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000490 ci->eraseFromParent();
491 return true;
492 }
493
Reid Spencerb4f7b832005-04-26 07:45:18 +0000494 // Increment the length because we actually want to memcpy the null
495 // terminator as well.
496 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000497
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000498 // We need to find the end of the destination string. That's where the
499 // memory is to be moved to. We just generate a call to strlen (further
500 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000501 // caches the Function* for us.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000502 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000503 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000504
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000505 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000506 // destination's pointer to get the actual memcpy destination (end of
507 // the string .. we're concatenating).
508 std::vector<Value*> idx;
509 idx.push_back(strlen_inst);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000510 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000511 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000512
513 // We have enough information to now generate the memcpy call to
514 // do the concatenation for us.
515 std::vector<Value*> vals;
516 vals.push_back(gep); // destination
517 vals.push_back(ci->getOperand(2)); // source
Andrew Lenharth47da6012006-02-15 21:13:37 +0000518 vals.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencer1e520fd2005-05-04 03:20:21 +0000519 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000520 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000521
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000522 // Finally, substitute the first operand of the strcat call for the
523 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000524 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000525 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000526 ci->eraseFromParent();
527 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000528 }
529} StrCatOptimizer;
530
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000531/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000532/// function. It optimizes out cases where the arguments are both constant
533/// and the result can be determined statically.
534/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000535struct StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000536public:
537 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000538 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000539
540 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000541 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000542 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
Reid Spencer38cabd72005-05-03 07:23:44 +0000543 f->arg_size() == 2)
544 return true;
545 return false;
546 }
547
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000548 /// @brief Perform the strchr optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000549 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000550 // If there aren't three operands, bail
551 if (ci->getNumOperands() != 3)
552 return false;
553
554 // Check that the first argument to strchr is a constant array of sbyte.
555 // If it is, get the length and data, otherwise return false.
556 uint64_t len = 0;
557 ConstantArray* CA;
558 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
559 return false;
560
561 // Check that the second argument to strchr is a constant int, return false
562 // if it isn't
563 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000564 if (!CSI) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000565 // Just lower this to memchr since we know the length of the string as
566 // it is constant.
567 Function* f = SLC.get_memchr();
568 std::vector<Value*> args;
569 args.push_back(ci->getOperand(1));
570 args.push_back(ci->getOperand(2));
571 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
572 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
573 ci->eraseFromParent();
574 return true;
575 }
576
577 // Get the character we're looking for
578 int64_t chr = CSI->getValue();
579
580 // Compute the offset
581 uint64_t offset = 0;
582 bool char_found = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000583 for (uint64_t i = 0; i < len; ++i) {
584 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i))) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000585 // Check for the null terminator
586 if (CI->isNullValue())
587 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000588 else if (CI->getValue() == chr) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000589 char_found = true;
590 offset = i;
591 break;
592 }
593 }
594 }
595
596 // strchr(s,c) -> offset_of_in(c,s)
597 // (if c is a constant integer and s is a constant string)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000598 if (char_found) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000599 std::vector<Value*> indices;
600 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
601 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
602 ci->getOperand(1)->getName()+".strchr",ci);
603 ci->replaceAllUsesWith(GEP);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000604 } else {
Reid Spencer38cabd72005-05-03 07:23:44 +0000605 ci->replaceAllUsesWith(
606 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000607 }
Reid Spencer38cabd72005-05-03 07:23:44 +0000608 ci->eraseFromParent();
609 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.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000617struct 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){
624 return F->getReturnType() == Type::IntTy && F->arg_size() == 2;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000625 }
626
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000627 /// @brief Perform the strcmp optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000628 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000629 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000630 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000631 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000632 Value* s1 = ci->getOperand(1);
633 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000634 if (s1 == s2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000635 // strcmp(x,x) -> 0
636 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
637 ci->eraseFromParent();
638 return true;
639 }
640
641 bool isstr_1 = false;
642 uint64_t len_1 = 0;
643 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000644 if (getConstantStringLength(s1,len_1,&A1)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000645 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000646 if (len_1 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000647 // strcmp("",x) -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000648 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000649 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000650 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000651 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
652 ci->replaceAllUsesWith(cast);
653 ci->eraseFromParent();
654 return true;
655 }
656 }
657
658 bool isstr_2 = false;
659 uint64_t len_2 = 0;
660 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000661 if (getConstantStringLength(s2, len_2, &A2)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000662 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000663 if (len_2 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000664 // strcmp(x,"") -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000665 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000666 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000667 CastInst* cast =
Reid Spencer4c444fe2005-04-30 03:17:54 +0000668 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
669 ci->replaceAllUsesWith(cast);
670 ci->eraseFromParent();
671 return true;
672 }
673 }
674
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000675 if (isstr_1 && isstr_2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000676 // strcmp(x,y) -> cnst (if both x and y are constant strings)
677 std::string str1 = A1->getAsString();
678 std::string str2 = A2->getAsString();
679 int result = strcmp(str1.c_str(), str2.c_str());
680 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
681 ci->eraseFromParent();
682 return true;
683 }
684 return false;
685 }
686} StrCmpOptimizer;
687
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000688/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000689/// function. It optimizes out cases where one or both arguments are constant
690/// and the result can be determined statically.
691/// @brief Simplify the strncmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000692struct StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000693public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000694 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000695 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000696
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000697 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000698 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer49fa07042005-05-03 01:43:45 +0000699 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
700 return true;
701 return false;
702 }
703
704 /// @brief Perform the strncpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000705 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000706 // First, check to see if src and destination are the same. If they are,
707 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000708 // because the call is a no-op.
Reid Spencer49fa07042005-05-03 01:43:45 +0000709 Value* s1 = ci->getOperand(1);
710 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000711 if (s1 == s2) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000712 // strncmp(x,x,l) -> 0
713 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
714 ci->eraseFromParent();
715 return true;
716 }
717
718 // Check the length argument, if it is Constant zero then the strings are
719 // considered equal.
720 uint64_t len_arg = 0;
721 bool len_arg_is_const = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000722 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3))) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000723 len_arg_is_const = true;
724 len_arg = len_CI->getRawValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000725 if (len_arg == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000726 // strncmp(x,y,0) -> 0
727 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
728 ci->eraseFromParent();
729 return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000730 }
Reid Spencer49fa07042005-05-03 01:43:45 +0000731 }
732
733 bool isstr_1 = false;
734 uint64_t len_1 = 0;
735 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000736 if (getConstantStringLength(s1, len_1, &A1)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000737 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000738 if (len_1 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000739 // strncmp("",x) -> *x
740 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000741 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000742 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
743 ci->replaceAllUsesWith(cast);
744 ci->eraseFromParent();
745 return true;
746 }
747 }
748
749 bool isstr_2 = false;
750 uint64_t len_2 = 0;
751 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000752 if (getConstantStringLength(s2,len_2,&A2)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000753 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000754 if (len_2 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000755 // strncmp(x,"") -> *x
756 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000757 CastInst* cast =
Reid Spencer49fa07042005-05-03 01:43:45 +0000758 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
759 ci->replaceAllUsesWith(cast);
760 ci->eraseFromParent();
761 return true;
762 }
763 }
764
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000765 if (isstr_1 && isstr_2 && len_arg_is_const) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000766 // strncmp(x,y,const) -> constant
767 std::string str1 = A1->getAsString();
768 std::string str2 = A2->getAsString();
769 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
770 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
771 ci->eraseFromParent();
772 return true;
773 }
774 return false;
775 }
776} StrNCmpOptimizer;
777
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000778/// This LibCallOptimization will simplify a call to the strcpy library
779/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000780/// (1) If src and dest are the same and not volatile, just return dest
781/// (2) If the src is a constant then we can convert to llvm.memmove
782/// @brief Simplify the strcpy library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000783struct StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000784public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000785 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000786 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000787
788 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000789 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencere249a822005-04-27 07:54:40 +0000790 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000791 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000792 Function::const_arg_iterator AI = f->arg_begin();
793 if (AI++->getType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000794 if (AI->getType() == PointerType::get(Type::SByteTy)) {
Reid Spencere249a822005-04-27 07:54:40 +0000795 // Indicate this is a suitable call type.
796 return true;
797 }
798 }
799 return false;
800 }
801
802 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000803 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000804 // First, check to see if src and destination are the same. If they are,
805 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000806 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000807 // degenerate strcpy(X,X) case which should have "undefined" results
808 // according to the C specification. However, it occurs sometimes and
809 // we optimize it as a no-op.
810 Value* dest = ci->getOperand(1);
811 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000812 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000813 ci->replaceAllUsesWith(dest);
814 ci->eraseFromParent();
815 return true;
816 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000817
Reid Spencere249a822005-04-27 07:54:40 +0000818 // Get the length of the constant string referenced by the second operand,
819 // the "src" parameter. Fail the optimization if we can't get the length
820 // (note that getConstantStringLength does lots of checks to make sure this
821 // is valid).
822 uint64_t len = 0;
823 if (!getConstantStringLength(ci->getOperand(2),len))
824 return false;
825
826 // If the constant string's length is zero we can optimize this by just
827 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000828 if (len == 0) {
Reid Spencere249a822005-04-27 07:54:40 +0000829 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
830 ci->replaceAllUsesWith(dest);
831 ci->eraseFromParent();
832 return true;
833 }
834
835 // Increment the length because we actually want to memcpy the null
836 // terminator as well.
837 len++;
838
Reid Spencere249a822005-04-27 07:54:40 +0000839 // We have enough information to now generate the memcpy call to
840 // do the concatenation for us.
841 std::vector<Value*> vals;
842 vals.push_back(dest); // destination
843 vals.push_back(src); // source
Andrew Lenharth47da6012006-02-15 21:13:37 +0000844 vals.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); // length
Reid Spencer1e520fd2005-05-04 03:20:21 +0000845 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000846 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000847
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000848 // Finally, substitute the first operand of the strcat call for the
849 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000850 // kill the strcat CallInst.
851 ci->replaceAllUsesWith(dest);
852 ci->eraseFromParent();
853 return true;
854 }
855} StrCpyOptimizer;
856
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000857/// This LibCallOptimization will simplify a call to the strlen library
858/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000859/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000860/// @brief Simplify the strlen library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000861struct StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000862 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000863 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000864
865 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000866 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000867 {
Reid Spencere249a822005-04-27 07:54:40 +0000868 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000869 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000870 if (Function::const_arg_iterator AI = f->arg_begin())
871 if (AI->getType() == PointerType::get(Type::SByteTy))
872 return true;
873 return false;
874 }
875
876 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000877 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000878 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000879 // Make sure we're dealing with an sbyte* here.
880 Value* str = ci->getOperand(1);
881 if (str->getType() != PointerType::get(Type::SByteTy))
882 return false;
883
884 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000885 if (ci->hasOneUse())
Reid Spencer170ae7f2005-05-07 20:15:59 +0000886 // Is that single use a binary operator?
887 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
888 // Is it compared against a constant integer?
889 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
890 {
891 // Get the value the strlen result is compared to
892 uint64_t val = CI->getRawValue();
893
894 // If its compared against length 0 with == or !=
895 if (val == 0 &&
896 (bop->getOpcode() == Instruction::SetEQ ||
897 bop->getOpcode() == Instruction::SetNE))
898 {
899 // strlen(x) != 0 -> *x != 0
900 // strlen(x) == 0 -> *x == 0
901 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
902 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
903 load, ConstantSInt::get(Type::SByteTy,0),
904 bop->getName()+".strlen", ci);
905 bop->replaceAllUsesWith(rbop);
906 bop->eraseFromParent();
907 ci->eraseFromParent();
908 return true;
909 }
910 }
911
912 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000913 uint64_t len = 0;
914 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000915 return false;
916
Reid Spencer170ae7f2005-05-07 20:15:59 +0000917 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000918 const Type *Ty = SLC.getTargetData()->getIntPtrType();
919 if (Ty->isSigned())
920 ci->replaceAllUsesWith(ConstantSInt::get(Ty, len));
921 else
922 ci->replaceAllUsesWith(ConstantUInt::get(Ty, len));
923
Reid Spencerb4f7b832005-04-26 07:45:18 +0000924 ci->eraseFromParent();
925 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000926 }
927} StrLenOptimizer;
928
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000929/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
930/// is equal or not-equal to zero.
931static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
932 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
933 UI != E; ++UI) {
934 Instruction *User = cast<Instruction>(*UI);
935 if (User->getOpcode() == Instruction::SetNE ||
936 User->getOpcode() == Instruction::SetEQ) {
937 if (isa<Constant>(User->getOperand(1)) &&
938 cast<Constant>(User->getOperand(1))->isNullValue())
939 continue;
940 } else if (CastInst *CI = dyn_cast<CastInst>(User))
941 if (CI->getType() == Type::BoolTy)
942 continue;
943 // Unknown instruction.
944 return false;
945 }
946 return true;
947}
948
949/// This memcmpOptimization will simplify a call to the memcmp library
950/// function.
951struct memcmpOptimization : public LibCallOptimization {
952 /// @brief Default Constructor
953 memcmpOptimization()
954 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
955
956 /// @brief Make sure that the "memcmp" function has the right prototype
957 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
958 Function::const_arg_iterator AI = F->arg_begin();
959 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
960 if (!isa<PointerType>((++AI)->getType())) return false;
961 if (!(++AI)->getType()->isInteger()) return false;
962 if (!F->getReturnType()->isInteger()) return false;
963 return true;
964 }
965
966 /// Because of alignment and instruction information that we don't have, we
967 /// leave the bulk of this to the code generators.
968 ///
969 /// Note that we could do much more if we could force alignment on otherwise
970 /// small aligned allocas, or if we could indicate that loads have a small
971 /// alignment.
972 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
973 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
974
975 // If the two operands are the same, return zero.
976 if (LHS == RHS) {
977 // memcmp(s,s,x) -> 0
978 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
979 CI->eraseFromParent();
980 return true;
981 }
982
983 // Make sure we have a constant length.
984 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
985 if (!LenC) return false;
986 uint64_t Len = LenC->getRawValue();
987
988 // If the length is zero, this returns 0.
989 switch (Len) {
990 case 0:
991 // memcmp(s1,s2,0) -> 0
992 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
993 CI->eraseFromParent();
994 return true;
995 case 1: {
996 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
997 const Type *UCharPtr = PointerType::get(Type::UByteTy);
998 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
999 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
1000 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
1001 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
1002 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
1003 if (RV->getType() != CI->getType())
1004 RV = new CastInst(RV, CI->getType(), RV->getName(), CI);
1005 CI->replaceAllUsesWith(RV);
1006 CI->eraseFromParent();
1007 return true;
1008 }
1009 case 2:
1010 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
1011 // TODO: IF both are aligned, use a short load/compare.
1012
1013 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
1014 const Type *UCharPtr = PointerType::get(Type::UByteTy);
1015 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
1016 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
1017 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
1018 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
1019 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
1020 CI->getName()+".d1", CI);
1021 Constant *One = ConstantInt::get(Type::IntTy, 1);
1022 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
1023 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
1024 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +00001025 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001026 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
1027 CI->getName()+".d1", CI);
1028 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
1029 if (Or->getType() != CI->getType())
1030 Or = new CastInst(Or, CI->getType(), Or->getName(), CI);
1031 CI->replaceAllUsesWith(Or);
1032 CI->eraseFromParent();
1033 return true;
1034 }
1035 break;
1036 default:
1037 break;
1038 }
1039
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001040 return false;
1041 }
1042} memcmpOptimizer;
1043
1044
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001045/// This LibCallOptimization will simplify a call to the memcpy library
1046/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001047/// bytes depending on the length of the string and the alignment. Additional
1048/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001049/// @brief Simplify the memcpy library function.
Chris Lattnerea7986a2006-03-03 01:30:23 +00001050struct LLVMMemCpyMoveOptzn : public LibCallOptimization {
1051 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
1052 : LibCallOptimization(fname, desc) {}
Reid Spencerf2534c72005-04-25 21:11:48 +00001053
1054 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001055 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001056 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +00001057 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +00001058 }
1059
Reid Spencerb4f7b832005-04-26 07:45:18 +00001060 /// Because of alignment and instruction information that we don't have, we
1061 /// leave the bulk of this to the code generators. The optimization here just
1062 /// deals with a few degenerate cases where the length of the string and the
1063 /// alignment match the sizes of our intrinsic types so we can do a load and
1064 /// store instead of the memcpy call.
1065 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001066 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001067 // Make sure we have constant int values to work with
1068 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1069 if (!LEN)
1070 return false;
1071 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1072 if (!ALIGN)
1073 return false;
1074
1075 // If the length is larger than the alignment, we can't optimize
1076 uint64_t len = LEN->getRawValue();
1077 uint64_t alignment = ALIGN->getRawValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001078 if (alignment == 0)
1079 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001080 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001081 return false;
1082
Reid Spencer08b49402005-04-27 17:46:54 +00001083 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001084 Value* dest = ci->getOperand(1);
1085 Value* src = ci->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +00001086 Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001087 switch (len)
1088 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001089 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001090 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001091 ci->eraseFromParent();
1092 return true;
Reid Spencer08b49402005-04-27 17:46:54 +00001093 case 1: castType = Type::SByteTy; break;
1094 case 2: castType = Type::ShortTy; break;
1095 case 4: castType = Type::IntTy; break;
1096 case 8: castType = Type::LongTy; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001097 default:
1098 return false;
1099 }
Reid Spencer08b49402005-04-27 17:46:54 +00001100
1101 // Cast source and dest to the right sized primitive and then load/store
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001102 CastInst* SrcCast =
Reid Spencer08b49402005-04-27 17:46:54 +00001103 new CastInst(src,PointerType::get(castType),src->getName()+".cast",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001104 CastInst* DestCast =
Reid Spencer08b49402005-04-27 17:46:54 +00001105 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1106 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001107 StoreInst* SI = new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001108 ci->eraseFromParent();
1109 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001110 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001111};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001112
Chris Lattnerea7986a2006-03-03 01:30:23 +00001113/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1114/// functions.
1115LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1116 "Number of 'llvm.memcpy' calls simplified");
1117LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1118 "Number of 'llvm.memcpy' calls simplified");
1119LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1120 "Number of 'llvm.memmove' calls simplified");
1121LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1122 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001123
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001124/// This LibCallOptimization will simplify a call to the memset library
1125/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1126/// bytes depending on the length argument.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001127struct LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001128 /// @brief Default Constructor
Chris Lattnerea7986a2006-03-03 01:30:23 +00001129 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001130 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001131
1132 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001133 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001134 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001135 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001136 }
1137
1138 /// Because of alignment and instruction information that we don't have, we
1139 /// leave the bulk of this to the code generators. The optimization here just
1140 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001141 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001142 /// store instead of the memcpy call. Other calls are transformed into the
1143 /// llvm.memset intrinsic.
1144 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001145 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001146 // Make sure we have constant int values to work with
1147 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1148 if (!LEN)
1149 return false;
1150 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1151 if (!ALIGN)
1152 return false;
1153
1154 // Extract the length and alignment
1155 uint64_t len = LEN->getRawValue();
1156 uint64_t alignment = ALIGN->getRawValue();
1157
1158 // Alignment 0 is identity for alignment 1
1159 if (alignment == 0)
1160 alignment = 1;
1161
1162 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001163 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001164 // memset(d,c,0,a) -> noop
1165 ci->eraseFromParent();
1166 return true;
1167 }
1168
1169 // If the length is larger than the alignment, we can't optimize
1170 if (len > alignment)
1171 return false;
1172
1173 // Make sure we have a constant ubyte to work with so we can extract
1174 // the value to be filled.
1175 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1176 if (!FILL)
1177 return false;
1178 if (FILL->getType() != Type::UByteTy)
1179 return false;
1180
1181 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001182
Reid Spencer38cabd72005-05-03 07:23:44 +00001183 // Extract the fill character
1184 uint64_t fill_char = FILL->getValue();
1185 uint64_t fill_value = fill_char;
1186
1187 // Get the type we will cast to, based on size of memory area to fill, and
1188 // and the value we will store there.
1189 Value* dest = ci->getOperand(1);
1190 Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001191 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001192 case 1:
1193 castType = Type::UByteTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001194 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001195 case 2:
1196 castType = Type::UShortTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001197 fill_value |= fill_char << 8;
1198 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001199 case 4:
Reid Spencer38cabd72005-05-03 07:23:44 +00001200 castType = Type::UIntTy;
1201 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1202 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001203 case 8:
Reid Spencer38cabd72005-05-03 07:23:44 +00001204 castType = Type::ULongTy;
1205 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1206 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1207 fill_value |= fill_char << 56;
1208 break;
1209 default:
1210 return false;
1211 }
1212
1213 // Cast dest to the right sized primitive and then load/store
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001214 CastInst* DestCast =
Reid Spencer38cabd72005-05-03 07:23:44 +00001215 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1216 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1217 ci->eraseFromParent();
1218 return true;
1219 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001220};
1221
1222LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1223LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1224
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001225
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001226/// This LibCallOptimization will simplify calls to the "pow" library
1227/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001228/// substitutes the appropriate value.
1229/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001230struct PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001231public:
1232 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001233 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001234 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001235
Reid Spencer93616972005-04-29 09:39:47 +00001236 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001237 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001238 // Just make sure this has 2 arguments
1239 return (f->arg_size() == 2);
1240 }
1241
1242 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001243 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001244 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1245 Value* base = ci->getOperand(1);
1246 Value* expn = ci->getOperand(2);
1247 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1248 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001249 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001250 // pow(1.0,x) -> 1.0
1251 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1252 ci->eraseFromParent();
1253 return true;
1254 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001255 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001256 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001257 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001258 // pow(x,0.0) -> 1.0
1259 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1260 ci->eraseFromParent();
1261 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001262 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001263 // pow(x,0.5) -> sqrt(x)
1264 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1265 ci->getName()+".pow",ci);
1266 ci->replaceAllUsesWith(sqrt_inst);
1267 ci->eraseFromParent();
1268 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001269 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001270 // pow(x,1.0) -> x
1271 ci->replaceAllUsesWith(base);
1272 ci->eraseFromParent();
1273 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001274 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001275 // pow(x,-1.0) -> 1.0/x
Chris Lattner4201cd12005-08-24 17:22:17 +00001276 BinaryOperator* div_inst= BinaryOperator::createDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001277 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1278 ci->replaceAllUsesWith(div_inst);
1279 ci->eraseFromParent();
1280 return true;
1281 }
1282 }
1283 return false; // opt failed
1284 }
1285} PowOptimizer;
1286
Evan Cheng1fc40252006-06-16 08:36:35 +00001287/// This LibCallOptimization will simplify calls to the "printf" library
1288/// function. It looks for cases where the result of printf is not used and the
1289/// operation can be reduced to something simpler.
1290/// @brief Simplify the printf library function.
1291struct PrintfOptimization : public LibCallOptimization {
1292public:
1293 /// @brief Default Constructor
1294 PrintfOptimization() : LibCallOptimization("printf",
1295 "Number of 'printf' calls simplified") {}
1296
1297 /// @brief Make sure that the "printf" function has the right prototype
1298 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1299 // Just make sure this has at least 1 arguments
1300 return (f->arg_size() >= 1);
1301 }
1302
1303 /// @brief Perform the printf optimization.
1304 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
1305 // If the call has more than 2 operands, we can't optimize it
1306 if (ci->getNumOperands() > 3 || ci->getNumOperands() <= 2)
1307 return false;
1308
1309 // If the result of the printf call is used, none of these optimizations
1310 // can be made.
1311 if (!ci->use_empty())
1312 return false;
1313
1314 // All the optimizations depend on the length of the first argument and the
1315 // fact that it is a constant string array. Check that now
1316 uint64_t len = 0;
1317 ConstantArray* CA = 0;
1318 if (!getConstantStringLength(ci->getOperand(1), len, &CA))
1319 return false;
1320
1321 if (len != 2 && len != 3)
1322 return false;
1323
1324 // The first character has to be a %
1325 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1326 if (CI->getRawValue() != '%')
1327 return false;
1328
1329 // Get the second character and switch on its value
1330 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1331 switch (CI->getRawValue()) {
1332 case 's':
1333 {
1334 if (len != 3 ||
1335 dyn_cast<ConstantInt>(CA->getOperand(2))->getRawValue() != '\n')
1336 return false;
1337
1338 // printf("%s\n",str) -> puts(str)
1339 Function* puts_func = SLC.get_puts();
1340 if (!puts_func)
1341 return false;
1342 std::vector<Value*> args;
Evan Cheng8a417a22006-06-16 18:37:15 +00001343 args.push_back(CastToCStr(ci->getOperand(2), *ci));
Evan Cheng1fc40252006-06-16 08:36:35 +00001344 new CallInst(puts_func,args,ci->getName(),ci);
1345 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1346 break;
1347 }
1348 case 'c':
1349 {
1350 // printf("%c",c) -> putchar(c)
1351 if (len != 2)
1352 return false;
1353
1354 Function* putchar_func = SLC.get_putchar();
1355 if (!putchar_func)
1356 return false;
1357 CastInst* cast = new CastInst(ci->getOperand(2), Type::IntTy,
1358 CI->getName()+".int", ci);
1359 new CallInst(putchar_func, cast, "", ci);
1360 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, 1));
1361 break;
1362 }
1363 default:
1364 return false;
1365 }
1366 ci->eraseFromParent();
1367 return true;
1368 }
1369} PrintfOptimizer;
1370
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001371/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001372/// function. It looks for cases where the result of fprintf is not used and the
1373/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001374/// @brief Simplify the fprintf library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001375struct FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001376public:
1377 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001378 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001379 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001380
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001381 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001382 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001383 // Just make sure this has at least 2 arguments
1384 return (f->arg_size() >= 2);
1385 }
1386
1387 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001388 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001389 // If the call has more than 3 operands, we can't optimize it
1390 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1391 return false;
1392
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001393 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001394 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001395 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001396 return false;
1397
1398 // All the optimizations depend on the length of the second argument and the
1399 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001400 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001401 ConstantArray* CA = 0;
1402 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1403 return false;
1404
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001405 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001406 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001407 for (unsigned i = 0; i < len; ++i) {
1408 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001409 // Check for the null terminator
1410 if (CI->getRawValue() == '%')
1411 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001412 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001413 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001414 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001415 }
1416
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001417 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001418 const Type* FILEptr_type = ci->getOperand(1)->getType();
1419 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1420 if (!fwrite_func)
1421 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001422
1423 // Make sure that the fprintf() and fwrite() functions both take the
1424 // same type of char pointer.
1425 if (ci->getOperand(2)->getType() !=
1426 fwrite_func->getFunctionType()->getParamType(0))
John Criswell4642afd2005-06-29 15:03:18 +00001427 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001428
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001429 std::vector<Value*> args;
1430 args.push_back(ci->getOperand(2));
1431 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1432 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1433 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001434 new CallInst(fwrite_func,args,ci->getName(),ci);
1435 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001436 ci->eraseFromParent();
1437 return true;
1438 }
1439
1440 // The remaining optimizations require the format string to be length 2
1441 // "%s" or "%c".
1442 if (len != 2)
1443 return false;
1444
1445 // The first character has to be a %
1446 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1447 if (CI->getRawValue() != '%')
1448 return false;
1449
1450 // Get the second character and switch on its value
1451 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001452 switch (CI->getRawValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001453 case 's':
1454 {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001455 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001456 ConstantArray* CA = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +00001457 if (getConstantStringLength(ci->getOperand(3), len, &CA)) {
1458 // fprintf(file,"%s",str) -> fwrite(str,strlen(str),1,file)
1459 const Type* FILEptr_type = ci->getOperand(1)->getType();
1460 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1461 if (!fwrite_func)
1462 return false;
1463 std::vector<Value*> args;
1464 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1465 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1466 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1467 args.push_back(ci->getOperand(1));
1468 new CallInst(fwrite_func,args,ci->getName(),ci);
1469 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1470 } else {
1471 // fprintf(file,"%s",str) -> fputs(str,file)
1472 const Type* FILEptr_type = ci->getOperand(1)->getType();
1473 Function* fputs_func = SLC.get_fputs(FILEptr_type);
1474 if (!fputs_func)
1475 return false;
1476 std::vector<Value*> args;
Evan Cheng8a417a22006-06-16 18:37:15 +00001477 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Evan Chengf2ea5872006-06-16 04:52:30 +00001478 args.push_back(ci->getOperand(1));
1479 new CallInst(fputs_func,args,ci->getName(),ci);
1480 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1481 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001482 break;
1483 }
1484 case 'c':
1485 {
Evan Cheng1fc40252006-06-16 08:36:35 +00001486 // fprintf(file,"%c",c) -> fputc(c,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001487 const Type* FILEptr_type = ci->getOperand(1)->getType();
1488 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1489 if (!fputc_func)
1490 return false;
Evan Cheng1fc40252006-06-16 08:36:35 +00001491 CastInst* cast = new CastInst(ci->getOperand(3), Type::IntTy,
1492 CI->getName()+".int", ci);
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001493 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001494 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001495 break;
1496 }
1497 default:
1498 return false;
1499 }
1500 ci->eraseFromParent();
1501 return true;
1502 }
1503} FPrintFOptimizer;
1504
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001505/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001506/// function. It looks for cases where the result of sprintf is not used and the
1507/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001508/// @brief Simplify the sprintf library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001509struct SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001510public:
1511 /// @brief Default Constructor
1512 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001513 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001514
Reid Spencer1e520fd2005-05-04 03:20:21 +00001515 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001516 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001517 // Just make sure this has at least 2 arguments
1518 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1519 }
1520
1521 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001522 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001523 // If the call has more than 3 operands, we can't optimize it
1524 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1525 return false;
1526
1527 // All the optimizations depend on the length of the second argument and the
1528 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001529 uint64_t len = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001530 ConstantArray* CA = 0;
1531 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1532 return false;
1533
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001534 if (ci->getNumOperands() == 3) {
1535 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001536 // If the length is 0, we just need to store a null byte
1537 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1538 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1539 ci->eraseFromParent();
1540 return true;
1541 }
1542
1543 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001544 for (unsigned i = 0; i < len; ++i) {
1545 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001546 // Check for the null terminator
1547 if (CI->getRawValue() == '%')
1548 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001549 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001550 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001551 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001552 }
1553
1554 // Increment length because we want to copy the null byte too
1555 len++;
1556
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001557 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001558 Function* memcpy_func = SLC.get_memcpy();
1559 if (!memcpy_func)
1560 return false;
1561 std::vector<Value*> args;
1562 args.push_back(ci->getOperand(1));
1563 args.push_back(ci->getOperand(2));
Andrew Lenharth47da6012006-02-15 21:13:37 +00001564 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001565 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1566 new CallInst(memcpy_func,args,"",ci);
1567 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1568 ci->eraseFromParent();
1569 return true;
1570 }
1571
1572 // The remaining optimizations require the format string to be length 2
1573 // "%s" or "%c".
1574 if (len != 2)
1575 return false;
1576
1577 // The first character has to be a %
1578 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1579 if (CI->getRawValue() != '%')
1580 return false;
1581
1582 // Get the second character and switch on its value
1583 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner175463a2005-09-24 22:17:06 +00001584 switch (CI->getRawValue()) {
1585 case 's': {
1586 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1587 Function* strlen_func = SLC.get_strlen();
1588 Function* memcpy_func = SLC.get_memcpy();
1589 if (!strlen_func || !memcpy_func)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001590 return false;
Chris Lattner175463a2005-09-24 22:17:06 +00001591
1592 Value *Len = new CallInst(strlen_func, CastToCStr(ci->getOperand(3), *ci),
1593 ci->getOperand(3)->getName()+".len", ci);
1594 Value *Len1 = BinaryOperator::createAdd(Len,
1595 ConstantInt::get(Len->getType(), 1),
1596 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001597 if (Len1->getType() != SLC.getIntPtrType())
1598 Len1 = new CastInst(Len1, SLC.getIntPtrType(), Len1->getName(), ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001599 std::vector<Value*> args;
1600 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1601 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1602 args.push_back(Len1);
1603 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1604 new CallInst(memcpy_func, args, "", ci);
1605
1606 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001607 if (!ci->use_empty()) {
1608 if (Len->getType() != ci->getType())
1609 Len = new CastInst(Len, ci->getType(), Len->getName(), ci);
1610 ci->replaceAllUsesWith(Len);
1611 }
Chris Lattner175463a2005-09-24 22:17:06 +00001612 ci->eraseFromParent();
1613 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001614 }
Chris Lattner175463a2005-09-24 22:17:06 +00001615 case 'c': {
1616 // sprintf(dest,"%c",chr) -> store chr, dest
1617 CastInst* cast = new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1618 new StoreInst(cast, ci->getOperand(1), ci);
1619 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1620 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1621 ci);
1622 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1623 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1624 ci->eraseFromParent();
1625 return true;
1626 }
1627 }
1628 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001629 }
1630} SPrintFOptimizer;
1631
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001632/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001633/// function. It looks for cases where the result of fputs is not used and the
1634/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001635/// @brief Simplify the puts library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001636struct PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001637public:
1638 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001639 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001640 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001641
Reid Spencer93616972005-04-29 09:39:47 +00001642 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001643 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001644 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001645 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001646 }
1647
1648 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001649 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001650 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001651 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001652 return false;
1653
1654 // All the optimizations depend on the length of the first argument and the
1655 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001656 uint64_t len = 0;
Reid Spencer93616972005-04-29 09:39:47 +00001657 if (!getConstantStringLength(ci->getOperand(1), len))
1658 return false;
1659
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001660 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001661 case 0:
1662 // fputs("",F) -> noop
1663 break;
1664 case 1:
1665 {
1666 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001667 const Type* FILEptr_type = ci->getOperand(2)->getType();
1668 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001669 if (!fputc_func)
1670 return false;
1671 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1672 ci->getOperand(1)->getName()+".byte",ci);
1673 CastInst* casti = new CastInst(loadi,Type::IntTy,
1674 loadi->getName()+".int",ci);
1675 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1676 break;
1677 }
1678 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001679 {
Reid Spencer93616972005-04-29 09:39:47 +00001680 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001681 const Type* FILEptr_type = ci->getOperand(2)->getType();
1682 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001683 if (!fwrite_func)
1684 return false;
1685 std::vector<Value*> parms;
1686 parms.push_back(ci->getOperand(1));
1687 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1688 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1689 parms.push_back(ci->getOperand(2));
1690 new CallInst(fwrite_func,parms,"",ci);
1691 break;
1692 }
1693 }
1694 ci->eraseFromParent();
1695 return true; // success
1696 }
1697} PutsOptimizer;
1698
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001699/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001700/// function. It simply does range checks the parameter explicitly.
1701/// @brief Simplify the isdigit library function.
Chris Lattner5f6035f2005-09-29 06:16:11 +00001702struct isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001703public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001704 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001705 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001706
Chris Lattner5f6035f2005-09-29 06:16:11 +00001707 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001708 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001709 // Just make sure this has 1 argument
1710 return (f->arg_size() == 1);
1711 }
1712
1713 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001714 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1715 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001716 // isdigit(c) -> 0 or 1, if 'c' is constant
1717 uint64_t val = CI->getRawValue();
1718 if (val >= '0' && val <='9')
1719 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1720 else
1721 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1722 ci->eraseFromParent();
1723 return true;
1724 }
1725
1726 // isdigit(c) -> (unsigned)c - '0' <= 9
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001727 CastInst* cast =
Reid Spencer282d0572005-05-04 18:58:28 +00001728 new CastInst(ci->getOperand(1),Type::UIntTy,
1729 ci->getOperand(1)->getName()+".uint",ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001730 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencer282d0572005-05-04 18:58:28 +00001731 ConstantUInt::get(Type::UIntTy,0x30),
1732 ci->getOperand(1)->getName()+".sub",ci);
1733 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1734 ConstantUInt::get(Type::UIntTy,9),
1735 ci->getOperand(1)->getName()+".cmp",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001736 CastInst* c2 =
Reid Spencer282d0572005-05-04 18:58:28 +00001737 new CastInst(setcond_inst,Type::IntTy,
1738 ci->getOperand(1)->getName()+".isdigit",ci);
1739 ci->replaceAllUsesWith(c2);
1740 ci->eraseFromParent();
1741 return true;
1742 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001743} isdigitOptimizer;
1744
Chris Lattner87ef9432005-09-29 06:17:27 +00001745struct isasciiOptimization : public LibCallOptimization {
1746public:
1747 isasciiOptimization()
1748 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1749
1750 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1751 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1752 F->getReturnType()->isInteger();
1753 }
1754
1755 /// @brief Perform the isascii optimization.
1756 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1757 // isascii(c) -> (unsigned)c < 128
1758 Value *V = CI->getOperand(1);
1759 if (V->getType()->isSigned())
1760 V = new CastInst(V, V->getType()->getUnsignedVersion(), V->getName(), CI);
1761 Value *Cmp = BinaryOperator::createSetLT(V, ConstantUInt::get(V->getType(),
1762 128),
1763 V->getName()+".isascii", CI);
1764 if (Cmp->getType() != CI->getType())
1765 Cmp = new CastInst(Cmp, CI->getType(), Cmp->getName(), CI);
1766 CI->replaceAllUsesWith(Cmp);
1767 CI->eraseFromParent();
1768 return true;
1769 }
1770} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001771
Reid Spencer282d0572005-05-04 18:58:28 +00001772
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001773/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001774/// function. It simply does the corresponding and operation to restrict the
1775/// range of values to the ASCII character set (0-127).
1776/// @brief Simplify the toascii library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001777struct ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001778public:
1779 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001780 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001781 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001782
Reid Spencer4c444fe2005-04-30 03:17:54 +00001783 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001784 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001785 // Just make sure this has 2 arguments
1786 return (f->arg_size() == 1);
1787 }
1788
1789 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001790 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001791 // toascii(c) -> (c & 0x7f)
1792 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001793 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001794 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1795 ci->replaceAllUsesWith(and_inst);
1796 ci->eraseFromParent();
1797 return true;
1798 }
1799} ToAsciiOptimizer;
1800
Reid Spencerb195fcd2005-05-14 16:42:52 +00001801/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001802/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001803/// optimization is to compute the result at compile time if the argument is
1804/// a constant.
1805/// @brief Simplify the ffs library function.
Chris Lattner801f4752006-01-17 18:27:17 +00001806struct FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001807protected:
1808 /// @brief Subclass Constructor
1809 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001810 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001811
1812public:
1813 /// @brief Default Constructor
1814 FFSOptimization() : LibCallOptimization("ffs",
1815 "Number of 'ffs' calls simplified") {}
1816
Chris Lattner801f4752006-01-17 18:27:17 +00001817 /// @brief Make sure that the "ffs" function has the right prototype
1818 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001819 // Just make sure this has 2 arguments
Chris Lattner801f4752006-01-17 18:27:17 +00001820 return F->arg_size() == 1 && F->getReturnType() == Type::IntTy;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001821 }
1822
1823 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001824 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1825 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001826 // ffs(cnst) -> bit#
1827 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001828 // ffsll(cnst) -> bit#
Reid Spencerb195fcd2005-05-14 16:42:52 +00001829 uint64_t val = CI->getRawValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001830 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001831 if (val) {
1832 ++result;
1833 while ((val & 1) == 0) {
1834 ++result;
1835 val >>= 1;
1836 }
Reid Spencer17f77842005-05-15 21:19:45 +00001837 }
Chris Lattner801f4752006-01-17 18:27:17 +00001838 TheCall->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, result));
1839 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001840 return true;
1841 }
Reid Spencer17f77842005-05-15 21:19:45 +00001842
Chris Lattner801f4752006-01-17 18:27:17 +00001843 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1844 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1845 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1846 const Type *ArgType = TheCall->getOperand(1)->getType();
1847 ArgType = ArgType->getUnsignedVersion();
1848 const char *CTTZName;
1849 switch (ArgType->getTypeID()) {
1850 default: assert(0 && "Unknown unsigned type!");
1851 case Type::UByteTyID : CTTZName = "llvm.cttz.i8" ; break;
1852 case Type::UShortTyID: CTTZName = "llvm.cttz.i16"; break;
1853 case Type::UIntTyID : CTTZName = "llvm.cttz.i32"; break;
1854 case Type::ULongTyID : CTTZName = "llvm.cttz.i64"; break;
1855 }
1856
1857 Function *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
1858 ArgType, NULL);
1859 Value *V = new CastInst(TheCall->getOperand(1), ArgType, "tmp", TheCall);
1860 Value *V2 = new CallInst(F, V, "tmp", TheCall);
1861 V2 = new CastInst(V2, Type::IntTy, "tmp", TheCall);
1862 V2 = BinaryOperator::createAdd(V2, ConstantSInt::get(Type::IntTy, 1),
1863 "tmp", TheCall);
1864 Value *Cond =
1865 BinaryOperator::createSetEQ(V, Constant::getNullValue(V->getType()),
1866 "tmp", TheCall);
1867 V2 = new SelectInst(Cond, ConstantInt::get(Type::IntTy, 0), V2,
1868 TheCall->getName(), TheCall);
1869 TheCall->replaceAllUsesWith(V2);
1870 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001871 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001872 }
1873} FFSOptimizer;
1874
1875/// This LibCallOptimization will simplify calls to the "ffsl" library
1876/// calls. It simply uses FFSOptimization for which the transformation is
1877/// identical.
1878/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001879struct FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001880public:
1881 /// @brief Default Constructor
1882 FFSLOptimization() : FFSOptimization("ffsl",
1883 "Number of 'ffsl' calls simplified") {}
1884
1885} FFSLOptimizer;
1886
1887/// This LibCallOptimization will simplify calls to the "ffsll" library
1888/// calls. It simply uses FFSOptimization for which the transformation is
1889/// identical.
1890/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001891struct FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001892public:
1893 /// @brief Default Constructor
1894 FFSLLOptimization() : FFSOptimization("ffsll",
1895 "Number of 'ffsll' calls simplified") {}
1896
1897} FFSLLOptimizer;
1898
Chris Lattner57a28632006-01-23 05:57:36 +00001899/// This optimizes unary functions that take and return doubles.
1900struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1901 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1902 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001903
Chris Lattner57a28632006-01-23 05:57:36 +00001904 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001905 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1906 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1907 F->getReturnType() == Type::DoubleTy;
1908 }
Chris Lattner57a28632006-01-23 05:57:36 +00001909
1910 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1911 /// float, strength reduce this to a float version of the function,
1912 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1913 /// when the target supports the destination function and where there can be
1914 /// no precision loss.
1915 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
1916 Function *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001917 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1918 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001919 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001920 CI->getName(), CI);
1921 New = new CastInst(New, Type::DoubleTy, CI->getName(), CI);
1922 CI->replaceAllUsesWith(New);
1923 CI->eraseFromParent();
1924 if (Cast->use_empty())
1925 Cast->eraseFromParent();
1926 return true;
1927 }
Chris Lattner57a28632006-01-23 05:57:36 +00001928 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001929 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001930};
1931
Chris Lattner57a28632006-01-23 05:57:36 +00001932
Chris Lattner57a28632006-01-23 05:57:36 +00001933struct FloorOptimization : public UnaryDoubleFPOptimizer {
1934 FloorOptimization()
1935 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1936
1937 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001938#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001939 // If this is a float argument passed in, convert to floorf.
1940 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1941 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001942#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001943 return false; // opt failed
1944 }
1945} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001946
Chris Lattner57740402006-01-23 06:24:46 +00001947struct CeilOptimization : public UnaryDoubleFPOptimizer {
1948 CeilOptimization()
1949 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1950
1951 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1952#ifdef HAVE_CEILF
1953 // If this is a float argument passed in, convert to ceilf.
1954 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1955 return true;
1956#endif
1957 return false; // opt failed
1958 }
1959} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001960
Chris Lattner57740402006-01-23 06:24:46 +00001961struct RoundOptimization : public UnaryDoubleFPOptimizer {
1962 RoundOptimization()
1963 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1964
1965 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1966#ifdef HAVE_ROUNDF
1967 // If this is a float argument passed in, convert to roundf.
1968 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1969 return true;
1970#endif
1971 return false; // opt failed
1972 }
1973} RoundOptimizer;
1974
1975struct RintOptimization : public UnaryDoubleFPOptimizer {
1976 RintOptimization()
1977 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1978
1979 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1980#ifdef HAVE_RINTF
1981 // If this is a float argument passed in, convert to rintf.
1982 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1983 return true;
1984#endif
1985 return false; // opt failed
1986 }
1987} RintOptimizer;
1988
1989struct NearByIntOptimization : public UnaryDoubleFPOptimizer {
1990 NearByIntOptimization()
1991 : UnaryDoubleFPOptimizer("nearbyint",
1992 "Number of 'nearbyint' calls simplified") {}
1993
1994 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1995#ifdef HAVE_NEARBYINTF
1996 // If this is a float argument passed in, convert to nearbyintf.
1997 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1998 return true;
1999#endif
2000 return false; // opt failed
2001 }
2002} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00002003
Reid Spencer7ddcfb32005-04-27 21:29:20 +00002004/// A function to compute the length of a null-terminated constant array of
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002005/// integers. This function can't rely on the size of the constant array
2006/// because there could be a null terminator in the middle of the array.
2007/// We also have to bail out if we find a non-integer constant initializer
2008/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00002009/// below checks each of these conditions and will return true only if all
2010/// conditions are met. In that case, the \p len parameter is set to the length
2011/// of the null-terminated string. If false is returned, the conditions were
2012/// not met and len is set to 0.
2013/// @brief Get the length of a constant string (null-terminated array).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002014bool getConstantStringLength(Value *V, uint64_t &len, ConstantArray **CA) {
Reid Spencere249a822005-04-27 07:54:40 +00002015 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002016 len = 0; // make sure we initialize this
Reid Spencere249a822005-04-27 07:54:40 +00002017 User* GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002018 // If the value is not a GEP instruction nor a constant expression with a
2019 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00002020 // any other way
2021 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
2022 GEP = GEPI;
2023 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
2024 if (CE->getOpcode() == Instruction::GetElementPtr)
2025 GEP = CE;
2026 else
2027 return false;
2028 else
2029 return false;
2030
2031 // Make sure the GEP has exactly three arguments.
2032 if (GEP->getNumOperands() != 3)
2033 return false;
2034
2035 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002036 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002037 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere249a822005-04-27 07:54:40 +00002038 if (!op1->isNullValue())
2039 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002040 } else
Reid Spencere249a822005-04-27 07:54:40 +00002041 return false;
2042
2043 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002044 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencere249a822005-04-27 07:54:40 +00002045 // better of not optimizing it. While we're at it, get the second index
2046 // value. We'll need this later for indexing the ConstantArray.
2047 uint64_t start_idx = 0;
2048 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
2049 start_idx = CI->getRawValue();
2050 else
2051 return false;
2052
2053 // The GEP instruction, constant or instruction, must reference a global
2054 // variable that is a constant and is initialized. The referenced constant
2055 // initializer is the array that we'll use for optimization.
2056 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
2057 if (!GV || !GV->isConstant() || !GV->hasInitializer())
2058 return false;
2059
2060 // Get the initializer.
2061 Constant* INTLZR = GV->getInitializer();
2062
2063 // Handle the ConstantAggregateZero case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002064 if (ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(INTLZR)) {
Reid Spencere249a822005-04-27 07:54:40 +00002065 // This is a degenerate case. The initializer is constant zero so the
2066 // length of the string must be zero.
2067 len = 0;
2068 return true;
2069 }
2070
2071 // Must be a Constant Array
2072 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
2073 if (!A)
2074 return false;
2075
2076 // Get the number of elements in the array
2077 uint64_t max_elems = A->getType()->getNumElements();
2078
2079 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002080 // the place the GEP refers to in the array.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002081 for (len = start_idx; len < max_elems; len++) {
2082 if (ConstantInt *CI = dyn_cast<ConstantInt>(A->getOperand(len))) {
Reid Spencere249a822005-04-27 07:54:40 +00002083 // Check for the null terminator
2084 if (CI->isNullValue())
2085 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002086 } else
Reid Spencere249a822005-04-27 07:54:40 +00002087 return false; // This array isn't suitable, non-int initializer
2088 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002089
Reid Spencere249a822005-04-27 07:54:40 +00002090 if (len >= max_elems)
2091 return false; // This array isn't null terminated
2092
2093 // Subtract out the initial value from the length
2094 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00002095 if (CA)
2096 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00002097 return true; // success!
2098}
2099
Reid Spencera7828ba2005-06-18 17:46:28 +00002100/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
2101/// inserting the cast before IP, and return the cast.
2102/// @brief Cast a value to a "C" string.
2103Value *CastToCStr(Value *V, Instruction &IP) {
2104 const Type *SBPTy = PointerType::get(Type::SByteTy);
2105 if (V->getType() != SBPTy)
2106 return new CastInst(V, SBPTy, V->getName(), &IP);
2107 return V;
2108}
2109
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002110// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00002111// Additional cases that we need to add to this file:
2112//
Reid Spencer649ac282005-04-28 04:40:06 +00002113// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00002114// * cbrt(expN(X)) -> expN(x/3)
2115// * cbrt(sqrt(x)) -> pow(x,1/6)
2116// * cbrt(sqrt(x)) -> pow(x,1/9)
2117//
Reid Spencer649ac282005-04-28 04:40:06 +00002118// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00002119// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00002120//
2121// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00002122// * exp(log(x)) -> x
2123//
Reid Spencer649ac282005-04-28 04:40:06 +00002124// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00002125// * log(exp(x)) -> x
2126// * log(x**y) -> y*log(x)
2127// * log(exp(y)) -> y*log(e)
2128// * log(exp2(y)) -> y*log(2)
2129// * log(exp10(y)) -> y*log(10)
2130// * log(sqrt(x)) -> 0.5*log(x)
2131// * log(pow(x,y)) -> y*log(x)
2132//
2133// lround, lroundf, lroundl:
2134// * lround(cnst) -> cnst'
2135//
2136// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002137// * memcmp(x,y,l) -> cnst
2138// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002139//
Reid Spencer649ac282005-04-28 04:40:06 +00002140// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002141// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002142// (if s is a global constant array)
2143//
Reid Spencer649ac282005-04-28 04:40:06 +00002144// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002145// * pow(exp(x),y) -> exp(x*y)
2146// * pow(sqrt(x),y) -> pow(x,y*0.5)
2147// * pow(pow(x,y),z)-> pow(x,y*z)
2148//
2149// puts:
2150// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2151//
2152// round, roundf, roundl:
2153// * round(cnst) -> cnst'
2154//
2155// signbit:
2156// * signbit(cnst) -> cnst'
2157// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2158//
Reid Spencer649ac282005-04-28 04:40:06 +00002159// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002160// * sqrt(expN(x)) -> expN(x*0.5)
2161// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2162// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2163//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002164// stpcpy:
2165// * stpcpy(str, "literal") ->
2166// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002167// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002168// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2169// (if c is a constant integer and s is a constant string)
2170// * strrchr(s1,0) -> strchr(s1,0)
2171//
Reid Spencer649ac282005-04-28 04:40:06 +00002172// strncat:
2173// * strncat(x,y,0) -> x
2174// * strncat(x,y,0) -> x (if strlen(y) = 0)
2175// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2176//
Reid Spencer649ac282005-04-28 04:40:06 +00002177// strncpy:
2178// * strncpy(d,s,0) -> d
2179// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2180// (if s and l are constants)
2181//
2182// strpbrk:
2183// * strpbrk(s,a) -> offset_in_for(s,a)
2184// (if s and a are both constant strings)
2185// * strpbrk(s,"") -> 0
2186// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2187//
2188// strspn, strcspn:
2189// * strspn(s,a) -> const_int (if both args are constant)
2190// * strspn("",a) -> 0
2191// * strspn(s,"") -> 0
2192// * strcspn(s,a) -> const_int (if both args are constant)
2193// * strcspn("",a) -> 0
2194// * strcspn(s,"") -> strlen(a)
2195//
2196// strstr:
2197// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002198// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002199// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002200//
Reid Spencer649ac282005-04-28 04:40:06 +00002201// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002202// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002203//
Reid Spencer649ac282005-04-28 04:40:06 +00002204// trunc, truncf, truncl:
2205// * trunc(cnst) -> cnst'
2206//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002207//
Reid Spencer39a762d2005-04-25 02:53:12 +00002208}