blob: a2ca69214763875091ecdb72ba7f7913ff2001ce [file] [log] [blame]
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencer39a762d2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00005// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Reid Spencer0b13cda2005-05-21 00:57:44 +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
13// occurs within the main() function can be transformed into a simple "return 3"
14// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
Reid Spencer39a762d2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spencer18b99812005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
28#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000029#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000030#include "llvm/Transforms/IPO.h"
Reid Spencerf2534c72005-04-25 21:11:48 +000031#include <iostream>
Reid Spencer39a762d2005-04-25 02:53:12 +000032using namespace llvm;
33
34namespace {
Reid Spencer39a762d2005-04-25 02:53:12 +000035
Reid Spencere249a822005-04-27 07:54:40 +000036/// This statistic keeps track of the total number of library calls that have
37/// been simplified regardless of which call it is.
38Statistic<> SimplifiedLibCalls("simplify-libcalls",
Reid Spencer170ae7f2005-05-07 20:15:59 +000039 "Total number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000040
Reid Spencer7ddcfb32005-04-27 21:29:20 +000041// Forward declarations
Reid Spencere249a822005-04-27 07:54:40 +000042class LibCallOptimization;
43class SimplifyLibCalls;
Reid Spencer7ddcfb32005-04-27 21:29:20 +000044
Reid Spencer9fbad132005-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 Spencer7ddcfb32005-04-27 21:29:20 +000049/// @brief The list of optimizations deriving from LibCallOptimization
Reid Spencer9fbad132005-05-21 01:27:04 +000050static hash_map<std::string,LibCallOptimization*> optlist;
Reid Spencer39a762d2005-04-25 02:53:12 +000051
Reid Spencere249a822005-04-27 07:54:40 +000052/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000053/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000054/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000055/// is the kind that the optimization can handle. If the subclass returns true,
56/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
57/// 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
61/// optimize. The criteria for a "lib call" is "anything with well known
62/// semantics", typically a library function that is defined by an international
63/// standard. Because the semantics are well known, the optimizations can
64/// generally short-circuit actually calling the function if there's a simpler
65/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000066/// @brief Base class for library call optimizations
Jeff Cohen4bc952f2005-04-29 03:05:44 +000067class LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +000068{
Jeff Cohen4bc952f2005-04-29 03:05:44 +000069public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +000070 /// The \p fname argument must be the name of the library function being
71 /// optimized by the subclass.
72 /// @brief Constructor that registers the optimization.
Reid Spencer170ae7f2005-05-07 20:15:59 +000073 LibCallOptimization(const char* fname, const char* description )
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000074 : func_name(fname)
Reid Spencere95a6472005-04-27 00:05:45 +000075#ifndef NDEBUG
Reid Spencer170ae7f2005-05-07 20:15:59 +000076 , occurrences("simplify-libcalls",description)
Reid Spencere95a6472005-04-27 00:05:45 +000077#endif
Reid Spencer39a762d2005-04-25 02:53:12 +000078 {
Reid Spencer7ddcfb32005-04-27 21:29:20 +000079 // Register this call optimizer in the optlist (a hash_map)
Reid Spencer95d8efd2005-05-03 02:54:54 +000080 optlist[fname] = this;
Reid Spencer39a762d2005-04-25 02:53:12 +000081 }
82
Reid Spencer7ddcfb32005-04-27 21:29:20 +000083 /// @brief Deregister from the optlist
84 virtual ~LibCallOptimization() { optlist.erase(func_name); }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000085
Reid Spencere249a822005-04-27 07:54:40 +000086 /// The implementation of this function in subclasses should determine if
87 /// \p F is suitable for the optimization. This method is called by
Reid Spencer7ddcfb32005-04-27 21:29:20 +000088 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
89 /// sites of such a function if that function is not suitable in the first
90 /// place. If the called function is suitabe, this method should return true;
Reid Spencere249a822005-04-27 07:54:40 +000091 /// false, otherwise. This function should also perform any lazy
92 /// initialization that the LibCallOptimization needs to do, if its to return
93 /// true. This avoids doing initialization until the optimizer is actually
94 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000095 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-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 Spencerbb92b4f2005-04-26 19:13:17 +0000100
Reid Spencere249a822005-04-27 07:54:40 +0000101 /// The implementations of this function in subclasses is the heart of the
102 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
103 /// OptimizeCall to determine if (a) the conditions are right for optimizing
104 /// the call and (b) to perform the optimization. If an action is taken
105 /// against ci, the subclass is responsible for returning true and ensuring
106 /// that ci is erased from its parent.
Reid Spencere249a822005-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 Spencerbb92b4f2005-04-26 19:13:17 +0000112
Reid Spencere249a822005-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 Spencerbb92b4f2005-04-26 19:13:17 +0000115
Reid Spencere95a6472005-04-27 00:05:45 +0000116#ifndef NDEBUG
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000117 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Reid Spencer4f01a822005-05-07 04:59:45 +0000118 void succeeded() { DEBUG(++occurrences); }
Reid Spencere95a6472005-04-27 00:05:45 +0000119#endif
Reid Spencere249a822005-04-27 07:54:40 +0000120
121private:
122 const char* func_name; ///< Name of the library call we optimize
123#ifndef NDEBUG
Reid Spencere249a822005-04-27 07:54:40 +0000124 Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
125#endif
126};
127
Reid Spencere249a822005-04-27 07:54:40 +0000128/// This class is an LLVM Pass that applies each of the LibCallOptimization
129/// instances to all the call sites in a module, relatively efficiently. The
130/// purpose of this pass is to provide optimizations for calls to well-known
131/// functions with well-known semantics, such as those in the c library. The
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000132/// class provides the basic infrastructure for handling runOnModule. Whenever /// this pass finds a function call, it asks the appropriate optimizer to
133/// validate the call (ValidateLibraryCall). If it is validated, then
134/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000135/// @brief A ModulePass for optimizing well-known function calls.
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000136class SimplifyLibCalls : public ModulePass
Reid Spencere249a822005-04-27 07:54:40 +0000137{
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000138public:
Reid Spencere249a822005-04-27 07:54:40 +0000139 /// We need some target data for accurate signature details that are
140 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000141 /// @brief Require TargetData from AnalysisUsage.
Reid Spencere249a822005-04-27 07:54:40 +0000142 virtual void getAnalysisUsage(AnalysisUsage& Info) const
143 {
144 // Ask that the TargetData analysis be performed before us so we can use
145 // the target data.
146 Info.addRequired<TargetData>();
147 }
148
149 /// For this pass, process all of the function calls in the module, calling
150 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000151 /// @brief Run all the lib call optimizations on a Module.
Reid Spencere249a822005-04-27 07:54:40 +0000152 virtual bool runOnModule(Module &M)
153 {
154 reset(M);
155
156 bool result = false;
157
158 // The call optimizations can be recursive. That is, the optimization might
159 // generate a call to another function which can also be optimized. This way
160 // we make the LibCallOptimization instances very specific to the case they
161 // handle. It also means we need to keep running over the function calls in
162 // the module until we don't get any more optimizations possible.
163 bool found_optimization = false;
164 do
165 {
166 found_optimization = false;
167 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI)
168 {
169 // All the "well-known" functions are external and have external linkage
170 // because they live in a runtime library somewhere and were (probably)
Reid Spencer38cabd72005-05-03 07:23:44 +0000171 // not compiled by LLVM. So, we only act on external functions that
172 // have external linkage and non-empty uses.
Reid Spencere249a822005-04-27 07:54:40 +0000173 if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty())
174 continue;
175
176 // Get the optimization class that pertains to this function
177 LibCallOptimization* CO = optlist[FI->getName().c_str()];
178 if (!CO)
179 continue;
180
181 // Make sure the called function is suitable for the optimization
182 if (!CO->ValidateCalledFunction(FI,*this))
183 continue;
184
185 // Loop over each of the uses of the function
186 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
187 UI != UE ; )
188 {
189 // If the use of the function is a call instruction
190 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
191 {
192 // Do the optimization on the LibCallOptimization.
193 if (CO->OptimizeCall(CI,*this))
194 {
195 ++SimplifiedLibCalls;
196 found_optimization = result = true;
197#ifndef NDEBUG
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000198 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000199#endif
200 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000201 }
202 }
203 }
Reid Spencere249a822005-04-27 07:54:40 +0000204 } while (found_optimization);
205 return result;
206 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000207
Reid Spencere249a822005-04-27 07:54:40 +0000208 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000209 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000210
Reid Spencere249a822005-04-27 07:54:40 +0000211 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000212 TargetData* getTargetData() const { return TD; }
213
214 /// @brief Return the size_t type -- syntactic shortcut
215 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
216
217 /// @brief Return a Function* for the fputc libcall
Reid Spencer4c444fe2005-04-30 03:17:54 +0000218 Function* get_fputc(const Type* FILEptr_type)
Reid Spencer93616972005-04-29 09:39:47 +0000219 {
220 if (!fputc_func)
221 {
222 std::vector<const Type*> args;
223 args.push_back(Type::IntTy);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000224 args.push_back(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +0000225 FunctionType* fputc_type =
226 FunctionType::get(Type::IntTy, args, false);
227 fputc_func = M->getOrInsertFunction("fputc",fputc_type);
228 }
229 return fputc_func;
230 }
231
232 /// @brief Return a Function* for the fwrite libcall
Reid Spencer4c444fe2005-04-30 03:17:54 +0000233 Function* get_fwrite(const Type* FILEptr_type)
Reid Spencer93616972005-04-29 09:39:47 +0000234 {
235 if (!fwrite_func)
236 {
237 std::vector<const Type*> args;
238 args.push_back(PointerType::get(Type::SByteTy));
239 args.push_back(TD->getIntPtrType());
240 args.push_back(TD->getIntPtrType());
Reid Spencer4c444fe2005-04-30 03:17:54 +0000241 args.push_back(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +0000242 FunctionType* fwrite_type =
243 FunctionType::get(TD->getIntPtrType(), args, false);
244 fwrite_func = M->getOrInsertFunction("fwrite",fwrite_type);
245 }
246 return fwrite_func;
247 }
248
249 /// @brief Return a Function* for the sqrt libcall
250 Function* get_sqrt()
251 {
252 if (!sqrt_func)
253 {
254 std::vector<const Type*> args;
255 args.push_back(Type::DoubleTy);
256 FunctionType* sqrt_type =
257 FunctionType::get(Type::DoubleTy, args, false);
258 sqrt_func = M->getOrInsertFunction("sqrt",sqrt_type);
259 }
260 return sqrt_func;
261 }
Reid Spencere249a822005-04-27 07:54:40 +0000262
263 /// @brief Return a Function* for the strlen libcall
Reid Spencer1e520fd2005-05-04 03:20:21 +0000264 Function* get_strcpy()
265 {
266 if (!strcpy_func)
267 {
268 std::vector<const Type*> args;
269 args.push_back(PointerType::get(Type::SByteTy));
270 args.push_back(PointerType::get(Type::SByteTy));
271 FunctionType* strcpy_type =
272 FunctionType::get(PointerType::get(Type::SByteTy), args, false);
273 strcpy_func = M->getOrInsertFunction("strcpy",strcpy_type);
274 }
275 return strcpy_func;
276 }
277
278 /// @brief Return a Function* for the strlen libcall
Reid Spencere249a822005-04-27 07:54:40 +0000279 Function* get_strlen()
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000280 {
Reid Spencere249a822005-04-27 07:54:40 +0000281 if (!strlen_func)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000282 {
283 std::vector<const Type*> args;
284 args.push_back(PointerType::get(Type::SByteTy));
Reid Spencere249a822005-04-27 07:54:40 +0000285 FunctionType* strlen_type =
286 FunctionType::get(TD->getIntPtrType(), args, false);
287 strlen_func = M->getOrInsertFunction("strlen",strlen_type);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000288 }
Reid Spencere249a822005-04-27 07:54:40 +0000289 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000290 }
291
Reid Spencer38cabd72005-05-03 07:23:44 +0000292 /// @brief Return a Function* for the memchr libcall
293 Function* get_memchr()
294 {
295 if (!memchr_func)
296 {
297 std::vector<const Type*> args;
298 args.push_back(PointerType::get(Type::SByteTy));
299 args.push_back(Type::IntTy);
300 args.push_back(TD->getIntPtrType());
301 FunctionType* memchr_type = FunctionType::get(
302 PointerType::get(Type::SByteTy), args, false);
303 memchr_func = M->getOrInsertFunction("memchr",memchr_type);
304 }
305 return memchr_func;
306 }
307
Reid Spencere249a822005-04-27 07:54:40 +0000308 /// @brief Return a Function* for the memcpy libcall
309 Function* get_memcpy()
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000310 {
Reid Spencere249a822005-04-27 07:54:40 +0000311 if (!memcpy_func)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000312 {
313 // Note: this is for llvm.memcpy intrinsic
314 std::vector<const Type*> args;
315 args.push_back(PointerType::get(Type::SByteTy));
316 args.push_back(PointerType::get(Type::SByteTy));
Reid Spencer1e520fd2005-05-04 03:20:21 +0000317 args.push_back(Type::UIntTy);
318 args.push_back(Type::UIntTy);
Reid Spencere249a822005-04-27 07:54:40 +0000319 FunctionType* memcpy_type = FunctionType::get(Type::VoidTy, args, false);
320 memcpy_func = M->getOrInsertFunction("llvm.memcpy",memcpy_type);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000321 }
Reid Spencere249a822005-04-27 07:54:40 +0000322 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000323 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000324
Reid Spencere249a822005-04-27 07:54:40 +0000325private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000326 /// @brief Reset our cached data for a new Module
Reid Spencere249a822005-04-27 07:54:40 +0000327 void reset(Module& mod)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000328 {
Reid Spencere249a822005-04-27 07:54:40 +0000329 M = &mod;
330 TD = &getAnalysis<TargetData>();
Reid Spencer93616972005-04-29 09:39:47 +0000331 fputc_func = 0;
332 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000333 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000334 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000335 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000336 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000337 strlen_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000338 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000339
Reid Spencere249a822005-04-27 07:54:40 +0000340private:
Reid Spencer93616972005-04-29 09:39:47 +0000341 Function* fputc_func; ///< Cached fputc function
342 Function* fwrite_func; ///< Cached fwrite function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000343 Function* memcpy_func; ///< Cached llvm.memcpy function
Reid Spencer38cabd72005-05-03 07:23:44 +0000344 Function* memchr_func; ///< Cached memchr function
Reid Spencer93616972005-04-29 09:39:47 +0000345 Function* sqrt_func; ///< Cached sqrt function
Reid Spencer1e520fd2005-05-04 03:20:21 +0000346 Function* strcpy_func; ///< Cached strcpy function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000347 Function* strlen_func; ///< Cached strlen function
348 Module* M; ///< Cached Module
349 TargetData* TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000350};
351
352// Register the pass
353RegisterOpt<SimplifyLibCalls>
354X("simplify-libcalls","Simplify well-known library calls");
355
356} // anonymous namespace
357
358// The only public symbol in this file which just instantiates the pass object
359ModulePass *llvm::createSimplifyLibCallsPass()
360{
361 return new SimplifyLibCalls();
362}
363
364// Classes below here, in the anonymous namespace, are all subclasses of the
365// LibCallOptimization class, each implementing all optimizations possible for a
366// single well-known library call. Each has a static singleton instance that
367// auto registers it into the "optlist" global above.
368namespace {
369
Reid Spencera7828ba2005-06-18 17:46:28 +0000370// Forward declare utility functions.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000371bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencera7828ba2005-06-18 17:46:28 +0000372Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000373
374/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000375/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000376/// the same value passed to the exit function. When this is done, it splits the
377/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000378/// @brief Replace calls to exit in main with a simple return
Reid Spencere249a822005-04-27 07:54:40 +0000379struct ExitInMainOptimization : public LibCallOptimization
Reid Spencer39a762d2005-04-25 02:53:12 +0000380{
Reid Spencer95d8efd2005-05-03 02:54:54 +0000381 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000382 "Number of 'exit' calls simplified") {}
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000383 virtual ~ExitInMainOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000384
385 // Make sure the called function looks like exit (int argument, int return
386 // type, external linkage, not varargs).
Reid Spencere249a822005-04-27 07:54:40 +0000387 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencerf2534c72005-04-25 21:11:48 +0000388 {
Reid Spencerb4f7b832005-04-26 07:45:18 +0000389 if (f->arg_size() >= 1)
390 if (f->arg_begin()->getType()->isInteger())
391 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +0000392 return false;
393 }
394
Reid Spencere249a822005-04-27 07:54:40 +0000395 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000396 {
Reid Spencerf2534c72005-04-25 21:11:48 +0000397 // To be careful, we check that the call to exit is coming from "main", that
398 // main has external linkage, and the return type of main and the argument
399 // to exit have the same type.
400 Function *from = ci->getParent()->getParent();
401 if (from->hasExternalLinkage())
402 if (from->getReturnType() == ci->getOperand(1)->getType())
403 if (from->getName() == "main")
404 {
405 // Okay, time to actually do the optimization. First, get the basic
406 // block of the call instruction
407 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000408
Reid Spencerf2534c72005-04-25 21:11:48 +0000409 // Create a return instruction that we'll replace the call with.
410 // Note that the argument of the return is the argument of the call
411 // instruction.
412 ReturnInst* ri = new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000413
Reid Spencerf2534c72005-04-25 21:11:48 +0000414 // Split the block at the call instruction which places it in a new
415 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000416 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000417
Reid Spencerf2534c72005-04-25 21:11:48 +0000418 // The block split caused a branch instruction to be inserted into
419 // the end of the original block, right after the return instruction
420 // that we put there. That's not a valid block, so delete the branch
421 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000422 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000423
Reid Spencerf2534c72005-04-25 21:11:48 +0000424 // Now we can finally get rid of the call instruction which now lives
425 // in the new basic block.
426 ci->eraseFromParent();
427
428 // Optimization succeeded, return true.
429 return true;
430 }
431 // We didn't pass the criteria for this optimization so return false
432 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000433 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000434} ExitInMainOptimizer;
435
Reid Spencere249a822005-04-27 07:54:40 +0000436/// This LibCallOptimization will simplify a call to the strcat library
437/// function. The simplification is possible only if the string being
438/// concatenated is a constant array or a constant expression that results in
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000439/// a constant string. In this case we can replace it with strlen + llvm.memcpy
440/// of the constant string. Both of these calls are further reduced, if possible
441/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000442/// @brief Simplify the strcat library function.
Reid Spencere249a822005-04-27 07:54:40 +0000443struct StrCatOptimization : public LibCallOptimization
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000444{
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000445public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000446 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000447 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000448 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000449
450public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000451 /// @breif Destructor
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000452 virtual ~StrCatOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000453
454 /// @brief Make sure that the "strcat" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000455 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencerf2534c72005-04-25 21:11:48 +0000456 {
457 if (f->getReturnType() == PointerType::get(Type::SByteTy))
458 if (f->arg_size() == 2)
459 {
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 Spencer8ee5aac2005-04-26 03:26:15 +0000463 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000464 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000465 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000466 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000467 }
468 return false;
469 }
470
Reid Spencere249a822005-04-27 07:54:40 +0000471 /// @brief Optimize the strcat library function
472 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000473 {
Reid Spencer08b49402005-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
Reid Spencer76dab9a2005-04-26 05:24:00 +0000479 // Extract the initializer (while making numerous checks) from the
480 // source operand of the call to strcat. If we get null back, one of
481 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000482 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000483 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000484 return false;
485
Reid Spencerb4f7b832005-04-26 07:45:18 +0000486 // Handle the simple, do-nothing case
487 if (len == 0)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000488 {
Reid Spencer08b49402005-04-27 17:46:54 +0000489 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000490 ci->eraseFromParent();
491 return true;
492 }
493
Reid Spencerb4f7b832005-04-26 07:45:18 +0000494 // Increment the length because we actually want to memcpy the null
495 // terminator as well.
496 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000497
Reid Spencerb4f7b832005-04-26 07:45:18 +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
Reid Spencere249a822005-04-27 07:54:40 +0000500 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000501 // caches the Function* for us.
502 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000503 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000504
505 // Now that we have the destination's length, we must index into the
506 // 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);
510 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000511 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000512
513 // We have enough information to now generate the memcpy call to
514 // do the concatenation for us.
515 std::vector<Value*> vals;
516 vals.push_back(gep); // destination
517 vals.push_back(ci->getOperand(2)); // source
Reid Spencer1e520fd2005-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 Spencer08b49402005-04-27 17:46:54 +0000520 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000521
522 // Finally, substitute the first operand of the strcat call for the
523 // strcat call itself since strcat returns its first operand; and,
524 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000525 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000526 ci->eraseFromParent();
527 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000528 }
529} StrCatOptimizer;
530
Reid Spencer38cabd72005-05-03 07:23:44 +0000531/// This LibCallOptimization will simplify a call to the strchr library
532/// 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 Spencer170ae7f2005-05-07 20:15:59 +0000539 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000540 virtual ~StrChrOptimization() {}
541
542 /// @brief Make sure that the "strchr" function has the right prototype
543 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
544 {
545 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
546 f->arg_size() == 2)
547 return true;
548 return false;
549 }
550
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000551 /// @brief Perform the strchr optimizations
Reid Spencer38cabd72005-05-03 07:23:44 +0000552 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
553 {
554 // If there aren't three operands, bail
555 if (ci->getNumOperands() != 3)
556 return false;
557
558 // Check that the first argument to strchr is a constant array of sbyte.
559 // If it is, get the length and data, otherwise return false.
560 uint64_t len = 0;
561 ConstantArray* CA;
562 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
563 return false;
564
565 // Check that the second argument to strchr is a constant int, return false
566 // if it isn't
567 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
568 if (!CSI)
569 {
570 // Just lower this to memchr since we know the length of the string as
571 // it is constant.
572 Function* f = SLC.get_memchr();
573 std::vector<Value*> args;
574 args.push_back(ci->getOperand(1));
575 args.push_back(ci->getOperand(2));
576 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
577 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
578 ci->eraseFromParent();
579 return true;
580 }
581
582 // Get the character we're looking for
583 int64_t chr = CSI->getValue();
584
585 // Compute the offset
586 uint64_t offset = 0;
587 bool char_found = false;
588 for (uint64_t i = 0; i < len; ++i)
589 {
590 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i)))
591 {
592 // Check for the null terminator
593 if (CI->isNullValue())
594 break; // we found end of string
595 else if (CI->getValue() == chr)
596 {
597 char_found = true;
598 offset = i;
599 break;
600 }
601 }
602 }
603
604 // strchr(s,c) -> offset_of_in(c,s)
605 // (if c is a constant integer and s is a constant string)
606 if (char_found)
607 {
608 std::vector<Value*> indices;
609 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
610 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
611 ci->getOperand(1)->getName()+".strchr",ci);
612 ci->replaceAllUsesWith(GEP);
613 }
614 else
615 ci->replaceAllUsesWith(
616 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
617
618 ci->eraseFromParent();
619 return true;
620 }
621} StrChrOptimizer;
622
Reid Spencer4c444fe2005-04-30 03:17:54 +0000623/// This LibCallOptimization will simplify a call to the strcmp library
624/// function. It optimizes out cases where one or both arguments are constant
625/// and the result can be determined statically.
626/// @brief Simplify the strcmp library function.
627struct StrCmpOptimization : public LibCallOptimization
628{
629public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000630 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000631 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000632 virtual ~StrCmpOptimization() {}
633
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000634 /// @brief Make sure that the "strcmp" function has the right prototype
Reid Spencer4c444fe2005-04-30 03:17:54 +0000635 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
636 {
637 if (f->getReturnType() == Type::IntTy && f->arg_size() == 2)
638 return true;
639 return false;
640 }
641
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000642 /// @brief Perform the strcmp optimization
Reid Spencer4c444fe2005-04-30 03:17:54 +0000643 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
644 {
645 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000646 // then the optimization is to replace the CallInst with a constant 0
647 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000648 Value* s1 = ci->getOperand(1);
649 Value* s2 = ci->getOperand(2);
650 if (s1 == s2)
651 {
652 // strcmp(x,x) -> 0
653 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
654 ci->eraseFromParent();
655 return true;
656 }
657
658 bool isstr_1 = false;
659 uint64_t len_1 = 0;
660 ConstantArray* A1;
661 if (getConstantStringLength(s1,len_1,&A1))
662 {
663 isstr_1 = true;
664 if (len_1 == 0)
665 {
666 // strcmp("",x) -> *x
Reid Spencera7828ba2005-06-18 17:46:28 +0000667 LoadInst* load =
668 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000669 CastInst* cast =
670 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
671 ci->replaceAllUsesWith(cast);
672 ci->eraseFromParent();
673 return true;
674 }
675 }
676
677 bool isstr_2 = false;
678 uint64_t len_2 = 0;
679 ConstantArray* A2;
680 if (getConstantStringLength(s2,len_2,&A2))
681 {
682 isstr_2 = true;
683 if (len_2 == 0)
684 {
685 // strcmp(x,"") -> *x
Reid Spencera7828ba2005-06-18 17:46:28 +0000686 LoadInst* load =
687 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000688 CastInst* cast =
689 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
690 ci->replaceAllUsesWith(cast);
691 ci->eraseFromParent();
692 return true;
693 }
694 }
695
696 if (isstr_1 && isstr_2)
697 {
698 // strcmp(x,y) -> cnst (if both x and y are constant strings)
699 std::string str1 = A1->getAsString();
700 std::string str2 = A2->getAsString();
701 int result = strcmp(str1.c_str(), str2.c_str());
702 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
703 ci->eraseFromParent();
704 return true;
705 }
706 return false;
707 }
708} StrCmpOptimizer;
709
Reid Spencer49fa07042005-05-03 01:43:45 +0000710/// This LibCallOptimization will simplify a call to the strncmp library
711/// function. It optimizes out cases where one or both arguments are constant
712/// and the result can be determined statically.
713/// @brief Simplify the strncmp library function.
714struct StrNCmpOptimization : public LibCallOptimization
715{
716public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000717 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000718 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000719 virtual ~StrNCmpOptimization() {}
720
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000721 /// @brief Make sure that the "strncmp" function has the right prototype
Reid Spencer49fa07042005-05-03 01:43:45 +0000722 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
723 {
724 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
725 return true;
726 return false;
727 }
728
729 /// @brief Perform the strncpy optimization
730 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
731 {
732 // First, check to see if src and destination are the same. If they are,
733 // then the optimization is to replace the CallInst with a constant 0
734 // because the call is a no-op.
735 Value* s1 = ci->getOperand(1);
736 Value* s2 = ci->getOperand(2);
737 if (s1 == s2)
738 {
739 // strncmp(x,x,l) -> 0
740 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
741 ci->eraseFromParent();
742 return true;
743 }
744
745 // Check the length argument, if it is Constant zero then the strings are
746 // considered equal.
747 uint64_t len_arg = 0;
748 bool len_arg_is_const = false;
749 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3)))
750 {
751 len_arg_is_const = true;
752 len_arg = len_CI->getRawValue();
753 if (len_arg == 0)
754 {
755 // strncmp(x,y,0) -> 0
756 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
757 ci->eraseFromParent();
758 return true;
759 }
760 }
761
762 bool isstr_1 = false;
763 uint64_t len_1 = 0;
764 ConstantArray* A1;
765 if (getConstantStringLength(s1,len_1,&A1))
766 {
767 isstr_1 = true;
768 if (len_1 == 0)
769 {
770 // strncmp("",x) -> *x
771 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
772 CastInst* cast =
773 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
774 ci->replaceAllUsesWith(cast);
775 ci->eraseFromParent();
776 return true;
777 }
778 }
779
780 bool isstr_2 = false;
781 uint64_t len_2 = 0;
782 ConstantArray* A2;
783 if (getConstantStringLength(s2,len_2,&A2))
784 {
785 isstr_2 = true;
786 if (len_2 == 0)
787 {
788 // strncmp(x,"") -> *x
789 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
790 CastInst* cast =
791 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
792 ci->replaceAllUsesWith(cast);
793 ci->eraseFromParent();
794 return true;
795 }
796 }
797
798 if (isstr_1 && isstr_2 && len_arg_is_const)
799 {
800 // strncmp(x,y,const) -> constant
801 std::string str1 = A1->getAsString();
802 std::string str2 = A2->getAsString();
803 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
804 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
805 ci->eraseFromParent();
806 return true;
807 }
808 return false;
809 }
810} StrNCmpOptimizer;
811
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000812/// This LibCallOptimization will simplify a call to the strcpy library
813/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000814/// (1) If src and dest are the same and not volatile, just return dest
815/// (2) If the src is a constant then we can convert to llvm.memmove
816/// @brief Simplify the strcpy library function.
817struct StrCpyOptimization : public LibCallOptimization
818{
819public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000820 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000821 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000822 virtual ~StrCpyOptimization() {}
823
824 /// @brief Make sure that the "strcpy" function has the right prototype
825 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
826 {
827 if (f->getReturnType() == PointerType::get(Type::SByteTy))
828 if (f->arg_size() == 2)
829 {
830 Function::const_arg_iterator AI = f->arg_begin();
831 if (AI++->getType() == PointerType::get(Type::SByteTy))
832 if (AI->getType() == PointerType::get(Type::SByteTy))
833 {
834 // Indicate this is a suitable call type.
835 return true;
836 }
837 }
838 return false;
839 }
840
841 /// @brief Perform the strcpy optimization
842 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
843 {
844 // First, check to see if src and destination are the same. If they are,
845 // then the optimization is to replace the CallInst with the destination
846 // because the call is a no-op. Note that this corresponds to the
847 // degenerate strcpy(X,X) case which should have "undefined" results
848 // according to the C specification. However, it occurs sometimes and
849 // we optimize it as a no-op.
850 Value* dest = ci->getOperand(1);
851 Value* src = ci->getOperand(2);
852 if (dest == src)
853 {
854 ci->replaceAllUsesWith(dest);
855 ci->eraseFromParent();
856 return true;
857 }
858
859 // Get the length of the constant string referenced by the second operand,
860 // the "src" parameter. Fail the optimization if we can't get the length
861 // (note that getConstantStringLength does lots of checks to make sure this
862 // is valid).
863 uint64_t len = 0;
864 if (!getConstantStringLength(ci->getOperand(2),len))
865 return false;
866
867 // If the constant string's length is zero we can optimize this by just
868 // doing a store of 0 at the first byte of the destination
869 if (len == 0)
870 {
871 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
872 ci->replaceAllUsesWith(dest);
873 ci->eraseFromParent();
874 return true;
875 }
876
877 // Increment the length because we actually want to memcpy the null
878 // terminator as well.
879 len++;
880
881 // Extract some information from the instruction
882 Module* M = ci->getParent()->getParent()->getParent();
883
884 // We have enough information to now generate the memcpy call to
885 // do the concatenation for us.
886 std::vector<Value*> vals;
887 vals.push_back(dest); // destination
888 vals.push_back(src); // source
Reid Spencer1e520fd2005-05-04 03:20:21 +0000889 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
890 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000891 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000892
893 // Finally, substitute the first operand of the strcat call for the
894 // strcat call itself since strcat returns its first operand; and,
895 // kill the strcat CallInst.
896 ci->replaceAllUsesWith(dest);
897 ci->eraseFromParent();
898 return true;
899 }
900} StrCpyOptimizer;
901
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000902/// This LibCallOptimization will simplify a call to the strlen library
903/// function by replacing it with a constant value if the string provided to
904/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000905/// @brief Simplify the strlen library function.
Reid Spencere249a822005-04-27 07:54:40 +0000906struct StrLenOptimization : public LibCallOptimization
Reid Spencer76dab9a2005-04-26 05:24:00 +0000907{
Reid Spencer95d8efd2005-05-03 02:54:54 +0000908 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000909 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000910 virtual ~StrLenOptimization() {}
911
912 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000913 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000914 {
Reid Spencere249a822005-04-27 07:54:40 +0000915 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Reid Spencer76dab9a2005-04-26 05:24:00 +0000916 if (f->arg_size() == 1)
917 if (Function::const_arg_iterator AI = f->arg_begin())
918 if (AI->getType() == PointerType::get(Type::SByteTy))
919 return true;
920 return false;
921 }
922
923 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000924 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000925 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000926 // Make sure we're dealing with an sbyte* here.
927 Value* str = ci->getOperand(1);
928 if (str->getType() != PointerType::get(Type::SByteTy))
929 return false;
930
931 // Does the call to strlen have exactly one use?
932 if (ci->hasOneUse())
933 // Is that single use a binary operator?
934 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
935 // Is it compared against a constant integer?
936 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
937 {
938 // Get the value the strlen result is compared to
939 uint64_t val = CI->getRawValue();
940
941 // If its compared against length 0 with == or !=
942 if (val == 0 &&
943 (bop->getOpcode() == Instruction::SetEQ ||
944 bop->getOpcode() == Instruction::SetNE))
945 {
946 // strlen(x) != 0 -> *x != 0
947 // strlen(x) == 0 -> *x == 0
948 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
949 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
950 load, ConstantSInt::get(Type::SByteTy,0),
951 bop->getName()+".strlen", ci);
952 bop->replaceAllUsesWith(rbop);
953 bop->eraseFromParent();
954 ci->eraseFromParent();
955 return true;
956 }
957 }
958
959 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000960 uint64_t len = 0;
961 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000962 return false;
963
Reid Spencer170ae7f2005-05-07 20:15:59 +0000964 // strlen("xyz") -> 3 (for example)
Reid Spencere249a822005-04-27 07:54:40 +0000965 ci->replaceAllUsesWith(
966 ConstantInt::get(SLC.getTargetData()->getIntPtrType(),len));
Reid Spencerb4f7b832005-04-26 07:45:18 +0000967 ci->eraseFromParent();
968 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000969 }
970} StrLenOptimizer;
971
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000972/// This LibCallOptimization will simplify a call to the memcpy library
973/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
974/// bytes depending on the length of the string and the alignment. Additional
975/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +0000976/// @brief Simplify the memcpy library function.
Reid Spencer38cabd72005-05-03 07:23:44 +0000977struct LLVMMemCpyOptimization : public LibCallOptimization
Reid Spencerf2534c72005-04-25 21:11:48 +0000978{
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000979 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +0000980 LLVMMemCpyOptimization() : LibCallOptimization("llvm.memcpy",
Reid Spencer95d8efd2005-05-03 02:54:54 +0000981 "Number of 'llvm.memcpy' calls simplified") {}
982
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000983protected:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000984 /// @brief Subclass Constructor
Reid Spencer170ae7f2005-05-07 20:15:59 +0000985 LLVMMemCpyOptimization(const char* fname, const char* desc)
986 : LibCallOptimization(fname, desc) {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000987public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000988 /// @brief Destructor
Reid Spencer38cabd72005-05-03 07:23:44 +0000989 virtual ~LLVMMemCpyOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000990
991 /// @brief Make sure that the "memcpy" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000992 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
Reid Spencerf2534c72005-04-25 21:11:48 +0000993 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000994 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +0000995 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +0000996 }
997
Reid Spencerb4f7b832005-04-26 07:45:18 +0000998 /// Because of alignment and instruction information that we don't have, we
999 /// leave the bulk of this to the code generators. The optimization here just
1000 /// deals with a few degenerate cases where the length of the string and the
1001 /// alignment match the sizes of our intrinsic types so we can do a load and
1002 /// store instead of the memcpy call.
1003 /// @brief Perform the memcpy optimization.
Reid Spencere249a822005-04-27 07:54:40 +00001004 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
Reid Spencerf2534c72005-04-25 21:11:48 +00001005 {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001006 // Make sure we have constant int values to work with
1007 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1008 if (!LEN)
1009 return false;
1010 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1011 if (!ALIGN)
1012 return false;
1013
1014 // If the length is larger than the alignment, we can't optimize
1015 uint64_t len = LEN->getRawValue();
1016 uint64_t alignment = ALIGN->getRawValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001017 if (alignment == 0)
1018 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001019 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001020 return false;
1021
Reid Spencer08b49402005-04-27 17:46:54 +00001022 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001023 Value* dest = ci->getOperand(1);
1024 Value* src = ci->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +00001025 Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001026 switch (len)
1027 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001028 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001029 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001030 ci->eraseFromParent();
1031 return true;
Reid Spencer08b49402005-04-27 17:46:54 +00001032 case 1: castType = Type::SByteTy; break;
1033 case 2: castType = Type::ShortTy; break;
1034 case 4: castType = Type::IntTy; break;
1035 case 8: castType = Type::LongTy; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001036 default:
1037 return false;
1038 }
Reid Spencer08b49402005-04-27 17:46:54 +00001039
1040 // Cast source and dest to the right sized primitive and then load/store
1041 CastInst* SrcCast =
1042 new CastInst(src,PointerType::get(castType),src->getName()+".cast",ci);
1043 CastInst* DestCast =
1044 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1045 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001046 StoreInst* SI = new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001047 ci->eraseFromParent();
1048 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001049 }
Reid Spencer38cabd72005-05-03 07:23:44 +00001050} LLVMMemCpyOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001051
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001052/// This LibCallOptimization will simplify a call to the memmove library
1053/// function. It is identical to MemCopyOptimization except for the name of
1054/// the intrinsic.
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001055/// @brief Simplify the memmove library function.
Reid Spencer38cabd72005-05-03 07:23:44 +00001056struct LLVMMemMoveOptimization : public LLVMMemCpyOptimization
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001057{
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001058 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +00001059 LLVMMemMoveOptimization() : LLVMMemCpyOptimization("llvm.memmove",
Reid Spencer95d8efd2005-05-03 02:54:54 +00001060 "Number of 'llvm.memmove' calls simplified") {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001061
Reid Spencer38cabd72005-05-03 07:23:44 +00001062} LLVMMemMoveOptimizer;
1063
1064/// This LibCallOptimization will simplify a call to the memset library
1065/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1066/// bytes depending on the length argument.
1067struct LLVMMemSetOptimization : public LibCallOptimization
1068{
1069 /// @brief Default Constructor
1070 LLVMMemSetOptimization() : LibCallOptimization("llvm.memset",
Reid Spencer38cabd72005-05-03 07:23:44 +00001071 "Number of 'llvm.memset' calls simplified") {}
1072
1073public:
1074 /// @brief Destructor
1075 virtual ~LLVMMemSetOptimization() {}
1076
1077 /// @brief Make sure that the "memset" function has the right prototype
1078 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
1079 {
1080 // Just make sure this has 3 arguments per LLVM spec.
1081 return (f->arg_size() == 4);
1082 }
1083
1084 /// Because of alignment and instruction information that we don't have, we
1085 /// leave the bulk of this to the code generators. The optimization here just
1086 /// deals with a few degenerate cases where the length parameter is constant
1087 /// and the alignment matches the sizes of our intrinsic types so we can do
1088 /// store instead of the memcpy call. Other calls are transformed into the
1089 /// llvm.memset intrinsic.
1090 /// @brief Perform the memset optimization.
1091 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
1092 {
1093 // Make sure we have constant int values to work with
1094 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1095 if (!LEN)
1096 return false;
1097 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1098 if (!ALIGN)
1099 return false;
1100
1101 // Extract the length and alignment
1102 uint64_t len = LEN->getRawValue();
1103 uint64_t alignment = ALIGN->getRawValue();
1104
1105 // Alignment 0 is identity for alignment 1
1106 if (alignment == 0)
1107 alignment = 1;
1108
1109 // If the length is zero, this is a no-op
1110 if (len == 0)
1111 {
1112 // memset(d,c,0,a) -> noop
1113 ci->eraseFromParent();
1114 return true;
1115 }
1116
1117 // If the length is larger than the alignment, we can't optimize
1118 if (len > alignment)
1119 return false;
1120
1121 // Make sure we have a constant ubyte to work with so we can extract
1122 // the value to be filled.
1123 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1124 if (!FILL)
1125 return false;
1126 if (FILL->getType() != Type::UByteTy)
1127 return false;
1128
1129 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
1130
1131 // Extract the fill character
1132 uint64_t fill_char = FILL->getValue();
1133 uint64_t fill_value = fill_char;
1134
1135 // Get the type we will cast to, based on size of memory area to fill, and
1136 // and the value we will store there.
1137 Value* dest = ci->getOperand(1);
1138 Type* castType = 0;
1139 switch (len)
1140 {
1141 case 1:
1142 castType = Type::UByteTy;
1143 break;
1144 case 2:
1145 castType = Type::UShortTy;
1146 fill_value |= fill_char << 8;
1147 break;
1148 case 4:
1149 castType = Type::UIntTy;
1150 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1151 break;
1152 case 8:
1153 castType = Type::ULongTy;
1154 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1155 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1156 fill_value |= fill_char << 56;
1157 break;
1158 default:
1159 return false;
1160 }
1161
1162 // Cast dest to the right sized primitive and then load/store
1163 CastInst* DestCast =
1164 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1165 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1166 ci->eraseFromParent();
1167 return true;
1168 }
1169} LLVMMemSetOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001170
Reid Spencer93616972005-04-29 09:39:47 +00001171/// This LibCallOptimization will simplify calls to the "pow" library
1172/// function. It looks for cases where the result of pow is well known and
1173/// substitutes the appropriate value.
1174/// @brief Simplify the pow library function.
1175struct PowOptimization : public LibCallOptimization
1176{
1177public:
1178 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001179 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001180 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001181
Reid Spencer93616972005-04-29 09:39:47 +00001182 /// @brief Destructor
1183 virtual ~PowOptimization() {}
1184
1185 /// @brief Make sure that the "pow" function has the right prototype
1186 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1187 {
1188 // Just make sure this has 2 arguments
1189 return (f->arg_size() == 2);
1190 }
1191
1192 /// @brief Perform the pow optimization.
1193 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1194 {
1195 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1196 Value* base = ci->getOperand(1);
1197 Value* expn = ci->getOperand(2);
1198 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1199 double Op1V = Op1->getValue();
1200 if (Op1V == 1.0)
1201 {
1202 // pow(1.0,x) -> 1.0
1203 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1204 ci->eraseFromParent();
1205 return true;
1206 }
1207 }
1208 else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn))
1209 {
1210 double Op2V = Op2->getValue();
1211 if (Op2V == 0.0)
1212 {
1213 // pow(x,0.0) -> 1.0
1214 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1215 ci->eraseFromParent();
1216 return true;
1217 }
1218 else if (Op2V == 0.5)
1219 {
1220 // pow(x,0.5) -> sqrt(x)
1221 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1222 ci->getName()+".pow",ci);
1223 ci->replaceAllUsesWith(sqrt_inst);
1224 ci->eraseFromParent();
1225 return true;
1226 }
1227 else if (Op2V == 1.0)
1228 {
1229 // pow(x,1.0) -> x
1230 ci->replaceAllUsesWith(base);
1231 ci->eraseFromParent();
1232 return true;
1233 }
1234 else if (Op2V == -1.0)
1235 {
1236 // pow(x,-1.0) -> 1.0/x
1237 BinaryOperator* div_inst= BinaryOperator::create(Instruction::Div,
1238 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1239 ci->replaceAllUsesWith(div_inst);
1240 ci->eraseFromParent();
1241 return true;
1242 }
1243 }
1244 return false; // opt failed
1245 }
1246} PowOptimizer;
1247
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001248/// This LibCallOptimization will simplify calls to the "fprintf" library
1249/// function. It looks for cases where the result of fprintf is not used and the
1250/// operation can be reduced to something simpler.
1251/// @brief Simplify the pow library function.
1252struct FPrintFOptimization : public LibCallOptimization
1253{
1254public:
1255 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001256 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001257 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001258
1259 /// @brief Destructor
1260 virtual ~FPrintFOptimization() {}
1261
1262 /// @brief Make sure that the "fprintf" function has the right prototype
1263 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1264 {
1265 // Just make sure this has at least 2 arguments
1266 return (f->arg_size() >= 2);
1267 }
1268
1269 /// @brief Perform the fprintf optimization.
1270 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1271 {
1272 // If the call has more than 3 operands, we can't optimize it
1273 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1274 return false;
1275
1276 // If the result of the fprintf call is used, none of these optimizations
1277 // can be made.
1278 if (!ci->hasNUses(0))
1279 return false;
1280
1281 // All the optimizations depend on the length of the second argument and the
1282 // fact that it is a constant string array. Check that now
1283 uint64_t len = 0;
1284 ConstantArray* CA = 0;
1285 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1286 return false;
1287
1288 if (ci->getNumOperands() == 3)
1289 {
1290 // Make sure there's no % in the constant array
1291 for (unsigned i = 0; i < len; ++i)
1292 {
1293 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1294 {
1295 // Check for the null terminator
1296 if (CI->getRawValue() == '%')
1297 return false; // we found end of string
1298 }
1299 else
1300 return false;
1301 }
1302
Reid Spencer45bb4af2005-05-21 00:39:30 +00001303 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001304 const Type* FILEptr_type = ci->getOperand(1)->getType();
1305 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1306 if (!fwrite_func)
1307 return false;
1308 std::vector<Value*> args;
1309 args.push_back(ci->getOperand(2));
1310 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1311 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1312 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001313 new CallInst(fwrite_func,args,ci->getName(),ci);
1314 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001315 ci->eraseFromParent();
1316 return true;
1317 }
1318
1319 // The remaining optimizations require the format string to be length 2
1320 // "%s" or "%c".
1321 if (len != 2)
1322 return false;
1323
1324 // The first character has to be a %
1325 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1326 if (CI->getRawValue() != '%')
1327 return false;
1328
1329 // Get the second character and switch on its value
1330 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1331 switch (CI->getRawValue())
1332 {
1333 case 's':
1334 {
1335 uint64_t len = 0;
1336 ConstantArray* CA = 0;
1337 if (!getConstantStringLength(ci->getOperand(3), len, &CA))
1338 return false;
1339
Reid Spencer1e520fd2005-05-04 03:20:21 +00001340 // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001341 const Type* FILEptr_type = ci->getOperand(1)->getType();
1342 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1343 if (!fwrite_func)
1344 return false;
1345 std::vector<Value*> args;
Reid Spencer45bb4af2005-05-21 00:39:30 +00001346 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001347 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1348 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1349 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001350 new CallInst(fwrite_func,args,ci->getName(),ci);
1351 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001352 break;
1353 }
1354 case 'c':
1355 {
1356 ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(3));
1357 if (!CI)
1358 return false;
1359
1360 const Type* FILEptr_type = ci->getOperand(1)->getType();
1361 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1362 if (!fputc_func)
1363 return false;
1364 CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci);
1365 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001366 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001367 break;
1368 }
1369 default:
1370 return false;
1371 }
1372 ci->eraseFromParent();
1373 return true;
1374 }
1375} FPrintFOptimizer;
1376
Reid Spencer1e520fd2005-05-04 03:20:21 +00001377/// This LibCallOptimization will simplify calls to the "sprintf" library
1378/// function. It looks for cases where the result of sprintf is not used and the
1379/// operation can be reduced to something simpler.
1380/// @brief Simplify the pow library function.
1381struct SPrintFOptimization : public LibCallOptimization
1382{
1383public:
1384 /// @brief Default Constructor
1385 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001386 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001387
1388 /// @brief Destructor
1389 virtual ~SPrintFOptimization() {}
1390
1391 /// @brief Make sure that the "fprintf" function has the right prototype
1392 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1393 {
1394 // Just make sure this has at least 2 arguments
1395 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1396 }
1397
1398 /// @brief Perform the sprintf optimization.
1399 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1400 {
1401 // If the call has more than 3 operands, we can't optimize it
1402 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1403 return false;
1404
1405 // All the optimizations depend on the length of the second argument and the
1406 // fact that it is a constant string array. Check that now
1407 uint64_t len = 0;
1408 ConstantArray* CA = 0;
1409 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1410 return false;
1411
1412 if (ci->getNumOperands() == 3)
1413 {
1414 if (len == 0)
1415 {
1416 // If the length is 0, we just need to store a null byte
1417 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1418 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1419 ci->eraseFromParent();
1420 return true;
1421 }
1422
1423 // Make sure there's no % in the constant array
1424 for (unsigned i = 0; i < len; ++i)
1425 {
1426 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1427 {
1428 // Check for the null terminator
1429 if (CI->getRawValue() == '%')
1430 return false; // we found a %, can't optimize
1431 }
1432 else
1433 return false; // initializer is not constant int, can't optimize
1434 }
1435
1436 // Increment length because we want to copy the null byte too
1437 len++;
1438
1439 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
1440 Function* memcpy_func = SLC.get_memcpy();
1441 if (!memcpy_func)
1442 return false;
1443 std::vector<Value*> args;
1444 args.push_back(ci->getOperand(1));
1445 args.push_back(ci->getOperand(2));
1446 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1447 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1448 new CallInst(memcpy_func,args,"",ci);
1449 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1450 ci->eraseFromParent();
1451 return true;
1452 }
1453
1454 // The remaining optimizations require the format string to be length 2
1455 // "%s" or "%c".
1456 if (len != 2)
1457 return false;
1458
1459 // The first character has to be a %
1460 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1461 if (CI->getRawValue() != '%')
1462 return false;
1463
1464 // Get the second character and switch on its value
1465 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1466 switch (CI->getRawValue())
1467 {
1468 case 's':
1469 {
1470 uint64_t len = 0;
1471 if (ci->hasNUses(0))
1472 {
1473 // sprintf(dest,"%s",str) -> strcpy(dest,str)
1474 Function* strcpy_func = SLC.get_strcpy();
1475 if (!strcpy_func)
1476 return false;
1477 std::vector<Value*> args;
Chris Lattnerf8053ce2005-05-20 22:22:25 +00001478 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1479 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001480 new CallInst(strcpy_func,args,"",ci);
1481 }
1482 else if (getConstantStringLength(ci->getOperand(3),len))
1483 {
1484 // sprintf(dest,"%s",cstr) -> llvm.memcpy(dest,str,strlen(str),1)
1485 len++; // get the null-terminator
1486 Function* memcpy_func = SLC.get_memcpy();
1487 if (!memcpy_func)
1488 return false;
1489 std::vector<Value*> args;
Chris Lattnerf8053ce2005-05-20 22:22:25 +00001490 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1491 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001492 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1493 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1494 new CallInst(memcpy_func,args,"",ci);
1495 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1496 }
1497 break;
1498 }
1499 case 'c':
1500 {
1501 // sprintf(dest,"%c",chr) -> store chr, dest
1502 CastInst* cast =
1503 new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1504 new StoreInst(cast, ci->getOperand(1), ci);
1505 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1506 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1507 ci);
1508 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1509 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1510 break;
1511 }
1512 default:
1513 return false;
1514 }
1515 ci->eraseFromParent();
1516 return true;
1517 }
1518} SPrintFOptimizer;
1519
Reid Spencer93616972005-04-29 09:39:47 +00001520/// This LibCallOptimization will simplify calls to the "fputs" library
1521/// function. It looks for cases where the result of fputs is not used and the
1522/// operation can be reduced to something simpler.
1523/// @brief Simplify the pow library function.
1524struct PutsOptimization : public LibCallOptimization
1525{
1526public:
1527 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001528 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001529 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001530
1531 /// @brief Destructor
1532 virtual ~PutsOptimization() {}
1533
1534 /// @brief Make sure that the "fputs" function has the right prototype
1535 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1536 {
1537 // Just make sure this has 2 arguments
1538 return (f->arg_size() == 2);
1539 }
1540
1541 /// @brief Perform the fputs optimization.
1542 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1543 {
1544 // If the result is used, none of these optimizations work
1545 if (!ci->hasNUses(0))
1546 return false;
1547
1548 // All the optimizations depend on the length of the first argument and the
1549 // fact that it is a constant string array. Check that now
1550 uint64_t len = 0;
1551 if (!getConstantStringLength(ci->getOperand(1), len))
1552 return false;
1553
1554 switch (len)
1555 {
1556 case 0:
1557 // fputs("",F) -> noop
1558 break;
1559 case 1:
1560 {
1561 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001562 const Type* FILEptr_type = ci->getOperand(2)->getType();
1563 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001564 if (!fputc_func)
1565 return false;
1566 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1567 ci->getOperand(1)->getName()+".byte",ci);
1568 CastInst* casti = new CastInst(loadi,Type::IntTy,
1569 loadi->getName()+".int",ci);
1570 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1571 break;
1572 }
1573 default:
1574 {
1575 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001576 const Type* FILEptr_type = ci->getOperand(2)->getType();
1577 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001578 if (!fwrite_func)
1579 return false;
1580 std::vector<Value*> parms;
1581 parms.push_back(ci->getOperand(1));
1582 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1583 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1584 parms.push_back(ci->getOperand(2));
1585 new CallInst(fwrite_func,parms,"",ci);
1586 break;
1587 }
1588 }
1589 ci->eraseFromParent();
1590 return true; // success
1591 }
1592} PutsOptimizer;
1593
Reid Spencer282d0572005-05-04 18:58:28 +00001594/// This LibCallOptimization will simplify calls to the "isdigit" library
1595/// function. It simply does range checks the parameter explicitly.
1596/// @brief Simplify the isdigit library function.
1597struct IsDigitOptimization : public LibCallOptimization
1598{
1599public:
1600 /// @brief Default Constructor
1601 IsDigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001602 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001603
1604 /// @brief Destructor
1605 virtual ~IsDigitOptimization() {}
1606
1607 /// @brief Make sure that the "fputs" function has the right prototype
1608 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1609 {
1610 // Just make sure this has 1 argument
1611 return (f->arg_size() == 1);
1612 }
1613
1614 /// @brief Perform the toascii optimization.
1615 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1616 {
1617 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1)))
1618 {
1619 // isdigit(c) -> 0 or 1, if 'c' is constant
1620 uint64_t val = CI->getRawValue();
1621 if (val >= '0' && val <='9')
1622 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1623 else
1624 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1625 ci->eraseFromParent();
1626 return true;
1627 }
1628
1629 // isdigit(c) -> (unsigned)c - '0' <= 9
1630 CastInst* cast =
1631 new CastInst(ci->getOperand(1),Type::UIntTy,
1632 ci->getOperand(1)->getName()+".uint",ci);
1633 BinaryOperator* sub_inst = BinaryOperator::create(Instruction::Sub,cast,
1634 ConstantUInt::get(Type::UIntTy,0x30),
1635 ci->getOperand(1)->getName()+".sub",ci);
1636 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1637 ConstantUInt::get(Type::UIntTy,9),
1638 ci->getOperand(1)->getName()+".cmp",ci);
1639 CastInst* c2 =
1640 new CastInst(setcond_inst,Type::IntTy,
1641 ci->getOperand(1)->getName()+".isdigit",ci);
1642 ci->replaceAllUsesWith(c2);
1643 ci->eraseFromParent();
1644 return true;
1645 }
1646} IsDigitOptimizer;
1647
Reid Spencer4c444fe2005-04-30 03:17:54 +00001648/// This LibCallOptimization will simplify calls to the "toascii" library
1649/// function. It simply does the corresponding and operation to restrict the
1650/// range of values to the ASCII character set (0-127).
1651/// @brief Simplify the toascii library function.
1652struct ToAsciiOptimization : public LibCallOptimization
1653{
1654public:
1655 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001656 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001657 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001658
1659 /// @brief Destructor
1660 virtual ~ToAsciiOptimization() {}
1661
1662 /// @brief Make sure that the "fputs" function has the right prototype
1663 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1664 {
1665 // Just make sure this has 2 arguments
1666 return (f->arg_size() == 1);
1667 }
1668
1669 /// @brief Perform the toascii optimization.
1670 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1671 {
1672 // toascii(c) -> (c & 0x7f)
1673 Value* chr = ci->getOperand(1);
1674 BinaryOperator* and_inst = BinaryOperator::create(Instruction::And,chr,
1675 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1676 ci->replaceAllUsesWith(and_inst);
1677 ci->eraseFromParent();
1678 return true;
1679 }
1680} ToAsciiOptimizer;
1681
Reid Spencerb195fcd2005-05-14 16:42:52 +00001682/// This LibCallOptimization will simplify calls to the "ffs" library
1683/// calls which find the first set bit in an int, long, or long long. The
1684/// optimization is to compute the result at compile time if the argument is
1685/// a constant.
1686/// @brief Simplify the ffs library function.
1687struct FFSOptimization : public LibCallOptimization
1688{
1689protected:
1690 /// @brief Subclass Constructor
1691 FFSOptimization(const char* funcName, const char* description)
1692 : LibCallOptimization(funcName, description)
1693 {}
1694
1695public:
1696 /// @brief Default Constructor
1697 FFSOptimization() : LibCallOptimization("ffs",
1698 "Number of 'ffs' calls simplified") {}
1699
1700 /// @brief Destructor
1701 virtual ~FFSOptimization() {}
1702
1703 /// @brief Make sure that the "fputs" function has the right prototype
1704 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1705 {
1706 // Just make sure this has 2 arguments
1707 return (f->arg_size() == 1 && f->getReturnType() == Type::IntTy);
1708 }
1709
1710 /// @brief Perform the ffs optimization.
1711 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1712 {
1713 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1)))
1714 {
1715 // ffs(cnst) -> bit#
1716 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001717 // ffsll(cnst) -> bit#
Reid Spencerb195fcd2005-05-14 16:42:52 +00001718 uint64_t val = CI->getRawValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001719 int result = 0;
1720 while (val != 0) {
1721 result +=1;
1722 if (val&1)
1723 break;
1724 val >>= 1;
1725 }
Reid Spencerb195fcd2005-05-14 16:42:52 +00001726 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy, result));
1727 ci->eraseFromParent();
1728 return true;
1729 }
Reid Spencer17f77842005-05-15 21:19:45 +00001730
1731 // ffs(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1732 // ffsl(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1733 // ffsll(x) -> ( x == 0 ? 0 : llvm.cttz(x)+1)
1734 const Type* arg_type = ci->getOperand(1)->getType();
1735 std::vector<const Type*> args;
1736 args.push_back(arg_type);
1737 FunctionType* llvm_cttz_type = FunctionType::get(arg_type,args,false);
1738 Function* F =
1739 SLC.getModule()->getOrInsertFunction("llvm.cttz",llvm_cttz_type);
1740 std::string inst_name(ci->getName()+".ffs");
1741 Instruction* call =
1742 new CallInst(F, ci->getOperand(1), inst_name, ci);
1743 if (arg_type != Type::IntTy)
1744 call = new CastInst(call, Type::IntTy, inst_name, ci);
1745 BinaryOperator* add = BinaryOperator::create(Instruction::Add, call,
1746 ConstantSInt::get(Type::IntTy,1), inst_name, ci);
1747 SetCondInst* eq = new SetCondInst(Instruction::SetEQ,ci->getOperand(1),
1748 ConstantSInt::get(ci->getOperand(1)->getType(),0),inst_name,ci);
1749 SelectInst* select = new SelectInst(eq,ConstantSInt::get(Type::IntTy,0),add,
1750 inst_name,ci);
1751 ci->replaceAllUsesWith(select);
1752 ci->eraseFromParent();
1753 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001754 }
1755} FFSOptimizer;
1756
1757/// This LibCallOptimization will simplify calls to the "ffsl" library
1758/// calls. It simply uses FFSOptimization for which the transformation is
1759/// identical.
1760/// @brief Simplify the ffsl library function.
1761struct FFSLOptimization : public FFSOptimization
1762{
1763public:
1764 /// @brief Default Constructor
1765 FFSLOptimization() : FFSOptimization("ffsl",
1766 "Number of 'ffsl' calls simplified") {}
1767
1768} FFSLOptimizer;
1769
1770/// This LibCallOptimization will simplify calls to the "ffsll" library
1771/// calls. It simply uses FFSOptimization for which the transformation is
1772/// identical.
1773/// @brief Simplify the ffsl library function.
1774struct FFSLLOptimization : public FFSOptimization
1775{
1776public:
1777 /// @brief Default Constructor
1778 FFSLLOptimization() : FFSOptimization("ffsll",
1779 "Number of 'ffsll' calls simplified") {}
1780
1781} FFSLLOptimizer;
1782
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001783/// A function to compute the length of a null-terminated constant array of
1784/// integers. This function can't rely on the size of the constant array
1785/// because there could be a null terminator in the middle of the array.
1786/// We also have to bail out if we find a non-integer constant initializer
1787/// of one of the elements or if there is no null-terminator. The logic
1788/// below checks each of these conditions and will return true only if all
1789/// conditions are met. In that case, the \p len parameter is set to the length
1790/// of the null-terminated string. If false is returned, the conditions were
1791/// not met and len is set to 0.
1792/// @brief Get the length of a constant string (null-terminated array).
Reid Spencer4c444fe2005-04-30 03:17:54 +00001793bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** CA )
Reid Spencere249a822005-04-27 07:54:40 +00001794{
1795 assert(V != 0 && "Invalid args to getConstantStringLength");
1796 len = 0; // make sure we initialize this
1797 User* GEP = 0;
1798 // If the value is not a GEP instruction nor a constant expression with a
1799 // GEP instruction, then return false because ConstantArray can't occur
1800 // any other way
1801 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
1802 GEP = GEPI;
1803 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
1804 if (CE->getOpcode() == Instruction::GetElementPtr)
1805 GEP = CE;
1806 else
1807 return false;
1808 else
1809 return false;
1810
1811 // Make sure the GEP has exactly three arguments.
1812 if (GEP->getNumOperands() != 3)
1813 return false;
1814
1815 // Check to make sure that the first operand of the GEP is an integer and
1816 // has value 0 so that we are sure we're indexing into the initializer.
1817 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1)))
1818 {
1819 if (!op1->isNullValue())
1820 return false;
1821 }
1822 else
1823 return false;
1824
1825 // Ensure that the second operand is a ConstantInt. If it isn't then this
1826 // GEP is wonky and we're not really sure what were referencing into and
1827 // better of not optimizing it. While we're at it, get the second index
1828 // value. We'll need this later for indexing the ConstantArray.
1829 uint64_t start_idx = 0;
1830 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1831 start_idx = CI->getRawValue();
1832 else
1833 return false;
1834
1835 // The GEP instruction, constant or instruction, must reference a global
1836 // variable that is a constant and is initialized. The referenced constant
1837 // initializer is the array that we'll use for optimization.
1838 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1839 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1840 return false;
1841
1842 // Get the initializer.
1843 Constant* INTLZR = GV->getInitializer();
1844
1845 // Handle the ConstantAggregateZero case
1846 if (ConstantAggregateZero* CAZ = dyn_cast<ConstantAggregateZero>(INTLZR))
1847 {
1848 // This is a degenerate case. The initializer is constant zero so the
1849 // length of the string must be zero.
1850 len = 0;
1851 return true;
1852 }
1853
1854 // Must be a Constant Array
1855 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
1856 if (!A)
1857 return false;
1858
1859 // Get the number of elements in the array
1860 uint64_t max_elems = A->getType()->getNumElements();
1861
1862 // Traverse the constant array from start_idx (derived above) which is
1863 // the place the GEP refers to in the array.
1864 for ( len = start_idx; len < max_elems; len++)
1865 {
1866 if (ConstantInt* CI = dyn_cast<ConstantInt>(A->getOperand(len)))
1867 {
1868 // Check for the null terminator
1869 if (CI->isNullValue())
1870 break; // we found end of string
1871 }
1872 else
1873 return false; // This array isn't suitable, non-int initializer
1874 }
1875 if (len >= max_elems)
1876 return false; // This array isn't null terminated
1877
1878 // Subtract out the initial value from the length
1879 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00001880 if (CA)
1881 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00001882 return true; // success!
1883}
1884
Reid Spencera7828ba2005-06-18 17:46:28 +00001885/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1886/// inserting the cast before IP, and return the cast.
1887/// @brief Cast a value to a "C" string.
1888Value *CastToCStr(Value *V, Instruction &IP) {
1889 const Type *SBPTy = PointerType::get(Type::SByteTy);
1890 if (V->getType() != SBPTy)
1891 return new CastInst(V, SBPTy, V->getName(), &IP);
1892 return V;
1893}
1894
Reid Spencer649ac282005-04-28 04:40:06 +00001895// TODO:
1896// Additional cases that we need to add to this file:
1897//
Reid Spencer649ac282005-04-28 04:40:06 +00001898// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00001899// * cbrt(expN(X)) -> expN(x/3)
1900// * cbrt(sqrt(x)) -> pow(x,1/6)
1901// * cbrt(sqrt(x)) -> pow(x,1/9)
1902//
Reid Spencer649ac282005-04-28 04:40:06 +00001903// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00001904// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00001905//
1906// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00001907// * exp(log(x)) -> x
1908//
Reid Spencer649ac282005-04-28 04:40:06 +00001909// isascii:
1910// * isascii(c) -> ((c & ~0x7f) == 0)
1911//
1912// isdigit:
1913// * isdigit(c) -> (unsigned)(c) - '0' <= 9
1914//
1915// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00001916// * log(exp(x)) -> x
1917// * log(x**y) -> y*log(x)
1918// * log(exp(y)) -> y*log(e)
1919// * log(exp2(y)) -> y*log(2)
1920// * log(exp10(y)) -> y*log(10)
1921// * log(sqrt(x)) -> 0.5*log(x)
1922// * log(pow(x,y)) -> y*log(x)
1923//
1924// lround, lroundf, lroundl:
1925// * lround(cnst) -> cnst'
1926//
1927// memcmp:
1928// * memcmp(s1,s2,0) -> 0
1929// * memcmp(x,x,l) -> 0
1930// * memcmp(x,y,l) -> cnst
1931// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer38cabd72005-05-03 07:23:44 +00001932// * memcmp(x,y,1) -> *x - *y
Reid Spencer649ac282005-04-28 04:40:06 +00001933//
Reid Spencer649ac282005-04-28 04:40:06 +00001934// memmove:
1935// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
1936// (if s is a global constant array)
1937//
Reid Spencer649ac282005-04-28 04:40:06 +00001938// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00001939// * pow(exp(x),y) -> exp(x*y)
1940// * pow(sqrt(x),y) -> pow(x,y*0.5)
1941// * pow(pow(x,y),z)-> pow(x,y*z)
1942//
1943// puts:
1944// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
1945//
1946// round, roundf, roundl:
1947// * round(cnst) -> cnst'
1948//
1949// signbit:
1950// * signbit(cnst) -> cnst'
1951// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
1952//
Reid Spencer649ac282005-04-28 04:40:06 +00001953// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00001954// * sqrt(expN(x)) -> expN(x*0.5)
1955// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
1956// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
1957//
Reid Spencer170ae7f2005-05-07 20:15:59 +00001958// stpcpy:
1959// * stpcpy(str, "literal") ->
1960// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00001961// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00001962// * strrchr(s,c) -> reverse_offset_of_in(c,s)
1963// (if c is a constant integer and s is a constant string)
1964// * strrchr(s1,0) -> strchr(s1,0)
1965//
Reid Spencer649ac282005-04-28 04:40:06 +00001966// strncat:
1967// * strncat(x,y,0) -> x
1968// * strncat(x,y,0) -> x (if strlen(y) = 0)
1969// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
1970//
Reid Spencer649ac282005-04-28 04:40:06 +00001971// strncpy:
1972// * strncpy(d,s,0) -> d
1973// * strncpy(d,s,l) -> memcpy(d,s,l,1)
1974// (if s and l are constants)
1975//
1976// strpbrk:
1977// * strpbrk(s,a) -> offset_in_for(s,a)
1978// (if s and a are both constant strings)
1979// * strpbrk(s,"") -> 0
1980// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
1981//
1982// strspn, strcspn:
1983// * strspn(s,a) -> const_int (if both args are constant)
1984// * strspn("",a) -> 0
1985// * strspn(s,"") -> 0
1986// * strcspn(s,a) -> const_int (if both args are constant)
1987// * strcspn("",a) -> 0
1988// * strcspn(s,"") -> strlen(a)
1989//
1990// strstr:
1991// * strstr(x,x) -> x
1992// * strstr(s1,s2) -> offset_of_s2_in(s1)
1993// (if s1 and s2 are constant strings)
1994//
1995// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00001996// * tan(atan(x)) -> x
1997//
Reid Spencer649ac282005-04-28 04:40:06 +00001998// trunc, truncf, truncl:
1999// * trunc(cnst) -> cnst'
2000//
2001//
Reid Spencer39a762d2005-04-25 02:53:12 +00002002}