blob: 58aac20b70ac300988067f44a233dac19cab89b6 [file] [log] [blame]
Reid Spencerb7c11e32005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencera7c049b2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Jeff Cohen00b168892005-07-27 06:12:32 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencerb7c11e32005-04-25 03:59:26 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencera7c049b2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen00b168892005-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 Spencer0660f752005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen00b168892005-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 Spencera7c049b2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spenceref99ea32005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer8f132612005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencera7c049b2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencerb7c11e32005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer8f132612005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
28#include "llvm/Support/Debug.h"
Reid Spencerfcbdb9c2005-04-26 19:13:17 +000029#include "llvm/Target/TargetData.h"
Reid Spencer8f132612005-04-26 23:02:16 +000030#include "llvm/Transforms/IPO.h"
Reid Spencer6cc03112005-04-25 21:11:48 +000031#include <iostream>
Reid Spencera7c049b2005-04-25 02:53:12 +000032using namespace llvm;
33
34namespace {
Reid Spencera7c049b2005-04-25 02:53:12 +000035
Reid Spencera16d5a52005-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 Cohen00b168892005-07-27 06:12:32 +000038Statistic<> SimplifiedLibCalls("simplify-libcalls",
Chris Lattnerbbf728e2005-08-07 20:02:04 +000039 "Number of library calls simplified");
Reid Spencera7c049b2005-04-25 02:53:12 +000040
Reid Spencer716f49e2005-04-27 21:29:20 +000041// Forward declarations
Reid Spencera16d5a52005-04-27 07:54:40 +000042class LibCallOptimization;
43class SimplifyLibCalls;
Reid Spencer716f49e2005-04-27 21:29:20 +000044
Reid Spencer89026022005-05-21 01:27:04 +000045/// This hash map is populated by the constructor for LibCallOptimization class.
46/// 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 Spencer716f49e2005-04-27 21:29:20 +000049/// @brief The list of optimizations deriving from LibCallOptimization
Reid Spencer89026022005-05-21 01:27:04 +000050static hash_map<std::string,LibCallOptimization*> optlist;
Reid Spencera7c049b2005-04-25 02:53:12 +000051
Reid Spencera16d5a52005-04-27 07:54:40 +000052/// This class is the abstract base class for the set of optimizations that
Reid Spencer716f49e2005-04-27 21:29:20 +000053/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencera16d5a52005-04-27 07:54:40 +000054/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer716f49e2005-04-27 21:29:20 +000055/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen00b168892005-07-27 06:12:32 +000056/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer716f49e2005-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 Cohen00b168892005-07-27 06:12:32 +000061/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer716f49e2005-04-27 21:29:20 +000062/// semantics", typically a library function that is defined by an international
Jeff Cohen00b168892005-07-27 06:12:32 +000063/// standard. Because the semantics are well known, the optimizations can
Reid Spencer716f49e2005-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 Spencera16d5a52005-04-27 07:54:40 +000066/// @brief Base class for library call optimizations
Jeff Cohen5882b922005-04-29 03:05:44 +000067class LibCallOptimization
Reid Spencera16d5a52005-04-27 07:54:40 +000068{
Jeff Cohen5882b922005-04-29 03:05:44 +000069public:
Jeff Cohen00b168892005-07-27 06:12:32 +000070 /// The \p fname argument must be the name of the library function being
Reid Spencer716f49e2005-04-27 21:29:20 +000071 /// optimized by the subclass.
72 /// @brief Constructor that registers the optimization.
Reid Spencer789082a2005-05-07 20:15:59 +000073 LibCallOptimization(const char* fname, const char* description )
Reid Spencerb7c11e32005-04-25 03:59:26 +000074 : func_name(fname)
Reid Spencer1ea099c2005-04-27 00:05:45 +000075#ifndef NDEBUG
Reid Spencer789082a2005-05-07 20:15:59 +000076 , occurrences("simplify-libcalls",description)
Reid Spencer1ea099c2005-04-27 00:05:45 +000077#endif
Reid Spencera7c049b2005-04-25 02:53:12 +000078 {
Reid Spencer716f49e2005-04-27 21:29:20 +000079 // Register this call optimizer in the optlist (a hash_map)
Reid Spencer9974dda2005-05-03 02:54:54 +000080 optlist[fname] = this;
Reid Spencera7c049b2005-04-25 02:53:12 +000081 }
82
Reid Spencer716f49e2005-04-27 21:29:20 +000083 /// @brief Deregister from the optlist
84 virtual ~LibCallOptimization() { optlist.erase(func_name); }
Reid Spencer43e0bae2005-04-26 03:26:15 +000085
Reid Spencera16d5a52005-04-27 07:54:40 +000086 /// The implementation of this function in subclasses should determine if
Jeff Cohen00b168892005-07-27 06:12:32 +000087 /// \p F is suitable for the optimization. This method is called by
88 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
89 /// sites of such a function if that function is not suitable in the first
Reid Spencer716f49e2005-04-27 21:29:20 +000090 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen00b168892005-07-27 06:12:32 +000091 /// false, otherwise. This function should also perform any lazy
92 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencera16d5a52005-04-27 07:54:40 +000093 /// true. This avoids doing initialization until the optimizer is actually
94 /// going to be called upon to do some optimization.
Reid Spencer716f49e2005-04-27 21:29:20 +000095 /// @brief Determine if the function is suitable for optimization
Reid Spencera16d5a52005-04-27 07:54:40 +000096 virtual bool ValidateCalledFunction(
97 const Function* F, ///< The function that is the target of call sites
98 SimplifyLibCalls& SLC ///< The pass object invoking us
99 ) = 0;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000100
Jeff Cohen00b168892005-07-27 06:12:32 +0000101 /// The implementations of this function in subclasses is the heart of the
102 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencera16d5a52005-04-27 07:54:40 +0000103 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen00b168892005-07-27 06:12:32 +0000104 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencera16d5a52005-04-27 07:54:40 +0000105 /// against ci, the subclass is responsible for returning true and ensuring
106 /// that ci is erased from its parent.
Reid Spencera16d5a52005-04-27 07:54:40 +0000107 /// @brief Optimize a call, if possible.
108 virtual bool OptimizeCall(
109 CallInst* ci, ///< The call instruction that should be optimized.
110 SimplifyLibCalls& SLC ///< The pass object invoking us
111 ) = 0;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000112
Reid Spencera16d5a52005-04-27 07:54:40 +0000113 /// @brief Get the name of the library call being optimized
114 const char * getFunctionName() const { return func_name; }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000115
Reid Spencer1ea099c2005-04-27 00:05:45 +0000116#ifndef NDEBUG
Reid Spencer716f49e2005-04-27 21:29:20 +0000117 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Reid Spencer673c1a92005-05-07 04:59:45 +0000118 void succeeded() { DEBUG(++occurrences); }
Reid Spencer1ea099c2005-04-27 00:05:45 +0000119#endif
Reid Spencera16d5a52005-04-27 07:54:40 +0000120
121private:
122 const char* func_name; ///< Name of the library call we optimize
123#ifndef NDEBUG
Reid Spencera16d5a52005-04-27 07:54:40 +0000124 Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
125#endif
126};
127
Jeff Cohen00b168892005-07-27 06:12:32 +0000128/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencera16d5a52005-04-27 07:54:40 +0000129/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen00b168892005-07-27 06:12:32 +0000130/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencera16d5a52005-04-27 07:54:40 +0000131/// functions with well-known semantics, such as those in the c library. The
Chris Lattner53249862005-08-24 17:22:17 +0000132/// class provides the basic infrastructure for handling runOnModule. Whenever
133/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer716f49e2005-04-27 21:29:20 +0000134/// validate the call (ValidateLibraryCall). If it is validated, then
135/// the OptimizeCall method is also called.
Reid Spencera16d5a52005-04-27 07:54:40 +0000136/// @brief A ModulePass for optimizing well-known function calls.
Jeff Cohen00b168892005-07-27 06:12:32 +0000137class SimplifyLibCalls : public ModulePass
Reid Spencera16d5a52005-04-27 07:54:40 +0000138{
Jeff Cohen5882b922005-04-29 03:05:44 +0000139public:
Reid Spencera16d5a52005-04-27 07:54:40 +0000140 /// We need some target data for accurate signature details that are
141 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer716f49e2005-04-27 21:29:20 +0000142 /// @brief Require TargetData from AnalysisUsage.
Reid Spencera16d5a52005-04-27 07:54:40 +0000143 virtual void getAnalysisUsage(AnalysisUsage& Info) const
144 {
145 // Ask that the TargetData analysis be performed before us so we can use
146 // the target data.
147 Info.addRequired<TargetData>();
148 }
149
150 /// For this pass, process all of the function calls in the module, calling
151 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer716f49e2005-04-27 21:29:20 +0000152 /// @brief Run all the lib call optimizations on a Module.
Reid Spencera16d5a52005-04-27 07:54:40 +0000153 virtual bool runOnModule(Module &M)
154 {
155 reset(M);
156
157 bool result = false;
158
159 // The call optimizations can be recursive. That is, the optimization might
160 // generate a call to another function which can also be optimized. This way
Jeff Cohen00b168892005-07-27 06:12:32 +0000161 // we make the LibCallOptimization instances very specific to the case they
162 // handle. It also means we need to keep running over the function calls in
Reid Spencera16d5a52005-04-27 07:54:40 +0000163 // the module until we don't get any more optimizations possible.
164 bool found_optimization = false;
165 do
166 {
167 found_optimization = false;
168 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI)
169 {
170 // All the "well-known" functions are external and have external linkage
Jeff Cohen00b168892005-07-27 06:12:32 +0000171 // because they live in a runtime library somewhere and were (probably)
172 // not compiled by LLVM. So, we only act on external functions that
Reid Spencer21506ff2005-05-03 07:23:44 +0000173 // have external linkage and non-empty uses.
Reid Spencera16d5a52005-04-27 07:54:40 +0000174 if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty())
175 continue;
176
177 // Get the optimization class that pertains to this function
178 LibCallOptimization* CO = optlist[FI->getName().c_str()];
179 if (!CO)
180 continue;
181
182 // Make sure the called function is suitable for the optimization
183 if (!CO->ValidateCalledFunction(FI,*this))
184 continue;
185
186 // Loop over each of the uses of the function
Jeff Cohen00b168892005-07-27 06:12:32 +0000187 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Reid Spencera16d5a52005-04-27 07:54:40 +0000188 UI != UE ; )
189 {
190 // If the use of the function is a call instruction
191 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
192 {
193 // Do the optimization on the LibCallOptimization.
194 if (CO->OptimizeCall(CI,*this))
195 {
196 ++SimplifiedLibCalls;
197 found_optimization = result = true;
198#ifndef NDEBUG
Reid Spencer716f49e2005-04-27 21:29:20 +0000199 CO->succeeded();
Reid Spencera16d5a52005-04-27 07:54:40 +0000200#endif
201 }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000202 }
203 }
204 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000205 } while (found_optimization);
206 return result;
207 }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000208
Reid Spencera16d5a52005-04-27 07:54:40 +0000209 /// @brief Return the *current* module we're working on.
Reid Spencerff5525d2005-04-29 09:39:47 +0000210 Module* getModule() const { return M; }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000211
Reid Spencera16d5a52005-04-27 07:54:40 +0000212 /// @brief Return the *current* target data for the module we're working on.
Reid Spencerff5525d2005-04-29 09:39:47 +0000213 TargetData* getTargetData() const { return TD; }
214
215 /// @brief Return the size_t type -- syntactic shortcut
216 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
217
218 /// @brief Return a Function* for the fputc libcall
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000219 Function* get_fputc(const Type* FILEptr_type)
Reid Spencerff5525d2005-04-29 09:39:47 +0000220 {
221 if (!fputc_func)
222 {
223 std::vector<const Type*> args;
224 args.push_back(Type::IntTy);
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000225 args.push_back(FILEptr_type);
Jeff Cohen00b168892005-07-27 06:12:32 +0000226 FunctionType* fputc_type =
Reid Spencerff5525d2005-04-29 09:39:47 +0000227 FunctionType::get(Type::IntTy, args, false);
228 fputc_func = M->getOrInsertFunction("fputc",fputc_type);
229 }
230 return fputc_func;
231 }
232
233 /// @brief Return a Function* for the fwrite libcall
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000234 Function* get_fwrite(const Type* FILEptr_type)
Reid Spencerff5525d2005-04-29 09:39:47 +0000235 {
236 if (!fwrite_func)
237 {
238 std::vector<const Type*> args;
239 args.push_back(PointerType::get(Type::SByteTy));
240 args.push_back(TD->getIntPtrType());
241 args.push_back(TD->getIntPtrType());
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000242 args.push_back(FILEptr_type);
Jeff Cohen00b168892005-07-27 06:12:32 +0000243 FunctionType* fwrite_type =
Reid Spencerff5525d2005-04-29 09:39:47 +0000244 FunctionType::get(TD->getIntPtrType(), args, false);
245 fwrite_func = M->getOrInsertFunction("fwrite",fwrite_type);
246 }
247 return fwrite_func;
248 }
249
250 /// @brief Return a Function* for the sqrt libcall
251 Function* get_sqrt()
252 {
253 if (!sqrt_func)
254 {
255 std::vector<const Type*> args;
256 args.push_back(Type::DoubleTy);
Jeff Cohen00b168892005-07-27 06:12:32 +0000257 FunctionType* sqrt_type =
Reid Spencerff5525d2005-04-29 09:39:47 +0000258 FunctionType::get(Type::DoubleTy, args, false);
259 sqrt_func = M->getOrInsertFunction("sqrt",sqrt_type);
260 }
261 return sqrt_func;
262 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000263
264 /// @brief Return a Function* for the strlen libcall
Reid Spencer58b563c2005-05-04 03:20:21 +0000265 Function* get_strcpy()
266 {
267 if (!strcpy_func)
268 {
269 std::vector<const Type*> args;
270 args.push_back(PointerType::get(Type::SByteTy));
271 args.push_back(PointerType::get(Type::SByteTy));
Jeff Cohen00b168892005-07-27 06:12:32 +0000272 FunctionType* strcpy_type =
Reid Spencer58b563c2005-05-04 03:20:21 +0000273 FunctionType::get(PointerType::get(Type::SByteTy), args, false);
274 strcpy_func = M->getOrInsertFunction("strcpy",strcpy_type);
275 }
276 return strcpy_func;
277 }
278
279 /// @brief Return a Function* for the strlen libcall
Reid Spencera16d5a52005-04-27 07:54:40 +0000280 Function* get_strlen()
Reid Spencer43e0bae2005-04-26 03:26:15 +0000281 {
Reid Spencera16d5a52005-04-27 07:54:40 +0000282 if (!strlen_func)
Reid Spencer43e0bae2005-04-26 03:26:15 +0000283 {
284 std::vector<const Type*> args;
285 args.push_back(PointerType::get(Type::SByteTy));
Jeff Cohen00b168892005-07-27 06:12:32 +0000286 FunctionType* strlen_type =
Reid Spencera16d5a52005-04-27 07:54:40 +0000287 FunctionType::get(TD->getIntPtrType(), args, false);
288 strlen_func = M->getOrInsertFunction("strlen",strlen_type);
Reid Spencer43e0bae2005-04-26 03:26:15 +0000289 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000290 return strlen_func;
Reid Spencer43e0bae2005-04-26 03:26:15 +0000291 }
292
Reid Spencer21506ff2005-05-03 07:23:44 +0000293 /// @brief Return a Function* for the memchr libcall
294 Function* get_memchr()
295 {
296 if (!memchr_func)
297 {
298 std::vector<const Type*> args;
299 args.push_back(PointerType::get(Type::SByteTy));
300 args.push_back(Type::IntTy);
301 args.push_back(TD->getIntPtrType());
302 FunctionType* memchr_type = FunctionType::get(
303 PointerType::get(Type::SByteTy), args, false);
304 memchr_func = M->getOrInsertFunction("memchr",memchr_type);
305 }
306 return memchr_func;
307 }
308
Reid Spencera16d5a52005-04-27 07:54:40 +0000309 /// @brief Return a Function* for the memcpy libcall
Chris Lattner53249862005-08-24 17:22:17 +0000310 Function* get_memcpy() {
311 if (!memcpy_func) {
312 const Type *SBP = PointerType::get(Type::SByteTy);
313 memcpy_func = M->getOrInsertFunction("llvm.memcpy", Type::VoidTy,SBP, SBP,
314 Type::UIntTy, Type::UIntTy, 0);
Reid Spencer43e0bae2005-04-26 03:26:15 +0000315 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000316 return memcpy_func;
Reid Spencer43e0bae2005-04-26 03:26:15 +0000317 }
Reid Spencer912401c2005-04-26 05:24:00 +0000318
Chris Lattner53249862005-08-24 17:22:17 +0000319 Function* get_floorf() {
320 if (!floorf_func)
321 floorf_func = M->getOrInsertFunction("floorf", Type::FloatTy,
322 Type::FloatTy, 0);
323 return floorf_func;
324 }
325
Reid Spencera16d5a52005-04-27 07:54:40 +0000326private:
Reid Spencer716f49e2005-04-27 21:29:20 +0000327 /// @brief Reset our cached data for a new Module
Reid Spencera16d5a52005-04-27 07:54:40 +0000328 void reset(Module& mod)
Reid Spencer912401c2005-04-26 05:24:00 +0000329 {
Reid Spencera16d5a52005-04-27 07:54:40 +0000330 M = &mod;
331 TD = &getAnalysis<TargetData>();
Reid Spencerff5525d2005-04-29 09:39:47 +0000332 fputc_func = 0;
333 fwrite_func = 0;
Reid Spencera16d5a52005-04-27 07:54:40 +0000334 memcpy_func = 0;
Reid Spencer21506ff2005-05-03 07:23:44 +0000335 memchr_func = 0;
Reid Spencerff5525d2005-04-29 09:39:47 +0000336 sqrt_func = 0;
Reid Spencer58b563c2005-05-04 03:20:21 +0000337 strcpy_func = 0;
Reid Spencera16d5a52005-04-27 07:54:40 +0000338 strlen_func = 0;
Chris Lattner53249862005-08-24 17:22:17 +0000339 floorf_func = 0;
Reid Spencer912401c2005-04-26 05:24:00 +0000340 }
Reid Spencera7c049b2005-04-25 02:53:12 +0000341
Reid Spencera16d5a52005-04-27 07:54:40 +0000342private:
Reid Spencerff5525d2005-04-29 09:39:47 +0000343 Function* fputc_func; ///< Cached fputc function
344 Function* fwrite_func; ///< Cached fwrite function
Reid Spencer716f49e2005-04-27 21:29:20 +0000345 Function* memcpy_func; ///< Cached llvm.memcpy function
Reid Spencer21506ff2005-05-03 07:23:44 +0000346 Function* memchr_func; ///< Cached memchr function
Reid Spencerff5525d2005-04-29 09:39:47 +0000347 Function* sqrt_func; ///< Cached sqrt function
Reid Spencer58b563c2005-05-04 03:20:21 +0000348 Function* strcpy_func; ///< Cached strcpy function
Reid Spencer716f49e2005-04-27 21:29:20 +0000349 Function* strlen_func; ///< Cached strlen function
Chris Lattner53249862005-08-24 17:22:17 +0000350 Function* floorf_func; ///< Cached floorf function
Reid Spencer716f49e2005-04-27 21:29:20 +0000351 Module* M; ///< Cached Module
352 TargetData* TD; ///< Cached TargetData
Reid Spencera16d5a52005-04-27 07:54:40 +0000353};
354
355// Register the pass
Jeff Cohen00b168892005-07-27 06:12:32 +0000356RegisterOpt<SimplifyLibCalls>
Reid Spencera16d5a52005-04-27 07:54:40 +0000357X("simplify-libcalls","Simplify well-known library calls");
358
359} // anonymous namespace
360
361// The only public symbol in this file which just instantiates the pass object
Jeff Cohen00b168892005-07-27 06:12:32 +0000362ModulePass *llvm::createSimplifyLibCallsPass()
363{
364 return new SimplifyLibCalls();
Reid Spencera16d5a52005-04-27 07:54:40 +0000365}
366
367// Classes below here, in the anonymous namespace, are all subclasses of the
368// LibCallOptimization class, each implementing all optimizations possible for a
369// single well-known library call. Each has a static singleton instance that
Jeff Cohen00b168892005-07-27 06:12:32 +0000370// auto registers it into the "optlist" global above.
Reid Spencera16d5a52005-04-27 07:54:40 +0000371namespace {
372
Reid Spencer134d2e42005-06-18 17:46:28 +0000373// Forward declare utility functions.
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000374bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencer134d2e42005-06-18 17:46:28 +0000375Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencera16d5a52005-04-27 07:54:40 +0000376
377/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencera7c049b2005-04-25 02:53:12 +0000378/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer716f49e2005-04-27 21:29:20 +0000379/// the same value passed to the exit function. When this is done, it splits the
380/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencera7c049b2005-04-25 02:53:12 +0000381/// @brief Replace calls to exit in main with a simple return
Reid Spencera16d5a52005-04-27 07:54:40 +0000382struct ExitInMainOptimization : public LibCallOptimization
Reid Spencera7c049b2005-04-25 02:53:12 +0000383{
Reid Spencer9974dda2005-05-03 02:54:54 +0000384 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer789082a2005-05-07 20:15:59 +0000385 "Number of 'exit' calls simplified") {}
Reid Spencer6cc03112005-04-25 21:11:48 +0000386
387 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen00b168892005-07-27 06:12:32 +0000388 // type, external linkage, not varargs).
Reid Spencera16d5a52005-04-27 07:54:40 +0000389 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer6cc03112005-04-25 21:11:48 +0000390 {
Reid Spencer20754ac2005-04-26 07:45:18 +0000391 if (f->arg_size() >= 1)
392 if (f->arg_begin()->getType()->isInteger())
393 return true;
Reid Spencer6cc03112005-04-25 21:11:48 +0000394 return false;
395 }
396
Reid Spencera16d5a52005-04-27 07:54:40 +0000397 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencerb7c11e32005-04-25 03:59:26 +0000398 {
Reid Spencer6cc03112005-04-25 21:11:48 +0000399 // To be careful, we check that the call to exit is coming from "main", that
400 // main has external linkage, and the return type of main and the argument
Jeff Cohen00b168892005-07-27 06:12:32 +0000401 // to exit have the same type.
Reid Spencer6cc03112005-04-25 21:11:48 +0000402 Function *from = ci->getParent()->getParent();
403 if (from->hasExternalLinkage())
404 if (from->getReturnType() == ci->getOperand(1)->getType())
405 if (from->getName() == "main")
406 {
Jeff Cohen00b168892005-07-27 06:12:32 +0000407 // Okay, time to actually do the optimization. First, get the basic
Reid Spencer6cc03112005-04-25 21:11:48 +0000408 // block of the call instruction
409 BasicBlock* bb = ci->getParent();
Reid Spencera7c049b2005-04-25 02:53:12 +0000410
Jeff Cohen00b168892005-07-27 06:12:32 +0000411 // Create a return instruction that we'll replace the call with.
412 // Note that the argument of the return is the argument of the call
Reid Spencer6cc03112005-04-25 21:11:48 +0000413 // instruction.
414 ReturnInst* ri = new ReturnInst(ci->getOperand(1), ci);
Reid Spencera7c049b2005-04-25 02:53:12 +0000415
Reid Spencer6cc03112005-04-25 21:11:48 +0000416 // Split the block at the call instruction which places it in a new
417 // basic block.
Reid Spencer43e0bae2005-04-26 03:26:15 +0000418 bb->splitBasicBlock(ci);
Reid Spencera7c049b2005-04-25 02:53:12 +0000419
Reid Spencer6cc03112005-04-25 21:11:48 +0000420 // The block split caused a branch instruction to be inserted into
421 // the end of the original block, right after the return instruction
422 // that we put there. That's not a valid block, so delete the branch
423 // instruction.
Reid Spencer43e0bae2005-04-26 03:26:15 +0000424 bb->getInstList().pop_back();
Reid Spencera7c049b2005-04-25 02:53:12 +0000425
Reid Spencer6cc03112005-04-25 21:11:48 +0000426 // Now we can finally get rid of the call instruction which now lives
427 // in the new basic block.
428 ci->eraseFromParent();
429
430 // Optimization succeeded, return true.
431 return true;
432 }
433 // We didn't pass the criteria for this optimization so return false
434 return false;
Reid Spencerb7c11e32005-04-25 03:59:26 +0000435 }
Reid Spencera7c049b2005-04-25 02:53:12 +0000436} ExitInMainOptimizer;
437
Jeff Cohen00b168892005-07-27 06:12:32 +0000438/// This LibCallOptimization will simplify a call to the strcat library
439/// function. The simplification is possible only if the string being
440/// concatenated is a constant array or a constant expression that results in
441/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer716f49e2005-04-27 21:29:20 +0000442/// of the constant string. Both of these calls are further reduced, if possible
443/// on subsequent passes.
Reid Spencer6cc03112005-04-25 21:11:48 +0000444/// @brief Simplify the strcat library function.
Reid Spencera16d5a52005-04-27 07:54:40 +0000445struct StrCatOptimization : public LibCallOptimization
Reid Spencerb7c11e32005-04-25 03:59:26 +0000446{
Reid Spencer43e0bae2005-04-26 03:26:15 +0000447public:
Reid Spencer716f49e2005-04-27 21:29:20 +0000448 /// @brief Default constructor
Reid Spencer9974dda2005-05-03 02:54:54 +0000449 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer789082a2005-05-07 20:15:59 +0000450 "Number of 'strcat' calls simplified") {}
Reid Spencera16d5a52005-04-27 07:54:40 +0000451
452public:
Reid Spencer6cc03112005-04-25 21:11:48 +0000453
454 /// @brief Make sure that the "strcat" function has the right prototype
Jeff Cohen00b168892005-07-27 06:12:32 +0000455 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer6cc03112005-04-25 21:11:48 +0000456 {
457 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen00b168892005-07-27 06:12:32 +0000458 if (f->arg_size() == 2)
Reid Spencer6cc03112005-04-25 21:11:48 +0000459 {
460 Function::const_arg_iterator AI = f->arg_begin();
461 if (AI++->getType() == PointerType::get(Type::SByteTy))
462 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer43e0bae2005-04-26 03:26:15 +0000463 {
Reid Spencer43e0bae2005-04-26 03:26:15 +0000464 // Indicate this is a suitable call type.
Reid Spencer6cc03112005-04-25 21:11:48 +0000465 return true;
Reid Spencer43e0bae2005-04-26 03:26:15 +0000466 }
Reid Spencer6cc03112005-04-25 21:11:48 +0000467 }
468 return false;
469 }
470
Reid Spencera16d5a52005-04-27 07:54:40 +0000471 /// @brief Optimize the strcat library function
472 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencerb7c11e32005-04-25 03:59:26 +0000473 {
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000474 // Extract some information from the instruction
475 Module* M = ci->getParent()->getParent()->getParent();
476 Value* dest = ci->getOperand(1);
477 Value* src = ci->getOperand(2);
478
Jeff Cohen00b168892005-07-27 06:12:32 +0000479 // Extract the initializer (while making numerous checks) from the
Reid Spencer912401c2005-04-26 05:24:00 +0000480 // source operand of the call to strcat. If we get null back, one of
481 // a variety of checks in get_GVInitializer failed
Reid Spencer20754ac2005-04-26 07:45:18 +0000482 uint64_t len = 0;
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000483 if (!getConstantStringLength(src,len))
Reid Spencer43e0bae2005-04-26 03:26:15 +0000484 return false;
485
Reid Spencer20754ac2005-04-26 07:45:18 +0000486 // Handle the simple, do-nothing case
487 if (len == 0)
Reid Spencer43e0bae2005-04-26 03:26:15 +0000488 {
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000489 ci->replaceAllUsesWith(dest);
Reid Spencer43e0bae2005-04-26 03:26:15 +0000490 ci->eraseFromParent();
491 return true;
492 }
493
Reid Spencer20754ac2005-04-26 07:45:18 +0000494 // Increment the length because we actually want to memcpy the null
495 // terminator as well.
496 len++;
Reid Spencer6cc03112005-04-25 21:11:48 +0000497
Jeff Cohen00b168892005-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 Spencer20754ac2005-04-26 07:45:18 +0000501 // caches the Function* for us.
Jeff Cohen00b168892005-07-27 06:12:32 +0000502 CallInst* strlen_inst =
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000503 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencer20754ac2005-04-26 07:45:18 +0000504
Jeff Cohen00b168892005-07-27 06:12:32 +0000505 // Now that we have the destination's length, we must index into the
Reid Spencer20754ac2005-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 Cohen00b168892005-07-27 06:12:32 +0000510 GetElementPtrInst* gep =
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000511 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencer20754ac2005-04-26 07:45:18 +0000512
513 // We have enough information to now generate the memcpy call to
514 // do the concatenation for us.
515 std::vector<Value*> vals;
516 vals.push_back(gep); // destination
517 vals.push_back(ci->getOperand(2)); // source
Reid Spencer58b563c2005-05-04 03:20:21 +0000518 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
519 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000520 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencer20754ac2005-04-26 07:45:18 +0000521
Jeff Cohen00b168892005-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 Spencer20754ac2005-04-26 07:45:18 +0000524 // kill the strcat CallInst.
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000525 ci->replaceAllUsesWith(dest);
Reid Spencer20754ac2005-04-26 07:45:18 +0000526 ci->eraseFromParent();
527 return true;
Reid Spencerb7c11e32005-04-25 03:59:26 +0000528 }
529} StrCatOptimizer;
530
Jeff Cohen00b168892005-07-27 06:12:32 +0000531/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer21506ff2005-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.
535struct StrChrOptimization : public LibCallOptimization
536{
537public:
538 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer789082a2005-05-07 20:15:59 +0000539 "Number of 'strchr' calls simplified") {}
Reid Spencer21506ff2005-05-03 07:23:44 +0000540
541 /// @brief Make sure that the "strchr" function has the right prototype
Jeff Cohen00b168892005-07-27 06:12:32 +0000542 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer21506ff2005-05-03 07:23:44 +0000543 {
Jeff Cohen00b168892005-07-27 06:12:32 +0000544 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
Reid Spencer21506ff2005-05-03 07:23:44 +0000545 f->arg_size() == 2)
546 return true;
547 return false;
548 }
549
Chris Lattner93751352005-05-20 22:22:25 +0000550 /// @brief Perform the strchr optimizations
Reid Spencer21506ff2005-05-03 07:23:44 +0000551 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
552 {
553 // If there aren't three operands, bail
554 if (ci->getNumOperands() != 3)
555 return false;
556
557 // Check that the first argument to strchr is a constant array of sbyte.
558 // If it is, get the length and data, otherwise return false.
559 uint64_t len = 0;
560 ConstantArray* CA;
561 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
562 return false;
563
564 // Check that the second argument to strchr is a constant int, return false
565 // if it isn't
566 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
567 if (!CSI)
568 {
569 // Just lower this to memchr since we know the length of the string as
570 // it is constant.
571 Function* f = SLC.get_memchr();
572 std::vector<Value*> args;
573 args.push_back(ci->getOperand(1));
574 args.push_back(ci->getOperand(2));
575 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
576 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
577 ci->eraseFromParent();
578 return true;
579 }
580
581 // Get the character we're looking for
582 int64_t chr = CSI->getValue();
583
584 // Compute the offset
585 uint64_t offset = 0;
586 bool char_found = false;
587 for (uint64_t i = 0; i < len; ++i)
588 {
589 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i)))
590 {
591 // Check for the null terminator
592 if (CI->isNullValue())
593 break; // we found end of string
594 else if (CI->getValue() == chr)
595 {
596 char_found = true;
597 offset = i;
598 break;
599 }
600 }
601 }
602
603 // strchr(s,c) -> offset_of_in(c,s)
604 // (if c is a constant integer and s is a constant string)
605 if (char_found)
606 {
607 std::vector<Value*> indices;
608 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
609 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
610 ci->getOperand(1)->getName()+".strchr",ci);
611 ci->replaceAllUsesWith(GEP);
612 }
613 else
614 ci->replaceAllUsesWith(
615 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
616
617 ci->eraseFromParent();
618 return true;
619 }
620} StrChrOptimizer;
621
Jeff Cohen00b168892005-07-27 06:12:32 +0000622/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000623/// function. It optimizes out cases where one or both arguments are constant
624/// and the result can be determined statically.
625/// @brief Simplify the strcmp library function.
626struct StrCmpOptimization : public LibCallOptimization
627{
628public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000629 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer789082a2005-05-07 20:15:59 +0000630 "Number of 'strcmp' calls simplified") {}
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000631
Chris Lattner93751352005-05-20 22:22:25 +0000632 /// @brief Make sure that the "strcmp" function has the right prototype
Jeff Cohen00b168892005-07-27 06:12:32 +0000633 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000634 {
635 if (f->getReturnType() == Type::IntTy && f->arg_size() == 2)
636 return true;
637 return false;
638 }
639
Chris Lattner93751352005-05-20 22:22:25 +0000640 /// @brief Perform the strcmp optimization
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000641 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
642 {
643 // First, check to see if src and destination are the same. If they are,
Reid Spencer63a75132005-04-30 06:45:47 +0000644 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen00b168892005-07-27 06:12:32 +0000645 // because the call is a no-op.
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000646 Value* s1 = ci->getOperand(1);
647 Value* s2 = ci->getOperand(2);
648 if (s1 == s2)
649 {
650 // strcmp(x,x) -> 0
651 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
652 ci->eraseFromParent();
653 return true;
654 }
655
656 bool isstr_1 = false;
657 uint64_t len_1 = 0;
658 ConstantArray* A1;
659 if (getConstantStringLength(s1,len_1,&A1))
660 {
661 isstr_1 = true;
662 if (len_1 == 0)
663 {
664 // strcmp("",x) -> *x
Jeff Cohen00b168892005-07-27 06:12:32 +0000665 LoadInst* load =
Reid Spencer134d2e42005-06-18 17:46:28 +0000666 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +0000667 CastInst* cast =
Reid Spencer9f56b1f2005-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
675 bool isstr_2 = false;
676 uint64_t len_2 = 0;
677 ConstantArray* A2;
678 if (getConstantStringLength(s2,len_2,&A2))
679 {
680 isstr_2 = true;
681 if (len_2 == 0)
682 {
683 // strcmp(x,"") -> *x
Jeff Cohen00b168892005-07-27 06:12:32 +0000684 LoadInst* load =
Reid Spencer134d2e42005-06-18 17:46:28 +0000685 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +0000686 CastInst* cast =
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000687 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
688 ci->replaceAllUsesWith(cast);
689 ci->eraseFromParent();
690 return true;
691 }
692 }
693
694 if (isstr_1 && isstr_2)
695 {
696 // strcmp(x,y) -> cnst (if both x and y are constant strings)
697 std::string str1 = A1->getAsString();
698 std::string str2 = A2->getAsString();
699 int result = strcmp(str1.c_str(), str2.c_str());
700 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
701 ci->eraseFromParent();
702 return true;
703 }
704 return false;
705 }
706} StrCmpOptimizer;
707
Jeff Cohen00b168892005-07-27 06:12:32 +0000708/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000709/// function. It optimizes out cases where one or both arguments are constant
710/// and the result can be determined statically.
711/// @brief Simplify the strncmp library function.
712struct StrNCmpOptimization : public LibCallOptimization
713{
714public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000715 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer789082a2005-05-07 20:15:59 +0000716 "Number of 'strncmp' calls simplified") {}
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000717
Chris Lattner93751352005-05-20 22:22:25 +0000718 /// @brief Make sure that the "strncmp" function has the right prototype
Jeff Cohen00b168892005-07-27 06:12:32 +0000719 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000720 {
721 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
722 return true;
723 return false;
724 }
725
726 /// @brief Perform the strncpy optimization
727 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
728 {
729 // First, check to see if src and destination are the same. If they are,
730 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen00b168892005-07-27 06:12:32 +0000731 // because the call is a no-op.
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000732 Value* s1 = ci->getOperand(1);
733 Value* s2 = ci->getOperand(2);
734 if (s1 == s2)
735 {
736 // strncmp(x,x,l) -> 0
737 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
738 ci->eraseFromParent();
739 return true;
740 }
741
742 // Check the length argument, if it is Constant zero then the strings are
743 // considered equal.
744 uint64_t len_arg = 0;
745 bool len_arg_is_const = false;
746 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3)))
747 {
748 len_arg_is_const = true;
749 len_arg = len_CI->getRawValue();
750 if (len_arg == 0)
751 {
752 // strncmp(x,y,0) -> 0
753 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
754 ci->eraseFromParent();
755 return true;
Jeff Cohen00b168892005-07-27 06:12:32 +0000756 }
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000757 }
758
759 bool isstr_1 = false;
760 uint64_t len_1 = 0;
761 ConstantArray* A1;
762 if (getConstantStringLength(s1,len_1,&A1))
763 {
764 isstr_1 = true;
765 if (len_1 == 0)
766 {
767 // strncmp("",x) -> *x
768 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +0000769 CastInst* cast =
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000770 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
771 ci->replaceAllUsesWith(cast);
772 ci->eraseFromParent();
773 return true;
774 }
775 }
776
777 bool isstr_2 = false;
778 uint64_t len_2 = 0;
779 ConstantArray* A2;
780 if (getConstantStringLength(s2,len_2,&A2))
781 {
782 isstr_2 = true;
783 if (len_2 == 0)
784 {
785 // strncmp(x,"") -> *x
786 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +0000787 CastInst* cast =
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000788 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
789 ci->replaceAllUsesWith(cast);
790 ci->eraseFromParent();
791 return true;
792 }
793 }
794
795 if (isstr_1 && isstr_2 && len_arg_is_const)
796 {
797 // strncmp(x,y,const) -> constant
798 std::string str1 = A1->getAsString();
799 std::string str2 = A2->getAsString();
800 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
801 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
802 ci->eraseFromParent();
803 return true;
804 }
805 return false;
806 }
807} StrNCmpOptimizer;
808
Jeff Cohen00b168892005-07-27 06:12:32 +0000809/// This LibCallOptimization will simplify a call to the strcpy library
810/// function. Two optimizations are possible:
Reid Spencera16d5a52005-04-27 07:54:40 +0000811/// (1) If src and dest are the same and not volatile, just return dest
812/// (2) If the src is a constant then we can convert to llvm.memmove
813/// @brief Simplify the strcpy library function.
814struct StrCpyOptimization : public LibCallOptimization
815{
816public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000817 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer789082a2005-05-07 20:15:59 +0000818 "Number of 'strcpy' calls simplified") {}
Reid Spencera16d5a52005-04-27 07:54:40 +0000819
820 /// @brief Make sure that the "strcpy" function has the right prototype
Jeff Cohen00b168892005-07-27 06:12:32 +0000821 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencera16d5a52005-04-27 07:54:40 +0000822 {
823 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen00b168892005-07-27 06:12:32 +0000824 if (f->arg_size() == 2)
Reid Spencera16d5a52005-04-27 07:54:40 +0000825 {
826 Function::const_arg_iterator AI = f->arg_begin();
827 if (AI++->getType() == PointerType::get(Type::SByteTy))
828 if (AI->getType() == PointerType::get(Type::SByteTy))
829 {
830 // Indicate this is a suitable call type.
831 return true;
832 }
833 }
834 return false;
835 }
836
837 /// @brief Perform the strcpy optimization
838 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
839 {
840 // First, check to see if src and destination are the same. If they are,
841 // then the optimization is to replace the CallInst with the destination
Jeff Cohen00b168892005-07-27 06:12:32 +0000842 // because the call is a no-op. Note that this corresponds to the
Reid Spencera16d5a52005-04-27 07:54:40 +0000843 // degenerate strcpy(X,X) case which should have "undefined" results
844 // according to the C specification. However, it occurs sometimes and
845 // we optimize it as a no-op.
846 Value* dest = ci->getOperand(1);
847 Value* src = ci->getOperand(2);
848 if (dest == src)
849 {
850 ci->replaceAllUsesWith(dest);
851 ci->eraseFromParent();
852 return true;
853 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000854
Reid Spencera16d5a52005-04-27 07:54:40 +0000855 // Get the length of the constant string referenced by the second operand,
856 // the "src" parameter. Fail the optimization if we can't get the length
857 // (note that getConstantStringLength does lots of checks to make sure this
858 // is valid).
859 uint64_t len = 0;
860 if (!getConstantStringLength(ci->getOperand(2),len))
861 return false;
862
863 // If the constant string's length is zero we can optimize this by just
864 // doing a store of 0 at the first byte of the destination
865 if (len == 0)
866 {
867 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
868 ci->replaceAllUsesWith(dest);
869 ci->eraseFromParent();
870 return true;
871 }
872
873 // Increment the length because we actually want to memcpy the null
874 // terminator as well.
875 len++;
876
877 // Extract some information from the instruction
878 Module* M = ci->getParent()->getParent()->getParent();
879
880 // We have enough information to now generate the memcpy call to
881 // do the concatenation for us.
882 std::vector<Value*> vals;
883 vals.push_back(dest); // destination
884 vals.push_back(src); // source
Reid Spencer58b563c2005-05-04 03:20:21 +0000885 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
886 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000887 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencera16d5a52005-04-27 07:54:40 +0000888
Jeff Cohen00b168892005-07-27 06:12:32 +0000889 // Finally, substitute the first operand of the strcat call for the
890 // strcat call itself since strcat returns its first operand; and,
Reid Spencera16d5a52005-04-27 07:54:40 +0000891 // kill the strcat CallInst.
892 ci->replaceAllUsesWith(dest);
893 ci->eraseFromParent();
894 return true;
895 }
896} StrCpyOptimizer;
897
Jeff Cohen00b168892005-07-27 06:12:32 +0000898/// This LibCallOptimization will simplify a call to the strlen library
899/// function by replacing it with a constant value if the string provided to
Reid Spencer716f49e2005-04-27 21:29:20 +0000900/// it is a constant array.
Reid Spencer912401c2005-04-26 05:24:00 +0000901/// @brief Simplify the strlen library function.
Reid Spencera16d5a52005-04-27 07:54:40 +0000902struct StrLenOptimization : public LibCallOptimization
Reid Spencer912401c2005-04-26 05:24:00 +0000903{
Reid Spencer9974dda2005-05-03 02:54:54 +0000904 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer789082a2005-05-07 20:15:59 +0000905 "Number of 'strlen' calls simplified") {}
Reid Spencer912401c2005-04-26 05:24:00 +0000906
907 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencera16d5a52005-04-27 07:54:40 +0000908 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer912401c2005-04-26 05:24:00 +0000909 {
Reid Spencera16d5a52005-04-27 07:54:40 +0000910 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen00b168892005-07-27 06:12:32 +0000911 if (f->arg_size() == 1)
Reid Spencer912401c2005-04-26 05:24:00 +0000912 if (Function::const_arg_iterator AI = f->arg_begin())
913 if (AI->getType() == PointerType::get(Type::SByteTy))
914 return true;
915 return false;
916 }
917
918 /// @brief Perform the strlen optimization
Reid Spencera16d5a52005-04-27 07:54:40 +0000919 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer912401c2005-04-26 05:24:00 +0000920 {
Reid Spencer789082a2005-05-07 20:15:59 +0000921 // Make sure we're dealing with an sbyte* here.
922 Value* str = ci->getOperand(1);
923 if (str->getType() != PointerType::get(Type::SByteTy))
924 return false;
925
926 // Does the call to strlen have exactly one use?
Jeff Cohen00b168892005-07-27 06:12:32 +0000927 if (ci->hasOneUse())
Reid Spencer789082a2005-05-07 20:15:59 +0000928 // Is that single use a binary operator?
929 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
930 // Is it compared against a constant integer?
931 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
932 {
933 // Get the value the strlen result is compared to
934 uint64_t val = CI->getRawValue();
935
936 // If its compared against length 0 with == or !=
937 if (val == 0 &&
938 (bop->getOpcode() == Instruction::SetEQ ||
939 bop->getOpcode() == Instruction::SetNE))
940 {
941 // strlen(x) != 0 -> *x != 0
942 // strlen(x) == 0 -> *x == 0
943 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
944 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
945 load, ConstantSInt::get(Type::SByteTy,0),
946 bop->getName()+".strlen", ci);
947 bop->replaceAllUsesWith(rbop);
948 bop->eraseFromParent();
949 ci->eraseFromParent();
950 return true;
951 }
952 }
953
954 // Get the length of the constant string operand
Reid Spencer20754ac2005-04-26 07:45:18 +0000955 uint64_t len = 0;
956 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer912401c2005-04-26 05:24:00 +0000957 return false;
958
Reid Spencer789082a2005-05-07 20:15:59 +0000959 // strlen("xyz") -> 3 (for example)
Chris Lattner9cc5f422005-08-01 16:52:50 +0000960 const Type *Ty = SLC.getTargetData()->getIntPtrType();
961 if (Ty->isSigned())
962 ci->replaceAllUsesWith(ConstantSInt::get(Ty, len));
963 else
964 ci->replaceAllUsesWith(ConstantUInt::get(Ty, len));
965
Reid Spencer20754ac2005-04-26 07:45:18 +0000966 ci->eraseFromParent();
967 return true;
Reid Spencer912401c2005-04-26 05:24:00 +0000968 }
969} StrLenOptimizer;
970
Chris Lattnerc3300692005-09-29 04:54:20 +0000971/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
972/// is equal or not-equal to zero.
973static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
974 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
975 UI != E; ++UI) {
976 Instruction *User = cast<Instruction>(*UI);
977 if (User->getOpcode() == Instruction::SetNE ||
978 User->getOpcode() == Instruction::SetEQ) {
979 if (isa<Constant>(User->getOperand(1)) &&
980 cast<Constant>(User->getOperand(1))->isNullValue())
981 continue;
982 } else if (CastInst *CI = dyn_cast<CastInst>(User))
983 if (CI->getType() == Type::BoolTy)
984 continue;
985 // Unknown instruction.
986 return false;
987 }
988 return true;
989}
990
991/// This memcmpOptimization will simplify a call to the memcmp library
992/// function.
993struct memcmpOptimization : public LibCallOptimization {
994 /// @brief Default Constructor
995 memcmpOptimization()
996 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
997
998 /// @brief Make sure that the "memcmp" function has the right prototype
999 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
1000 Function::const_arg_iterator AI = F->arg_begin();
1001 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
1002 if (!isa<PointerType>((++AI)->getType())) return false;
1003 if (!(++AI)->getType()->isInteger()) return false;
1004 if (!F->getReturnType()->isInteger()) return false;
1005 return true;
1006 }
1007
1008 /// Because of alignment and instruction information that we don't have, we
1009 /// leave the bulk of this to the code generators.
1010 ///
1011 /// Note that we could do much more if we could force alignment on otherwise
1012 /// small aligned allocas, or if we could indicate that loads have a small
1013 /// alignment.
1014 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
1015 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
1016
1017 // If the two operands are the same, return zero.
1018 if (LHS == RHS) {
1019 // memcmp(s,s,x) -> 0
1020 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
1021 CI->eraseFromParent();
1022 return true;
1023 }
1024
1025 // Make sure we have a constant length.
1026 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
1027 if (!LenC) return false;
1028 uint64_t Len = LenC->getRawValue();
1029
1030 // If the length is zero, this returns 0.
1031 switch (Len) {
1032 case 0:
1033 // memcmp(s1,s2,0) -> 0
1034 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
1035 CI->eraseFromParent();
1036 return true;
1037 case 1: {
1038 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
1039 const Type *UCharPtr = PointerType::get(Type::UByteTy);
1040 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
1041 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
1042 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
1043 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
1044 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
1045 if (RV->getType() != CI->getType())
1046 RV = new CastInst(RV, CI->getType(), RV->getName(), CI);
1047 CI->replaceAllUsesWith(RV);
1048 CI->eraseFromParent();
1049 return true;
1050 }
1051 case 2:
1052 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
1053 // TODO: IF both are aligned, use a short load/compare.
1054
1055 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
1056 const Type *UCharPtr = PointerType::get(Type::UByteTy);
1057 CastInst *Op1Cast = new CastInst(LHS, UCharPtr, LHS->getName(), CI);
1058 CastInst *Op2Cast = new CastInst(RHS, UCharPtr, RHS->getName(), CI);
1059 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
1060 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
1061 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
1062 CI->getName()+".d1", CI);
1063 Constant *One = ConstantInt::get(Type::IntTy, 1);
1064 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
1065 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
1066 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
1067 Value *S2V2 = new LoadInst(G1, RHS->getName()+".val2", CI);
1068 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
1069 CI->getName()+".d1", CI);
1070 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
1071 if (Or->getType() != CI->getType())
1072 Or = new CastInst(Or, CI->getType(), Or->getName(), CI);
1073 CI->replaceAllUsesWith(Or);
1074 CI->eraseFromParent();
1075 return true;
1076 }
1077 break;
1078 default:
1079 break;
1080 }
1081
1082
1083
1084 return false;
1085 }
1086} memcmpOptimizer;
1087
1088
1089
1090
1091
Jeff Cohen00b168892005-07-27 06:12:32 +00001092/// This LibCallOptimization will simplify a call to the memcpy library
1093/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer716f49e2005-04-27 21:29:20 +00001094/// bytes depending on the length of the string and the alignment. Additional
1095/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencer6cc03112005-04-25 21:11:48 +00001096/// @brief Simplify the memcpy library function.
Reid Spencer21506ff2005-05-03 07:23:44 +00001097struct LLVMMemCpyOptimization : public LibCallOptimization
Reid Spencer6cc03112005-04-25 21:11:48 +00001098{
Reid Spencer716f49e2005-04-27 21:29:20 +00001099 /// @brief Default Constructor
Reid Spencer21506ff2005-05-03 07:23:44 +00001100 LLVMMemCpyOptimization() : LibCallOptimization("llvm.memcpy",
Reid Spencer9974dda2005-05-03 02:54:54 +00001101 "Number of 'llvm.memcpy' calls simplified") {}
1102
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001103protected:
Jeff Cohen00b168892005-07-27 06:12:32 +00001104 /// @brief Subclass Constructor
Reid Spencer789082a2005-05-07 20:15:59 +00001105 LLVMMemCpyOptimization(const char* fname, const char* desc)
1106 : LibCallOptimization(fname, desc) {}
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001107public:
Reid Spencer6cc03112005-04-25 21:11:48 +00001108
1109 /// @brief Make sure that the "memcpy" function has the right prototype
Reid Spencera16d5a52005-04-27 07:54:40 +00001110 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
Reid Spencer6cc03112005-04-25 21:11:48 +00001111 {
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001112 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer8f132612005-04-26 23:02:16 +00001113 return (f->arg_size() == 4);
Reid Spencer6cc03112005-04-25 21:11:48 +00001114 }
1115
Reid Spencer20754ac2005-04-26 07:45:18 +00001116 /// Because of alignment and instruction information that we don't have, we
1117 /// leave the bulk of this to the code generators. The optimization here just
1118 /// deals with a few degenerate cases where the length of the string and the
1119 /// alignment match the sizes of our intrinsic types so we can do a load and
1120 /// store instead of the memcpy call.
1121 /// @brief Perform the memcpy optimization.
Reid Spencera16d5a52005-04-27 07:54:40 +00001122 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
Reid Spencer6cc03112005-04-25 21:11:48 +00001123 {
Reid Spencer43fd4d02005-04-26 19:55:57 +00001124 // Make sure we have constant int values to work with
1125 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1126 if (!LEN)
1127 return false;
1128 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1129 if (!ALIGN)
1130 return false;
1131
1132 // If the length is larger than the alignment, we can't optimize
1133 uint64_t len = LEN->getRawValue();
1134 uint64_t alignment = ALIGN->getRawValue();
Reid Spencer21506ff2005-05-03 07:23:44 +00001135 if (alignment == 0)
1136 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001137 if (len > alignment)
Reid Spencer20754ac2005-04-26 07:45:18 +00001138 return false;
1139
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001140 // Get the type we will cast to, based on size of the string
Reid Spencer20754ac2005-04-26 07:45:18 +00001141 Value* dest = ci->getOperand(1);
1142 Value* src = ci->getOperand(2);
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001143 Type* castType = 0;
Reid Spencer20754ac2005-04-26 07:45:18 +00001144 switch (len)
1145 {
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001146 case 0:
Reid Spencerff5525d2005-04-29 09:39:47 +00001147 // memcpy(d,s,0,a) -> noop
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001148 ci->eraseFromParent();
1149 return true;
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001150 case 1: castType = Type::SByteTy; break;
1151 case 2: castType = Type::ShortTy; break;
1152 case 4: castType = Type::IntTy; break;
1153 case 8: castType = Type::LongTy; break;
Reid Spencer20754ac2005-04-26 07:45:18 +00001154 default:
1155 return false;
1156 }
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001157
1158 // Cast source and dest to the right sized primitive and then load/store
Jeff Cohen00b168892005-07-27 06:12:32 +00001159 CastInst* SrcCast =
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001160 new CastInst(src,PointerType::get(castType),src->getName()+".cast",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +00001161 CastInst* DestCast =
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001162 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1163 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencer20754ac2005-04-26 07:45:18 +00001164 StoreInst* SI = new StoreInst(LI, DestCast, ci);
Reid Spencer20754ac2005-04-26 07:45:18 +00001165 ci->eraseFromParent();
1166 return true;
Reid Spencer6cc03112005-04-25 21:11:48 +00001167 }
Reid Spencer21506ff2005-05-03 07:23:44 +00001168} LLVMMemCpyOptimizer;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001169
Jeff Cohen00b168892005-07-27 06:12:32 +00001170/// This LibCallOptimization will simplify a call to the memmove library
1171/// function. It is identical to MemCopyOptimization except for the name of
Reid Spencer716f49e2005-04-27 21:29:20 +00001172/// the intrinsic.
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001173/// @brief Simplify the memmove library function.
Reid Spencer21506ff2005-05-03 07:23:44 +00001174struct LLVMMemMoveOptimization : public LLVMMemCpyOptimization
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001175{
Reid Spencer716f49e2005-04-27 21:29:20 +00001176 /// @brief Default Constructor
Reid Spencer21506ff2005-05-03 07:23:44 +00001177 LLVMMemMoveOptimization() : LLVMMemCpyOptimization("llvm.memmove",
Reid Spencer9974dda2005-05-03 02:54:54 +00001178 "Number of 'llvm.memmove' calls simplified") {}
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001179
Reid Spencer21506ff2005-05-03 07:23:44 +00001180} LLVMMemMoveOptimizer;
1181
Jeff Cohen00b168892005-07-27 06:12:32 +00001182/// This LibCallOptimization will simplify a call to the memset library
1183/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1184/// bytes depending on the length argument.
Reid Spencer21506ff2005-05-03 07:23:44 +00001185struct LLVMMemSetOptimization : public LibCallOptimization
1186{
1187 /// @brief Default Constructor
1188 LLVMMemSetOptimization() : LibCallOptimization("llvm.memset",
Reid Spencer21506ff2005-05-03 07:23:44 +00001189 "Number of 'llvm.memset' calls simplified") {}
1190
1191public:
Reid Spencer21506ff2005-05-03 07:23:44 +00001192
1193 /// @brief Make sure that the "memset" function has the right prototype
1194 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
1195 {
1196 // Just make sure this has 3 arguments per LLVM spec.
1197 return (f->arg_size() == 4);
1198 }
1199
1200 /// Because of alignment and instruction information that we don't have, we
1201 /// leave the bulk of this to the code generators. The optimization here just
1202 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen00b168892005-07-27 06:12:32 +00001203 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer21506ff2005-05-03 07:23:44 +00001204 /// store instead of the memcpy call. Other calls are transformed into the
1205 /// llvm.memset intrinsic.
1206 /// @brief Perform the memset optimization.
1207 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
1208 {
1209 // Make sure we have constant int values to work with
1210 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1211 if (!LEN)
1212 return false;
1213 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1214 if (!ALIGN)
1215 return false;
1216
1217 // Extract the length and alignment
1218 uint64_t len = LEN->getRawValue();
1219 uint64_t alignment = ALIGN->getRawValue();
1220
1221 // Alignment 0 is identity for alignment 1
1222 if (alignment == 0)
1223 alignment = 1;
1224
1225 // If the length is zero, this is a no-op
1226 if (len == 0)
1227 {
1228 // memset(d,c,0,a) -> noop
1229 ci->eraseFromParent();
1230 return true;
1231 }
1232
1233 // If the length is larger than the alignment, we can't optimize
1234 if (len > alignment)
1235 return false;
1236
1237 // Make sure we have a constant ubyte to work with so we can extract
1238 // the value to be filled.
1239 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1240 if (!FILL)
1241 return false;
1242 if (FILL->getType() != Type::UByteTy)
1243 return false;
1244
1245 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen00b168892005-07-27 06:12:32 +00001246
Reid Spencer21506ff2005-05-03 07:23:44 +00001247 // Extract the fill character
1248 uint64_t fill_char = FILL->getValue();
1249 uint64_t fill_value = fill_char;
1250
1251 // Get the type we will cast to, based on size of memory area to fill, and
1252 // and the value we will store there.
1253 Value* dest = ci->getOperand(1);
1254 Type* castType = 0;
1255 switch (len)
1256 {
Jeff Cohen00b168892005-07-27 06:12:32 +00001257 case 1:
1258 castType = Type::UByteTy;
Reid Spencer21506ff2005-05-03 07:23:44 +00001259 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001260 case 2:
1261 castType = Type::UShortTy;
Reid Spencer21506ff2005-05-03 07:23:44 +00001262 fill_value |= fill_char << 8;
1263 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001264 case 4:
Reid Spencer21506ff2005-05-03 07:23:44 +00001265 castType = Type::UIntTy;
1266 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1267 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001268 case 8:
Reid Spencer21506ff2005-05-03 07:23:44 +00001269 castType = Type::ULongTy;
1270 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1271 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1272 fill_value |= fill_char << 56;
1273 break;
1274 default:
1275 return false;
1276 }
1277
1278 // Cast dest to the right sized primitive and then load/store
Jeff Cohen00b168892005-07-27 06:12:32 +00001279 CastInst* DestCast =
Reid Spencer21506ff2005-05-03 07:23:44 +00001280 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1281 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1282 ci->eraseFromParent();
1283 return true;
1284 }
1285} LLVMMemSetOptimizer;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001286
Jeff Cohen00b168892005-07-27 06:12:32 +00001287/// This LibCallOptimization will simplify calls to the "pow" library
1288/// function. It looks for cases where the result of pow is well known and
Reid Spencerff5525d2005-04-29 09:39:47 +00001289/// substitutes the appropriate value.
1290/// @brief Simplify the pow library function.
1291struct PowOptimization : public LibCallOptimization
1292{
1293public:
1294 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001295 PowOptimization() : LibCallOptimization("pow",
Reid Spencer789082a2005-05-07 20:15:59 +00001296 "Number of 'pow' calls simplified") {}
Reid Spencer9974dda2005-05-03 02:54:54 +00001297
Reid Spencerff5525d2005-04-29 09:39:47 +00001298 /// @brief Make sure that the "pow" function has the right prototype
1299 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1300 {
1301 // Just make sure this has 2 arguments
1302 return (f->arg_size() == 2);
1303 }
1304
1305 /// @brief Perform the pow optimization.
1306 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1307 {
1308 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1309 Value* base = ci->getOperand(1);
1310 Value* expn = ci->getOperand(2);
1311 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1312 double Op1V = Op1->getValue();
1313 if (Op1V == 1.0)
1314 {
1315 // pow(1.0,x) -> 1.0
1316 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1317 ci->eraseFromParent();
1318 return true;
1319 }
Jeff Cohen00b168892005-07-27 06:12:32 +00001320 }
1321 else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn))
Reid Spencerff5525d2005-04-29 09:39:47 +00001322 {
1323 double Op2V = Op2->getValue();
1324 if (Op2V == 0.0)
1325 {
1326 // pow(x,0.0) -> 1.0
1327 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1328 ci->eraseFromParent();
1329 return true;
1330 }
1331 else if (Op2V == 0.5)
1332 {
1333 // pow(x,0.5) -> sqrt(x)
1334 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1335 ci->getName()+".pow",ci);
1336 ci->replaceAllUsesWith(sqrt_inst);
1337 ci->eraseFromParent();
1338 return true;
1339 }
1340 else if (Op2V == 1.0)
1341 {
1342 // pow(x,1.0) -> x
1343 ci->replaceAllUsesWith(base);
1344 ci->eraseFromParent();
1345 return true;
1346 }
1347 else if (Op2V == -1.0)
1348 {
1349 // pow(x,-1.0) -> 1.0/x
Chris Lattner53249862005-08-24 17:22:17 +00001350 BinaryOperator* div_inst= BinaryOperator::createDiv(
Reid Spencerff5525d2005-04-29 09:39:47 +00001351 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1352 ci->replaceAllUsesWith(div_inst);
1353 ci->eraseFromParent();
1354 return true;
1355 }
1356 }
1357 return false; // opt failed
1358 }
1359} PowOptimizer;
1360
Jeff Cohen00b168892005-07-27 06:12:32 +00001361/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencera1b43902005-05-02 23:59:26 +00001362/// function. It looks for cases where the result of fprintf is not used and the
1363/// operation can be reduced to something simpler.
1364/// @brief Simplify the pow library function.
1365struct FPrintFOptimization : public LibCallOptimization
1366{
1367public:
1368 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001369 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer789082a2005-05-07 20:15:59 +00001370 "Number of 'fprintf' calls simplified") {}
Reid Spencera1b43902005-05-02 23:59:26 +00001371
Reid Spencera1b43902005-05-02 23:59:26 +00001372 /// @brief Make sure that the "fprintf" function has the right prototype
1373 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1374 {
1375 // Just make sure this has at least 2 arguments
1376 return (f->arg_size() >= 2);
1377 }
1378
1379 /// @brief Perform the fprintf optimization.
1380 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1381 {
1382 // If the call has more than 3 operands, we can't optimize it
1383 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1384 return false;
1385
Jeff Cohen00b168892005-07-27 06:12:32 +00001386 // If the result of the fprintf call is used, none of these optimizations
Reid Spencera1b43902005-05-02 23:59:26 +00001387 // can be made.
Chris Lattner5d735bf2005-09-24 22:17:06 +00001388 if (!ci->use_empty())
Reid Spencera1b43902005-05-02 23:59:26 +00001389 return false;
1390
1391 // All the optimizations depend on the length of the second argument and the
1392 // fact that it is a constant string array. Check that now
Jeff Cohen00b168892005-07-27 06:12:32 +00001393 uint64_t len = 0;
Reid Spencera1b43902005-05-02 23:59:26 +00001394 ConstantArray* CA = 0;
1395 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1396 return false;
1397
1398 if (ci->getNumOperands() == 3)
1399 {
1400 // Make sure there's no % in the constant array
1401 for (unsigned i = 0; i < len; ++i)
1402 {
1403 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1404 {
1405 // Check for the null terminator
1406 if (CI->getRawValue() == '%')
1407 return false; // we found end of string
1408 }
Jeff Cohen00b168892005-07-27 06:12:32 +00001409 else
Reid Spencera1b43902005-05-02 23:59:26 +00001410 return false;
1411 }
1412
Jeff Cohen00b168892005-07-27 06:12:32 +00001413 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencera1b43902005-05-02 23:59:26 +00001414 const Type* FILEptr_type = ci->getOperand(1)->getType();
1415 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1416 if (!fwrite_func)
1417 return false;
John Criswell1d231ec2005-06-29 15:03:18 +00001418
1419 // Make sure that the fprintf() and fwrite() functions both take the
1420 // same type of char pointer.
1421 if (ci->getOperand(2)->getType() !=
1422 fwrite_func->getFunctionType()->getParamType(0))
John Criswell1d231ec2005-06-29 15:03:18 +00001423 return false;
John Criswell1d231ec2005-06-29 15:03:18 +00001424
Reid Spencera1b43902005-05-02 23:59:26 +00001425 std::vector<Value*> args;
1426 args.push_back(ci->getOperand(2));
1427 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1428 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1429 args.push_back(ci->getOperand(1));
Reid Spencer58b563c2005-05-04 03:20:21 +00001430 new CallInst(fwrite_func,args,ci->getName(),ci);
1431 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencera1b43902005-05-02 23:59:26 +00001432 ci->eraseFromParent();
1433 return true;
1434 }
1435
1436 // The remaining optimizations require the format string to be length 2
1437 // "%s" or "%c".
1438 if (len != 2)
1439 return false;
1440
1441 // The first character has to be a %
1442 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1443 if (CI->getRawValue() != '%')
1444 return false;
1445
1446 // Get the second character and switch on its value
1447 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1448 switch (CI->getRawValue())
1449 {
1450 case 's':
1451 {
Jeff Cohen00b168892005-07-27 06:12:32 +00001452 uint64_t len = 0;
Reid Spencera1b43902005-05-02 23:59:26 +00001453 ConstantArray* CA = 0;
1454 if (!getConstantStringLength(ci->getOperand(3), len, &CA))
1455 return false;
1456
Jeff Cohen00b168892005-07-27 06:12:32 +00001457 // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file)
Reid Spencera1b43902005-05-02 23:59:26 +00001458 const Type* FILEptr_type = ci->getOperand(1)->getType();
1459 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1460 if (!fwrite_func)
1461 return false;
1462 std::vector<Value*> args;
Reid Spencerb82baf02005-05-21 00:39:30 +00001463 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencera1b43902005-05-02 23:59:26 +00001464 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1465 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1466 args.push_back(ci->getOperand(1));
Reid Spencer58b563c2005-05-04 03:20:21 +00001467 new CallInst(fwrite_func,args,ci->getName(),ci);
1468 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencera1b43902005-05-02 23:59:26 +00001469 break;
1470 }
1471 case 'c':
1472 {
1473 ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(3));
1474 if (!CI)
1475 return false;
1476
1477 const Type* FILEptr_type = ci->getOperand(1)->getType();
1478 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1479 if (!fputc_func)
1480 return false;
1481 CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci);
1482 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer58b563c2005-05-04 03:20:21 +00001483 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencera1b43902005-05-02 23:59:26 +00001484 break;
1485 }
1486 default:
1487 return false;
1488 }
1489 ci->eraseFromParent();
1490 return true;
1491 }
1492} FPrintFOptimizer;
1493
Jeff Cohen00b168892005-07-27 06:12:32 +00001494/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer58b563c2005-05-04 03:20:21 +00001495/// function. It looks for cases where the result of sprintf is not used and the
1496/// operation can be reduced to something simpler.
1497/// @brief Simplify the pow library function.
1498struct SPrintFOptimization : public LibCallOptimization
1499{
1500public:
1501 /// @brief Default Constructor
1502 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer789082a2005-05-07 20:15:59 +00001503 "Number of 'sprintf' calls simplified") {}
Reid Spencer58b563c2005-05-04 03:20:21 +00001504
Reid Spencer58b563c2005-05-04 03:20:21 +00001505 /// @brief Make sure that the "fprintf" function has the right prototype
1506 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1507 {
1508 // Just make sure this has at least 2 arguments
1509 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1510 }
1511
1512 /// @brief Perform the sprintf optimization.
1513 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1514 {
1515 // If the call has more than 3 operands, we can't optimize it
1516 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1517 return false;
1518
1519 // All the optimizations depend on the length of the second argument and the
1520 // fact that it is a constant string array. Check that now
Jeff Cohen00b168892005-07-27 06:12:32 +00001521 uint64_t len = 0;
Reid Spencer58b563c2005-05-04 03:20:21 +00001522 ConstantArray* CA = 0;
1523 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1524 return false;
1525
1526 if (ci->getNumOperands() == 3)
1527 {
1528 if (len == 0)
1529 {
1530 // If the length is 0, we just need to store a null byte
1531 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1532 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1533 ci->eraseFromParent();
1534 return true;
1535 }
1536
1537 // Make sure there's no % in the constant array
1538 for (unsigned i = 0; i < len; ++i)
1539 {
1540 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1541 {
1542 // Check for the null terminator
1543 if (CI->getRawValue() == '%')
1544 return false; // we found a %, can't optimize
1545 }
Jeff Cohen00b168892005-07-27 06:12:32 +00001546 else
Reid Spencer58b563c2005-05-04 03:20:21 +00001547 return false; // initializer is not constant int, can't optimize
1548 }
1549
1550 // Increment length because we want to copy the null byte too
1551 len++;
1552
Jeff Cohen00b168892005-07-27 06:12:32 +00001553 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer58b563c2005-05-04 03:20:21 +00001554 Function* memcpy_func = SLC.get_memcpy();
1555 if (!memcpy_func)
1556 return false;
1557 std::vector<Value*> args;
1558 args.push_back(ci->getOperand(1));
1559 args.push_back(ci->getOperand(2));
1560 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1561 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1562 new CallInst(memcpy_func,args,"",ci);
1563 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1564 ci->eraseFromParent();
1565 return true;
1566 }
1567
1568 // The remaining optimizations require the format string to be length 2
1569 // "%s" or "%c".
1570 if (len != 2)
1571 return false;
1572
1573 // The first character has to be a %
1574 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1575 if (CI->getRawValue() != '%')
1576 return false;
1577
1578 // Get the second character and switch on its value
1579 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Chris Lattner5d735bf2005-09-24 22:17:06 +00001580 switch (CI->getRawValue()) {
1581 case 's': {
1582 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1583 Function* strlen_func = SLC.get_strlen();
1584 Function* memcpy_func = SLC.get_memcpy();
1585 if (!strlen_func || !memcpy_func)
Reid Spencer58b563c2005-05-04 03:20:21 +00001586 return false;
Chris Lattner5d735bf2005-09-24 22:17:06 +00001587
1588 Value *Len = new CallInst(strlen_func, CastToCStr(ci->getOperand(3), *ci),
1589 ci->getOperand(3)->getName()+".len", ci);
1590 Value *Len1 = BinaryOperator::createAdd(Len,
1591 ConstantInt::get(Len->getType(), 1),
1592 Len->getName()+"1", ci);
1593 if (Len1->getType() != Type::UIntTy)
1594 Len1 = new CastInst(Len1, Type::UIntTy, Len1->getName(), ci);
1595 std::vector<Value*> args;
1596 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1597 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1598 args.push_back(Len1);
1599 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1600 new CallInst(memcpy_func, args, "", ci);
1601
1602 // The strlen result is the unincremented number of bytes in the string.
Chris Lattneraebac502005-09-25 07:06:48 +00001603 if (!ci->use_empty()) {
1604 if (Len->getType() != ci->getType())
1605 Len = new CastInst(Len, ci->getType(), Len->getName(), ci);
1606 ci->replaceAllUsesWith(Len);
1607 }
Chris Lattner5d735bf2005-09-24 22:17:06 +00001608 ci->eraseFromParent();
1609 return true;
Reid Spencer58b563c2005-05-04 03:20:21 +00001610 }
Chris Lattner5d735bf2005-09-24 22:17:06 +00001611 case 'c': {
1612 // sprintf(dest,"%c",chr) -> store chr, dest
1613 CastInst* cast = new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1614 new StoreInst(cast, ci->getOperand(1), ci);
1615 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1616 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1617 ci);
1618 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1619 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1620 ci->eraseFromParent();
1621 return true;
1622 }
1623 }
1624 return false;
Reid Spencer58b563c2005-05-04 03:20:21 +00001625 }
1626} SPrintFOptimizer;
1627
Jeff Cohen00b168892005-07-27 06:12:32 +00001628/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencerff5525d2005-04-29 09:39:47 +00001629/// function. It looks for cases where the result of fputs is not used and the
1630/// operation can be reduced to something simpler.
1631/// @brief Simplify the pow library function.
1632struct PutsOptimization : public LibCallOptimization
1633{
1634public:
1635 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001636 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer789082a2005-05-07 20:15:59 +00001637 "Number of 'fputs' calls simplified") {}
Reid Spencerff5525d2005-04-29 09:39:47 +00001638
Reid Spencerff5525d2005-04-29 09:39:47 +00001639 /// @brief Make sure that the "fputs" function has the right prototype
1640 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1641 {
1642 // Just make sure this has 2 arguments
1643 return (f->arg_size() == 2);
1644 }
1645
1646 /// @brief Perform the fputs optimization.
1647 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1648 {
1649 // If the result is used, none of these optimizations work
Chris Lattner5d735bf2005-09-24 22:17:06 +00001650 if (!ci->use_empty())
Reid Spencerff5525d2005-04-29 09:39:47 +00001651 return false;
1652
1653 // All the optimizations depend on the length of the first argument and the
1654 // fact that it is a constant string array. Check that now
Jeff Cohen00b168892005-07-27 06:12:32 +00001655 uint64_t len = 0;
Reid Spencerff5525d2005-04-29 09:39:47 +00001656 if (!getConstantStringLength(ci->getOperand(1), len))
1657 return false;
1658
1659 switch (len)
1660 {
1661 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 Spencer9f56b1f2005-04-30 03:17:54 +00001667 const Type* FILEptr_type = ci->getOperand(2)->getType();
1668 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencerff5525d2005-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 Cohen00b168892005-07-27 06:12:32 +00001679 {
Reid Spencerff5525d2005-04-29 09:39:47 +00001680 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001681 const Type* FILEptr_type = ci->getOperand(2)->getType();
1682 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencerff5525d2005-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 Cohen00b168892005-07-27 06:12:32 +00001699/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencercea65592005-05-04 18:58:28 +00001700/// function. It simply does range checks the parameter explicitly.
1701/// @brief Simplify the isdigit library function.
Chris Lattnere9b62422005-09-29 06:16:11 +00001702struct isdigitOptimization : public LibCallOptimization {
Reid Spencercea65592005-05-04 18:58:28 +00001703public:
Chris Lattnere9b62422005-09-29 06:16:11 +00001704 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer789082a2005-05-07 20:15:59 +00001705 "Number of 'isdigit' calls simplified") {}
Reid Spencercea65592005-05-04 18:58:28 +00001706
Chris Lattnere9b62422005-09-29 06:16:11 +00001707 /// @brief Make sure that the "isdigit" function has the right prototype
Reid Spencercea65592005-05-04 18:58:28 +00001708 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1709 {
1710 // Just make sure this has 1 argument
1711 return (f->arg_size() == 1);
1712 }
1713
1714 /// @brief Perform the toascii optimization.
1715 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1716 {
1717 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1)))
1718 {
1719 // isdigit(c) -> 0 or 1, if 'c' is constant
1720 uint64_t val = CI->getRawValue();
1721 if (val >= '0' && val <='9')
1722 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1723 else
1724 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1725 ci->eraseFromParent();
1726 return true;
1727 }
1728
1729 // isdigit(c) -> (unsigned)c - '0' <= 9
Jeff Cohen00b168892005-07-27 06:12:32 +00001730 CastInst* cast =
Reid Spencercea65592005-05-04 18:58:28 +00001731 new CastInst(ci->getOperand(1),Type::UIntTy,
1732 ci->getOperand(1)->getName()+".uint",ci);
Chris Lattner53249862005-08-24 17:22:17 +00001733 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencercea65592005-05-04 18:58:28 +00001734 ConstantUInt::get(Type::UIntTy,0x30),
1735 ci->getOperand(1)->getName()+".sub",ci);
1736 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1737 ConstantUInt::get(Type::UIntTy,9),
1738 ci->getOperand(1)->getName()+".cmp",ci);
Jeff Cohen00b168892005-07-27 06:12:32 +00001739 CastInst* c2 =
Reid Spencercea65592005-05-04 18:58:28 +00001740 new CastInst(setcond_inst,Type::IntTy,
1741 ci->getOperand(1)->getName()+".isdigit",ci);
1742 ci->replaceAllUsesWith(c2);
1743 ci->eraseFromParent();
1744 return true;
1745 }
Chris Lattnere9b62422005-09-29 06:16:11 +00001746} isdigitOptimizer;
1747
Chris Lattnera48bc532005-09-29 06:17:27 +00001748struct isasciiOptimization : public LibCallOptimization {
1749public:
1750 isasciiOptimization()
1751 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1752
1753 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1754 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1755 F->getReturnType()->isInteger();
1756 }
1757
1758 /// @brief Perform the isascii optimization.
1759 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1760 // isascii(c) -> (unsigned)c < 128
1761 Value *V = CI->getOperand(1);
1762 if (V->getType()->isSigned())
1763 V = new CastInst(V, V->getType()->getUnsignedVersion(), V->getName(), CI);
1764 Value *Cmp = BinaryOperator::createSetLT(V, ConstantUInt::get(V->getType(),
1765 128),
1766 V->getName()+".isascii", CI);
1767 if (Cmp->getType() != CI->getType())
1768 Cmp = new CastInst(Cmp, CI->getType(), Cmp->getName(), CI);
1769 CI->replaceAllUsesWith(Cmp);
1770 CI->eraseFromParent();
1771 return true;
1772 }
1773} isasciiOptimizer;
Chris Lattnere9b62422005-09-29 06:16:11 +00001774
Reid Spencercea65592005-05-04 18:58:28 +00001775
Jeff Cohen00b168892005-07-27 06:12:32 +00001776/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001777/// function. It simply does the corresponding and operation to restrict the
1778/// range of values to the ASCII character set (0-127).
1779/// @brief Simplify the toascii library function.
1780struct ToAsciiOptimization : public LibCallOptimization
1781{
1782public:
1783 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001784 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer789082a2005-05-07 20:15:59 +00001785 "Number of 'toascii' calls simplified") {}
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001786
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001787 /// @brief Make sure that the "fputs" function has the right prototype
1788 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1789 {
1790 // Just make sure this has 2 arguments
1791 return (f->arg_size() == 1);
1792 }
1793
1794 /// @brief Perform the toascii optimization.
1795 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1796 {
1797 // toascii(c) -> (c & 0x7f)
1798 Value* chr = ci->getOperand(1);
Chris Lattner53249862005-08-24 17:22:17 +00001799 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001800 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1801 ci->replaceAllUsesWith(and_inst);
1802 ci->eraseFromParent();
1803 return true;
1804 }
1805} ToAsciiOptimizer;
1806
Reid Spencerc29b13d2005-05-14 16:42:52 +00001807/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen00b168892005-07-27 06:12:32 +00001808/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerc29b13d2005-05-14 16:42:52 +00001809/// optimization is to compute the result at compile time if the argument is
1810/// a constant.
1811/// @brief Simplify the ffs library function.
1812struct FFSOptimization : public LibCallOptimization
1813{
1814protected:
1815 /// @brief Subclass Constructor
1816 FFSOptimization(const char* funcName, const char* description)
1817 : LibCallOptimization(funcName, description)
1818 {}
1819
1820public:
1821 /// @brief Default Constructor
1822 FFSOptimization() : LibCallOptimization("ffs",
1823 "Number of 'ffs' calls simplified") {}
1824
Reid Spencerc29b13d2005-05-14 16:42:52 +00001825 /// @brief Make sure that the "fputs" function has the right prototype
1826 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1827 {
1828 // Just make sure this has 2 arguments
1829 return (f->arg_size() == 1 && f->getReturnType() == Type::IntTy);
1830 }
1831
1832 /// @brief Perform the ffs optimization.
1833 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1834 {
1835 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1)))
1836 {
1837 // ffs(cnst) -> bit#
1838 // ffsl(cnst) -> bit#
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001839 // ffsll(cnst) -> bit#
Reid Spencerc29b13d2005-05-14 16:42:52 +00001840 uint64_t val = CI->getRawValue();
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001841 int result = 0;
1842 while (val != 0) {
1843 result +=1;
1844 if (val&1)
1845 break;
1846 val >>= 1;
1847 }
Reid Spencerc29b13d2005-05-14 16:42:52 +00001848 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, result));
1849 ci->eraseFromParent();
1850 return true;
1851 }
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001852
1853 // ffs(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1854 // ffsl(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1855 // ffsll(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1856 const Type* arg_type = ci->getOperand(1)->getType();
1857 std::vector<const Type*> args;
1858 args.push_back(arg_type);
1859 FunctionType* llvm_cttz_type = FunctionType::get(arg_type,args,false);
Jeff Cohen00b168892005-07-27 06:12:32 +00001860 Function* F =
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001861 SLC.getModule()->getOrInsertFunction("llvm.cttz",llvm_cttz_type);
1862 std::string inst_name(ci->getName()+".ffs");
Jeff Cohen00b168892005-07-27 06:12:32 +00001863 Instruction* call =
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001864 new CallInst(F, ci->getOperand(1), inst_name, ci);
1865 if (arg_type != Type::IntTy)
1866 call = new CastInst(call, Type::IntTy, inst_name, ci);
Chris Lattner53249862005-08-24 17:22:17 +00001867 BinaryOperator* add = BinaryOperator::createAdd(call,
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001868 ConstantSInt::get(Type::IntTy,1), inst_name, ci);
1869 SetCondInst* eq = new SetCondInst(Instruction::SetEQ,ci->getOperand(1),
1870 ConstantSInt::get(ci->getOperand(1)->getType(),0),inst_name,ci);
1871 SelectInst* select = new SelectInst(eq,ConstantSInt::get(Type::IntTy,0),add,
1872 inst_name,ci);
1873 ci->replaceAllUsesWith(select);
1874 ci->eraseFromParent();
1875 return true;
Reid Spencerc29b13d2005-05-14 16:42:52 +00001876 }
1877} FFSOptimizer;
1878
1879/// This LibCallOptimization will simplify calls to the "ffsl" library
1880/// calls. It simply uses FFSOptimization for which the transformation is
1881/// identical.
1882/// @brief Simplify the ffsl library function.
1883struct FFSLOptimization : public FFSOptimization
1884{
1885public:
1886 /// @brief Default Constructor
1887 FFSLOptimization() : FFSOptimization("ffsl",
1888 "Number of 'ffsl' calls simplified") {}
1889
1890} FFSLOptimizer;
1891
1892/// This LibCallOptimization will simplify calls to the "ffsll" library
1893/// calls. It simply uses FFSOptimization for which the transformation is
1894/// identical.
1895/// @brief Simplify the ffsl library function.
1896struct FFSLLOptimization : public FFSOptimization
1897{
1898public:
1899 /// @brief Default Constructor
1900 FFSLLOptimization() : FFSOptimization("ffsll",
1901 "Number of 'ffsll' calls simplified") {}
1902
1903} FFSLLOptimizer;
1904
Chris Lattner53249862005-08-24 17:22:17 +00001905
1906/// This LibCallOptimization will simplify calls to the "floor" library
1907/// function.
1908/// @brief Simplify the floor library function.
1909struct FloorOptimization : public LibCallOptimization {
1910 FloorOptimization()
1911 : LibCallOptimization("floor", "Number of 'floor' calls simplified") {}
1912
1913 /// @brief Make sure that the "floor" function has the right prototype
1914 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1915 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1916 F->getReturnType() == Type::DoubleTy;
1917 }
1918
1919 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1920 // If this is a float argument passed in, convert to floorf.
1921 // e.g. floor((double)FLT) -> (double)floorf(FLT). There can be no loss of
1922 // precision due to this.
1923 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1924 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
1925 Value *New = new CallInst(SLC.get_floorf(), Cast->getOperand(0),
1926 CI->getName(), CI);
1927 New = new CastInst(New, Type::DoubleTy, CI->getName(), CI);
1928 CI->replaceAllUsesWith(New);
1929 CI->eraseFromParent();
1930 if (Cast->use_empty())
1931 Cast->eraseFromParent();
1932 return true;
1933 }
1934 return false; // opt failed
1935 }
1936} FloorOptimizer;
1937
1938
1939
Reid Spencer716f49e2005-04-27 21:29:20 +00001940/// A function to compute the length of a null-terminated constant array of
Jeff Cohen00b168892005-07-27 06:12:32 +00001941/// integers. This function can't rely on the size of the constant array
1942/// because there could be a null terminator in the middle of the array.
1943/// We also have to bail out if we find a non-integer constant initializer
1944/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer716f49e2005-04-27 21:29:20 +00001945/// below checks each of these conditions and will return true only if all
1946/// conditions are met. In that case, the \p len parameter is set to the length
1947/// of the null-terminated string. If false is returned, the conditions were
1948/// not met and len is set to 0.
1949/// @brief Get the length of a constant string (null-terminated array).
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001950bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** CA )
Reid Spencera16d5a52005-04-27 07:54:40 +00001951{
1952 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen00b168892005-07-27 06:12:32 +00001953 len = 0; // make sure we initialize this
Reid Spencera16d5a52005-04-27 07:54:40 +00001954 User* GEP = 0;
Jeff Cohen00b168892005-07-27 06:12:32 +00001955 // If the value is not a GEP instruction nor a constant expression with a
1956 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencera16d5a52005-04-27 07:54:40 +00001957 // any other way
1958 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
1959 GEP = GEPI;
1960 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
1961 if (CE->getOpcode() == Instruction::GetElementPtr)
1962 GEP = CE;
1963 else
1964 return false;
1965 else
1966 return false;
1967
1968 // Make sure the GEP has exactly three arguments.
1969 if (GEP->getNumOperands() != 3)
1970 return false;
1971
1972 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen00b168892005-07-27 06:12:32 +00001973 // has value 0 so that we are sure we're indexing into the initializer.
Reid Spencera16d5a52005-04-27 07:54:40 +00001974 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1)))
1975 {
1976 if (!op1->isNullValue())
1977 return false;
1978 }
1979 else
1980 return false;
1981
1982 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen00b168892005-07-27 06:12:32 +00001983 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencera16d5a52005-04-27 07:54:40 +00001984 // better of not optimizing it. While we're at it, get the second index
1985 // value. We'll need this later for indexing the ConstantArray.
1986 uint64_t start_idx = 0;
1987 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1988 start_idx = CI->getRawValue();
1989 else
1990 return false;
1991
1992 // The GEP instruction, constant or instruction, must reference a global
1993 // variable that is a constant and is initialized. The referenced constant
1994 // initializer is the array that we'll use for optimization.
1995 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1996 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1997 return false;
1998
1999 // Get the initializer.
2000 Constant* INTLZR = GV->getInitializer();
2001
2002 // Handle the ConstantAggregateZero case
2003 if (ConstantAggregateZero* CAZ = dyn_cast<ConstantAggregateZero>(INTLZR))
2004 {
2005 // This is a degenerate case. The initializer is constant zero so the
2006 // length of the string must be zero.
2007 len = 0;
2008 return true;
2009 }
2010
2011 // Must be a Constant Array
2012 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
2013 if (!A)
2014 return false;
2015
2016 // Get the number of elements in the array
2017 uint64_t max_elems = A->getType()->getNumElements();
2018
2019 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen00b168892005-07-27 06:12:32 +00002020 // the place the GEP refers to in the array.
Reid Spencera16d5a52005-04-27 07:54:40 +00002021 for ( len = start_idx; len < max_elems; len++)
2022 {
2023 if (ConstantInt* CI = dyn_cast<ConstantInt>(A->getOperand(len)))
2024 {
2025 // Check for the null terminator
2026 if (CI->isNullValue())
2027 break; // we found end of string
2028 }
2029 else
2030 return false; // This array isn't suitable, non-int initializer
2031 }
2032 if (len >= max_elems)
2033 return false; // This array isn't null terminated
2034
2035 // Subtract out the initial value from the length
2036 len -= start_idx;
Reid Spencer9f56b1f2005-04-30 03:17:54 +00002037 if (CA)
2038 *CA = A;
Reid Spencera16d5a52005-04-27 07:54:40 +00002039 return true; // success!
2040}
2041
Reid Spencer134d2e42005-06-18 17:46:28 +00002042/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
2043/// inserting the cast before IP, and return the cast.
2044/// @brief Cast a value to a "C" string.
2045Value *CastToCStr(Value *V, Instruction &IP) {
2046 const Type *SBPTy = PointerType::get(Type::SByteTy);
2047 if (V->getType() != SBPTy)
2048 return new CastInst(V, SBPTy, V->getName(), &IP);
2049 return V;
2050}
2051
Jeff Cohen00b168892005-07-27 06:12:32 +00002052// TODO:
Reid Spencer8441a012005-04-28 04:40:06 +00002053// Additional cases that we need to add to this file:
2054//
Reid Spencer8441a012005-04-28 04:40:06 +00002055// cbrt:
Reid Spencer8441a012005-04-28 04:40:06 +00002056// * cbrt(expN(X)) -> expN(x/3)
2057// * cbrt(sqrt(x)) -> pow(x,1/6)
2058// * cbrt(sqrt(x)) -> pow(x,1/9)
2059//
Reid Spencer8441a012005-04-28 04:40:06 +00002060// cos, cosf, cosl:
Reid Spencer5624c752005-04-28 18:05:16 +00002061// * cos(-x) -> cos(x)
Reid Spencer8441a012005-04-28 04:40:06 +00002062//
2063// exp, expf, expl:
Reid Spencer8441a012005-04-28 04:40:06 +00002064// * exp(log(x)) -> x
2065//
Reid Spencer8441a012005-04-28 04:40:06 +00002066// log, logf, logl:
Reid Spencer8441a012005-04-28 04:40:06 +00002067// * log(exp(x)) -> x
2068// * log(x**y) -> y*log(x)
2069// * log(exp(y)) -> y*log(e)
2070// * log(exp2(y)) -> y*log(2)
2071// * log(exp10(y)) -> y*log(10)
2072// * log(sqrt(x)) -> 0.5*log(x)
2073// * log(pow(x,y)) -> y*log(x)
2074//
2075// lround, lroundf, lroundl:
2076// * lround(cnst) -> cnst'
2077//
2078// memcmp:
Reid Spencer8441a012005-04-28 04:40:06 +00002079// * memcmp(x,y,l) -> cnst
2080// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer8441a012005-04-28 04:40:06 +00002081//
Reid Spencer8441a012005-04-28 04:40:06 +00002082// memmove:
Jeff Cohen00b168892005-07-27 06:12:32 +00002083// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer8441a012005-04-28 04:40:06 +00002084// (if s is a global constant array)
2085//
Reid Spencer8441a012005-04-28 04:40:06 +00002086// pow, powf, powl:
Reid Spencer8441a012005-04-28 04:40:06 +00002087// * pow(exp(x),y) -> exp(x*y)
2088// * pow(sqrt(x),y) -> pow(x,y*0.5)
2089// * pow(pow(x,y),z)-> pow(x,y*z)
2090//
2091// puts:
2092// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2093//
2094// round, roundf, roundl:
2095// * round(cnst) -> cnst'
2096//
2097// signbit:
2098// * signbit(cnst) -> cnst'
2099// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2100//
Reid Spencer8441a012005-04-28 04:40:06 +00002101// sqrt, sqrtf, sqrtl:
Reid Spencer8441a012005-04-28 04:40:06 +00002102// * sqrt(expN(x)) -> expN(x*0.5)
2103// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2104// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2105//
Reid Spencer789082a2005-05-07 20:15:59 +00002106// stpcpy:
2107// * stpcpy(str, "literal") ->
2108// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer21506ff2005-05-03 07:23:44 +00002109// strrchr:
Reid Spencer8441a012005-04-28 04:40:06 +00002110// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2111// (if c is a constant integer and s is a constant string)
2112// * strrchr(s1,0) -> strchr(s1,0)
2113//
Reid Spencer8441a012005-04-28 04:40:06 +00002114// strncat:
2115// * strncat(x,y,0) -> x
2116// * strncat(x,y,0) -> x (if strlen(y) = 0)
2117// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2118//
Reid Spencer8441a012005-04-28 04:40:06 +00002119// strncpy:
2120// * strncpy(d,s,0) -> d
2121// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2122// (if s and l are constants)
2123//
2124// strpbrk:
2125// * strpbrk(s,a) -> offset_in_for(s,a)
2126// (if s and a are both constant strings)
2127// * strpbrk(s,"") -> 0
2128// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2129//
2130// strspn, strcspn:
2131// * strspn(s,a) -> const_int (if both args are constant)
2132// * strspn("",a) -> 0
2133// * strspn(s,"") -> 0
2134// * strcspn(s,a) -> const_int (if both args are constant)
2135// * strcspn("",a) -> 0
2136// * strcspn(s,"") -> strlen(a)
2137//
2138// strstr:
2139// * strstr(x,x) -> x
Jeff Cohen00b168892005-07-27 06:12:32 +00002140// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer8441a012005-04-28 04:40:06 +00002141// (if s1 and s2 are constant strings)
Jeff Cohen00b168892005-07-27 06:12:32 +00002142//
Reid Spencer8441a012005-04-28 04:40:06 +00002143// tan, tanf, tanl:
Reid Spencer8441a012005-04-28 04:40:06 +00002144// * tan(atan(x)) -> x
Jeff Cohen00b168892005-07-27 06:12:32 +00002145//
Reid Spencer8441a012005-04-28 04:40:06 +00002146// trunc, truncf, truncl:
2147// * trunc(cnst) -> cnst'
2148//
Jeff Cohen00b168892005-07-27 06:12:32 +00002149//
Reid Spencera7c049b2005-04-25 02:53:12 +00002150}