Fix typo in comment.
[oota-llvm.git] / lib / Transforms / IPO / SimplifyLibCalls.cpp
1 //===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // 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.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #define DEBUG_TYPE "simplify-libcalls"
21 #include "llvm/Constants.h"
22 #include "llvm/DerivedTypes.h"
23 #include "llvm/Instructions.h"
24 #include "llvm/Module.h"
25 #include "llvm/Pass.h"
26 #include "llvm/ADT/hash_map"
27 #include "llvm/ADT/Statistic.h"
28 #include "llvm/Config/config.h"
29 #include "llvm/Support/Compiler.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Target/TargetData.h"
32 #include "llvm/Transforms/IPO.h"
33 using namespace llvm;
34
35 /// This statistic keeps track of the total number of library calls that have
36 /// been simplified regardless of which call it is.
37 STATISTIC(SimplifiedLibCalls, "Number of library calls simplified");
38
39 namespace {
40   // Forward declarations
41   class LibCallOptimization;
42   class SimplifyLibCalls;
43   
44 /// This list is populated by the constructor for LibCallOptimization class.
45 /// Therefore all subclasses are registered here at static initialization time
46 /// and this list is what the SimplifyLibCalls pass uses to apply the individual
47 /// optimizations to the call sites.
48 /// @brief The list of optimizations deriving from LibCallOptimization
49 static LibCallOptimization *OptList = 0;
50
51 /// This class is the abstract base class for the set of optimizations that
52 /// corresponds to one library call. The SimplifyLibCalls pass will call the
53 /// ValidateCalledFunction method to ask the optimization if a given Function
54 /// is the kind that the optimization can handle. If the subclass returns true,
55 /// then SImplifyLibCalls will also call the OptimizeCall method to perform,
56 /// or attempt to perform, the optimization(s) for the library call. Otherwise,
57 /// OptimizeCall won't be called. Subclasses are responsible for providing the
58 /// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
59 /// constructor. This is used to efficiently select which call instructions to
60 /// optimize. The criteria for a "lib call" is "anything with well known
61 /// semantics", typically a library function that is defined by an international
62 /// standard. Because the semantics are well known, the optimizations can
63 /// generally short-circuit actually calling the function if there's a simpler
64 /// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
65 /// @brief Base class for library call optimizations
66 class VISIBILITY_HIDDEN LibCallOptimization {
67   LibCallOptimization **Prev, *Next;
68   const char *FunctionName; ///< Name of the library call we optimize
69 #ifndef NDEBUG
70   Statistic occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
71 #endif
72 public:
73   /// The \p fname argument must be the name of the library function being
74   /// optimized by the subclass.
75   /// @brief Constructor that registers the optimization.
76   LibCallOptimization(const char *FName, const char *Description)
77     : FunctionName(FName) {
78       
79 #ifndef NDEBUG
80     occurrences.construct("simplify-libcalls", Description);
81 #endif
82     // Register this optimizer in the list of optimizations.
83     Next = OptList;
84     OptList = this;
85     Prev = &OptList;
86     if (Next) Next->Prev = &Next;
87   }
88   
89   /// getNext - All libcall optimizations are chained together into a list,
90   /// return the next one in the list.
91   LibCallOptimization *getNext() { return Next; }
92
93   /// @brief Deregister from the optlist
94   virtual ~LibCallOptimization() {
95     *Prev = Next;
96     if (Next) Next->Prev = Prev;
97   }
98
99   /// The implementation of this function in subclasses should determine if
100   /// \p F is suitable for the optimization. This method is called by
101   /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
102   /// sites of such a function if that function is not suitable in the first
103   /// place.  If the called function is suitabe, this method should return true;
104   /// false, otherwise. This function should also perform any lazy
105   /// initialization that the LibCallOptimization needs to do, if its to return
106   /// true. This avoids doing initialization until the optimizer is actually
107   /// going to be called upon to do some optimization.
108   /// @brief Determine if the function is suitable for optimization
109   virtual bool ValidateCalledFunction(
110     const Function* F,    ///< The function that is the target of call sites
111     SimplifyLibCalls& SLC ///< The pass object invoking us
112   ) = 0;
113
114   /// The implementations of this function in subclasses is the heart of the
115   /// SimplifyLibCalls algorithm. Sublcasses of this class implement
116   /// OptimizeCall to determine if (a) the conditions are right for optimizing
117   /// the call and (b) to perform the optimization. If an action is taken
118   /// against ci, the subclass is responsible for returning true and ensuring
119   /// that ci is erased from its parent.
120   /// @brief Optimize a call, if possible.
121   virtual bool OptimizeCall(
122     CallInst* ci,          ///< The call instruction that should be optimized.
123     SimplifyLibCalls& SLC  ///< The pass object invoking us
124   ) = 0;
125
126   /// @brief Get the name of the library call being optimized
127   const char *getFunctionName() const { return FunctionName; }
128
129   bool ReplaceCallWith(CallInst *CI, Value *V) {
130     if (!CI->use_empty())
131       CI->replaceAllUsesWith(V);
132     CI->eraseFromParent();
133     return true;
134   }
135   
136   /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
137   void succeeded() {
138 #ifndef NDEBUG
139     DEBUG(++occurrences);
140 #endif
141   }
142 };
143
144 /// This class is an LLVM Pass that applies each of the LibCallOptimization
145 /// instances to all the call sites in a module, relatively efficiently. The
146 /// purpose of this pass is to provide optimizations for calls to well-known
147 /// functions with well-known semantics, such as those in the c library. The
148 /// class provides the basic infrastructure for handling runOnModule.  Whenever
149 /// this pass finds a function call, it asks the appropriate optimizer to
150 /// validate the call (ValidateLibraryCall). If it is validated, then
151 /// the OptimizeCall method is also called.
152 /// @brief A ModulePass for optimizing well-known function calls.
153 class VISIBILITY_HIDDEN SimplifyLibCalls : public ModulePass {
154 public:
155   static char ID; // Pass identification, replacement for typeid
156   SimplifyLibCalls() : ModulePass((intptr_t)&ID) {}
157
158   /// We need some target data for accurate signature details that are
159   /// target dependent. So we require target data in our AnalysisUsage.
160   /// @brief Require TargetData from AnalysisUsage.
161   virtual void getAnalysisUsage(AnalysisUsage& Info) const {
162     // Ask that the TargetData analysis be performed before us so we can use
163     // the target data.
164     Info.addRequired<TargetData>();
165   }
166
167   /// For this pass, process all of the function calls in the module, calling
168   /// ValidateLibraryCall and OptimizeCall as appropriate.
169   /// @brief Run all the lib call optimizations on a Module.
170   virtual bool runOnModule(Module &M) {
171     reset(M);
172
173     bool result = false;
174     hash_map<std::string, LibCallOptimization*> OptznMap;
175     for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
176       OptznMap[Optzn->getFunctionName()] = Optzn;
177
178     // The call optimizations can be recursive. That is, the optimization might
179     // generate a call to another function which can also be optimized. This way
180     // we make the LibCallOptimization instances very specific to the case they
181     // handle. It also means we need to keep running over the function calls in
182     // the module until we don't get any more optimizations possible.
183     bool found_optimization = false;
184     do {
185       found_optimization = false;
186       for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
187         // All the "well-known" functions are external and have external linkage
188         // because they live in a runtime library somewhere and were (probably)
189         // not compiled by LLVM.  So, we only act on external functions that
190         // have external or dllimport linkage and non-empty uses.
191         if (!FI->isDeclaration() ||
192             !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
193             FI->use_empty())
194           continue;
195
196         // Get the optimization class that pertains to this function
197         hash_map<std::string, LibCallOptimization*>::iterator OMI =
198           OptznMap.find(FI->getName());
199         if (OMI == OptznMap.end()) continue;
200         
201         LibCallOptimization *CO = OMI->second;
202
203         // Make sure the called function is suitable for the optimization
204         if (!CO->ValidateCalledFunction(FI, *this))
205           continue;
206
207         // Loop over each of the uses of the function
208         for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
209              UI != UE ; ) {
210           // If the use of the function is a call instruction
211           if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
212             // Do the optimization on the LibCallOptimization.
213             if (CO->OptimizeCall(CI, *this)) {
214               ++SimplifiedLibCalls;
215               found_optimization = result = true;
216               CO->succeeded();
217             }
218           }
219         }
220       }
221     } while (found_optimization);
222     
223     return result;
224   }
225
226   /// @brief Return the *current* module we're working on.
227   Module* getModule() const { return M; }
228
229   /// @brief Return the *current* target data for the module we're working on.
230   TargetData* getTargetData() const { return TD; }
231
232   /// @brief Return the size_t type -- syntactic shortcut
233   const Type* getIntPtrType() const { return TD->getIntPtrType(); }
234
235   /// @brief Return a Function* for the putchar libcall
236   Constant *get_putchar() {
237     if (!putchar_func)
238       putchar_func = 
239         M->getOrInsertFunction("putchar", Type::Int32Ty, Type::Int32Ty, NULL);
240     return putchar_func;
241   }
242
243   /// @brief Return a Function* for the puts libcall
244   Constant *get_puts() {
245     if (!puts_func)
246       puts_func = M->getOrInsertFunction("puts", Type::Int32Ty,
247                                          PointerType::get(Type::Int8Ty),
248                                          NULL);
249     return puts_func;
250   }
251
252   /// @brief Return a Function* for the fputc libcall
253   Constant *get_fputc(const Type* FILEptr_type) {
254     if (!fputc_func)
255       fputc_func = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
256                                           FILEptr_type, NULL);
257     return fputc_func;
258   }
259
260   /// @brief Return a Function* for the fputs libcall
261   Constant *get_fputs(const Type* FILEptr_type) {
262     if (!fputs_func)
263       fputs_func = M->getOrInsertFunction("fputs", Type::Int32Ty,
264                                           PointerType::get(Type::Int8Ty),
265                                           FILEptr_type, NULL);
266     return fputs_func;
267   }
268
269   /// @brief Return a Function* for the fwrite libcall
270   Constant *get_fwrite(const Type* FILEptr_type) {
271     if (!fwrite_func)
272       fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
273                                            PointerType::get(Type::Int8Ty),
274                                            TD->getIntPtrType(),
275                                            TD->getIntPtrType(),
276                                            FILEptr_type, NULL);
277     return fwrite_func;
278   }
279
280   /// @brief Return a Function* for the sqrt libcall
281   Constant *get_sqrt() {
282     if (!sqrt_func)
283       sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy, 
284                                          Type::DoubleTy, NULL);
285     return sqrt_func;
286   }
287
288   /// @brief Return a Function* for the strcpy libcall
289   Constant *get_strcpy() {
290     if (!strcpy_func)
291       strcpy_func = M->getOrInsertFunction("strcpy",
292                                            PointerType::get(Type::Int8Ty),
293                                            PointerType::get(Type::Int8Ty),
294                                            PointerType::get(Type::Int8Ty),
295                                            NULL);
296     return strcpy_func;
297   }
298
299   /// @brief Return a Function* for the strlen libcall
300   Constant *get_strlen() {
301     if (!strlen_func)
302       strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
303                                            PointerType::get(Type::Int8Ty),
304                                            NULL);
305     return strlen_func;
306   }
307
308   /// @brief Return a Function* for the memchr libcall
309   Constant *get_memchr() {
310     if (!memchr_func)
311       memchr_func = M->getOrInsertFunction("memchr",
312                                            PointerType::get(Type::Int8Ty),
313                                            PointerType::get(Type::Int8Ty),
314                                            Type::Int32Ty, TD->getIntPtrType(),
315                                            NULL);
316     return memchr_func;
317   }
318
319   /// @brief Return a Function* for the memcpy libcall
320   Constant *get_memcpy() {
321     if (!memcpy_func) {
322       const Type *SBP = PointerType::get(Type::Int8Ty);
323       const char *N = TD->getIntPtrType() == Type::Int32Ty ?
324                             "llvm.memcpy.i32" : "llvm.memcpy.i64";
325       memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
326                                            TD->getIntPtrType(), Type::Int32Ty,
327                                            NULL);
328     }
329     return memcpy_func;
330   }
331
332   Constant *getUnaryFloatFunction(const char *Name, Constant *&Cache) {
333     if (!Cache)
334       Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
335     return Cache;
336   }
337   
338   Constant *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
339   Constant *get_ceilf()  { return getUnaryFloatFunction( "ceilf",  ceilf_func);}
340   Constant *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
341   Constant *get_rintf()  { return getUnaryFloatFunction( "rintf",  rintf_func);}
342   Constant *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
343                                                             nearbyintf_func); }
344 private:
345   /// @brief Reset our cached data for a new Module
346   void reset(Module& mod) {
347     M = &mod;
348     TD = &getAnalysis<TargetData>();
349     putchar_func = 0;
350     puts_func = 0;
351     fputc_func = 0;
352     fputs_func = 0;
353     fwrite_func = 0;
354     memcpy_func = 0;
355     memchr_func = 0;
356     sqrt_func   = 0;
357     strcpy_func = 0;
358     strlen_func = 0;
359     floorf_func = 0;
360     ceilf_func = 0;
361     roundf_func = 0;
362     rintf_func = 0;
363     nearbyintf_func = 0;
364   }
365
366 private:
367   /// Caches for function pointers.
368   Constant *putchar_func, *puts_func;
369   Constant *fputc_func, *fputs_func, *fwrite_func;
370   Constant *memcpy_func, *memchr_func;
371   Constant *sqrt_func;
372   Constant *strcpy_func, *strlen_func;
373   Constant *floorf_func, *ceilf_func, *roundf_func;
374   Constant *rintf_func, *nearbyintf_func;
375   Module *M;             ///< Cached Module
376   TargetData *TD;        ///< Cached TargetData
377 };
378
379 char SimplifyLibCalls::ID = 0;
380 // Register the pass
381 RegisterPass<SimplifyLibCalls>
382 X("simplify-libcalls", "Simplify well-known library calls");
383
384 } // anonymous namespace
385
386 // The only public symbol in this file which just instantiates the pass object
387 ModulePass *llvm::createSimplifyLibCallsPass() {
388   return new SimplifyLibCalls();
389 }
390
391 // Classes below here, in the anonymous namespace, are all subclasses of the
392 // LibCallOptimization class, each implementing all optimizations possible for a
393 // single well-known library call. Each has a static singleton instance that
394 // auto registers it into the "optlist" global above.
395 namespace {
396
397 // Forward declare utility functions.
398 static bool GetConstantStringInfo(Value *V, std::string &Str);
399 static Value *CastToCStr(Value *V, Instruction *IP);
400
401 /// This LibCallOptimization will find instances of a call to "exit" that occurs
402 /// within the "main" function and change it to a simple "ret" instruction with
403 /// the same value passed to the exit function. When this is done, it splits the
404 /// basic block at the exit(3) call and deletes the call instruction.
405 /// @brief Replace calls to exit in main with a simple return
406 struct VISIBILITY_HIDDEN ExitInMainOptimization : public LibCallOptimization {
407   ExitInMainOptimization() : LibCallOptimization("exit",
408       "Number of 'exit' calls simplified") {}
409
410   // Make sure the called function looks like exit (int argument, int return
411   // type, external linkage, not varargs).
412   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
413     return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
414   }
415
416   virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
417     // To be careful, we check that the call to exit is coming from "main", that
418     // main has external linkage, and the return type of main and the argument
419     // to exit have the same type.
420     Function *from = ci->getParent()->getParent();
421     if (from->hasExternalLinkage())
422       if (from->getReturnType() == ci->getOperand(1)->getType())
423         if (from->getName() == "main") {
424           // Okay, time to actually do the optimization. First, get the basic
425           // block of the call instruction
426           BasicBlock* bb = ci->getParent();
427
428           // Create a return instruction that we'll replace the call with.
429           // Note that the argument of the return is the argument of the call
430           // instruction.
431           new ReturnInst(ci->getOperand(1), ci);
432
433           // Split the block at the call instruction which places it in a new
434           // basic block.
435           bb->splitBasicBlock(ci);
436
437           // The block split caused a branch instruction to be inserted into
438           // the end of the original block, right after the return instruction
439           // that we put there. That's not a valid block, so delete the branch
440           // instruction.
441           bb->getInstList().pop_back();
442
443           // Now we can finally get rid of the call instruction which now lives
444           // in the new basic block.
445           ci->eraseFromParent();
446
447           // Optimization succeeded, return true.
448           return true;
449         }
450     // We didn't pass the criteria for this optimization so return false
451     return false;
452   }
453 } ExitInMainOptimizer;
454
455 /// This LibCallOptimization will simplify a call to the strcat library
456 /// function. The simplification is possible only if the string being
457 /// concatenated is a constant array or a constant expression that results in
458 /// a constant string. In this case we can replace it with strlen + llvm.memcpy
459 /// of the constant string. Both of these calls are further reduced, if possible
460 /// on subsequent passes.
461 /// @brief Simplify the strcat library function.
462 struct VISIBILITY_HIDDEN StrCatOptimization : public LibCallOptimization {
463 public:
464   /// @brief Default constructor
465   StrCatOptimization() : LibCallOptimization("strcat",
466       "Number of 'strcat' calls simplified") {}
467
468 public:
469
470   /// @brief Make sure that the "strcat" function has the right prototype
471   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
472     const FunctionType *FT = F->getFunctionType();
473     return FT->getNumParams() == 2 &&
474            FT->getReturnType() == PointerType::get(Type::Int8Ty) &&
475            FT->getParamType(0) == FT->getReturnType() &&
476            FT->getParamType(1) == FT->getReturnType();
477   }
478
479   /// @brief Optimize the strcat library function
480   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
481     // Extract some information from the instruction
482     Value *Dst = CI->getOperand(1);
483     Value *Src = CI->getOperand(2);
484
485     // Extract the initializer (while making numerous checks) from the
486     // source operand of the call to strcat.
487     std::string SrcStr;
488     if (!GetConstantStringInfo(Src, SrcStr))
489       return false;
490
491     // Handle the simple, do-nothing case
492     if (SrcStr.empty())
493       return ReplaceCallWith(CI, Dst);
494
495     // We need to find the end of the destination string.  That's where the
496     // memory is to be moved to. We just generate a call to strlen.
497     CallInst *DstLen = new CallInst(SLC.get_strlen(), Dst,
498                                     Dst->getName()+".len", CI);
499
500     // Now that we have the destination's length, we must index into the
501     // destination's pointer to get the actual memcpy destination (end of
502     // the string .. we're concatenating).
503     Dst = new GetElementPtrInst(Dst, DstLen, Dst->getName()+".indexed", CI);
504
505     // We have enough information to now generate the memcpy call to
506     // do the concatenation for us.
507     Value *Vals[] = {
508       Dst, Src,
509       ConstantInt::get(SLC.getIntPtrType(), SrcStr.size()+1), // copy nul byte.
510       ConstantInt::get(Type::Int32Ty, 1)  // alignment
511     };
512     new CallInst(SLC.get_memcpy(), Vals, 4, "", CI);
513
514     return ReplaceCallWith(CI, Dst);
515   }
516 } StrCatOptimizer;
517
518 /// This LibCallOptimization will simplify a call to the strchr library
519 /// function.  It optimizes out cases where the arguments are both constant
520 /// and the result can be determined statically.
521 /// @brief Simplify the strcmp library function.
522 struct VISIBILITY_HIDDEN StrChrOptimization : public LibCallOptimization {
523 public:
524   StrChrOptimization() : LibCallOptimization("strchr",
525       "Number of 'strchr' calls simplified") {}
526
527   /// @brief Make sure that the "strchr" function has the right prototype
528   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
529     const FunctionType *FT = F->getFunctionType();
530     return FT->getNumParams() == 2 &&
531            FT->getReturnType() == PointerType::get(Type::Int8Ty) &&
532            FT->getParamType(0) == FT->getReturnType() &&
533            isa<IntegerType>(FT->getParamType(1));
534   }
535
536   /// @brief Perform the strchr optimizations
537   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
538     // Check that the first argument to strchr is a constant array of sbyte.
539     std::string Str;
540     if (!GetConstantStringInfo(CI->getOperand(1), Str))
541       return false;
542
543     // If the second operand is not constant, just lower this to memchr since we
544     // know the length of the input string.
545     ConstantInt *CSI = dyn_cast<ConstantInt>(CI->getOperand(2));
546     if (!CSI) {
547       Value *Args[3] = {
548         CI->getOperand(1),
549         CI->getOperand(2),
550         ConstantInt::get(SLC.getIntPtrType(), Str.size()+1)
551       };
552       return ReplaceCallWith(CI, new CallInst(SLC.get_memchr(), Args, 3,
553                                               CI->getName(), CI));
554     }
555
556     // strchr can find the nul character.
557     Str += '\0';
558     
559     // Get the character we're looking for
560     char CharValue = CSI->getSExtValue();
561
562     // Compute the offset
563     uint64_t i = 0;
564     while (1) {
565       if (i == Str.size())    // Didn't find the char.  strchr returns null.
566         return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
567       // Did we find our match?
568       if (Str[i] == CharValue)
569         break;
570       ++i;
571     }
572
573     // strchr(s+n,c)  -> gep(s+n+i,c)
574     //    (if c is a constant integer and s is a constant string)
575     Value *Idx = ConstantInt::get(Type::Int64Ty, i);
576     Value *GEP = new GetElementPtrInst(CI->getOperand(1), Idx, 
577                                        CI->getOperand(1)->getName() +
578                                        ".strchr", CI);
579     return ReplaceCallWith(CI, GEP);
580   }
581 } StrChrOptimizer;
582
583 /// This LibCallOptimization will simplify a call to the strcmp library
584 /// function.  It optimizes out cases where one or both arguments are constant
585 /// and the result can be determined statically.
586 /// @brief Simplify the strcmp library function.
587 struct VISIBILITY_HIDDEN StrCmpOptimization : public LibCallOptimization {
588 public:
589   StrCmpOptimization() : LibCallOptimization("strcmp",
590       "Number of 'strcmp' calls simplified") {}
591
592   /// @brief Make sure that the "strcmp" function has the right prototype
593   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
594     const FunctionType *FT = F->getFunctionType();
595     return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 2 &&
596            FT->getParamType(0) == FT->getParamType(1) &&
597            FT->getParamType(0) == PointerType::get(Type::Int8Ty);
598   }
599
600   /// @brief Perform the strcmp optimization
601   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
602     // First, check to see if src and destination are the same. If they are,
603     // then the optimization is to replace the CallInst with a constant 0
604     // because the call is a no-op.
605     Value *Str1P = CI->getOperand(1);
606     Value *Str2P = CI->getOperand(2);
607     if (Str1P == Str2P)      // strcmp(x,x)  -> 0
608       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
609
610     std::string Str1;
611     if (!GetConstantStringInfo(Str1P, Str1))
612       return false;
613     if (Str1.empty()) {
614       // strcmp("", x) -> *x
615       Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
616       V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
617       return ReplaceCallWith(CI, V);
618     }
619
620     std::string Str2;
621     if (!GetConstantStringInfo(Str2P, Str2))
622       return false;
623     if (Str2.empty()) {
624       // strcmp(x,"") -> *x
625       Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
626       V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
627       return ReplaceCallWith(CI, V);
628     }
629
630     // strcmp(x, y)  -> cnst  (if both x and y are constant strings)
631     int R = strcmp(Str1.c_str(), Str2.c_str());
632     return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
633   }
634 } StrCmpOptimizer;
635
636 /// This LibCallOptimization will simplify a call to the strncmp library
637 /// function.  It optimizes out cases where one or both arguments are constant
638 /// and the result can be determined statically.
639 /// @brief Simplify the strncmp library function.
640 struct VISIBILITY_HIDDEN StrNCmpOptimization : public LibCallOptimization {
641 public:
642   StrNCmpOptimization() : LibCallOptimization("strncmp",
643       "Number of 'strncmp' calls simplified") {}
644
645   /// @brief Make sure that the "strncmp" function has the right prototype
646   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
647     const FunctionType *FT = F->getFunctionType();
648     return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 3 &&
649            FT->getParamType(0) == FT->getParamType(1) &&
650            FT->getParamType(0) == PointerType::get(Type::Int8Ty) &&
651            isa<IntegerType>(FT->getParamType(2));
652     return false;
653   }
654
655   /// @brief Perform the strncmp optimization
656   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
657     // First, check to see if src and destination are the same. If they are,
658     // then the optimization is to replace the CallInst with a constant 0
659     // because the call is a no-op.
660     Value *Str1P = CI->getOperand(1);
661     Value *Str2P = CI->getOperand(2);
662     if (Str1P == Str2P)  // strncmp(x,x, n)  -> 0
663       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
664     
665     // Check the length argument, if it is Constant zero then the strings are
666     // considered equal.
667     uint64_t Length;
668     if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
669       Length = LengthArg->getZExtValue();
670     else
671       return false;
672     
673     if (Length == 0) // strncmp(x,y,0)   -> 0
674       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
675     
676     std::string Str1;
677     if (!GetConstantStringInfo(Str1P, Str1))
678       return false;
679     if (Str1.empty()) {
680       // strncmp("", x, n) -> *x
681       Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
682       V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
683       return ReplaceCallWith(CI, V);
684     }
685     
686     std::string Str2;
687     if (!GetConstantStringInfo(Str2P, Str2))
688       return false;
689     if (Str2.empty()) {
690       // strncmp(x, "", n) -> *x
691       Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
692       V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
693       return ReplaceCallWith(CI, V);
694     }
695     
696     // strncmp(x, y, n)  -> cnst  (if both x and y are constant strings)
697     int R = strncmp(Str1.c_str(), Str2.c_str(), Length);
698     return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
699   }
700 } StrNCmpOptimizer;
701
702 /// This LibCallOptimization will simplify a call to the strcpy library
703 /// function.  Two optimizations are possible:
704 /// (1) If src and dest are the same and not volatile, just return dest
705 /// (2) If the src is a constant then we can convert to llvm.memmove
706 /// @brief Simplify the strcpy library function.
707 struct VISIBILITY_HIDDEN StrCpyOptimization : public LibCallOptimization {
708 public:
709   StrCpyOptimization() : LibCallOptimization("strcpy",
710       "Number of 'strcpy' calls simplified") {}
711
712   /// @brief Make sure that the "strcpy" function has the right prototype
713   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
714     const FunctionType *FT = F->getFunctionType();
715     return FT->getNumParams() == 2 &&
716            FT->getParamType(0) == FT->getParamType(1) &&
717            FT->getReturnType() == FT->getParamType(0) &&
718            FT->getParamType(0) == PointerType::get(Type::Int8Ty);
719   }
720
721   /// @brief Perform the strcpy optimization
722   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
723     // First, check to see if src and destination are the same. If they are,
724     // then the optimization is to replace the CallInst with the destination
725     // because the call is a no-op. Note that this corresponds to the
726     // degenerate strcpy(X,X) case which should have "undefined" results
727     // according to the C specification. However, it occurs sometimes and
728     // we optimize it as a no-op.
729     Value *Dst = CI->getOperand(1);
730     Value *Src = CI->getOperand(2);
731     if (Dst == Src) {
732       // strcpy(x, x) -> x
733       return ReplaceCallWith(CI, Dst);
734     }
735     
736     // Get the length of the constant string referenced by the Src operand.
737     std::string SrcStr;
738     if (!GetConstantStringInfo(Src, SrcStr))
739       return false;
740     
741     // If the constant string's length is zero we can optimize this by just
742     // doing a store of 0 at the first byte of the destination
743     if (SrcStr.size() == 0) {
744       new StoreInst(ConstantInt::get(Type::Int8Ty, 0), Dst, CI);
745       return ReplaceCallWith(CI, Dst);
746     }
747
748     // We have enough information to now generate the memcpy call to
749     // do the concatenation for us.
750     Value *MemcpyOps[] = {
751       Dst, Src, // Pass length including nul byte.
752       ConstantInt::get(SLC.getIntPtrType(), SrcStr.size()+1),
753       ConstantInt::get(Type::Int32Ty, 1) // alignment
754     };
755     new CallInst(SLC.get_memcpy(), MemcpyOps, 4, "", CI);
756
757     return ReplaceCallWith(CI, Dst);
758   }
759 } StrCpyOptimizer;
760
761 /// This LibCallOptimization will simplify a call to the strlen library
762 /// function by replacing it with a constant value if the string provided to
763 /// it is a constant array.
764 /// @brief Simplify the strlen library function.
765 struct VISIBILITY_HIDDEN StrLenOptimization : public LibCallOptimization {
766   StrLenOptimization() : LibCallOptimization("strlen",
767       "Number of 'strlen' calls simplified") {}
768
769   /// @brief Make sure that the "strlen" function has the right prototype
770   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
771     const FunctionType *FT = F->getFunctionType();
772     return FT->getNumParams() == 1 &&
773            FT->getParamType(0) == PointerType::get(Type::Int8Ty) &&
774            isa<IntegerType>(FT->getReturnType());
775   }
776
777   /// @brief Perform the strlen optimization
778   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
779     // Make sure we're dealing with an sbyte* here.
780     Value *Src = CI->getOperand(1);
781
782     // Does the call to strlen have exactly one use?
783     if (CI->hasOneUse()) {
784       // Is that single use a icmp operator?
785       if (ICmpInst *Cmp = dyn_cast<ICmpInst>(CI->use_back()))
786         // Is it compared against a constant integer?
787         if (ConstantInt *Cst = dyn_cast<ConstantInt>(Cmp->getOperand(1))) {
788           // If its compared against length 0 with == or !=
789           if (Cst->getZExtValue() == 0 && Cmp->isEquality()) {
790             // strlen(x) != 0 -> *x != 0
791             // strlen(x) == 0 -> *x == 0
792             Value *V = new LoadInst(Src, Src->getName()+".first", CI);
793             V = new ICmpInst(Cmp->getPredicate(), V, 
794                              ConstantInt::get(Type::Int8Ty, 0),
795                              Cmp->getName()+".strlen", CI);
796             Cmp->replaceAllUsesWith(V);
797             Cmp->eraseFromParent();
798             return ReplaceCallWith(CI, 0);  // no uses.
799           }
800         }
801     }
802
803     // Get the length of the constant string operand
804     std::string Str;
805     if (!GetConstantStringInfo(Src, Str))
806       return false;
807       
808     // strlen("xyz") -> 3 (for example)
809     return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), Str.size()));
810   }
811 } StrLenOptimizer;
812
813 /// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
814 /// is equal or not-equal to zero. 
815 static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
816   for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
817        UI != E; ++UI) {
818     if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
819       if (IC->isEquality())
820         if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
821           if (C->isNullValue())
822             continue;
823     // Unknown instruction.
824     return false;
825   }
826   return true;
827 }
828
829 /// This memcmpOptimization will simplify a call to the memcmp library
830 /// function.
831 struct VISIBILITY_HIDDEN memcmpOptimization : public LibCallOptimization {
832   /// @brief Default Constructor
833   memcmpOptimization()
834     : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
835   
836   /// @brief Make sure that the "memcmp" function has the right prototype
837   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
838     Function::const_arg_iterator AI = F->arg_begin();
839     if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
840     if (!isa<PointerType>((++AI)->getType())) return false;
841     if (!(++AI)->getType()->isInteger()) return false;
842     if (!F->getReturnType()->isInteger()) return false;
843     return true;
844   }
845   
846   /// Because of alignment and instruction information that we don't have, we
847   /// leave the bulk of this to the code generators.
848   ///
849   /// Note that we could do much more if we could force alignment on otherwise
850   /// small aligned allocas, or if we could indicate that loads have a small
851   /// alignment.
852   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
853     Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
854
855     // If the two operands are the same, return zero.
856     if (LHS == RHS) {
857       // memcmp(s,s,x) -> 0
858       return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
859     }
860     
861     // Make sure we have a constant length.
862     ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
863     if (!LenC) return false;
864     uint64_t Len = LenC->getZExtValue();
865       
866     // If the length is zero, this returns 0.
867     switch (Len) {
868     case 0:
869       // memcmp(s1,s2,0) -> 0
870       return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
871     case 1: {
872       // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
873       const Type *UCharPtr = PointerType::get(Type::Int8Ty);
874       CastInst *Op1Cast = CastInst::create(
875           Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
876       CastInst *Op2Cast = CastInst::create(
877           Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
878       Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
879       Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
880       Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
881       if (RV->getType() != CI->getType())
882         RV = CastInst::createIntegerCast(RV, CI->getType(), false, 
883                                          RV->getName(), CI);
884       return ReplaceCallWith(CI, RV);
885     }
886     case 2:
887       if (IsOnlyUsedInEqualsZeroComparison(CI)) {
888         // TODO: IF both are aligned, use a short load/compare.
889       
890         // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
891         const Type *UCharPtr = PointerType::get(Type::Int8Ty);
892         CastInst *Op1Cast = CastInst::create(
893             Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
894         CastInst *Op2Cast = CastInst::create(
895             Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
896         Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
897         Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
898         Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
899                                               CI->getName()+".d1", CI);
900         Constant *One = ConstantInt::get(Type::Int32Ty, 1);
901         Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
902         Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
903         Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
904         Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
905         Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
906                                               CI->getName()+".d1", CI);
907         Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
908         if (Or->getType() != CI->getType())
909           Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/, 
910                                            Or->getName(), CI);
911         return ReplaceCallWith(CI, Or);
912       }
913       break;
914     default:
915       break;
916     }
917     
918     return false;
919   }
920 } memcmpOptimizer;
921
922
923 /// This LibCallOptimization will simplify a call to the memcpy library
924 /// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
925 /// bytes depending on the length of the string and the alignment. Additional
926 /// optimizations are possible in code generation (sequence of immediate store)
927 /// @brief Simplify the memcpy library function.
928 struct VISIBILITY_HIDDEN LLVMMemCpyMoveOptzn : public LibCallOptimization {
929   LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
930   : LibCallOptimization(fname, desc) {}
931
932   /// @brief Make sure that the "memcpy" function has the right prototype
933   virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
934     // Just make sure this has 4 arguments per LLVM spec.
935     return (f->arg_size() == 4);
936   }
937
938   /// Because of alignment and instruction information that we don't have, we
939   /// leave the bulk of this to the code generators. The optimization here just
940   /// deals with a few degenerate cases where the length of the string and the
941   /// alignment match the sizes of our intrinsic types so we can do a load and
942   /// store instead of the memcpy call.
943   /// @brief Perform the memcpy optimization.
944   virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
945     // Make sure we have constant int values to work with
946     ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
947     if (!LEN)
948       return false;
949     ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
950     if (!ALIGN)
951       return false;
952
953     // If the length is larger than the alignment, we can't optimize
954     uint64_t len = LEN->getZExtValue();
955     uint64_t alignment = ALIGN->getZExtValue();
956     if (alignment == 0)
957       alignment = 1; // Alignment 0 is identity for alignment 1
958     if (len > alignment)
959       return false;
960
961     // Get the type we will cast to, based on size of the string
962     Value* dest = ci->getOperand(1);
963     Value* src = ci->getOperand(2);
964     const Type* castType = 0;
965     switch (len) {
966       case 0:
967         // memcpy(d,s,0,a) -> d
968         return ReplaceCallWith(ci, 0);
969       case 1: castType = Type::Int8Ty; break;
970       case 2: castType = Type::Int16Ty; break;
971       case 4: castType = Type::Int32Ty; break;
972       case 8: castType = Type::Int64Ty; break;
973       default:
974         return false;
975     }
976
977     // Cast source and dest to the right sized primitive and then load/store
978     CastInst* SrcCast = CastInst::create(Instruction::BitCast,
979         src, PointerType::get(castType), src->getName()+".cast", ci);
980     CastInst* DestCast = CastInst::create(Instruction::BitCast,
981         dest, PointerType::get(castType),dest->getName()+".cast", ci);
982     LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
983     new StoreInst(LI, DestCast, ci);
984     return ReplaceCallWith(ci, 0);
985   }
986 };
987
988 /// This LibCallOptimization will simplify a call to the memcpy/memmove library
989 /// functions.
990 LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
991                                     "Number of 'llvm.memcpy' calls simplified");
992 LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
993                                    "Number of 'llvm.memcpy' calls simplified");
994 LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
995                                    "Number of 'llvm.memmove' calls simplified");
996 LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
997                                    "Number of 'llvm.memmove' calls simplified");
998
999 /// This LibCallOptimization will simplify a call to the memset library
1000 /// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1001 /// bytes depending on the length argument.
1002 struct VISIBILITY_HIDDEN LLVMMemSetOptimization : public LibCallOptimization {
1003   /// @brief Default Constructor
1004   LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
1005       "Number of 'llvm.memset' calls simplified") {}
1006
1007   /// @brief Make sure that the "memset" function has the right prototype
1008   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
1009     // Just make sure this has 3 arguments per LLVM spec.
1010     return F->arg_size() == 4;
1011   }
1012
1013   /// Because of alignment and instruction information that we don't have, we
1014   /// leave the bulk of this to the code generators. The optimization here just
1015   /// deals with a few degenerate cases where the length parameter is constant
1016   /// and the alignment matches the sizes of our intrinsic types so we can do
1017   /// store instead of the memcpy call. Other calls are transformed into the
1018   /// llvm.memset intrinsic.
1019   /// @brief Perform the memset optimization.
1020   virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
1021     // Make sure we have constant int values to work with
1022     ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1023     if (!LEN)
1024       return false;
1025     ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1026     if (!ALIGN)
1027       return false;
1028
1029     // Extract the length and alignment
1030     uint64_t len = LEN->getZExtValue();
1031     uint64_t alignment = ALIGN->getZExtValue();
1032
1033     // Alignment 0 is identity for alignment 1
1034     if (alignment == 0)
1035       alignment = 1;
1036
1037     // If the length is zero, this is a no-op
1038     if (len == 0) {
1039       // memset(d,c,0,a) -> noop
1040       return ReplaceCallWith(ci, 0);
1041     }
1042
1043     // If the length is larger than the alignment, we can't optimize
1044     if (len > alignment)
1045       return false;
1046
1047     // Make sure we have a constant ubyte to work with so we can extract
1048     // the value to be filled.
1049     ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
1050     if (!FILL)
1051       return false;
1052     if (FILL->getType() != Type::Int8Ty)
1053       return false;
1054
1055     // memset(s,c,n) -> store s, c (for n=1,2,4,8)
1056
1057     // Extract the fill character
1058     uint64_t fill_char = FILL->getZExtValue();
1059     uint64_t fill_value = fill_char;
1060
1061     // Get the type we will cast to, based on size of memory area to fill, and
1062     // and the value we will store there.
1063     Value* dest = ci->getOperand(1);
1064     const Type* castType = 0;
1065     switch (len) {
1066       case 1:
1067         castType = Type::Int8Ty;
1068         break;
1069       case 2:
1070         castType = Type::Int16Ty;
1071         fill_value |= fill_char << 8;
1072         break;
1073       case 4:
1074         castType = Type::Int32Ty;
1075         fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1076         break;
1077       case 8:
1078         castType = Type::Int64Ty;
1079         fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1080         fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1081         fill_value |= fill_char << 56;
1082         break;
1083       default:
1084         return false;
1085     }
1086
1087     // Cast dest to the right sized primitive and then load/store
1088     CastInst* DestCast = new BitCastInst(dest, PointerType::get(castType), 
1089                                          dest->getName()+".cast", ci);
1090     new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
1091     return ReplaceCallWith(ci, 0);
1092   }
1093 };
1094
1095 LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1096 LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1097
1098
1099 /// This LibCallOptimization will simplify calls to the "pow" library
1100 /// function. It looks for cases where the result of pow is well known and
1101 /// substitutes the appropriate value.
1102 /// @brief Simplify the pow library function.
1103 struct VISIBILITY_HIDDEN PowOptimization : public LibCallOptimization {
1104 public:
1105   /// @brief Default Constructor
1106   PowOptimization() : LibCallOptimization("pow",
1107       "Number of 'pow' calls simplified") {}
1108
1109   /// @brief Make sure that the "pow" function has the right prototype
1110   virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1111     // Just make sure this has 2 arguments
1112     return (f->arg_size() == 2);
1113   }
1114
1115   /// @brief Perform the pow optimization.
1116   virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1117     const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1118     Value* base = ci->getOperand(1);
1119     Value* expn = ci->getOperand(2);
1120     if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1121       double Op1V = Op1->getValue();
1122       if (Op1V == 1.0) // pow(1.0,x) -> 1.0
1123         return ReplaceCallWith(ci, ConstantFP::get(Ty, 1.0));
1124     }  else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
1125       double Op2V = Op2->getValue();
1126       if (Op2V == 0.0) {
1127         // pow(x,0.0) -> 1.0
1128         return ReplaceCallWith(ci, ConstantFP::get(Ty,1.0));
1129       } else if (Op2V == 0.5) {
1130         // pow(x,0.5) -> sqrt(x)
1131         CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1132             ci->getName()+".pow",ci);
1133         return ReplaceCallWith(ci, sqrt_inst);
1134       } else if (Op2V == 1.0) {
1135         // pow(x,1.0) -> x
1136         return ReplaceCallWith(ci, base);
1137       } else if (Op2V == -1.0) {
1138         // pow(x,-1.0)    -> 1.0/x
1139         Value *div_inst = 
1140           BinaryOperator::createFDiv(ConstantFP::get(Ty, 1.0), base,
1141                                      ci->getName()+".pow", ci);
1142         return ReplaceCallWith(ci, div_inst);
1143       }
1144     }
1145     return false; // opt failed
1146   }
1147 } PowOptimizer;
1148
1149 /// This LibCallOptimization will simplify calls to the "printf" library
1150 /// function. It looks for cases where the result of printf is not used and the
1151 /// operation can be reduced to something simpler.
1152 /// @brief Simplify the printf library function.
1153 struct VISIBILITY_HIDDEN PrintfOptimization : public LibCallOptimization {
1154 public:
1155   /// @brief Default Constructor
1156   PrintfOptimization() : LibCallOptimization("printf",
1157       "Number of 'printf' calls simplified") {}
1158
1159   /// @brief Make sure that the "printf" function has the right prototype
1160   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1161     // Just make sure this has at least 1 argument and returns an integer or
1162     // void type.
1163     const FunctionType *FT = F->getFunctionType();
1164     return FT->getNumParams() >= 1 &&
1165           (isa<IntegerType>(FT->getReturnType()) ||
1166            FT->getReturnType() == Type::VoidTy);
1167   }
1168
1169   /// @brief Perform the printf optimization.
1170   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1171     // All the optimizations depend on the length of the first argument and the
1172     // fact that it is a constant string array. Check that now
1173     std::string FormatStr;
1174     if (!GetConstantStringInfo(CI->getOperand(1), FormatStr))
1175       return false;
1176     
1177     // If this is a simple constant string with no format specifiers that ends
1178     // with a \n, turn it into a puts call.
1179     if (FormatStr.empty()) {
1180       // Tolerate printf's declared void.
1181       if (CI->use_empty()) return ReplaceCallWith(CI, 0);
1182       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
1183     }
1184     
1185     if (FormatStr.size() == 1) {
1186       // Turn this into a putchar call, even if it is a %.
1187       Value *V = ConstantInt::get(Type::Int32Ty, FormatStr[0]);
1188       new CallInst(SLC.get_putchar(), V, "", CI);
1189       if (CI->use_empty()) return ReplaceCallWith(CI, 0);
1190       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1191     }
1192
1193     // Check to see if the format str is something like "foo\n", in which case
1194     // we convert it to a puts call.  We don't allow it to contain any format
1195     // characters.
1196     if (FormatStr[FormatStr.size()-1] == '\n' &&
1197         FormatStr.find('%') == std::string::npos) {
1198       // Create a string literal with no \n on it.  We expect the constant merge
1199       // pass to be run after this pass, to merge duplicate strings.
1200       FormatStr.erase(FormatStr.end()-1);
1201       Constant *Init = ConstantArray::get(FormatStr, true);
1202       Constant *GV = new GlobalVariable(Init->getType(), true,
1203                                         GlobalVariable::InternalLinkage,
1204                                         Init, "str",
1205                                      CI->getParent()->getParent()->getParent());
1206       // Cast GV to be a pointer to char.
1207       GV = ConstantExpr::getBitCast(GV, PointerType::get(Type::Int8Ty));
1208       new CallInst(SLC.get_puts(), GV, "", CI);
1209
1210       if (CI->use_empty()) return ReplaceCallWith(CI, 0);
1211       return ReplaceCallWith(CI,
1212                              ConstantInt::get(CI->getType(), FormatStr.size()));
1213     }
1214     
1215     
1216     // Only support %c or "%s\n" for now.
1217     if (FormatStr.size() < 2 || FormatStr[0] != '%')
1218       return false;
1219
1220     // Get the second character and switch on its value
1221     switch (FormatStr[1]) {
1222     default:  return false;
1223     case 's':
1224       if (FormatStr != "%s\n" || CI->getNumOperands() < 3 ||
1225           // TODO: could insert strlen call to compute string length.
1226           !CI->use_empty())
1227         return false;
1228
1229       // printf("%s\n",str) -> puts(str)
1230       new CallInst(SLC.get_puts(), CastToCStr(CI->getOperand(2), CI),
1231                    CI->getName(), CI);
1232       return ReplaceCallWith(CI, 0);
1233     case 'c': {
1234       // printf("%c",c) -> putchar(c)
1235       if (FormatStr.size() != 2 || CI->getNumOperands() < 3)
1236         return false;
1237       
1238       Value *V = CI->getOperand(2);
1239       if (!isa<IntegerType>(V->getType()) ||
1240           cast<IntegerType>(V->getType())->getBitWidth() > 32)
1241         return false;
1242
1243       V = CastInst::createZExtOrBitCast(V, Type::Int32Ty, CI->getName()+".int",
1244                                         CI);
1245       new CallInst(SLC.get_putchar(), V, "", CI);
1246       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1247     }
1248     }
1249   }
1250 } PrintfOptimizer;
1251
1252 /// This LibCallOptimization will simplify calls to the "fprintf" library
1253 /// function. It looks for cases where the result of fprintf is not used and the
1254 /// operation can be reduced to something simpler.
1255 /// @brief Simplify the fprintf library function.
1256 struct VISIBILITY_HIDDEN FPrintFOptimization : public LibCallOptimization {
1257 public:
1258   /// @brief Default Constructor
1259   FPrintFOptimization() : LibCallOptimization("fprintf",
1260       "Number of 'fprintf' calls simplified") {}
1261
1262   /// @brief Make sure that the "fprintf" function has the right prototype
1263   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1264     const FunctionType *FT = F->getFunctionType();
1265     return FT->getNumParams() == 2 &&  // two fixed arguments.
1266            FT->getParamType(1) == PointerType::get(Type::Int8Ty) &&
1267            isa<PointerType>(FT->getParamType(0)) &&
1268            isa<IntegerType>(FT->getReturnType());
1269   }
1270
1271   /// @brief Perform the fprintf optimization.
1272   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1273     // If the call has more than 3 operands, we can't optimize it
1274     if (CI->getNumOperands() != 3 && CI->getNumOperands() != 4)
1275       return false;
1276
1277     // All the optimizations depend on the format string.
1278     std::string FormatStr;
1279     if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1280       return false;
1281
1282     // If this is just a format string, turn it into fwrite.
1283     if (CI->getNumOperands() == 3) {
1284       for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1285         if (FormatStr[i] == '%')
1286           return false; // we found a format specifier
1287
1288       // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
1289       const Type *FILEty = CI->getOperand(1)->getType();
1290
1291       Value *FWriteArgs[] = {
1292         CI->getOperand(2),
1293         ConstantInt::get(SLC.getIntPtrType(), FormatStr.size()),
1294         ConstantInt::get(SLC.getIntPtrType(), 1),
1295         CI->getOperand(1)
1296       };
1297       new CallInst(SLC.get_fwrite(FILEty), FWriteArgs, 4, CI->getName(), CI);
1298       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 
1299                                                   FormatStr.size()));
1300     }
1301     
1302     // The remaining optimizations require the format string to be length 2:
1303     // "%s" or "%c".
1304     if (FormatStr.size() != 2 || FormatStr[0] != '%')
1305       return false;
1306
1307     // Get the second character and switch on its value
1308     switch (FormatStr[1]) {
1309     case 'c': {
1310       // fprintf(file,"%c",c) -> fputc(c,file)
1311       const Type *FILETy = CI->getOperand(1)->getType();
1312       Value *C = CastInst::createZExtOrBitCast(CI->getOperand(3), Type::Int32Ty,
1313                                                CI->getName()+".int", CI);
1314       new CallInst(SLC.get_fputc(FILETy), C, CI->getOperand(1), "", CI);
1315       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1316     }
1317     case 's': {
1318       const Type *FILETy = CI->getOperand(1)->getType();
1319       
1320       // If the result of the fprintf call is used, we can't do this.
1321       // TODO: we should insert a strlen call.
1322       if (!CI->use_empty())
1323         return false;
1324       
1325       // fprintf(file,"%s",str) -> fputs(str,file)
1326       new CallInst(SLC.get_fputs(FILETy), CastToCStr(CI->getOperand(3), CI),
1327                    CI->getOperand(1), CI->getName(), CI);
1328       return ReplaceCallWith(CI, 0);
1329     }
1330     default:
1331       return false;
1332     }
1333   }
1334 } FPrintFOptimizer;
1335
1336 /// This LibCallOptimization will simplify calls to the "sprintf" library
1337 /// function. It looks for cases where the result of sprintf is not used and the
1338 /// operation can be reduced to something simpler.
1339 /// @brief Simplify the sprintf library function.
1340 struct VISIBILITY_HIDDEN SPrintFOptimization : public LibCallOptimization {
1341 public:
1342   /// @brief Default Constructor
1343   SPrintFOptimization() : LibCallOptimization("sprintf",
1344       "Number of 'sprintf' calls simplified") {}
1345
1346   /// @brief Make sure that the "sprintf" function has the right prototype
1347   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1348     const FunctionType *FT = F->getFunctionType();
1349     return FT->getNumParams() == 2 &&  // two fixed arguments.
1350            FT->getParamType(1) == PointerType::get(Type::Int8Ty) &&
1351            FT->getParamType(0) == FT->getParamType(1) &&
1352            isa<IntegerType>(FT->getReturnType());
1353   }
1354
1355   /// @brief Perform the sprintf optimization.
1356   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1357     // If the call has more than 3 operands, we can't optimize it
1358     if (CI->getNumOperands() != 3 && CI->getNumOperands() != 4)
1359       return false;
1360
1361     std::string FormatStr;
1362     if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
1363       return false;
1364     
1365     if (CI->getNumOperands() == 3) {
1366       // Make sure there's no % in the constant array
1367       for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1368         if (FormatStr[i] == '%')
1369           return false; // we found a format specifier
1370       
1371       // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
1372       Value *MemCpyArgs[] = {
1373         CI->getOperand(1), CI->getOperand(2),
1374         ConstantInt::get(SLC.getIntPtrType(), 
1375                          FormatStr.size()+1), // Copy the nul byte.
1376         ConstantInt::get(Type::Int32Ty, 1)
1377       };
1378       new CallInst(SLC.get_memcpy(), MemCpyArgs, 4, "", CI);
1379       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 
1380                                                   FormatStr.size()));
1381     }
1382
1383     // The remaining optimizations require the format string to be "%s" or "%c".
1384     if (FormatStr.size() != 2 || FormatStr[0] != '%')
1385       return false;
1386
1387     // Get the second character and switch on its value
1388     switch (FormatStr[1]) {
1389     case 'c': {
1390       // sprintf(dest,"%c",chr) -> store chr, dest
1391       Value *V = CastInst::createTruncOrBitCast(CI->getOperand(3),
1392                                                 Type::Int8Ty, "char", CI);
1393       new StoreInst(V, CI->getOperand(1), CI);
1394       Value *Ptr = new GetElementPtrInst(CI->getOperand(1),
1395                                          ConstantInt::get(Type::Int32Ty, 1),
1396                                          CI->getOperand(1)->getName()+".end",
1397                                          CI);
1398       new StoreInst(ConstantInt::get(Type::Int8Ty,0), Ptr, CI);
1399       return ReplaceCallWith(CI, ConstantInt::get(Type::Int32Ty, 1));
1400     }
1401     case 's': {
1402       // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1403       Value *Len = new CallInst(SLC.get_strlen(),
1404                                 CastToCStr(CI->getOperand(3), CI),
1405                                 CI->getOperand(3)->getName()+".len", CI);
1406       Value *UnincLen = Len;
1407       Len = BinaryOperator::createAdd(Len, ConstantInt::get(Len->getType(), 1),
1408                                       Len->getName()+"1", CI);
1409       Value *MemcpyArgs[4] = {
1410         CI->getOperand(1),
1411         CastToCStr(CI->getOperand(3), CI),
1412         Len,
1413         ConstantInt::get(Type::Int32Ty, 1)
1414       };
1415       new CallInst(SLC.get_memcpy(), MemcpyArgs, 4, "", CI);
1416       
1417       // The strlen result is the unincremented number of bytes in the string.
1418       if (!CI->use_empty()) {
1419         if (UnincLen->getType() != CI->getType())
1420           UnincLen = CastInst::createIntegerCast(UnincLen, CI->getType(), false, 
1421                                                  Len->getName(), CI);
1422         CI->replaceAllUsesWith(UnincLen);
1423       }
1424       return ReplaceCallWith(CI, 0);
1425     }
1426     }
1427     return false;
1428   }
1429 } SPrintFOptimizer;
1430
1431 /// This LibCallOptimization will simplify calls to the "fputs" library
1432 /// function. It looks for cases where the result of fputs is not used and the
1433 /// operation can be reduced to something simpler.
1434 /// @brief Simplify the fputs library function.
1435 struct VISIBILITY_HIDDEN FPutsOptimization : public LibCallOptimization {
1436 public:
1437   /// @brief Default Constructor
1438   FPutsOptimization() : LibCallOptimization("fputs",
1439       "Number of 'fputs' calls simplified") {}
1440
1441   /// @brief Make sure that the "fputs" function has the right prototype
1442   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1443     // Just make sure this has 2 arguments
1444     return F->arg_size() == 2;
1445   }
1446
1447   /// @brief Perform the fputs optimization.
1448   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1449     // If the result is used, none of these optimizations work.
1450     if (!CI->use_empty())
1451       return false;
1452
1453     // All the optimizations depend on the length of the first argument and the
1454     // fact that it is a constant string array. Check that now
1455     std::string Str;
1456     if (!GetConstantStringInfo(CI->getOperand(1), Str))
1457       return false;
1458
1459     const Type *FILETy = CI->getOperand(2)->getType();
1460     // fputs(s,F)  -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
1461     Value *FWriteParms[4] = {
1462       CI->getOperand(1),
1463       ConstantInt::get(SLC.getIntPtrType(), Str.size()),
1464       ConstantInt::get(SLC.getIntPtrType(), 1),
1465       CI->getOperand(2)
1466     };
1467     new CallInst(SLC.get_fwrite(FILETy), FWriteParms, 4, "", CI);
1468     return ReplaceCallWith(CI, 0);  // Known to have no uses (see above).
1469   }
1470 } FPutsOptimizer;
1471
1472 /// This LibCallOptimization will simplify calls to the "fwrite" function.
1473 struct VISIBILITY_HIDDEN FWriteOptimization : public LibCallOptimization {
1474 public:
1475   /// @brief Default Constructor
1476   FWriteOptimization() : LibCallOptimization("fwrite",
1477                                        "Number of 'fwrite' calls simplified") {}
1478   
1479   /// @brief Make sure that the "fputs" function has the right prototype
1480   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1481     const FunctionType *FT = F->getFunctionType();
1482     return FT->getNumParams() == 4 && 
1483            FT->getParamType(0) == PointerType::get(Type::Int8Ty) &&
1484            FT->getParamType(1) == FT->getParamType(2) &&
1485            isa<IntegerType>(FT->getParamType(1)) &&
1486            isa<PointerType>(FT->getParamType(3)) &&
1487            isa<IntegerType>(FT->getReturnType());
1488   }
1489   
1490   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1491     // Get the element size and count.
1492     uint64_t EltSize, EltCount;
1493     if (ConstantInt *C = dyn_cast<ConstantInt>(CI->getOperand(2)))
1494       EltSize = C->getZExtValue();
1495     else
1496       return false;
1497     if (ConstantInt *C = dyn_cast<ConstantInt>(CI->getOperand(3)))
1498       EltCount = C->getZExtValue();
1499     else
1500       return false;
1501     
1502     // If this is writing zero records, remove the call (it's a noop).
1503     if (EltSize * EltCount == 0)
1504       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
1505     
1506     // If this is writing one byte, turn it into fputc.
1507     if (EltSize == 1 && EltCount == 1) {
1508       // fwrite(s,1,1,F) -> fputc(s[0],F)
1509       Value *Ptr = CI->getOperand(1);
1510       Value *Val = new LoadInst(Ptr, Ptr->getName()+".byte", CI);
1511       Val = new ZExtInst(Val, Type::Int32Ty, Val->getName()+".int", CI);
1512       const Type *FILETy = CI->getOperand(4)->getType();
1513       new CallInst(SLC.get_fputc(FILETy), Val, CI->getOperand(4), "", CI);
1514       return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1515     }
1516     return false;
1517   }
1518 } FWriteOptimizer;
1519
1520 /// This LibCallOptimization will simplify calls to the "isdigit" library
1521 /// function. It simply does range checks the parameter explicitly.
1522 /// @brief Simplify the isdigit library function.
1523 struct VISIBILITY_HIDDEN isdigitOptimization : public LibCallOptimization {
1524 public:
1525   isdigitOptimization() : LibCallOptimization("isdigit",
1526       "Number of 'isdigit' calls simplified") {}
1527
1528   /// @brief Make sure that the "isdigit" function has the right prototype
1529   virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1530     // Just make sure this has 1 argument
1531     return (f->arg_size() == 1);
1532   }
1533
1534   /// @brief Perform the toascii optimization.
1535   virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1536     if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
1537       // isdigit(c)   -> 0 or 1, if 'c' is constant
1538       uint64_t val = CI->getZExtValue();
1539       if (val >= '0' && val <= '9')
1540         return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 1));
1541       else
1542         return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 0));
1543     }
1544
1545     // isdigit(c)   -> (unsigned)c - '0' <= 9
1546     CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
1547         Type::Int32Ty, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
1548     BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
1549         ConstantInt::get(Type::Int32Ty,0x30),
1550         ci->getOperand(1)->getName()+".sub",ci);
1551     ICmpInst* setcond_inst = new ICmpInst(ICmpInst::ICMP_ULE,sub_inst,
1552         ConstantInt::get(Type::Int32Ty,9),
1553         ci->getOperand(1)->getName()+".cmp",ci);
1554     CastInst* c2 = new ZExtInst(setcond_inst, Type::Int32Ty, 
1555         ci->getOperand(1)->getName()+".isdigit", ci);
1556     return ReplaceCallWith(ci, c2);
1557   }
1558 } isdigitOptimizer;
1559
1560 struct VISIBILITY_HIDDEN isasciiOptimization : public LibCallOptimization {
1561 public:
1562   isasciiOptimization()
1563     : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1564   
1565   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1566     return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() && 
1567            F->getReturnType()->isInteger();
1568   }
1569   
1570   /// @brief Perform the isascii optimization.
1571   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1572     // isascii(c)   -> (unsigned)c < 128
1573     Value *V = CI->getOperand(1);
1574     Value *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, V, 
1575                               ConstantInt::get(V->getType(), 128), 
1576                               V->getName()+".isascii", CI);
1577     if (Cmp->getType() != CI->getType())
1578       Cmp = new ZExtInst(Cmp, CI->getType(), Cmp->getName(), CI);
1579     return ReplaceCallWith(CI, Cmp);
1580   }
1581 } isasciiOptimizer;
1582
1583
1584 /// This LibCallOptimization will simplify calls to the "toascii" library
1585 /// function. It simply does the corresponding and operation to restrict the
1586 /// range of values to the ASCII character set (0-127).
1587 /// @brief Simplify the toascii library function.
1588 struct VISIBILITY_HIDDEN ToAsciiOptimization : public LibCallOptimization {
1589 public:
1590   /// @brief Default Constructor
1591   ToAsciiOptimization() : LibCallOptimization("toascii",
1592       "Number of 'toascii' calls simplified") {}
1593
1594   /// @brief Make sure that the "fputs" function has the right prototype
1595   virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1596     // Just make sure this has 2 arguments
1597     return (f->arg_size() == 1);
1598   }
1599
1600   /// @brief Perform the toascii optimization.
1601   virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1602     // toascii(c)   -> (c & 0x7f)
1603     Value *chr = ci->getOperand(1);
1604     Value *and_inst = BinaryOperator::createAnd(chr,
1605         ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1606     return ReplaceCallWith(ci, and_inst);
1607   }
1608 } ToAsciiOptimizer;
1609
1610 /// This LibCallOptimization will simplify calls to the "ffs" library
1611 /// calls which find the first set bit in an int, long, or long long. The
1612 /// optimization is to compute the result at compile time if the argument is
1613 /// a constant.
1614 /// @brief Simplify the ffs library function.
1615 struct VISIBILITY_HIDDEN FFSOptimization : public LibCallOptimization {
1616 protected:
1617   /// @brief Subclass Constructor
1618   FFSOptimization(const char* funcName, const char* description)
1619     : LibCallOptimization(funcName, description) {}
1620
1621 public:
1622   /// @brief Default Constructor
1623   FFSOptimization() : LibCallOptimization("ffs",
1624       "Number of 'ffs' calls simplified") {}
1625
1626   /// @brief Make sure that the "ffs" function has the right prototype
1627   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1628     // Just make sure this has 2 arguments
1629     return F->arg_size() == 1 && F->getReturnType() == Type::Int32Ty;
1630   }
1631
1632   /// @brief Perform the ffs optimization.
1633   virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1634     if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
1635       // ffs(cnst)  -> bit#
1636       // ffsl(cnst) -> bit#
1637       // ffsll(cnst) -> bit#
1638       uint64_t val = CI->getZExtValue();
1639       int result = 0;
1640       if (val) {
1641         ++result;
1642         while ((val & 1) == 0) {
1643           ++result;
1644           val >>= 1;
1645         }
1646       }
1647       return ReplaceCallWith(TheCall, ConstantInt::get(Type::Int32Ty, result));
1648     }
1649
1650     // ffs(x)   -> x == 0 ? 0 : llvm.cttz(x)+1
1651     // ffsl(x)  -> x == 0 ? 0 : llvm.cttz(x)+1
1652     // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1653     const Type *ArgType = TheCall->getOperand(1)->getType();
1654     const char *CTTZName;
1655     assert(ArgType->getTypeID() == Type::IntegerTyID &&
1656            "llvm.cttz argument is not an integer?");
1657     unsigned BitWidth = cast<IntegerType>(ArgType)->getBitWidth();
1658     if (BitWidth == 8)
1659       CTTZName = "llvm.cttz.i8";
1660     else if (BitWidth == 16)
1661       CTTZName = "llvm.cttz.i16"; 
1662     else if (BitWidth == 32)
1663       CTTZName = "llvm.cttz.i32";
1664     else {
1665       assert(BitWidth == 64 && "Unknown bitwidth");
1666       CTTZName = "llvm.cttz.i64";
1667     }
1668     
1669     Constant *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
1670                                                        ArgType, NULL);
1671     Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType, 
1672                                            false/*ZExt*/, "tmp", TheCall);
1673     Value *V2 = new CallInst(F, V, "tmp", TheCall);
1674     V2 = CastInst::createIntegerCast(V2, Type::Int32Ty, false/*ZExt*/, 
1675                                      "tmp", TheCall);
1676     V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::Int32Ty, 1),
1677                                    "tmp", TheCall);
1678     Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, V, 
1679                                Constant::getNullValue(V->getType()), "tmp", 
1680                                TheCall);
1681     V2 = new SelectInst(Cond, ConstantInt::get(Type::Int32Ty, 0), V2,
1682                         TheCall->getName(), TheCall);
1683     return ReplaceCallWith(TheCall, V2);
1684   }
1685 } FFSOptimizer;
1686
1687 /// This LibCallOptimization will simplify calls to the "ffsl" library
1688 /// calls. It simply uses FFSOptimization for which the transformation is
1689 /// identical.
1690 /// @brief Simplify the ffsl library function.
1691 struct VISIBILITY_HIDDEN FFSLOptimization : public FFSOptimization {
1692 public:
1693   /// @brief Default Constructor
1694   FFSLOptimization() : FFSOptimization("ffsl",
1695       "Number of 'ffsl' calls simplified") {}
1696
1697 } FFSLOptimizer;
1698
1699 /// This LibCallOptimization will simplify calls to the "ffsll" library
1700 /// calls. It simply uses FFSOptimization for which the transformation is
1701 /// identical.
1702 /// @brief Simplify the ffsl library function.
1703 struct VISIBILITY_HIDDEN FFSLLOptimization : public FFSOptimization {
1704 public:
1705   /// @brief Default Constructor
1706   FFSLLOptimization() : FFSOptimization("ffsll",
1707       "Number of 'ffsll' calls simplified") {}
1708
1709 } FFSLLOptimizer;
1710
1711 /// This optimizes unary functions that take and return doubles.
1712 struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1713   UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1714   : LibCallOptimization(Fn, Desc) {}
1715   
1716   // Make sure that this function has the right prototype
1717   virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1718     return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1719            F->getReturnType() == Type::DoubleTy;
1720   }
1721
1722   /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1723   /// float, strength reduce this to a float version of the function,
1724   /// e.g. floor((double)FLT) -> (double)floorf(FLT).  This can only be called
1725   /// when the target supports the destination function and where there can be
1726   /// no precision loss.
1727   static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
1728                                            Constant *(SimplifyLibCalls::*FP)()){
1729     if (FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getOperand(1)))
1730       if (Cast->getOperand(0)->getType() == Type::FloatTy) {
1731         Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
1732                                   CI->getName(), CI);
1733         New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
1734         CI->replaceAllUsesWith(New);
1735         CI->eraseFromParent();
1736         if (Cast->use_empty())
1737           Cast->eraseFromParent();
1738         return true;
1739       }
1740     return false;
1741   }
1742 };
1743
1744
1745 struct VISIBILITY_HIDDEN FloorOptimization : public UnaryDoubleFPOptimizer {
1746   FloorOptimization()
1747     : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1748   
1749   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1750 #ifdef HAVE_FLOORF
1751     // If this is a float argument passed in, convert to floorf.
1752     if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1753       return true;
1754 #endif
1755     return false; // opt failed
1756   }
1757 } FloorOptimizer;
1758
1759 struct VISIBILITY_HIDDEN CeilOptimization : public UnaryDoubleFPOptimizer {
1760   CeilOptimization()
1761   : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1762   
1763   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1764 #ifdef HAVE_CEILF
1765     // If this is a float argument passed in, convert to ceilf.
1766     if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1767       return true;
1768 #endif
1769     return false; // opt failed
1770   }
1771 } CeilOptimizer;
1772
1773 struct VISIBILITY_HIDDEN RoundOptimization : public UnaryDoubleFPOptimizer {
1774   RoundOptimization()
1775   : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1776   
1777   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1778 #ifdef HAVE_ROUNDF
1779     // If this is a float argument passed in, convert to roundf.
1780     if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1781       return true;
1782 #endif
1783     return false; // opt failed
1784   }
1785 } RoundOptimizer;
1786
1787 struct VISIBILITY_HIDDEN RintOptimization : public UnaryDoubleFPOptimizer {
1788   RintOptimization()
1789   : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1790   
1791   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1792 #ifdef HAVE_RINTF
1793     // If this is a float argument passed in, convert to rintf.
1794     if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1795       return true;
1796 #endif
1797     return false; // opt failed
1798   }
1799 } RintOptimizer;
1800
1801 struct VISIBILITY_HIDDEN NearByIntOptimization : public UnaryDoubleFPOptimizer {
1802   NearByIntOptimization()
1803   : UnaryDoubleFPOptimizer("nearbyint",
1804                            "Number of 'nearbyint' calls simplified") {}
1805   
1806   virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1807 #ifdef HAVE_NEARBYINTF
1808     // If this is a float argument passed in, convert to nearbyintf.
1809     if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1810       return true;
1811 #endif
1812     return false; // opt failed
1813   }
1814 } NearByIntOptimizer;
1815
1816 /// GetConstantStringInfo - This function computes the length of a
1817 /// null-terminated constant array of integers.  This function can't rely on the
1818 /// size of the constant array because there could be a null terminator in the
1819 /// middle of the array.
1820 ///
1821 /// We also have to bail out if we find a non-integer constant initializer
1822 /// of one of the elements or if there is no null-terminator. The logic
1823 /// below checks each of these conditions and will return true only if all
1824 /// conditions are met.  If the conditions aren't met, this returns false.
1825 ///
1826 /// If successful, the \p Array param is set to the constant array being
1827 /// indexed, the \p Length parameter is set to the length of the null-terminated
1828 /// string pointed to by V, the \p StartIdx value is set to the first
1829 /// element of the Array that V points to, and true is returned.
1830 static bool GetConstantStringInfo(Value *V, std::string &Str) {
1831   // Look through noop bitcast instructions.
1832   if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
1833     if (BCI->getType() == BCI->getOperand(0)->getType())
1834       return GetConstantStringInfo(BCI->getOperand(0), Str);
1835     return false;
1836   }
1837   
1838   // If the value is not a GEP instruction nor a constant expression with a
1839   // GEP instruction, then return false because ConstantArray can't occur
1840   // any other way
1841   User *GEP = 0;
1842   if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
1843     GEP = GEPI;
1844   } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
1845     if (CE->getOpcode() != Instruction::GetElementPtr)
1846       return false;
1847     GEP = CE;
1848   } else {
1849     return false;
1850   }
1851
1852   // Make sure the GEP has exactly three arguments.
1853   if (GEP->getNumOperands() != 3)
1854     return false;
1855
1856   // Check to make sure that the first operand of the GEP is an integer and
1857   // has value 0 so that we are sure we're indexing into the initializer.
1858   if (ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
1859     if (!Idx->isZero())
1860       return false;
1861   } else
1862     return false;
1863
1864   // If the second index isn't a ConstantInt, then this is a variable index
1865   // into the array.  If this occurs, we can't say anything meaningful about
1866   // the string.
1867   uint64_t StartIdx = 0;
1868   if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1869     StartIdx = CI->getZExtValue();
1870   else
1871     return false;
1872
1873   // The GEP instruction, constant or instruction, must reference a global
1874   // variable that is a constant and is initialized. The referenced constant
1875   // initializer is the array that we'll use for optimization.
1876   GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1877   if (!GV || !GV->isConstant() || !GV->hasInitializer())
1878     return false;
1879   Constant *GlobalInit = GV->getInitializer();
1880
1881   // Handle the ConstantAggregateZero case
1882   if (isa<ConstantAggregateZero>(GlobalInit)) {
1883     // This is a degenerate case. The initializer is constant zero so the
1884     // length of the string must be zero.
1885     Str.clear();
1886     return true;
1887   }
1888
1889   // Must be a Constant Array
1890   ConstantArray *Array = dyn_cast<ConstantArray>(GlobalInit);
1891   if (!Array) return false;
1892
1893   // Get the number of elements in the array
1894   uint64_t NumElts = Array->getType()->getNumElements();
1895
1896   // Traverse the constant array from StartIdx (derived above) which is
1897   // the place the GEP refers to in the array.
1898   for (unsigned i = StartIdx; i < NumElts; ++i) {
1899     Constant *Elt = Array->getOperand(i);
1900     ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1901     if (!CI) // This array isn't suitable, non-int initializer.
1902       return false;
1903     if (CI->isZero())
1904       return true; // we found end of string, success!
1905     Str += (char)CI->getZExtValue();
1906   }
1907   
1908   return false; // The array isn't null terminated.
1909 }
1910
1911 /// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1912 /// inserting the cast before IP, and return the cast.
1913 /// @brief Cast a value to a "C" string.
1914 static Value *CastToCStr(Value *V, Instruction *IP) {
1915   assert(isa<PointerType>(V->getType()) && 
1916          "Can't cast non-pointer type to C string type");
1917   const Type *SBPTy = PointerType::get(Type::Int8Ty);
1918   if (V->getType() != SBPTy)
1919     return new BitCastInst(V, SBPTy, V->getName(), IP);
1920   return V;
1921 }
1922
1923 // TODO:
1924 //   Additional cases that we need to add to this file:
1925 //
1926 // cbrt:
1927 //   * cbrt(expN(X))  -> expN(x/3)
1928 //   * cbrt(sqrt(x))  -> pow(x,1/6)
1929 //   * cbrt(sqrt(x))  -> pow(x,1/9)
1930 //
1931 // cos, cosf, cosl:
1932 //   * cos(-x)  -> cos(x)
1933 //
1934 // exp, expf, expl:
1935 //   * exp(log(x))  -> x
1936 //
1937 // log, logf, logl:
1938 //   * log(exp(x))   -> x
1939 //   * log(x**y)     -> y*log(x)
1940 //   * log(exp(y))   -> y*log(e)
1941 //   * log(exp2(y))  -> y*log(2)
1942 //   * log(exp10(y)) -> y*log(10)
1943 //   * log(sqrt(x))  -> 0.5*log(x)
1944 //   * log(pow(x,y)) -> y*log(x)
1945 //
1946 // lround, lroundf, lroundl:
1947 //   * lround(cnst) -> cnst'
1948 //
1949 // memcmp:
1950 //   * memcmp(x,y,l)   -> cnst
1951 //      (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
1952 //
1953 // memmove:
1954 //   * memmove(d,s,l,a) -> memcpy(d,s,l,a)
1955 //       (if s is a global constant array)
1956 //
1957 // pow, powf, powl:
1958 //   * pow(exp(x),y)  -> exp(x*y)
1959 //   * pow(sqrt(x),y) -> pow(x,y*0.5)
1960 //   * pow(pow(x,y),z)-> pow(x,y*z)
1961 //
1962 // puts:
1963 //   * puts("") -> putchar("\n")
1964 //
1965 // round, roundf, roundl:
1966 //   * round(cnst) -> cnst'
1967 //
1968 // signbit:
1969 //   * signbit(cnst) -> cnst'
1970 //   * signbit(nncst) -> 0 (if pstv is a non-negative constant)
1971 //
1972 // sqrt, sqrtf, sqrtl:
1973 //   * sqrt(expN(x))  -> expN(x*0.5)
1974 //   * sqrt(Nroot(x)) -> pow(x,1/(2*N))
1975 //   * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
1976 //
1977 // stpcpy:
1978 //   * stpcpy(str, "literal") ->
1979 //           llvm.memcpy(str,"literal",strlen("literal")+1,1)
1980 // strrchr:
1981 //   * strrchr(s,c) -> reverse_offset_of_in(c,s)
1982 //      (if c is a constant integer and s is a constant string)
1983 //   * strrchr(s1,0) -> strchr(s1,0)
1984 //
1985 // strncat:
1986 //   * strncat(x,y,0) -> x
1987 //   * strncat(x,y,0) -> x (if strlen(y) = 0)
1988 //   * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
1989 //
1990 // strncpy:
1991 //   * strncpy(d,s,0) -> d
1992 //   * strncpy(d,s,l) -> memcpy(d,s,l,1)
1993 //      (if s and l are constants)
1994 //
1995 // strpbrk:
1996 //   * strpbrk(s,a) -> offset_in_for(s,a)
1997 //      (if s and a are both constant strings)
1998 //   * strpbrk(s,"") -> 0
1999 //   * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2000 //
2001 // strspn, strcspn:
2002 //   * strspn(s,a)   -> const_int (if both args are constant)
2003 //   * strspn("",a)  -> 0
2004 //   * strspn(s,"")  -> 0
2005 //   * strcspn(s,a)  -> const_int (if both args are constant)
2006 //   * strcspn("",a) -> 0
2007 //   * strcspn(s,"") -> strlen(a)
2008 //
2009 // strstr:
2010 //   * strstr(x,x)  -> x
2011 //   * strstr(s1,s2) -> offset_of_s2_in(s1)
2012 //       (if s1 and s2 are constant strings)
2013 //
2014 // tan, tanf, tanl:
2015 //   * tan(atan(x)) -> x
2016 //
2017 // trunc, truncf, truncl:
2018 //   * trunc(cnst) -> cnst'
2019 //
2020 //
2021 }