blob: bbfd1d2da341cf9f3cf88df29b9f527c654ab001 [file] [log] [blame]
Reid Spencerb7c11e32005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencera7c049b2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencera7c049b2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen00b168892005-07-27 06:12:32 +000010// This file implements a module pass that applies a variety of small
11// optimizations for calls to specific well-known function calls (e.g. runtime
12// library functions). For example, a call to the function "exit(3)" that
Reid Spencer0660f752005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen00b168892005-07-27 06:12:32 +000014// instruction. Any optimization that takes this form (replace call to library
15// function with simpler code that provides the same result) belongs in this
16// file.
Reid Spencera7c049b2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spenceref99ea32005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer8f132612005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencera7c049b2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Anton Korobeynikovc6ee8272008-02-20 11:27:49 +000026#include "llvm/ADT/StringMap.h"
Reid Spencer8f132612005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
Reid Spenceraa87e052006-01-19 08:36:56 +000028#include "llvm/Config/config.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000029#include "llvm/Support/Compiler.h"
Reid Spencer8f132612005-04-26 23:02:16 +000030#include "llvm/Support/Debug.h"
Reid Spencerfcbdb9c2005-04-26 19:13:17 +000031#include "llvm/Target/TargetData.h"
Reid Spencer8f132612005-04-26 23:02:16 +000032#include "llvm/Transforms/IPO.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000033#include <cstring>
Reid Spencera7c049b2005-04-25 02:53:12 +000034using namespace llvm;
35
Reid Spencera16d5a52005-04-27 07:54:40 +000036/// This statistic keeps track of the total number of library calls that have
37/// been simplified regardless of which call it is.
Chris Lattner86453c52006-12-19 22:09:18 +000038STATISTIC(SimplifiedLibCalls, "Number of library calls simplified");
Reid Spencera7c049b2005-04-25 02:53:12 +000039
Chris Lattner86453c52006-12-19 22:09:18 +000040namespace {
41 // Forward declarations
42 class LibCallOptimization;
43 class SimplifyLibCalls;
44
Chris Lattnere05cf712006-01-22 23:10:26 +000045/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer89026022005-05-21 01:27:04 +000046/// Therefore all subclasses are registered here at static initialization time
47/// and this list is what the SimplifyLibCalls pass uses to apply the individual
48/// optimizations to the call sites.
Reid Spencer716f49e2005-04-27 21:29:20 +000049/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattnere05cf712006-01-22 23:10:26 +000050static LibCallOptimization *OptList = 0;
Reid Spencera7c049b2005-04-25 02:53:12 +000051
Reid Spencera16d5a52005-04-27 07:54:40 +000052/// This class is the abstract base class for the set of optimizations that
Reid Spencer716f49e2005-04-27 21:29:20 +000053/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencera16d5a52005-04-27 07:54:40 +000054/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer716f49e2005-04-27 21:29:20 +000055/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen00b168892005-07-27 06:12:32 +000056/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer716f49e2005-04-27 21:29:20 +000057/// or attempt to perform, the optimization(s) for the library call. Otherwise,
58/// OptimizeCall won't be called. Subclasses are responsible for providing the
59/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
60/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen00b168892005-07-27 06:12:32 +000061/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer716f49e2005-04-27 21:29:20 +000062/// semantics", typically a library function that is defined by an international
Jeff Cohen00b168892005-07-27 06:12:32 +000063/// standard. Because the semantics are well known, the optimizations can
Reid Spencer716f49e2005-04-27 21:29:20 +000064/// generally short-circuit actually calling the function if there's a simpler
65/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencera16d5a52005-04-27 07:54:40 +000066/// @brief Base class for library call optimizations
Reid Spencer9133fe22007-02-05 23:32:05 +000067class VISIBILITY_HIDDEN LibCallOptimization {
Chris Lattnere05cf712006-01-22 23:10:26 +000068 LibCallOptimization **Prev, *Next;
69 const char *FunctionName; ///< Name of the library call we optimize
70#ifndef NDEBUG
Chris Lattnerac0b6ae2006-12-06 17:46:33 +000071 Statistic occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
Chris Lattnere05cf712006-01-22 23:10:26 +000072#endif
Jeff Cohen5882b922005-04-29 03:05:44 +000073public:
Jeff Cohen00b168892005-07-27 06:12:32 +000074 /// The \p fname argument must be the name of the library function being
Reid Spencer716f49e2005-04-27 21:29:20 +000075 /// optimized by the subclass.
76 /// @brief Constructor that registers the optimization.
Chris Lattnere05cf712006-01-22 23:10:26 +000077 LibCallOptimization(const char *FName, const char *Description)
Chris Lattner1c560ad2006-12-19 23:16:47 +000078 : FunctionName(FName) {
79
Reid Spencer1ea099c2005-04-27 00:05:45 +000080#ifndef NDEBUG
Chris Lattner1c560ad2006-12-19 23:16:47 +000081 occurrences.construct("simplify-libcalls", Description);
Reid Spencer1ea099c2005-04-27 00:05:45 +000082#endif
Chris Lattnere05cf712006-01-22 23:10:26 +000083 // Register this optimizer in the list of optimizations.
84 Next = OptList;
85 OptList = this;
86 Prev = &OptList;
87 if (Next) Next->Prev = &Next;
Reid Spencera7c049b2005-04-25 02:53:12 +000088 }
Chris Lattnere05cf712006-01-22 23:10:26 +000089
90 /// getNext - All libcall optimizations are chained together into a list,
91 /// return the next one in the list.
92 LibCallOptimization *getNext() { return Next; }
Reid Spencera7c049b2005-04-25 02:53:12 +000093
Reid Spencer716f49e2005-04-27 21:29:20 +000094 /// @brief Deregister from the optlist
Chris Lattnere05cf712006-01-22 23:10:26 +000095 virtual ~LibCallOptimization() {
96 *Prev = Next;
97 if (Next) Next->Prev = Prev;
98 }
Reid Spencer43e0bae2005-04-26 03:26:15 +000099
Reid Spencera16d5a52005-04-27 07:54:40 +0000100 /// The implementation of this function in subclasses should determine if
Jeff Cohen00b168892005-07-27 06:12:32 +0000101 /// \p F is suitable for the optimization. This method is called by
102 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
103 /// sites of such a function if that function is not suitable in the first
Reid Spencer716f49e2005-04-27 21:29:20 +0000104 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen00b168892005-07-27 06:12:32 +0000105 /// false, otherwise. This function should also perform any lazy
106 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencera16d5a52005-04-27 07:54:40 +0000107 /// true. This avoids doing initialization until the optimizer is actually
108 /// going to be called upon to do some optimization.
Reid Spencer716f49e2005-04-27 21:29:20 +0000109 /// @brief Determine if the function is suitable for optimization
Reid Spencera16d5a52005-04-27 07:54:40 +0000110 virtual bool ValidateCalledFunction(
111 const Function* F, ///< The function that is the target of call sites
112 SimplifyLibCalls& SLC ///< The pass object invoking us
113 ) = 0;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000114
Jeff Cohen00b168892005-07-27 06:12:32 +0000115 /// The implementations of this function in subclasses is the heart of the
116 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencera16d5a52005-04-27 07:54:40 +0000117 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen00b168892005-07-27 06:12:32 +0000118 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencera16d5a52005-04-27 07:54:40 +0000119 /// against ci, the subclass is responsible for returning true and ensuring
120 /// that ci is erased from its parent.
Reid Spencera16d5a52005-04-27 07:54:40 +0000121 /// @brief Optimize a call, if possible.
122 virtual bool OptimizeCall(
123 CallInst* ci, ///< The call instruction that should be optimized.
124 SimplifyLibCalls& SLC ///< The pass object invoking us
125 ) = 0;
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000126
Reid Spencera16d5a52005-04-27 07:54:40 +0000127 /// @brief Get the name of the library call being optimized
Chris Lattnere05cf712006-01-22 23:10:26 +0000128 const char *getFunctionName() const { return FunctionName; }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000129
Chris Lattner679d7182007-04-07 00:42:32 +0000130 bool ReplaceCallWith(CallInst *CI, Value *V) {
131 if (!CI->use_empty())
132 CI->replaceAllUsesWith(V);
133 CI->eraseFromParent();
134 return true;
135 }
136
Reid Spencer716f49e2005-04-27 21:29:20 +0000137 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattnere05cf712006-01-22 23:10:26 +0000138 void succeeded() {
Reid Spencera16d5a52005-04-27 07:54:40 +0000139#ifndef NDEBUG
Chris Lattnere05cf712006-01-22 23:10:26 +0000140 DEBUG(++occurrences);
Reid Spencera16d5a52005-04-27 07:54:40 +0000141#endif
Chris Lattnere05cf712006-01-22 23:10:26 +0000142 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000143};
144
Jeff Cohen00b168892005-07-27 06:12:32 +0000145/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencera16d5a52005-04-27 07:54:40 +0000146/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen00b168892005-07-27 06:12:32 +0000147/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencera16d5a52005-04-27 07:54:40 +0000148/// functions with well-known semantics, such as those in the c library. The
Chris Lattner53249862005-08-24 17:22:17 +0000149/// class provides the basic infrastructure for handling runOnModule. Whenever
150/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer716f49e2005-04-27 21:29:20 +0000151/// validate the call (ValidateLibraryCall). If it is validated, then
152/// the OptimizeCall method is also called.
Reid Spencera16d5a52005-04-27 07:54:40 +0000153/// @brief A ModulePass for optimizing well-known function calls.
Reid Spencer9133fe22007-02-05 23:32:05 +0000154class VISIBILITY_HIDDEN SimplifyLibCalls : public ModulePass {
Jeff Cohen5882b922005-04-29 03:05:44 +0000155public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000156 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +0000157 SimplifyLibCalls() : ModulePass((intptr_t)&ID) {}
158
Reid Spencera16d5a52005-04-27 07:54:40 +0000159 /// We need some target data for accurate signature details that are
160 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer716f49e2005-04-27 21:29:20 +0000161 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000162 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencera16d5a52005-04-27 07:54:40 +0000163 // Ask that the TargetData analysis be performed before us so we can use
164 // the target data.
165 Info.addRequired<TargetData>();
166 }
167
168 /// For this pass, process all of the function calls in the module, calling
169 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer716f49e2005-04-27 21:29:20 +0000170 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000171 virtual bool runOnModule(Module &M) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000172 reset(M);
173
174 bool result = false;
Anton Korobeynikovc6ee8272008-02-20 11:27:49 +0000175 StringMap<LibCallOptimization*> OptznMap;
Chris Lattnere05cf712006-01-22 23:10:26 +0000176 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
177 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencera16d5a52005-04-27 07:54:40 +0000178
179 // The call optimizations can be recursive. That is, the optimization might
180 // generate a call to another function which can also be optimized. This way
Jeff Cohen00b168892005-07-27 06:12:32 +0000181 // we make the LibCallOptimization instances very specific to the case they
182 // handle. It also means we need to keep running over the function calls in
Reid Spencera16d5a52005-04-27 07:54:40 +0000183 // the module until we don't get any more optimizations possible.
184 bool found_optimization = false;
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000185 do {
Reid Spencera16d5a52005-04-27 07:54:40 +0000186 found_optimization = false;
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000187 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000188 // All the "well-known" functions are external and have external linkage
Jeff Cohen00b168892005-07-27 06:12:32 +0000189 // because they live in a runtime library somewhere and were (probably)
190 // not compiled by LLVM. So, we only act on external functions that
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000191 // have external or dllimport linkage and non-empty uses.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000192 if (!FI->isDeclaration() ||
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000193 !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
194 FI->use_empty())
Reid Spencera16d5a52005-04-27 07:54:40 +0000195 continue;
196
197 // Get the optimization class that pertains to this function
Anton Korobeynikovc6ee8272008-02-20 11:27:49 +0000198 StringMap<LibCallOptimization*>::iterator OMI =
Chris Lattnere05cf712006-01-22 23:10:26 +0000199 OptznMap.find(FI->getName());
200 if (OMI == OptznMap.end()) continue;
201
202 LibCallOptimization *CO = OMI->second;
Reid Spencera16d5a52005-04-27 07:54:40 +0000203
204 // Make sure the called function is suitable for the optimization
Chris Lattnere05cf712006-01-22 23:10:26 +0000205 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencera16d5a52005-04-27 07:54:40 +0000206 continue;
207
208 // Loop over each of the uses of the function
Jeff Cohen00b168892005-07-27 06:12:32 +0000209 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000210 UI != UE ; ) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000211 // If the use of the function is a call instruction
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000212 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000213 // Do the optimization on the LibCallOptimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000214 if (CO->OptimizeCall(CI, *this)) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000215 ++SimplifiedLibCalls;
216 found_optimization = result = true;
Reid Spencer716f49e2005-04-27 21:29:20 +0000217 CO->succeeded();
Reid Spencera16d5a52005-04-27 07:54:40 +0000218 }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000219 }
220 }
221 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000222 } while (found_optimization);
Chris Lattnere05cf712006-01-22 23:10:26 +0000223
Reid Spencera16d5a52005-04-27 07:54:40 +0000224 return result;
225 }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000226
Reid Spencera16d5a52005-04-27 07:54:40 +0000227 /// @brief Return the *current* module we're working on.
Reid Spencerff5525d2005-04-29 09:39:47 +0000228 Module* getModule() const { return M; }
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000229
Reid Spencera16d5a52005-04-27 07:54:40 +0000230 /// @brief Return the *current* target data for the module we're working on.
Reid Spencerff5525d2005-04-29 09:39:47 +0000231 TargetData* getTargetData() const { return TD; }
232
233 /// @brief Return the size_t type -- syntactic shortcut
234 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
235
Evan Cheng21abac22006-06-16 08:36:35 +0000236 /// @brief Return a Function* for the putchar libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000237 Constant *get_putchar() {
Evan Cheng21abac22006-06-16 08:36:35 +0000238 if (!putchar_func)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000239 putchar_func =
240 M->getOrInsertFunction("putchar", Type::Int32Ty, Type::Int32Ty, NULL);
Evan Cheng21abac22006-06-16 08:36:35 +0000241 return putchar_func;
242 }
243
244 /// @brief Return a Function* for the puts libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000245 Constant *get_puts() {
Evan Cheng21abac22006-06-16 08:36:35 +0000246 if (!puts_func)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000247 puts_func = M->getOrInsertFunction("puts", Type::Int32Ty,
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000248 PointerType::getUnqual(Type::Int8Ty),
Evan Cheng21abac22006-06-16 08:36:35 +0000249 NULL);
250 return puts_func;
251 }
252
Reid Spencerff5525d2005-04-29 09:39:47 +0000253 /// @brief Return a Function* for the fputc libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000254 Constant *get_fputc(const Type* FILEptr_type) {
Reid Spencerff5525d2005-04-29 09:39:47 +0000255 if (!fputc_func)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000256 fputc_func = M->getOrInsertFunction("fputc", Type::Int32Ty, Type::Int32Ty,
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000257 FILEptr_type, NULL);
Reid Spencerff5525d2005-04-29 09:39:47 +0000258 return fputc_func;
259 }
260
Evan Cheng95289522006-06-16 04:52:30 +0000261 /// @brief Return a Function* for the fputs libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000262 Constant *get_fputs(const Type* FILEptr_type) {
Evan Cheng95289522006-06-16 04:52:30 +0000263 if (!fputs_func)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000264 fputs_func = M->getOrInsertFunction("fputs", Type::Int32Ty,
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000265 PointerType::getUnqual(Type::Int8Ty),
Evan Cheng95289522006-06-16 04:52:30 +0000266 FILEptr_type, NULL);
267 return fputs_func;
268 }
269
Reid Spencerff5525d2005-04-29 09:39:47 +0000270 /// @brief Return a Function* for the fwrite libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000271 Constant *get_fwrite(const Type* FILEptr_type) {
Reid Spencerff5525d2005-04-29 09:39:47 +0000272 if (!fwrite_func)
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000273 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000274 PointerType::getUnqual(Type::Int8Ty),
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000275 TD->getIntPtrType(),
276 TD->getIntPtrType(),
277 FILEptr_type, NULL);
Reid Spencerff5525d2005-04-29 09:39:47 +0000278 return fwrite_func;
279 }
280
281 /// @brief Return a Function* for the sqrt libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000282 Constant *get_sqrt() {
Reid Spencerff5525d2005-04-29 09:39:47 +0000283 if (!sqrt_func)
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000284 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
285 Type::DoubleTy, NULL);
Reid Spencerff5525d2005-04-29 09:39:47 +0000286 return sqrt_func;
287 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000288
Owen Andersonf4d5de42007-01-20 10:07:23 +0000289 /// @brief Return a Function* for the strcpy libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000290 Constant *get_strcpy() {
Reid Spencer58b563c2005-05-04 03:20:21 +0000291 if (!strcpy_func)
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000292 strcpy_func = M->getOrInsertFunction("strcpy",
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000293 PointerType::getUnqual(Type::Int8Ty),
294 PointerType::getUnqual(Type::Int8Ty),
295 PointerType::getUnqual(Type::Int8Ty),
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000296 NULL);
Reid Spencer58b563c2005-05-04 03:20:21 +0000297 return strcpy_func;
298 }
299
300 /// @brief Return a Function* for the strlen libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000301 Constant *get_strlen() {
Reid Spencera16d5a52005-04-27 07:54:40 +0000302 if (!strlen_func)
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000303 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000304 PointerType::getUnqual(Type::Int8Ty),
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000305 NULL);
Reid Spencera16d5a52005-04-27 07:54:40 +0000306 return strlen_func;
Reid Spencer43e0bae2005-04-26 03:26:15 +0000307 }
308
Reid Spencer21506ff2005-05-03 07:23:44 +0000309 /// @brief Return a Function* for the memchr libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000310 Constant *get_memchr() {
Reid Spencer21506ff2005-05-03 07:23:44 +0000311 if (!memchr_func)
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000312 memchr_func = M->getOrInsertFunction("memchr",
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000313 PointerType::getUnqual(Type::Int8Ty),
314 PointerType::getUnqual(Type::Int8Ty),
Reid Spencerc5b206b2006-12-31 05:48:39 +0000315 Type::Int32Ty, TD->getIntPtrType(),
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000316 NULL);
Reid Spencer21506ff2005-05-03 07:23:44 +0000317 return memchr_func;
318 }
319
Reid Spencera16d5a52005-04-27 07:54:40 +0000320 /// @brief Return a Function* for the memcpy libcall
Chris Lattnerb76efb72007-01-07 08:12:01 +0000321 Constant *get_memcpy() {
Chris Lattner53249862005-08-24 17:22:17 +0000322 if (!memcpy_func) {
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000323 const Type *SBP = PointerType::getUnqual(Type::Int8Ty);
Reid Spencerc5b206b2006-12-31 05:48:39 +0000324 const char *N = TD->getIntPtrType() == Type::Int32Ty ?
Chris Lattneraecb0622006-03-03 01:30:23 +0000325 "llvm.memcpy.i32" : "llvm.memcpy.i64";
326 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000327 TD->getIntPtrType(), Type::Int32Ty,
Chris Lattneraecb0622006-03-03 01:30:23 +0000328 NULL);
Reid Spencer43e0bae2005-04-26 03:26:15 +0000329 }
Reid Spencera16d5a52005-04-27 07:54:40 +0000330 return memcpy_func;
Reid Spencer43e0bae2005-04-26 03:26:15 +0000331 }
Reid Spencer912401c2005-04-26 05:24:00 +0000332
Chris Lattnerb76efb72007-01-07 08:12:01 +0000333 Constant *getUnaryFloatFunction(const char *Name, Constant *&Cache) {
Chris Lattnere46f6e92006-01-23 06:24:46 +0000334 if (!Cache)
335 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
336 return Cache;
Chris Lattner53249862005-08-24 17:22:17 +0000337 }
338
Chris Lattnerb76efb72007-01-07 08:12:01 +0000339 Constant *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
340 Constant *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
341 Constant *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
342 Constant *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
343 Constant *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
Chris Lattnere46f6e92006-01-23 06:24:46 +0000344 nearbyintf_func); }
Reid Spencera16d5a52005-04-27 07:54:40 +0000345private:
Reid Spencer716f49e2005-04-27 21:29:20 +0000346 /// @brief Reset our cached data for a new Module
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000347 void reset(Module& mod) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000348 M = &mod;
349 TD = &getAnalysis<TargetData>();
Evan Cheng21abac22006-06-16 08:36:35 +0000350 putchar_func = 0;
351 puts_func = 0;
Reid Spencerff5525d2005-04-29 09:39:47 +0000352 fputc_func = 0;
Evan Cheng95289522006-06-16 04:52:30 +0000353 fputs_func = 0;
Reid Spencerff5525d2005-04-29 09:39:47 +0000354 fwrite_func = 0;
Reid Spencera16d5a52005-04-27 07:54:40 +0000355 memcpy_func = 0;
Reid Spencer21506ff2005-05-03 07:23:44 +0000356 memchr_func = 0;
Reid Spencerff5525d2005-04-29 09:39:47 +0000357 sqrt_func = 0;
Reid Spencer58b563c2005-05-04 03:20:21 +0000358 strcpy_func = 0;
Reid Spencera16d5a52005-04-27 07:54:40 +0000359 strlen_func = 0;
Chris Lattner53249862005-08-24 17:22:17 +0000360 floorf_func = 0;
Chris Lattnere46f6e92006-01-23 06:24:46 +0000361 ceilf_func = 0;
362 roundf_func = 0;
363 rintf_func = 0;
364 nearbyintf_func = 0;
Reid Spencer912401c2005-04-26 05:24:00 +0000365 }
Reid Spencera7c049b2005-04-25 02:53:12 +0000366
Reid Spencera16d5a52005-04-27 07:54:40 +0000367private:
Chris Lattnere46f6e92006-01-23 06:24:46 +0000368 /// Caches for function pointers.
Chris Lattnerb76efb72007-01-07 08:12:01 +0000369 Constant *putchar_func, *puts_func;
370 Constant *fputc_func, *fputs_func, *fwrite_func;
371 Constant *memcpy_func, *memchr_func;
372 Constant *sqrt_func;
373 Constant *strcpy_func, *strlen_func;
374 Constant *floorf_func, *ceilf_func, *roundf_func;
375 Constant *rintf_func, *nearbyintf_func;
Chris Lattnere46f6e92006-01-23 06:24:46 +0000376 Module *M; ///< Cached Module
377 TargetData *TD; ///< Cached TargetData
Reid Spencera16d5a52005-04-27 07:54:40 +0000378};
379
Devang Patel19974732007-05-03 01:11:54 +0000380char SimplifyLibCalls::ID = 0;
Reid Spencera16d5a52005-04-27 07:54:40 +0000381// Register the pass
Chris Lattner7f8897f2006-08-27 22:42:52 +0000382RegisterPass<SimplifyLibCalls>
383X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencera16d5a52005-04-27 07:54:40 +0000384
385} // anonymous namespace
386
387// The only public symbol in this file which just instantiates the pass object
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000388ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen00b168892005-07-27 06:12:32 +0000389 return new SimplifyLibCalls();
Reid Spencera16d5a52005-04-27 07:54:40 +0000390}
391
392// Classes below here, in the anonymous namespace, are all subclasses of the
393// LibCallOptimization class, each implementing all optimizations possible for a
394// single well-known library call. Each has a static singleton instance that
Jeff Cohen00b168892005-07-27 06:12:32 +0000395// auto registers it into the "optlist" global above.
Reid Spencera16d5a52005-04-27 07:54:40 +0000396namespace {
397
Reid Spencer134d2e42005-06-18 17:46:28 +0000398// Forward declare utility functions.
Chris Lattner0cd3a232007-04-07 21:58:02 +0000399static bool GetConstantStringInfo(Value *V, std::string &Str);
Chris Lattner3492cda2007-04-07 21:04:50 +0000400static Value *CastToCStr(Value *V, Instruction *IP);
Reid Spencera16d5a52005-04-27 07:54:40 +0000401
402/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencera7c049b2005-04-25 02:53:12 +0000403/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer716f49e2005-04-27 21:29:20 +0000404/// the same value passed to the exit function. When this is done, it splits the
405/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencera7c049b2005-04-25 02:53:12 +0000406/// @brief Replace calls to exit in main with a simple return
Reid Spencer9133fe22007-02-05 23:32:05 +0000407struct VISIBILITY_HIDDEN ExitInMainOptimization : public LibCallOptimization {
Reid Spencer9974dda2005-05-03 02:54:54 +0000408 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer789082a2005-05-07 20:15:59 +0000409 "Number of 'exit' calls simplified") {}
Reid Spencer6cc03112005-04-25 21:11:48 +0000410
411 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen00b168892005-07-27 06:12:32 +0000412 // type, external linkage, not varargs).
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000413 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner42a75512007-01-15 02:27:26 +0000414 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencer6cc03112005-04-25 21:11:48 +0000415 }
416
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000417 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer6cc03112005-04-25 21:11:48 +0000418 // To be careful, we check that the call to exit is coming from "main", that
419 // main has external linkage, and the return type of main and the argument
Jeff Cohen00b168892005-07-27 06:12:32 +0000420 // to exit have the same type.
Reid Spencer6cc03112005-04-25 21:11:48 +0000421 Function *from = ci->getParent()->getParent();
422 if (from->hasExternalLinkage())
Devang Patel045497a2008-03-12 00:32:32 +0000423 if (from->getReturnType() == ci->getOperand(1)->getType()
424 && !isa<StructType>(from->getReturnType()))
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000425 if (from->getName() == "main") {
Jeff Cohen00b168892005-07-27 06:12:32 +0000426 // Okay, time to actually do the optimization. First, get the basic
Reid Spencer6cc03112005-04-25 21:11:48 +0000427 // block of the call instruction
428 BasicBlock* bb = ci->getParent();
Reid Spencera7c049b2005-04-25 02:53:12 +0000429
Jeff Cohen00b168892005-07-27 06:12:32 +0000430 // Create a return instruction that we'll replace the call with.
431 // Note that the argument of the return is the argument of the call
Reid Spencer6cc03112005-04-25 21:11:48 +0000432 // instruction.
Gabor Greif051a9502008-04-06 20:25:17 +0000433 ReturnInst::Create(ci->getOperand(1), ci);
Reid Spencera7c049b2005-04-25 02:53:12 +0000434
Reid Spencer6cc03112005-04-25 21:11:48 +0000435 // Split the block at the call instruction which places it in a new
436 // basic block.
Reid Spencer43e0bae2005-04-26 03:26:15 +0000437 bb->splitBasicBlock(ci);
Reid Spencera7c049b2005-04-25 02:53:12 +0000438
Reid Spencer6cc03112005-04-25 21:11:48 +0000439 // The block split caused a branch instruction to be inserted into
440 // the end of the original block, right after the return instruction
441 // that we put there. That's not a valid block, so delete the branch
442 // instruction.
Reid Spencer43e0bae2005-04-26 03:26:15 +0000443 bb->getInstList().pop_back();
Reid Spencera7c049b2005-04-25 02:53:12 +0000444
Reid Spencer6cc03112005-04-25 21:11:48 +0000445 // Now we can finally get rid of the call instruction which now lives
446 // in the new basic block.
447 ci->eraseFromParent();
448
449 // Optimization succeeded, return true.
450 return true;
451 }
452 // We didn't pass the criteria for this optimization so return false
453 return false;
Reid Spencerb7c11e32005-04-25 03:59:26 +0000454 }
Reid Spencera7c049b2005-04-25 02:53:12 +0000455} ExitInMainOptimizer;
456
Jeff Cohen00b168892005-07-27 06:12:32 +0000457/// This LibCallOptimization will simplify a call to the strcat library
458/// function. The simplification is possible only if the string being
459/// concatenated is a constant array or a constant expression that results in
460/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer716f49e2005-04-27 21:29:20 +0000461/// of the constant string. Both of these calls are further reduced, if possible
462/// on subsequent passes.
Reid Spencer6cc03112005-04-25 21:11:48 +0000463/// @brief Simplify the strcat library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000464struct VISIBILITY_HIDDEN StrCatOptimization : public LibCallOptimization {
Reid Spencer43e0bae2005-04-26 03:26:15 +0000465public:
Reid Spencer716f49e2005-04-27 21:29:20 +0000466 /// @brief Default constructor
Reid Spencer9974dda2005-05-03 02:54:54 +0000467 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer789082a2005-05-07 20:15:59 +0000468 "Number of 'strcat' calls simplified") {}
Reid Spencera16d5a52005-04-27 07:54:40 +0000469
470public:
Reid Spencer6cc03112005-04-25 21:11:48 +0000471
472 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0cd3a232007-04-07 21:58:02 +0000473 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
474 const FunctionType *FT = F->getFunctionType();
475 return FT->getNumParams() == 2 &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000476 FT->getReturnType() == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner0cd3a232007-04-07 21:58:02 +0000477 FT->getParamType(0) == FT->getReturnType() &&
478 FT->getParamType(1) == FT->getReturnType();
Reid Spencer6cc03112005-04-25 21:11:48 +0000479 }
480
Reid Spencera16d5a52005-04-27 07:54:40 +0000481 /// @brief Optimize the strcat library function
Chris Lattner09c11aa2007-04-06 22:59:33 +0000482 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000483 // Extract some information from the instruction
Chris Lattner09c11aa2007-04-06 22:59:33 +0000484 Value *Dst = CI->getOperand(1);
485 Value *Src = CI->getOperand(2);
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000486
Jeff Cohen00b168892005-07-27 06:12:32 +0000487 // Extract the initializer (while making numerous checks) from the
Chris Lattner09c11aa2007-04-06 22:59:33 +0000488 // source operand of the call to strcat.
Chris Lattner0cd3a232007-04-07 21:58:02 +0000489 std::string SrcStr;
490 if (!GetConstantStringInfo(Src, SrcStr))
Reid Spencer43e0bae2005-04-26 03:26:15 +0000491 return false;
492
Reid Spencer20754ac2005-04-26 07:45:18 +0000493 // Handle the simple, do-nothing case
Chris Lattner0cd3a232007-04-07 21:58:02 +0000494 if (SrcStr.empty())
Chris Lattner679d7182007-04-07 00:42:32 +0000495 return ReplaceCallWith(CI, Dst);
Reid Spencer43e0bae2005-04-26 03:26:15 +0000496
Jeff Cohen00b168892005-07-27 06:12:32 +0000497 // We need to find the end of the destination string. That's where the
Chris Lattner0cd3a232007-04-07 21:58:02 +0000498 // memory is to be moved to. We just generate a call to strlen.
Gabor Greif051a9502008-04-06 20:25:17 +0000499 CallInst *DstLen = CallInst::Create(SLC.get_strlen(), Dst,
500 Dst->getName()+".len", CI);
Reid Spencer20754ac2005-04-26 07:45:18 +0000501
Jeff Cohen00b168892005-07-27 06:12:32 +0000502 // Now that we have the destination's length, we must index into the
Reid Spencer20754ac2005-04-26 07:45:18 +0000503 // destination's pointer to get the actual memcpy destination (end of
504 // the string .. we're concatenating).
Gabor Greif051a9502008-04-06 20:25:17 +0000505 Dst = GetElementPtrInst::Create(Dst, DstLen, Dst->getName()+".indexed", CI);
Reid Spencer20754ac2005-04-26 07:45:18 +0000506
507 // We have enough information to now generate the memcpy call to
508 // do the concatenation for us.
Chris Lattner09c11aa2007-04-06 22:59:33 +0000509 Value *Vals[] = {
510 Dst, Src,
Chris Lattner0cd3a232007-04-07 21:58:02 +0000511 ConstantInt::get(SLC.getIntPtrType(), SrcStr.size()+1), // copy nul byte.
Chris Lattner09c11aa2007-04-06 22:59:33 +0000512 ConstantInt::get(Type::Int32Ty, 1) // alignment
513 };
Gabor Greif051a9502008-04-06 20:25:17 +0000514 CallInst::Create(SLC.get_memcpy(), Vals, Vals + 4, "", CI);
Reid Spencer20754ac2005-04-26 07:45:18 +0000515
Chris Lattner679d7182007-04-07 00:42:32 +0000516 return ReplaceCallWith(CI, Dst);
Reid Spencerb7c11e32005-04-25 03:59:26 +0000517 }
518} StrCatOptimizer;
519
Jeff Cohen00b168892005-07-27 06:12:32 +0000520/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer21506ff2005-05-03 07:23:44 +0000521/// function. It optimizes out cases where the arguments are both constant
522/// and the result can be determined statically.
523/// @brief Simplify the strcmp library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000524struct VISIBILITY_HIDDEN StrChrOptimization : public LibCallOptimization {
Reid Spencer21506ff2005-05-03 07:23:44 +0000525public:
526 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer789082a2005-05-07 20:15:59 +0000527 "Number of 'strchr' calls simplified") {}
Reid Spencer21506ff2005-05-03 07:23:44 +0000528
529 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner6897fe52007-04-06 23:38:55 +0000530 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
531 const FunctionType *FT = F->getFunctionType();
532 return FT->getNumParams() == 2 &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000533 FT->getReturnType() == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner6897fe52007-04-06 23:38:55 +0000534 FT->getParamType(0) == FT->getReturnType() &&
535 isa<IntegerType>(FT->getParamType(1));
Reid Spencer21506ff2005-05-03 07:23:44 +0000536 }
537
Chris Lattner93751352005-05-20 22:22:25 +0000538 /// @brief Perform the strchr optimizations
Chris Lattner6897fe52007-04-06 23:38:55 +0000539 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer21506ff2005-05-03 07:23:44 +0000540 // Check that the first argument to strchr is a constant array of sbyte.
Chris Lattner0cd3a232007-04-07 21:58:02 +0000541 std::string Str;
542 if (!GetConstantStringInfo(CI->getOperand(1), Str))
Reid Spencer21506ff2005-05-03 07:23:44 +0000543 return false;
544
Chris Lattner6897fe52007-04-06 23:38:55 +0000545 // If the second operand is not constant, just lower this to memchr since we
546 // know the length of the input string.
547 ConstantInt *CSI = dyn_cast<ConstantInt>(CI->getOperand(2));
Reid Spencerc5b206b2006-12-31 05:48:39 +0000548 if (!CSI) {
Chris Lattner6897fe52007-04-06 23:38:55 +0000549 Value *Args[3] = {
550 CI->getOperand(1),
551 CI->getOperand(2),
Chris Lattner0cd3a232007-04-07 21:58:02 +0000552 ConstantInt::get(SLC.getIntPtrType(), Str.size()+1)
Chris Lattnerc18470c2007-02-13 05:58:53 +0000553 };
Gabor Greif051a9502008-04-06 20:25:17 +0000554 return ReplaceCallWith(CI, CallInst::Create(SLC.get_memchr(), Args, Args + 3,
555 CI->getName(), CI));
Reid Spencer21506ff2005-05-03 07:23:44 +0000556 }
557
Chris Lattner0cd3a232007-04-07 21:58:02 +0000558 // strchr can find the nul character.
559 Str += '\0';
Chris Lattner6897fe52007-04-06 23:38:55 +0000560
Chris Lattner0cd3a232007-04-07 21:58:02 +0000561 // Get the character we're looking for
562 char CharValue = CSI->getSExtValue();
563
Reid Spencer21506ff2005-05-03 07:23:44 +0000564 // Compute the offset
Chris Lattner6897fe52007-04-06 23:38:55 +0000565 uint64_t i = 0;
566 while (1) {
Chris Lattner0cd3a232007-04-07 21:58:02 +0000567 if (i == Str.size()) // Didn't find the char. strchr returns null.
568 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
569 // Did we find our match?
570 if (Str[i] == CharValue)
571 break;
Chris Lattner6897fe52007-04-06 23:38:55 +0000572 ++i;
Reid Spencer21506ff2005-05-03 07:23:44 +0000573 }
574
Chris Lattner6897fe52007-04-06 23:38:55 +0000575 // strchr(s+n,c) -> gep(s+n+i,c)
Reid Spencer21506ff2005-05-03 07:23:44 +0000576 // (if c is a constant integer and s is a constant string)
Chris Lattner6897fe52007-04-06 23:38:55 +0000577 Value *Idx = ConstantInt::get(Type::Int64Ty, i);
Gabor Greif051a9502008-04-06 20:25:17 +0000578 Value *GEP = GetElementPtrInst::Create(CI->getOperand(1), Idx,
579 CI->getOperand(1)->getName() +
580 ".strchr", CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000581 return ReplaceCallWith(CI, GEP);
Reid Spencer21506ff2005-05-03 07:23:44 +0000582 }
583} StrChrOptimizer;
584
Jeff Cohen00b168892005-07-27 06:12:32 +0000585/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000586/// function. It optimizes out cases where one or both arguments are constant
587/// and the result can be determined statically.
588/// @brief Simplify the strcmp library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000589struct VISIBILITY_HIDDEN StrCmpOptimization : public LibCallOptimization {
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000590public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000591 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer789082a2005-05-07 20:15:59 +0000592 "Number of 'strcmp' calls simplified") {}
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000593
Chris Lattner93751352005-05-20 22:22:25 +0000594 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000595 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattnerceb375e2007-04-07 00:01:51 +0000596 const FunctionType *FT = F->getFunctionType();
597 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 2 &&
598 FT->getParamType(0) == FT->getParamType(1) &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000599 FT->getParamType(0) == PointerType::getUnqual(Type::Int8Ty);
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000600 }
601
Chris Lattner93751352005-05-20 22:22:25 +0000602 /// @brief Perform the strcmp optimization
Chris Lattnerceb375e2007-04-07 00:01:51 +0000603 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000604 // First, check to see if src and destination are the same. If they are,
Reid Spencer63a75132005-04-30 06:45:47 +0000605 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen00b168892005-07-27 06:12:32 +0000606 // because the call is a no-op.
Chris Lattnerceb375e2007-04-07 00:01:51 +0000607 Value *Str1P = CI->getOperand(1);
608 Value *Str2P = CI->getOperand(2);
Chris Lattner679d7182007-04-07 00:42:32 +0000609 if (Str1P == Str2P) // strcmp(x,x) -> 0
610 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000611
Chris Lattner0cd3a232007-04-07 21:58:02 +0000612 std::string Str1;
613 if (!GetConstantStringInfo(Str1P, Str1))
614 return false;
615 if (Str1.empty()) {
Chris Lattnerceb375e2007-04-07 00:01:51 +0000616 // strcmp("", x) -> *x
617 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
618 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000619 return ReplaceCallWith(CI, V);
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000620 }
621
Chris Lattner0cd3a232007-04-07 21:58:02 +0000622 std::string Str2;
623 if (!GetConstantStringInfo(Str2P, Str2))
624 return false;
625 if (Str2.empty()) {
Chris Lattnerceb375e2007-04-07 00:01:51 +0000626 // strcmp(x,"") -> *x
627 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
628 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000629 return ReplaceCallWith(CI, V);
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000630 }
631
Chris Lattner0cd3a232007-04-07 21:58:02 +0000632 // strcmp(x, y) -> cnst (if both x and y are constant strings)
633 int R = strcmp(Str1.c_str(), Str2.c_str());
634 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
Reid Spencer9f56b1f2005-04-30 03:17:54 +0000635 }
636} StrCmpOptimizer;
637
Jeff Cohen00b168892005-07-27 06:12:32 +0000638/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000639/// function. It optimizes out cases where one or both arguments are constant
640/// and the result can be determined statically.
641/// @brief Simplify the strncmp library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000642struct VISIBILITY_HIDDEN StrNCmpOptimization : public LibCallOptimization {
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000643public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000644 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer789082a2005-05-07 20:15:59 +0000645 "Number of 'strncmp' calls simplified") {}
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000646
Chris Lattner93751352005-05-20 22:22:25 +0000647 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000648 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
649 const FunctionType *FT = F->getFunctionType();
650 return FT->getReturnType() == Type::Int32Ty && FT->getNumParams() == 3 &&
651 FT->getParamType(0) == FT->getParamType(1) &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000652 FT->getParamType(0) == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000653 isa<IntegerType>(FT->getParamType(2));
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000654 return false;
655 }
656
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000657 /// @brief Perform the strncmp optimization
658 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000659 // First, check to see if src and destination are the same. If they are,
660 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen00b168892005-07-27 06:12:32 +0000661 // because the call is a no-op.
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000662 Value *Str1P = CI->getOperand(1);
663 Value *Str2P = CI->getOperand(2);
Chris Lattner0cd3a232007-04-07 21:58:02 +0000664 if (Str1P == Str2P) // strncmp(x,x, n) -> 0
Chris Lattner679d7182007-04-07 00:42:32 +0000665 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000666
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000667 // Check the length argument, if it is Constant zero then the strings are
668 // considered equal.
Chris Lattnerdb895b82007-04-07 00:26:18 +0000669 uint64_t Length;
670 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getOperand(3)))
671 Length = LengthArg->getZExtValue();
672 else
673 return false;
674
Chris Lattner0cd3a232007-04-07 21:58:02 +0000675 if (Length == 0) // strncmp(x,y,0) -> 0
Chris Lattner679d7182007-04-07 00:42:32 +0000676 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000677
Chris Lattner0cd3a232007-04-07 21:58:02 +0000678 std::string Str1;
679 if (!GetConstantStringInfo(Str1P, Str1))
680 return false;
681 if (Str1.empty()) {
682 // strncmp("", x, n) -> *x
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000683 Value *V = new LoadInst(Str2P, CI->getName()+".load", CI);
684 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000685 return ReplaceCallWith(CI, V);
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000686 }
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000687
Chris Lattner0cd3a232007-04-07 21:58:02 +0000688 std::string Str2;
689 if (!GetConstantStringInfo(Str2P, Str2))
690 return false;
691 if (Str2.empty()) {
692 // strncmp(x, "", n) -> *x
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000693 Value *V = new LoadInst(Str1P, CI->getName()+".load", CI);
694 V = new ZExtInst(V, CI->getType(), CI->getName()+".int", CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000695 return ReplaceCallWith(CI, V);
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000696 }
Chris Lattner7b50c8f2007-04-07 00:06:57 +0000697
Chris Lattner0cd3a232007-04-07 21:58:02 +0000698 // strncmp(x, y, n) -> cnst (if both x and y are constant strings)
699 int R = strncmp(Str1.c_str(), Str2.c_str(), Length);
700 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), R));
Reid Spencere6ec8cc2005-05-03 01:43:45 +0000701 }
702} StrNCmpOptimizer;
703
Jeff Cohen00b168892005-07-27 06:12:32 +0000704/// This LibCallOptimization will simplify a call to the strcpy library
705/// function. Two optimizations are possible:
Reid Spencera16d5a52005-04-27 07:54:40 +0000706/// (1) If src and dest are the same and not volatile, just return dest
707/// (2) If the src is a constant then we can convert to llvm.memmove
708/// @brief Simplify the strcpy library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000709struct VISIBILITY_HIDDEN StrCpyOptimization : public LibCallOptimization {
Reid Spencera16d5a52005-04-27 07:54:40 +0000710public:
Reid Spencer9974dda2005-05-03 02:54:54 +0000711 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer789082a2005-05-07 20:15:59 +0000712 "Number of 'strcpy' calls simplified") {}
Reid Spencera16d5a52005-04-27 07:54:40 +0000713
714 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattnerdb895b82007-04-07 00:26:18 +0000715 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
716 const FunctionType *FT = F->getFunctionType();
717 return FT->getNumParams() == 2 &&
718 FT->getParamType(0) == FT->getParamType(1) &&
719 FT->getReturnType() == FT->getParamType(0) &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000720 FT->getParamType(0) == PointerType::getUnqual(Type::Int8Ty);
Reid Spencera16d5a52005-04-27 07:54:40 +0000721 }
722
723 /// @brief Perform the strcpy optimization
Chris Lattnerdb895b82007-04-07 00:26:18 +0000724 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencera16d5a52005-04-27 07:54:40 +0000725 // First, check to see if src and destination are the same. If they are,
726 // then the optimization is to replace the CallInst with the destination
Jeff Cohen00b168892005-07-27 06:12:32 +0000727 // because the call is a no-op. Note that this corresponds to the
Reid Spencera16d5a52005-04-27 07:54:40 +0000728 // degenerate strcpy(X,X) case which should have "undefined" results
729 // according to the C specification. However, it occurs sometimes and
730 // we optimize it as a no-op.
Chris Lattnerdb895b82007-04-07 00:26:18 +0000731 Value *Dst = CI->getOperand(1);
732 Value *Src = CI->getOperand(2);
733 if (Dst == Src) {
734 // strcpy(x, x) -> x
Chris Lattner679d7182007-04-07 00:42:32 +0000735 return ReplaceCallWith(CI, Dst);
Reid Spencera16d5a52005-04-27 07:54:40 +0000736 }
Chris Lattnerdb895b82007-04-07 00:26:18 +0000737
738 // Get the length of the constant string referenced by the Src operand.
Chris Lattner0cd3a232007-04-07 21:58:02 +0000739 std::string SrcStr;
740 if (!GetConstantStringInfo(Src, SrcStr))
Reid Spencera16d5a52005-04-27 07:54:40 +0000741 return false;
Chris Lattner0cd3a232007-04-07 21:58:02 +0000742
Reid Spencera16d5a52005-04-27 07:54:40 +0000743 // If the constant string's length is zero we can optimize this by just
744 // doing a store of 0 at the first byte of the destination
Dan Gohman30359592008-01-29 13:02:09 +0000745 if (SrcStr.empty()) {
Chris Lattnerdb895b82007-04-07 00:26:18 +0000746 new StoreInst(ConstantInt::get(Type::Int8Ty, 0), Dst, CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000747 return ReplaceCallWith(CI, Dst);
Reid Spencera16d5a52005-04-27 07:54:40 +0000748 }
749
Reid Spencera16d5a52005-04-27 07:54:40 +0000750 // We have enough information to now generate the memcpy call to
751 // do the concatenation for us.
Chris Lattnerdb895b82007-04-07 00:26:18 +0000752 Value *MemcpyOps[] = {
Chris Lattner0cd3a232007-04-07 21:58:02 +0000753 Dst, Src, // Pass length including nul byte.
754 ConstantInt::get(SLC.getIntPtrType(), SrcStr.size()+1),
Chris Lattnerc18470c2007-02-13 05:58:53 +0000755 ConstantInt::get(Type::Int32Ty, 1) // alignment
756 };
Gabor Greif051a9502008-04-06 20:25:17 +0000757 CallInst::Create(SLC.get_memcpy(), MemcpyOps, MemcpyOps + 4, "", CI);
Reid Spencera16d5a52005-04-27 07:54:40 +0000758
Chris Lattner679d7182007-04-07 00:42:32 +0000759 return ReplaceCallWith(CI, Dst);
Reid Spencera16d5a52005-04-27 07:54:40 +0000760 }
761} StrCpyOptimizer;
762
Jeff Cohen00b168892005-07-27 06:12:32 +0000763/// This LibCallOptimization will simplify a call to the strlen library
764/// function by replacing it with a constant value if the string provided to
Reid Spencer716f49e2005-04-27 21:29:20 +0000765/// it is a constant array.
Reid Spencer912401c2005-04-26 05:24:00 +0000766/// @brief Simplify the strlen library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000767struct VISIBILITY_HIDDEN StrLenOptimization : public LibCallOptimization {
Reid Spencer9974dda2005-05-03 02:54:54 +0000768 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer789082a2005-05-07 20:15:59 +0000769 "Number of 'strlen' calls simplified") {}
Reid Spencer912401c2005-04-26 05:24:00 +0000770
771 /// @brief Make sure that the "strlen" function has the right prototype
Chris Lattnerdb895b82007-04-07 00:26:18 +0000772 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner71bf3e22007-04-07 01:02:00 +0000773 const FunctionType *FT = F->getFunctionType();
774 return FT->getNumParams() == 1 &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000775 FT->getParamType(0) == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner71bf3e22007-04-07 01:02:00 +0000776 isa<IntegerType>(FT->getReturnType());
Reid Spencer912401c2005-04-26 05:24:00 +0000777 }
778
779 /// @brief Perform the strlen optimization
Chris Lattner71bf3e22007-04-07 01:02:00 +0000780 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer789082a2005-05-07 20:15:59 +0000781 // Make sure we're dealing with an sbyte* here.
Chris Lattner0cd3a232007-04-07 21:58:02 +0000782 Value *Src = CI->getOperand(1);
Reid Spencer789082a2005-05-07 20:15:59 +0000783
784 // Does the call to strlen have exactly one use?
Chris Lattner71bf3e22007-04-07 01:02:00 +0000785 if (CI->hasOneUse()) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000786 // Is that single use a icmp operator?
Chris Lattner71bf3e22007-04-07 01:02:00 +0000787 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(CI->use_back()))
Reid Spencer789082a2005-05-07 20:15:59 +0000788 // Is it compared against a constant integer?
Chris Lattner71bf3e22007-04-07 01:02:00 +0000789 if (ConstantInt *Cst = dyn_cast<ConstantInt>(Cmp->getOperand(1))) {
Reid Spencer789082a2005-05-07 20:15:59 +0000790 // If its compared against length 0 with == or !=
Chris Lattner71bf3e22007-04-07 01:02:00 +0000791 if (Cst->getZExtValue() == 0 && Cmp->isEquality()) {
Reid Spencer789082a2005-05-07 20:15:59 +0000792 // strlen(x) != 0 -> *x != 0
793 // strlen(x) == 0 -> *x == 0
Chris Lattner0cd3a232007-04-07 21:58:02 +0000794 Value *V = new LoadInst(Src, Src->getName()+".first", CI);
Chris Lattner71bf3e22007-04-07 01:02:00 +0000795 V = new ICmpInst(Cmp->getPredicate(), V,
796 ConstantInt::get(Type::Int8Ty, 0),
797 Cmp->getName()+".strlen", CI);
798 Cmp->replaceAllUsesWith(V);
799 Cmp->eraseFromParent();
800 return ReplaceCallWith(CI, 0); // no uses.
Reid Spencer789082a2005-05-07 20:15:59 +0000801 }
802 }
Chris Lattner71bf3e22007-04-07 01:02:00 +0000803 }
Reid Spencer789082a2005-05-07 20:15:59 +0000804
805 // Get the length of the constant string operand
Chris Lattner0cd3a232007-04-07 21:58:02 +0000806 std::string Str;
807 if (!GetConstantStringInfo(Src, Str))
Reid Spencer912401c2005-04-26 05:24:00 +0000808 return false;
Chris Lattner0cd3a232007-04-07 21:58:02 +0000809
Reid Spencer789082a2005-05-07 20:15:59 +0000810 // strlen("xyz") -> 3 (for example)
Chris Lattner0cd3a232007-04-07 21:58:02 +0000811 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), Str.size()));
Reid Spencer912401c2005-04-26 05:24:00 +0000812 }
813} StrLenOptimizer;
814
Chris Lattnerc3300692005-09-29 04:54:20 +0000815/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
816/// is equal or not-equal to zero.
817static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
818 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
819 UI != E; ++UI) {
Chris Lattneref4fd352007-04-07 01:03:46 +0000820 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
821 if (IC->isEquality())
822 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
823 if (C->isNullValue())
824 continue;
Chris Lattnerc3300692005-09-29 04:54:20 +0000825 // Unknown instruction.
826 return false;
827 }
828 return true;
829}
830
831/// This memcmpOptimization will simplify a call to the memcmp library
832/// function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000833struct VISIBILITY_HIDDEN memcmpOptimization : public LibCallOptimization {
Chris Lattnerc3300692005-09-29 04:54:20 +0000834 /// @brief Default Constructor
835 memcmpOptimization()
836 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
837
838 /// @brief Make sure that the "memcmp" function has the right prototype
839 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
840 Function::const_arg_iterator AI = F->arg_begin();
841 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
842 if (!isa<PointerType>((++AI)->getType())) return false;
Chris Lattner42a75512007-01-15 02:27:26 +0000843 if (!(++AI)->getType()->isInteger()) return false;
844 if (!F->getReturnType()->isInteger()) return false;
Chris Lattnerc3300692005-09-29 04:54:20 +0000845 return true;
846 }
847
848 /// Because of alignment and instruction information that we don't have, we
849 /// leave the bulk of this to the code generators.
850 ///
851 /// Note that we could do much more if we could force alignment on otherwise
852 /// small aligned allocas, or if we could indicate that loads have a small
853 /// alignment.
854 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
855 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
856
857 // If the two operands are the same, return zero.
858 if (LHS == RHS) {
859 // memcmp(s,s,x) -> 0
Chris Lattner679d7182007-04-07 00:42:32 +0000860 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Chris Lattnerc3300692005-09-29 04:54:20 +0000861 }
862
863 // Make sure we have a constant length.
864 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
865 if (!LenC) return false;
Reid Spencerb83eb642006-10-20 07:07:24 +0000866 uint64_t Len = LenC->getZExtValue();
Chris Lattnerc3300692005-09-29 04:54:20 +0000867
868 // If the length is zero, this returns 0.
869 switch (Len) {
870 case 0:
871 // memcmp(s1,s2,0) -> 0
Chris Lattner679d7182007-04-07 00:42:32 +0000872 return ReplaceCallWith(CI, Constant::getNullValue(CI->getType()));
Chris Lattnerc3300692005-09-29 04:54:20 +0000873 case 1: {
874 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000875 const Type *UCharPtr = PointerType::getUnqual(Type::Int8Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +0000876 CastInst *Op1Cast = CastInst::create(
877 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
878 CastInst *Op2Cast = CastInst::create(
879 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc3300692005-09-29 04:54:20 +0000880 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
881 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
882 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
883 if (RV->getType() != CI->getType())
Reid Spencer7b06bd52006-12-13 00:50:17 +0000884 RV = CastInst::createIntegerCast(RV, CI->getType(), false,
885 RV->getName(), CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000886 return ReplaceCallWith(CI, RV);
Chris Lattnerc3300692005-09-29 04:54:20 +0000887 }
888 case 2:
889 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
890 // TODO: IF both are aligned, use a short load/compare.
891
892 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000893 const Type *UCharPtr = PointerType::getUnqual(Type::Int8Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +0000894 CastInst *Op1Cast = CastInst::create(
895 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
896 CastInst *Op2Cast = CastInst::create(
897 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc3300692005-09-29 04:54:20 +0000898 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
899 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
900 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
901 CI->getName()+".d1", CI);
Reid Spencerc5b206b2006-12-31 05:48:39 +0000902 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
Gabor Greif051a9502008-04-06 20:25:17 +0000903 Value *G1 = GetElementPtrInst::Create(Op1Cast, One, "next1v", CI);
904 Value *G2 = GetElementPtrInst::Create(Op2Cast, One, "next2v", CI);
Chris Lattnerc3300692005-09-29 04:54:20 +0000905 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattner2144c252006-05-12 23:35:26 +0000906 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc3300692005-09-29 04:54:20 +0000907 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
908 CI->getName()+".d1", CI);
909 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
910 if (Or->getType() != CI->getType())
Reid Spencer7b06bd52006-12-13 00:50:17 +0000911 Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/,
912 Or->getName(), CI);
Chris Lattner679d7182007-04-07 00:42:32 +0000913 return ReplaceCallWith(CI, Or);
Chris Lattnerc3300692005-09-29 04:54:20 +0000914 }
915 break;
916 default:
917 break;
918 }
919
Chris Lattnerc3300692005-09-29 04:54:20 +0000920 return false;
921 }
922} memcmpOptimizer;
923
Chris Lattner0818ea82008-01-28 04:41:43 +0000924/// This LibCallOptimization will simplify a call to the memcpy library
925/// function. It simply converts them into calls to llvm.memcpy.*;
926/// the resulting call should be optimized later.
927/// @brief Simplify the memcpy library function.
928struct VISIBILITY_HIDDEN MemCpyOptimization : public LibCallOptimization {
929public:
930 MemCpyOptimization() : LibCallOptimization("memcpy",
931 "Number of 'memcpy' calls simplified") {}
932
933 /// @brief Make sure that the "memcpy" function has the right prototype
934 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
935 const FunctionType *FT = F->getFunctionType();
936 const Type* voidPtr = PointerType::getUnqual(Type::Int8Ty);
937 return FT->getReturnType() == voidPtr && FT->getNumParams() == 3 &&
938 FT->getParamType(0) == voidPtr &&
939 FT->getParamType(1) == voidPtr &&
940 FT->getParamType(2) == SLC.getIntPtrType();
941 }
942
943 /// @brief Perform the memcpy optimization
944 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
945 Value *MemcpyOps[] = {
946 CI->getOperand(1), CI->getOperand(2), CI->getOperand(3),
947 ConstantInt::get(Type::Int32Ty, 1) // align = 1 always.
948 };
Gabor Greif051a9502008-04-06 20:25:17 +0000949 CallInst::Create(SLC.get_memcpy(), MemcpyOps, MemcpyOps + 4, "", CI);
Chris Lattner0818ea82008-01-28 04:41:43 +0000950 // memcpy always returns the destination
951 return ReplaceCallWith(CI, CI->getOperand(1));
952 }
953} MemCpyOptimizer;
Chris Lattnerc3300692005-09-29 04:54:20 +0000954
Jeff Cohen00b168892005-07-27 06:12:32 +0000955/// This LibCallOptimization will simplify a call to the memcpy library
956/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer716f49e2005-04-27 21:29:20 +0000957/// bytes depending on the length of the string and the alignment. Additional
958/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencer6cc03112005-04-25 21:11:48 +0000959/// @brief Simplify the memcpy library function.
Reid Spencer9133fe22007-02-05 23:32:05 +0000960struct VISIBILITY_HIDDEN LLVMMemCpyMoveOptzn : public LibCallOptimization {
Chris Lattneraecb0622006-03-03 01:30:23 +0000961 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
962 : LibCallOptimization(fname, desc) {}
Reid Spencer6cc03112005-04-25 21:11:48 +0000963
964 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000965 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000966 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer8f132612005-04-26 23:02:16 +0000967 return (f->arg_size() == 4);
Reid Spencer6cc03112005-04-25 21:11:48 +0000968 }
969
Reid Spencer20754ac2005-04-26 07:45:18 +0000970 /// Because of alignment and instruction information that we don't have, we
971 /// leave the bulk of this to the code generators. The optimization here just
972 /// deals with a few degenerate cases where the length of the string and the
973 /// alignment match the sizes of our intrinsic types so we can do a load and
974 /// store instead of the memcpy call.
975 /// @brief Perform the memcpy optimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +0000976 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer43fd4d02005-04-26 19:55:57 +0000977 // Make sure we have constant int values to work with
978 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
979 if (!LEN)
980 return false;
981 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
982 if (!ALIGN)
983 return false;
984
985 // If the length is larger than the alignment, we can't optimize
Reid Spencerb83eb642006-10-20 07:07:24 +0000986 uint64_t len = LEN->getZExtValue();
987 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer21506ff2005-05-03 07:23:44 +0000988 if (alignment == 0)
989 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000990 if (len > alignment)
Reid Spencer20754ac2005-04-26 07:45:18 +0000991 return false;
992
Reid Spencer3f7d8c62005-04-27 17:46:54 +0000993 // Get the type we will cast to, based on size of the string
Reid Spencer20754ac2005-04-26 07:45:18 +0000994 Value* dest = ci->getOperand(1);
995 Value* src = ci->getOperand(2);
Reid Spencer3c628622007-01-07 21:45:41 +0000996 const Type* castType = 0;
Chris Lattner679d7182007-04-07 00:42:32 +0000997 switch (len) {
Reid Spencerfcbdb9c2005-04-26 19:13:17 +0000998 case 0:
Chris Lattner679d7182007-04-07 00:42:32 +0000999 // memcpy(d,s,0,a) -> d
1000 return ReplaceCallWith(ci, 0);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001001 case 1: castType = Type::Int8Ty; break;
1002 case 2: castType = Type::Int16Ty; break;
1003 case 4: castType = Type::Int32Ty; break;
1004 case 8: castType = Type::Int64Ty; break;
Reid Spencer20754ac2005-04-26 07:45:18 +00001005 default:
1006 return false;
1007 }
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001008
1009 // Cast source and dest to the right sized primitive and then load/store
Reid Spencer3da59db2006-11-27 01:05:10 +00001010 CastInst* SrcCast = CastInst::create(Instruction::BitCast,
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001011 src, PointerType::getUnqual(castType), src->getName()+".cast", ci);
Reid Spencer3da59db2006-11-27 01:05:10 +00001012 CastInst* DestCast = CastInst::create(Instruction::BitCast,
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001013 dest, PointerType::getUnqual(castType),dest->getName()+".cast", ci);
Reid Spencer3f7d8c62005-04-27 17:46:54 +00001014 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencer3ed469c2006-11-02 20:25:50 +00001015 new StoreInst(LI, DestCast, ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001016 return ReplaceCallWith(ci, 0);
Reid Spencer6cc03112005-04-25 21:11:48 +00001017 }
Chris Lattneraecb0622006-03-03 01:30:23 +00001018};
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001019
Chris Lattneraecb0622006-03-03 01:30:23 +00001020/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1021/// functions.
1022LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1023 "Number of 'llvm.memcpy' calls simplified");
1024LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1025 "Number of 'llvm.memcpy' calls simplified");
1026LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1027 "Number of 'llvm.memmove' calls simplified");
1028LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1029 "Number of 'llvm.memmove' calls simplified");
Reid Spencer21506ff2005-05-03 07:23:44 +00001030
Jeff Cohen00b168892005-07-27 06:12:32 +00001031/// This LibCallOptimization will simplify a call to the memset library
1032/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1033/// bytes depending on the length argument.
Reid Spencer9133fe22007-02-05 23:32:05 +00001034struct VISIBILITY_HIDDEN LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer21506ff2005-05-03 07:23:44 +00001035 /// @brief Default Constructor
Chris Lattneraecb0622006-03-03 01:30:23 +00001036 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer21506ff2005-05-03 07:23:44 +00001037 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer21506ff2005-05-03 07:23:44 +00001038
1039 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001040 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer21506ff2005-05-03 07:23:44 +00001041 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001042 return F->arg_size() == 4;
Reid Spencer21506ff2005-05-03 07:23:44 +00001043 }
1044
1045 /// Because of alignment and instruction information that we don't have, we
1046 /// leave the bulk of this to the code generators. The optimization here just
1047 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen00b168892005-07-27 06:12:32 +00001048 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer21506ff2005-05-03 07:23:44 +00001049 /// store instead of the memcpy call. Other calls are transformed into the
1050 /// llvm.memset intrinsic.
1051 /// @brief Perform the memset optimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001052 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer21506ff2005-05-03 07:23:44 +00001053 // Make sure we have constant int values to work with
1054 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1055 if (!LEN)
1056 return false;
1057 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1058 if (!ALIGN)
1059 return false;
1060
1061 // Extract the length and alignment
Reid Spencerb83eb642006-10-20 07:07:24 +00001062 uint64_t len = LEN->getZExtValue();
1063 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer21506ff2005-05-03 07:23:44 +00001064
1065 // Alignment 0 is identity for alignment 1
1066 if (alignment == 0)
1067 alignment = 1;
1068
1069 // If the length is zero, this is a no-op
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001070 if (len == 0) {
Reid Spencer21506ff2005-05-03 07:23:44 +00001071 // memset(d,c,0,a) -> noop
Chris Lattner679d7182007-04-07 00:42:32 +00001072 return ReplaceCallWith(ci, 0);
Reid Spencer21506ff2005-05-03 07:23:44 +00001073 }
1074
1075 // If the length is larger than the alignment, we can't optimize
1076 if (len > alignment)
1077 return false;
1078
1079 // Make sure we have a constant ubyte to work with so we can extract
1080 // the value to be filled.
Reid Spencerb83eb642006-10-20 07:07:24 +00001081 ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencer21506ff2005-05-03 07:23:44 +00001082 if (!FILL)
1083 return false;
Reid Spencerc5b206b2006-12-31 05:48:39 +00001084 if (FILL->getType() != Type::Int8Ty)
Reid Spencer21506ff2005-05-03 07:23:44 +00001085 return false;
1086
1087 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen00b168892005-07-27 06:12:32 +00001088
Reid Spencer21506ff2005-05-03 07:23:44 +00001089 // Extract the fill character
Reid Spencerb83eb642006-10-20 07:07:24 +00001090 uint64_t fill_char = FILL->getZExtValue();
Reid Spencer21506ff2005-05-03 07:23:44 +00001091 uint64_t fill_value = fill_char;
1092
1093 // Get the type we will cast to, based on size of memory area to fill, and
1094 // and the value we will store there.
1095 Value* dest = ci->getOperand(1);
Reid Spencer3c628622007-01-07 21:45:41 +00001096 const Type* castType = 0;
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001097 switch (len) {
Jeff Cohen00b168892005-07-27 06:12:32 +00001098 case 1:
Reid Spencerc5b206b2006-12-31 05:48:39 +00001099 castType = Type::Int8Ty;
Reid Spencer21506ff2005-05-03 07:23:44 +00001100 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001101 case 2:
Reid Spencerc5b206b2006-12-31 05:48:39 +00001102 castType = Type::Int16Ty;
Reid Spencer21506ff2005-05-03 07:23:44 +00001103 fill_value |= fill_char << 8;
1104 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001105 case 4:
Reid Spencerc5b206b2006-12-31 05:48:39 +00001106 castType = Type::Int32Ty;
Reid Spencer21506ff2005-05-03 07:23:44 +00001107 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1108 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001109 case 8:
Reid Spencerc5b206b2006-12-31 05:48:39 +00001110 castType = Type::Int64Ty;
Reid Spencer21506ff2005-05-03 07:23:44 +00001111 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1112 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1113 fill_value |= fill_char << 56;
1114 break;
1115 default:
1116 return false;
1117 }
1118
1119 // Cast dest to the right sized primitive and then load/store
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001120 CastInst* DestCast = new BitCastInst(dest, PointerType::getUnqual(castType),
Reid Spencer7b06bd52006-12-13 00:50:17 +00001121 dest->getName()+".cast", ci);
Reid Spencerb83eb642006-10-20 07:07:24 +00001122 new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001123 return ReplaceCallWith(ci, 0);
Reid Spencer21506ff2005-05-03 07:23:44 +00001124 }
Chris Lattneraecb0622006-03-03 01:30:23 +00001125};
1126
1127LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1128LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1129
Reid Spencerfcbdb9c2005-04-26 19:13:17 +00001130
Jeff Cohen00b168892005-07-27 06:12:32 +00001131/// This LibCallOptimization will simplify calls to the "pow" library
1132/// function. It looks for cases where the result of pow is well known and
Reid Spencerff5525d2005-04-29 09:39:47 +00001133/// substitutes the appropriate value.
1134/// @brief Simplify the pow library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001135struct VISIBILITY_HIDDEN PowOptimization : public LibCallOptimization {
Reid Spencerff5525d2005-04-29 09:39:47 +00001136public:
1137 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001138 PowOptimization() : LibCallOptimization("pow",
Reid Spencer789082a2005-05-07 20:15:59 +00001139 "Number of 'pow' calls simplified") {}
Reid Spencer9974dda2005-05-03 02:54:54 +00001140
Reid Spencerff5525d2005-04-29 09:39:47 +00001141 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001142 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerff5525d2005-04-29 09:39:47 +00001143 // Just make sure this has 2 arguments
1144 return (f->arg_size() == 2);
1145 }
1146
1147 /// @brief Perform the pow optimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001148 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencerff5525d2005-04-29 09:39:47 +00001149 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
Dale Johannesen4292d1c2007-09-28 18:06:58 +00001150 if (Ty!=Type::FloatTy && Ty!=Type::DoubleTy)
1151 return false; // FIXME long double not yet supported
Reid Spencerff5525d2005-04-29 09:39:47 +00001152 Value* base = ci->getOperand(1);
1153 Value* expn = ci->getOperand(2);
1154 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
Dale Johannesen43421b32007-09-06 18:13:44 +00001155 if (Op1->isExactlyValue(1.0)) // pow(1.0,x) -> 1.0
1156 return ReplaceCallWith(ci, ConstantFP::get(Ty,
1157 Ty==Type::FloatTy ? APFloat(1.0f) : APFloat(1.0)));
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001158 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Dale Johannesen43421b32007-09-06 18:13:44 +00001159 if (Op2->getValueAPF().isZero()) {
Reid Spencerff5525d2005-04-29 09:39:47 +00001160 // pow(x,0.0) -> 1.0
Dale Johannesen43421b32007-09-06 18:13:44 +00001161 return ReplaceCallWith(ci, ConstantFP::get(Ty,
1162 Ty==Type::FloatTy ? APFloat(1.0f) : APFloat(1.0)));
1163 } else if (Op2->isExactlyValue(0.5)) {
Reid Spencerff5525d2005-04-29 09:39:47 +00001164 // pow(x,0.5) -> sqrt(x)
Gabor Greif051a9502008-04-06 20:25:17 +00001165 CallInst* sqrt_inst = CallInst::Create(SLC.get_sqrt(), base,
1166 ci->getName()+".pow",ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001167 return ReplaceCallWith(ci, sqrt_inst);
Dale Johannesen43421b32007-09-06 18:13:44 +00001168 } else if (Op2->isExactlyValue(1.0)) {
Reid Spencerff5525d2005-04-29 09:39:47 +00001169 // pow(x,1.0) -> x
Chris Lattner679d7182007-04-07 00:42:32 +00001170 return ReplaceCallWith(ci, base);
Dale Johannesen43421b32007-09-06 18:13:44 +00001171 } else if (Op2->isExactlyValue(-1.0)) {
Reid Spencerff5525d2005-04-29 09:39:47 +00001172 // pow(x,-1.0) -> 1.0/x
Chris Lattner679d7182007-04-07 00:42:32 +00001173 Value *div_inst =
Dale Johannesen43421b32007-09-06 18:13:44 +00001174 BinaryOperator::createFDiv(ConstantFP::get(Ty,
1175 Ty==Type::FloatTy ? APFloat(1.0f) : APFloat(1.0)),
1176 base, ci->getName()+".pow", ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001177 return ReplaceCallWith(ci, div_inst);
Reid Spencerff5525d2005-04-29 09:39:47 +00001178 }
1179 }
1180 return false; // opt failed
1181 }
1182} PowOptimizer;
1183
Evan Cheng21abac22006-06-16 08:36:35 +00001184/// This LibCallOptimization will simplify calls to the "printf" library
1185/// function. It looks for cases where the result of printf is not used and the
1186/// operation can be reduced to something simpler.
1187/// @brief Simplify the printf library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001188struct VISIBILITY_HIDDEN PrintfOptimization : public LibCallOptimization {
Evan Cheng21abac22006-06-16 08:36:35 +00001189public:
1190 /// @brief Default Constructor
1191 PrintfOptimization() : LibCallOptimization("printf",
1192 "Number of 'printf' calls simplified") {}
1193
1194 /// @brief Make sure that the "printf" function has the right prototype
Chris Lattner045af542007-04-07 01:18:36 +00001195 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner35b9b492007-04-14 01:17:48 +00001196 // Just make sure this has at least 1 argument and returns an integer or
1197 // void type.
1198 const FunctionType *FT = F->getFunctionType();
1199 return FT->getNumParams() >= 1 &&
1200 (isa<IntegerType>(FT->getReturnType()) ||
1201 FT->getReturnType() == Type::VoidTy);
Evan Cheng21abac22006-06-16 08:36:35 +00001202 }
1203
1204 /// @brief Perform the printf optimization.
Chris Lattner045af542007-04-07 01:18:36 +00001205 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Evan Cheng21abac22006-06-16 08:36:35 +00001206 // All the optimizations depend on the length of the first argument and the
1207 // fact that it is a constant string array. Check that now
Chris Lattner0cd3a232007-04-07 21:58:02 +00001208 std::string FormatStr;
1209 if (!GetConstantStringInfo(CI->getOperand(1), FormatStr))
Evan Cheng21abac22006-06-16 08:36:35 +00001210 return false;
Chris Lattner35b9b492007-04-14 01:17:48 +00001211
1212 // If this is a simple constant string with no format specifiers that ends
1213 // with a \n, turn it into a puts call.
1214 if (FormatStr.empty()) {
1215 // Tolerate printf's declared void.
1216 if (CI->use_empty()) return ReplaceCallWith(CI, 0);
1217 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
1218 }
1219
1220 if (FormatStr.size() == 1) {
1221 // Turn this into a putchar call, even if it is a %.
1222 Value *V = ConstantInt::get(Type::Int32Ty, FormatStr[0]);
Gabor Greif051a9502008-04-06 20:25:17 +00001223 CallInst::Create(SLC.get_putchar(), V, "", CI);
Chris Lattner35b9b492007-04-14 01:17:48 +00001224 if (CI->use_empty()) return ReplaceCallWith(CI, 0);
1225 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1226 }
Evan Cheng21abac22006-06-16 08:36:35 +00001227
Chris Lattner35b9b492007-04-14 01:17:48 +00001228 // Check to see if the format str is something like "foo\n", in which case
1229 // we convert it to a puts call. We don't allow it to contain any format
1230 // characters.
1231 if (FormatStr[FormatStr.size()-1] == '\n' &&
1232 FormatStr.find('%') == std::string::npos) {
1233 // Create a string literal with no \n on it. We expect the constant merge
1234 // pass to be run after this pass, to merge duplicate strings.
1235 FormatStr.erase(FormatStr.end()-1);
1236 Constant *Init = ConstantArray::get(FormatStr, true);
1237 Constant *GV = new GlobalVariable(Init->getType(), true,
1238 GlobalVariable::InternalLinkage,
1239 Init, "str",
1240 CI->getParent()->getParent()->getParent());
1241 // Cast GV to be a pointer to char.
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001242 GV = ConstantExpr::getBitCast(GV, PointerType::getUnqual(Type::Int8Ty));
Gabor Greif051a9502008-04-06 20:25:17 +00001243 CallInst::Create(SLC.get_puts(), GV, "", CI);
Chris Lattner35b9b492007-04-14 01:17:48 +00001244
1245 if (CI->use_empty()) return ReplaceCallWith(CI, 0);
Dale Johannesen0fcee062007-10-24 20:14:50 +00001246 // The return value from printf includes the \n we just removed, so +1.
Chris Lattner35b9b492007-04-14 01:17:48 +00001247 return ReplaceCallWith(CI,
Dale Johannesen0fcee062007-10-24 20:14:50 +00001248 ConstantInt::get(CI->getType(),
1249 FormatStr.size()+1));
Chris Lattner35b9b492007-04-14 01:17:48 +00001250 }
1251
1252
Chris Lattner0cd3a232007-04-07 21:58:02 +00001253 // Only support %c or "%s\n" for now.
1254 if (FormatStr.size() < 2 || FormatStr[0] != '%')
Chris Lattner045af542007-04-07 01:18:36 +00001255 return false;
Evan Cheng21abac22006-06-16 08:36:35 +00001256
1257 // Get the second character and switch on its value
Chris Lattner0cd3a232007-04-07 21:58:02 +00001258 switch (FormatStr[1]) {
Chris Lattner045af542007-04-07 01:18:36 +00001259 default: return false;
Chris Lattner0cd3a232007-04-07 21:58:02 +00001260 case 's':
Chris Lattner35b9b492007-04-14 01:17:48 +00001261 if (FormatStr != "%s\n" || CI->getNumOperands() < 3 ||
Chris Lattner0cd3a232007-04-07 21:58:02 +00001262 // TODO: could insert strlen call to compute string length.
1263 !CI->use_empty())
Evan Cheng21abac22006-06-16 08:36:35 +00001264 return false;
Chris Lattner045af542007-04-07 01:18:36 +00001265
1266 // printf("%s\n",str) -> puts(str)
Gabor Greif051a9502008-04-06 20:25:17 +00001267 CallInst::Create(SLC.get_puts(), CastToCStr(CI->getOperand(2), CI),
1268 CI->getName(), CI);
Chris Lattner045af542007-04-07 01:18:36 +00001269 return ReplaceCallWith(CI, 0);
Chris Lattner045af542007-04-07 01:18:36 +00001270 case 'c': {
1271 // printf("%c",c) -> putchar(c)
Chris Lattner35b9b492007-04-14 01:17:48 +00001272 if (FormatStr.size() != 2 || CI->getNumOperands() < 3)
Chris Lattner045af542007-04-07 01:18:36 +00001273 return false;
1274
1275 Value *V = CI->getOperand(2);
1276 if (!isa<IntegerType>(V->getType()) ||
Chris Lattner0cd3a232007-04-07 21:58:02 +00001277 cast<IntegerType>(V->getType())->getBitWidth() > 32)
Chris Lattner045af542007-04-07 01:18:36 +00001278 return false;
1279
Chris Lattner0cd3a232007-04-07 21:58:02 +00001280 V = CastInst::createZExtOrBitCast(V, Type::Int32Ty, CI->getName()+".int",
Chris Lattner045af542007-04-07 01:18:36 +00001281 CI);
Gabor Greif051a9502008-04-06 20:25:17 +00001282 CallInst::Create(SLC.get_putchar(), V, "", CI);
Chris Lattner0cd3a232007-04-07 21:58:02 +00001283 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
Chris Lattner045af542007-04-07 01:18:36 +00001284 }
1285 }
Evan Cheng21abac22006-06-16 08:36:35 +00001286 }
1287} PrintfOptimizer;
1288
Jeff Cohen00b168892005-07-27 06:12:32 +00001289/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencera1b43902005-05-02 23:59:26 +00001290/// function. It looks for cases where the result of fprintf is not used and the
1291/// operation can be reduced to something simpler.
Evan Cheng21abac22006-06-16 08:36:35 +00001292/// @brief Simplify the fprintf library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001293struct VISIBILITY_HIDDEN FPrintFOptimization : public LibCallOptimization {
Reid Spencera1b43902005-05-02 23:59:26 +00001294public:
1295 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001296 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer789082a2005-05-07 20:15:59 +00001297 "Number of 'fprintf' calls simplified") {}
Reid Spencera1b43902005-05-02 23:59:26 +00001298
Reid Spencera1b43902005-05-02 23:59:26 +00001299 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner3492cda2007-04-07 21:04:50 +00001300 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1301 const FunctionType *FT = F->getFunctionType();
1302 return FT->getNumParams() == 2 && // two fixed arguments.
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001303 FT->getParamType(1) == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner3492cda2007-04-07 21:04:50 +00001304 isa<PointerType>(FT->getParamType(0)) &&
1305 isa<IntegerType>(FT->getReturnType());
Reid Spencera1b43902005-05-02 23:59:26 +00001306 }
1307
1308 /// @brief Perform the fprintf optimization.
Chris Lattner3492cda2007-04-07 21:04:50 +00001309 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencera1b43902005-05-02 23:59:26 +00001310 // If the call has more than 3 operands, we can't optimize it
Chris Lattner3492cda2007-04-07 21:04:50 +00001311 if (CI->getNumOperands() != 3 && CI->getNumOperands() != 4)
Reid Spencera1b43902005-05-02 23:59:26 +00001312 return false;
1313
Chris Lattner73f5d422007-04-07 21:17:51 +00001314 // All the optimizations depend on the format string.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001315 std::string FormatStr;
1316 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
Reid Spencera1b43902005-05-02 23:59:26 +00001317 return false;
1318
Chris Lattner0cd3a232007-04-07 21:58:02 +00001319 // If this is just a format string, turn it into fwrite.
Chris Lattner3492cda2007-04-07 21:04:50 +00001320 if (CI->getNumOperands() == 3) {
Chris Lattner0cd3a232007-04-07 21:58:02 +00001321 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1322 if (FormatStr[i] == '%')
Chris Lattner3492cda2007-04-07 21:04:50 +00001323 return false; // we found a format specifier
Reid Spencera1b43902005-05-02 23:59:26 +00001324
Jeff Cohen00b168892005-07-27 06:12:32 +00001325 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Chris Lattner3492cda2007-04-07 21:04:50 +00001326 const Type *FILEty = CI->getOperand(1)->getType();
John Criswell1d231ec2005-06-29 15:03:18 +00001327
Chris Lattner3492cda2007-04-07 21:04:50 +00001328 Value *FWriteArgs[] = {
1329 CI->getOperand(2),
Chris Lattner0cd3a232007-04-07 21:58:02 +00001330 ConstantInt::get(SLC.getIntPtrType(), FormatStr.size()),
Chris Lattner3492cda2007-04-07 21:04:50 +00001331 ConstantInt::get(SLC.getIntPtrType(), 1),
1332 CI->getOperand(1)
Chris Lattnerc18470c2007-02-13 05:58:53 +00001333 };
Gabor Greif051a9502008-04-06 20:25:17 +00001334 CallInst::Create(SLC.get_fwrite(FILEty), FWriteArgs, FWriteArgs + 4, CI->getName(), CI);
Chris Lattner0cd3a232007-04-07 21:58:02 +00001335 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(),
1336 FormatStr.size()));
Reid Spencera1b43902005-05-02 23:59:26 +00001337 }
Chris Lattner3492cda2007-04-07 21:04:50 +00001338
1339 // The remaining optimizations require the format string to be length 2:
Reid Spencera1b43902005-05-02 23:59:26 +00001340 // "%s" or "%c".
Chris Lattner0cd3a232007-04-07 21:58:02 +00001341 if (FormatStr.size() != 2 || FormatStr[0] != '%')
Chris Lattner3492cda2007-04-07 21:04:50 +00001342 return false;
Reid Spencera1b43902005-05-02 23:59:26 +00001343
1344 // Get the second character and switch on its value
Chris Lattner0cd3a232007-04-07 21:58:02 +00001345 switch (FormatStr[1]) {
Chris Lattner3492cda2007-04-07 21:04:50 +00001346 case 'c': {
1347 // fprintf(file,"%c",c) -> fputc(c,file)
1348 const Type *FILETy = CI->getOperand(1)->getType();
1349 Value *C = CastInst::createZExtOrBitCast(CI->getOperand(3), Type::Int32Ty,
1350 CI->getName()+".int", CI);
David Greene52eec542007-08-01 03:43:44 +00001351 SmallVector<Value *, 2> Args;
1352 Args.push_back(C);
1353 Args.push_back(CI->getOperand(1));
Gabor Greif051a9502008-04-06 20:25:17 +00001354 CallInst::Create(SLC.get_fputc(FILETy), Args.begin(), Args.end(), "", CI);
Chris Lattner3492cda2007-04-07 21:04:50 +00001355 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1356 }
1357 case 's': {
1358 const Type *FILETy = CI->getOperand(1)->getType();
Chris Lattner3492cda2007-04-07 21:04:50 +00001359
1360 // If the result of the fprintf call is used, we can't do this.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001361 // TODO: we should insert a strlen call.
Chris Lattner3492cda2007-04-07 21:04:50 +00001362 if (!CI->use_empty())
Reid Spencera1b43902005-05-02 23:59:26 +00001363 return false;
Chris Lattner3492cda2007-04-07 21:04:50 +00001364
1365 // fprintf(file,"%s",str) -> fputs(str,file)
David Greene52eec542007-08-01 03:43:44 +00001366 SmallVector<Value *, 2> Args;
1367 Args.push_back(CastToCStr(CI->getOperand(3), CI));
1368 Args.push_back(CI->getOperand(1));
Gabor Greif051a9502008-04-06 20:25:17 +00001369 CallInst::Create(SLC.get_fputs(FILETy), Args.begin(),
1370 Args.end(), CI->getName(), CI);
Chris Lattner3492cda2007-04-07 21:04:50 +00001371 return ReplaceCallWith(CI, 0);
1372 }
1373 default:
1374 return false;
Reid Spencera1b43902005-05-02 23:59:26 +00001375 }
Reid Spencera1b43902005-05-02 23:59:26 +00001376 }
1377} FPrintFOptimizer;
1378
Jeff Cohen00b168892005-07-27 06:12:32 +00001379/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer58b563c2005-05-04 03:20:21 +00001380/// function. It looks for cases where the result of sprintf is not used and the
1381/// operation can be reduced to something simpler.
Evan Cheng21abac22006-06-16 08:36:35 +00001382/// @brief Simplify the sprintf library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001383struct VISIBILITY_HIDDEN SPrintFOptimization : public LibCallOptimization {
Reid Spencer58b563c2005-05-04 03:20:21 +00001384public:
1385 /// @brief Default Constructor
1386 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer789082a2005-05-07 20:15:59 +00001387 "Number of 'sprintf' calls simplified") {}
Reid Spencer58b563c2005-05-04 03:20:21 +00001388
Chris Lattner73f5d422007-04-07 21:17:51 +00001389 /// @brief Make sure that the "sprintf" function has the right prototype
1390 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1391 const FunctionType *FT = F->getFunctionType();
1392 return FT->getNumParams() == 2 && // two fixed arguments.
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001393 FT->getParamType(1) == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner73f5d422007-04-07 21:17:51 +00001394 FT->getParamType(0) == FT->getParamType(1) &&
1395 isa<IntegerType>(FT->getReturnType());
Reid Spencer58b563c2005-05-04 03:20:21 +00001396 }
1397
1398 /// @brief Perform the sprintf optimization.
Chris Lattner73f5d422007-04-07 21:17:51 +00001399 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Reid Spencer58b563c2005-05-04 03:20:21 +00001400 // If the call has more than 3 operands, we can't optimize it
Chris Lattner73f5d422007-04-07 21:17:51 +00001401 if (CI->getNumOperands() != 3 && CI->getNumOperands() != 4)
Reid Spencer58b563c2005-05-04 03:20:21 +00001402 return false;
1403
Chris Lattner0cd3a232007-04-07 21:58:02 +00001404 std::string FormatStr;
1405 if (!GetConstantStringInfo(CI->getOperand(2), FormatStr))
Reid Spencer58b563c2005-05-04 03:20:21 +00001406 return false;
Chris Lattner73f5d422007-04-07 21:17:51 +00001407
1408 if (CI->getNumOperands() == 3) {
Reid Spencer58b563c2005-05-04 03:20:21 +00001409 // Make sure there's no % in the constant array
Chris Lattner0cd3a232007-04-07 21:58:02 +00001410 for (unsigned i = 0, e = FormatStr.size(); i != e; ++i)
1411 if (FormatStr[i] == '%')
Chris Lattner73f5d422007-04-07 21:17:51 +00001412 return false; // we found a format specifier
1413
Jeff Cohen00b168892005-07-27 06:12:32 +00001414 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Chris Lattner73f5d422007-04-07 21:17:51 +00001415 Value *MemCpyArgs[] = {
1416 CI->getOperand(1), CI->getOperand(2),
Chris Lattner0cd3a232007-04-07 21:58:02 +00001417 ConstantInt::get(SLC.getIntPtrType(),
1418 FormatStr.size()+1), // Copy the nul byte.
Chris Lattnerc18470c2007-02-13 05:58:53 +00001419 ConstantInt::get(Type::Int32Ty, 1)
1420 };
Gabor Greif051a9502008-04-06 20:25:17 +00001421 CallInst::Create(SLC.get_memcpy(), MemCpyArgs, MemCpyArgs + 4, "", CI);
Chris Lattner0cd3a232007-04-07 21:58:02 +00001422 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(),
1423 FormatStr.size()));
Reid Spencer58b563c2005-05-04 03:20:21 +00001424 }
1425
Chris Lattner73f5d422007-04-07 21:17:51 +00001426 // The remaining optimizations require the format string to be "%s" or "%c".
Chris Lattner0cd3a232007-04-07 21:58:02 +00001427 if (FormatStr.size() != 2 || FormatStr[0] != '%')
Reid Spencer58b563c2005-05-04 03:20:21 +00001428 return false;
1429
Reid Spencer58b563c2005-05-04 03:20:21 +00001430 // Get the second character and switch on its value
Chris Lattner51047852007-04-08 18:11:26 +00001431 switch (FormatStr[1]) {
Chris Lattner73f5d422007-04-07 21:17:51 +00001432 case 'c': {
1433 // sprintf(dest,"%c",chr) -> store chr, dest
1434 Value *V = CastInst::createTruncOrBitCast(CI->getOperand(3),
1435 Type::Int8Ty, "char", CI);
1436 new StoreInst(V, CI->getOperand(1), CI);
Gabor Greif051a9502008-04-06 20:25:17 +00001437 Value *Ptr = GetElementPtrInst::Create(CI->getOperand(1),
1438 ConstantInt::get(Type::Int32Ty, 1),
1439 CI->getOperand(1)->getName()+".end",
1440 CI);
Chris Lattner73f5d422007-04-07 21:17:51 +00001441 new StoreInst(ConstantInt::get(Type::Int8Ty,0), Ptr, CI);
1442 return ReplaceCallWith(CI, ConstantInt::get(Type::Int32Ty, 1));
1443 }
Chris Lattner5d735bf2005-09-24 22:17:06 +00001444 case 's': {
1445 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
Gabor Greif051a9502008-04-06 20:25:17 +00001446 Value *Len = CallInst::Create(SLC.get_strlen(),
1447 CastToCStr(CI->getOperand(3), CI),
1448 CI->getOperand(3)->getName()+".len", CI);
Chris Lattner73f5d422007-04-07 21:17:51 +00001449 Value *UnincLen = Len;
1450 Len = BinaryOperator::createAdd(Len, ConstantInt::get(Len->getType(), 1),
1451 Len->getName()+"1", CI);
1452 Value *MemcpyArgs[4] = {
1453 CI->getOperand(1),
1454 CastToCStr(CI->getOperand(3), CI),
1455 Len,
1456 ConstantInt::get(Type::Int32Ty, 1)
Chris Lattnerc18470c2007-02-13 05:58:53 +00001457 };
Gabor Greif051a9502008-04-06 20:25:17 +00001458 CallInst::Create(SLC.get_memcpy(), MemcpyArgs, MemcpyArgs + 4, "", CI);
Chris Lattner5d735bf2005-09-24 22:17:06 +00001459
1460 // The strlen result is the unincremented number of bytes in the string.
Chris Lattner73f5d422007-04-07 21:17:51 +00001461 if (!CI->use_empty()) {
1462 if (UnincLen->getType() != CI->getType())
1463 UnincLen = CastInst::createIntegerCast(UnincLen, CI->getType(), false,
1464 Len->getName(), CI);
1465 CI->replaceAllUsesWith(UnincLen);
Chris Lattneraebac502005-09-25 07:06:48 +00001466 }
Chris Lattner73f5d422007-04-07 21:17:51 +00001467 return ReplaceCallWith(CI, 0);
Chris Lattner5d735bf2005-09-24 22:17:06 +00001468 }
1469 }
1470 return false;
Reid Spencer58b563c2005-05-04 03:20:21 +00001471 }
1472} SPrintFOptimizer;
1473
Jeff Cohen00b168892005-07-27 06:12:32 +00001474/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencerff5525d2005-04-29 09:39:47 +00001475/// function. It looks for cases where the result of fputs is not used and the
1476/// operation can be reduced to something simpler.
Chris Lattner5cef3c62007-04-08 07:00:35 +00001477/// @brief Simplify the fputs library function.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001478struct VISIBILITY_HIDDEN FPutsOptimization : public LibCallOptimization {
Reid Spencerff5525d2005-04-29 09:39:47 +00001479public:
1480 /// @brief Default Constructor
Chris Lattner0cd3a232007-04-07 21:58:02 +00001481 FPutsOptimization() : LibCallOptimization("fputs",
Reid Spencer789082a2005-05-07 20:15:59 +00001482 "Number of 'fputs' calls simplified") {}
Reid Spencerff5525d2005-04-29 09:39:47 +00001483
Reid Spencerff5525d2005-04-29 09:39:47 +00001484 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001485 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerff5525d2005-04-29 09:39:47 +00001486 // Just make sure this has 2 arguments
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001487 return F->arg_size() == 2;
Reid Spencerff5525d2005-04-29 09:39:47 +00001488 }
1489
1490 /// @brief Perform the fputs optimization.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001491 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1492 // If the result is used, none of these optimizations work.
1493 if (!CI->use_empty())
Reid Spencerff5525d2005-04-29 09:39:47 +00001494 return false;
1495
1496 // All the optimizations depend on the length of the first argument and the
1497 // fact that it is a constant string array. Check that now
Chris Lattner0cd3a232007-04-07 21:58:02 +00001498 std::string Str;
1499 if (!GetConstantStringInfo(CI->getOperand(1), Str))
Reid Spencerff5525d2005-04-29 09:39:47 +00001500 return false;
1501
Chris Lattner0cd3a232007-04-07 21:58:02 +00001502 const Type *FILETy = CI->getOperand(2)->getType();
Chris Lattner5cef3c62007-04-08 07:00:35 +00001503 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
1504 Value *FWriteParms[4] = {
1505 CI->getOperand(1),
1506 ConstantInt::get(SLC.getIntPtrType(), Str.size()),
1507 ConstantInt::get(SLC.getIntPtrType(), 1),
1508 CI->getOperand(2)
1509 };
Gabor Greif051a9502008-04-06 20:25:17 +00001510 CallInst::Create(SLC.get_fwrite(FILETy), FWriteParms, FWriteParms + 4, "", CI);
Chris Lattner0cd3a232007-04-07 21:58:02 +00001511 return ReplaceCallWith(CI, 0); // Known to have no uses (see above).
Reid Spencerff5525d2005-04-29 09:39:47 +00001512 }
Chris Lattner5cef3c62007-04-08 07:00:35 +00001513} FPutsOptimizer;
1514
1515/// This LibCallOptimization will simplify calls to the "fwrite" function.
1516struct VISIBILITY_HIDDEN FWriteOptimization : public LibCallOptimization {
1517public:
1518 /// @brief Default Constructor
1519 FWriteOptimization() : LibCallOptimization("fwrite",
1520 "Number of 'fwrite' calls simplified") {}
1521
1522 /// @brief Make sure that the "fputs" function has the right prototype
1523 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1524 const FunctionType *FT = F->getFunctionType();
1525 return FT->getNumParams() == 4 &&
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001526 FT->getParamType(0) == PointerType::getUnqual(Type::Int8Ty) &&
Chris Lattner5cef3c62007-04-08 07:00:35 +00001527 FT->getParamType(1) == FT->getParamType(2) &&
1528 isa<IntegerType>(FT->getParamType(1)) &&
1529 isa<PointerType>(FT->getParamType(3)) &&
1530 isa<IntegerType>(FT->getReturnType());
1531 }
1532
1533 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1534 // Get the element size and count.
1535 uint64_t EltSize, EltCount;
1536 if (ConstantInt *C = dyn_cast<ConstantInt>(CI->getOperand(2)))
1537 EltSize = C->getZExtValue();
1538 else
1539 return false;
1540 if (ConstantInt *C = dyn_cast<ConstantInt>(CI->getOperand(3)))
1541 EltCount = C->getZExtValue();
1542 else
1543 return false;
1544
1545 // If this is writing zero records, remove the call (it's a noop).
1546 if (EltSize * EltCount == 0)
1547 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 0));
1548
1549 // If this is writing one byte, turn it into fputc.
1550 if (EltSize == 1 && EltCount == 1) {
David Greene52eec542007-08-01 03:43:44 +00001551 SmallVector<Value *, 2> Args;
Chris Lattner5cef3c62007-04-08 07:00:35 +00001552 // fwrite(s,1,1,F) -> fputc(s[0],F)
1553 Value *Ptr = CI->getOperand(1);
1554 Value *Val = new LoadInst(Ptr, Ptr->getName()+".byte", CI);
David Greene52eec542007-08-01 03:43:44 +00001555 Args.push_back(new ZExtInst(Val, Type::Int32Ty, Val->getName()+".int", CI));
1556 Args.push_back(CI->getOperand(4));
Chris Lattner5cef3c62007-04-08 07:00:35 +00001557 const Type *FILETy = CI->getOperand(4)->getType();
Gabor Greif051a9502008-04-06 20:25:17 +00001558 CallInst::Create(SLC.get_fputc(FILETy), Args.begin(), Args.end(), "", CI);
Chris Lattner5cef3c62007-04-08 07:00:35 +00001559 return ReplaceCallWith(CI, ConstantInt::get(CI->getType(), 1));
1560 }
1561 return false;
1562 }
1563} FWriteOptimizer;
Reid Spencerff5525d2005-04-29 09:39:47 +00001564
Jeff Cohen00b168892005-07-27 06:12:32 +00001565/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencercea65592005-05-04 18:58:28 +00001566/// function. It simply does range checks the parameter explicitly.
1567/// @brief Simplify the isdigit library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001568struct VISIBILITY_HIDDEN isdigitOptimization : public LibCallOptimization {
Reid Spencercea65592005-05-04 18:58:28 +00001569public:
Chris Lattnere9b62422005-09-29 06:16:11 +00001570 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer789082a2005-05-07 20:15:59 +00001571 "Number of 'isdigit' calls simplified") {}
Reid Spencercea65592005-05-04 18:58:28 +00001572
Chris Lattnere9b62422005-09-29 06:16:11 +00001573 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001574 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencercea65592005-05-04 18:58:28 +00001575 // Just make sure this has 1 argument
1576 return (f->arg_size() == 1);
1577 }
1578
1579 /// @brief Perform the toascii optimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001580 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1581 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencercea65592005-05-04 18:58:28 +00001582 // isdigit(c) -> 0 or 1, if 'c' is constant
Reid Spencerb83eb642006-10-20 07:07:24 +00001583 uint64_t val = CI->getZExtValue();
Chris Lattner679d7182007-04-07 00:42:32 +00001584 if (val >= '0' && val <= '9')
1585 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 1));
Reid Spencercea65592005-05-04 18:58:28 +00001586 else
Chris Lattner679d7182007-04-07 00:42:32 +00001587 return ReplaceCallWith(ci, ConstantInt::get(Type::Int32Ty, 0));
Reid Spencercea65592005-05-04 18:58:28 +00001588 }
1589
1590 // isdigit(c) -> (unsigned)c - '0' <= 9
Reid Spencer7b06bd52006-12-13 00:50:17 +00001591 CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
Reid Spencerc5b206b2006-12-31 05:48:39 +00001592 Type::Int32Ty, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
Chris Lattner53249862005-08-24 17:22:17 +00001593 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencerc5b206b2006-12-31 05:48:39 +00001594 ConstantInt::get(Type::Int32Ty,0x30),
Reid Spencercea65592005-05-04 18:58:28 +00001595 ci->getOperand(1)->getName()+".sub",ci);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001596 ICmpInst* setcond_inst = new ICmpInst(ICmpInst::ICMP_ULE,sub_inst,
Reid Spencerc5b206b2006-12-31 05:48:39 +00001597 ConstantInt::get(Type::Int32Ty,9),
Reid Spencercea65592005-05-04 18:58:28 +00001598 ci->getOperand(1)->getName()+".cmp",ci);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001599 CastInst* c2 = new ZExtInst(setcond_inst, Type::Int32Ty,
Reid Spencer7b06bd52006-12-13 00:50:17 +00001600 ci->getOperand(1)->getName()+".isdigit", ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001601 return ReplaceCallWith(ci, c2);
Reid Spencercea65592005-05-04 18:58:28 +00001602 }
Chris Lattnere9b62422005-09-29 06:16:11 +00001603} isdigitOptimizer;
1604
Reid Spencer9133fe22007-02-05 23:32:05 +00001605struct VISIBILITY_HIDDEN isasciiOptimization : public LibCallOptimization {
Chris Lattnera48bc532005-09-29 06:17:27 +00001606public:
1607 isasciiOptimization()
1608 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1609
1610 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Chris Lattner42a75512007-01-15 02:27:26 +00001611 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1612 F->getReturnType()->isInteger();
Chris Lattnera48bc532005-09-29 06:17:27 +00001613 }
1614
1615 /// @brief Perform the isascii optimization.
1616 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1617 // isascii(c) -> (unsigned)c < 128
1618 Value *V = CI->getOperand(1);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001619 Value *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, V,
1620 ConstantInt::get(V->getType(), 128),
1621 V->getName()+".isascii", CI);
Chris Lattnera48bc532005-09-29 06:17:27 +00001622 if (Cmp->getType() != CI->getType())
Chris Lattner83ae2fc2007-04-15 05:38:40 +00001623 Cmp = new ZExtInst(Cmp, CI->getType(), Cmp->getName(), CI);
Chris Lattner679d7182007-04-07 00:42:32 +00001624 return ReplaceCallWith(CI, Cmp);
Chris Lattnera48bc532005-09-29 06:17:27 +00001625 }
1626} isasciiOptimizer;
Chris Lattnere9b62422005-09-29 06:16:11 +00001627
Reid Spencercea65592005-05-04 18:58:28 +00001628
Jeff Cohen00b168892005-07-27 06:12:32 +00001629/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001630/// function. It simply does the corresponding and operation to restrict the
1631/// range of values to the ASCII character set (0-127).
1632/// @brief Simplify the toascii library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001633struct VISIBILITY_HIDDEN ToAsciiOptimization : public LibCallOptimization {
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001634public:
1635 /// @brief Default Constructor
Reid Spencer9974dda2005-05-03 02:54:54 +00001636 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer789082a2005-05-07 20:15:59 +00001637 "Number of 'toascii' calls simplified") {}
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001638
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001639 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001640 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001641 // Just make sure this has 2 arguments
1642 return (f->arg_size() == 1);
1643 }
1644
1645 /// @brief Perform the toascii optimization.
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001646 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001647 // toascii(c) -> (c & 0x7f)
Chris Lattner679d7182007-04-07 00:42:32 +00001648 Value *chr = ci->getOperand(1);
1649 Value *and_inst = BinaryOperator::createAnd(chr,
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001650 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
Chris Lattner679d7182007-04-07 00:42:32 +00001651 return ReplaceCallWith(ci, and_inst);
Reid Spencer9f56b1f2005-04-30 03:17:54 +00001652 }
1653} ToAsciiOptimizer;
1654
Reid Spencerc29b13d2005-05-14 16:42:52 +00001655/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen00b168892005-07-27 06:12:32 +00001656/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerc29b13d2005-05-14 16:42:52 +00001657/// optimization is to compute the result at compile time if the argument is
1658/// a constant.
1659/// @brief Simplify the ffs library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001660struct VISIBILITY_HIDDEN FFSOptimization : public LibCallOptimization {
Reid Spencerc29b13d2005-05-14 16:42:52 +00001661protected:
1662 /// @brief Subclass Constructor
1663 FFSOptimization(const char* funcName, const char* description)
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001664 : LibCallOptimization(funcName, description) {}
Reid Spencerc29b13d2005-05-14 16:42:52 +00001665
1666public:
1667 /// @brief Default Constructor
1668 FFSOptimization() : LibCallOptimization("ffs",
1669 "Number of 'ffs' calls simplified") {}
1670
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001671 /// @brief Make sure that the "ffs" function has the right prototype
1672 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerc29b13d2005-05-14 16:42:52 +00001673 // Just make sure this has 2 arguments
Reid Spencerc5b206b2006-12-31 05:48:39 +00001674 return F->arg_size() == 1 && F->getReturnType() == Type::Int32Ty;
Reid Spencerc29b13d2005-05-14 16:42:52 +00001675 }
1676
1677 /// @brief Perform the ffs optimization.
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001678 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1679 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerc29b13d2005-05-14 16:42:52 +00001680 // ffs(cnst) -> bit#
1681 // ffsl(cnst) -> bit#
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001682 // ffsll(cnst) -> bit#
Reid Spencerb83eb642006-10-20 07:07:24 +00001683 uint64_t val = CI->getZExtValue();
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001684 int result = 0;
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001685 if (val) {
1686 ++result;
1687 while ((val & 1) == 0) {
1688 ++result;
1689 val >>= 1;
1690 }
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001691 }
Chris Lattner679d7182007-04-07 00:42:32 +00001692 return ReplaceCallWith(TheCall, ConstantInt::get(Type::Int32Ty, result));
Reid Spencerc29b13d2005-05-14 16:42:52 +00001693 }
Reid Spencerf74eb3f2005-05-15 21:19:45 +00001694
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001695 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1696 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1697 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1698 const Type *ArgType = TheCall->getOperand(1)->getType();
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001699 const char *CTTZName;
Reid Spencera54b7cb2007-01-12 07:05:14 +00001700 assert(ArgType->getTypeID() == Type::IntegerTyID &&
1701 "llvm.cttz argument is not an integer?");
1702 unsigned BitWidth = cast<IntegerType>(ArgType)->getBitWidth();
Chris Lattner720922f2007-01-12 22:49:11 +00001703 if (BitWidth == 8)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001704 CTTZName = "llvm.cttz.i8";
Chris Lattner720922f2007-01-12 22:49:11 +00001705 else if (BitWidth == 16)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001706 CTTZName = "llvm.cttz.i16";
Chris Lattner720922f2007-01-12 22:49:11 +00001707 else if (BitWidth == 32)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001708 CTTZName = "llvm.cttz.i32";
Chris Lattner720922f2007-01-12 22:49:11 +00001709 else {
1710 assert(BitWidth == 64 && "Unknown bitwidth");
Reid Spencera54b7cb2007-01-12 07:05:14 +00001711 CTTZName = "llvm.cttz.i64";
Chris Lattner720922f2007-01-12 22:49:11 +00001712 }
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001713
Chris Lattnerb76efb72007-01-07 08:12:01 +00001714 Constant *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001715 ArgType, NULL);
Reid Spencer7b06bd52006-12-13 00:50:17 +00001716 Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType,
1717 false/*ZExt*/, "tmp", TheCall);
Gabor Greif051a9502008-04-06 20:25:17 +00001718 Value *V2 = CallInst::Create(F, V, "tmp", TheCall);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001719 V2 = CastInst::createIntegerCast(V2, Type::Int32Ty, false/*ZExt*/,
Reid Spencer7b06bd52006-12-13 00:50:17 +00001720 "tmp", TheCall);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001721 V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::Int32Ty, 1),
Chris Lattnerf91e97a2006-01-17 18:27:17 +00001722 "tmp", TheCall);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001723 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, V,
1724 Constant::getNullValue(V->getType()), "tmp",
1725 TheCall);
Gabor Greif051a9502008-04-06 20:25:17 +00001726 V2 = SelectInst::Create(Cond, ConstantInt::get(Type::Int32Ty, 0), V2,
1727 TheCall->getName(), TheCall);
Chris Lattner679d7182007-04-07 00:42:32 +00001728 return ReplaceCallWith(TheCall, V2);
Reid Spencerc29b13d2005-05-14 16:42:52 +00001729 }
1730} FFSOptimizer;
1731
1732/// This LibCallOptimization will simplify calls to the "ffsl" library
1733/// calls. It simply uses FFSOptimization for which the transformation is
1734/// identical.
1735/// @brief Simplify the ffsl library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001736struct VISIBILITY_HIDDEN FFSLOptimization : public FFSOptimization {
Reid Spencerc29b13d2005-05-14 16:42:52 +00001737public:
1738 /// @brief Default Constructor
1739 FFSLOptimization() : FFSOptimization("ffsl",
1740 "Number of 'ffsl' calls simplified") {}
1741
1742} FFSLOptimizer;
1743
1744/// This LibCallOptimization will simplify calls to the "ffsll" library
1745/// calls. It simply uses FFSOptimization for which the transformation is
1746/// identical.
1747/// @brief Simplify the ffsl library function.
Reid Spencer9133fe22007-02-05 23:32:05 +00001748struct VISIBILITY_HIDDEN FFSLLOptimization : public FFSOptimization {
Reid Spencerc29b13d2005-05-14 16:42:52 +00001749public:
1750 /// @brief Default Constructor
1751 FFSLLOptimization() : FFSOptimization("ffsll",
1752 "Number of 'ffsll' calls simplified") {}
1753
1754} FFSLLOptimizer;
1755
Chris Lattner7070c5f2006-01-23 05:57:36 +00001756/// This optimizes unary functions that take and return doubles.
1757struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1758 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1759 : LibCallOptimization(Fn, Desc) {}
Chris Lattner53249862005-08-24 17:22:17 +00001760
Chris Lattner7070c5f2006-01-23 05:57:36 +00001761 // Make sure that this function has the right prototype
Chris Lattner53249862005-08-24 17:22:17 +00001762 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1763 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1764 F->getReturnType() == Type::DoubleTy;
1765 }
Chris Lattner7070c5f2006-01-23 05:57:36 +00001766
1767 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1768 /// float, strength reduce this to a float version of the function,
1769 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1770 /// when the target supports the destination function and where there can be
1771 /// no precision loss.
1772 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
Chris Lattnerb76efb72007-01-07 08:12:01 +00001773 Constant *(SimplifyLibCalls::*FP)()){
Chris Lattner679d7182007-04-07 00:42:32 +00001774 if (FPExtInst *Cast = dyn_cast<FPExtInst>(CI->getOperand(1)))
Chris Lattner53249862005-08-24 17:22:17 +00001775 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Gabor Greif051a9502008-04-06 20:25:17 +00001776 Value *New = CallInst::Create((SLC.*FP)(), Cast->getOperand(0),
1777 CI->getName(), CI);
Reid Spencer3da59db2006-11-27 01:05:10 +00001778 New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
Chris Lattner53249862005-08-24 17:22:17 +00001779 CI->replaceAllUsesWith(New);
1780 CI->eraseFromParent();
1781 if (Cast->use_empty())
1782 Cast->eraseFromParent();
1783 return true;
1784 }
Chris Lattner7070c5f2006-01-23 05:57:36 +00001785 return false;
Chris Lattner53249862005-08-24 17:22:17 +00001786 }
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001787};
1788
Chris Lattner7070c5f2006-01-23 05:57:36 +00001789
Reid Spencer9133fe22007-02-05 23:32:05 +00001790struct VISIBILITY_HIDDEN FloorOptimization : public UnaryDoubleFPOptimizer {
Chris Lattner7070c5f2006-01-23 05:57:36 +00001791 FloorOptimization()
1792 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1793
1794 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001795#ifdef HAVE_FLOORF
Chris Lattner7070c5f2006-01-23 05:57:36 +00001796 // If this is a float argument passed in, convert to floorf.
1797 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1798 return true;
Reid Spenceraa87e052006-01-19 08:36:56 +00001799#endif
Chris Lattner7070c5f2006-01-23 05:57:36 +00001800 return false; // opt failed
1801 }
1802} FloorOptimizer;
Chris Lattner53249862005-08-24 17:22:17 +00001803
Reid Spencer9133fe22007-02-05 23:32:05 +00001804struct VISIBILITY_HIDDEN CeilOptimization : public UnaryDoubleFPOptimizer {
Chris Lattnere46f6e92006-01-23 06:24:46 +00001805 CeilOptimization()
1806 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1807
1808 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1809#ifdef HAVE_CEILF
1810 // If this is a float argument passed in, convert to ceilf.
1811 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1812 return true;
1813#endif
1814 return false; // opt failed
1815 }
1816} CeilOptimizer;
Chris Lattner53249862005-08-24 17:22:17 +00001817
Reid Spencer9133fe22007-02-05 23:32:05 +00001818struct VISIBILITY_HIDDEN RoundOptimization : public UnaryDoubleFPOptimizer {
Chris Lattnere46f6e92006-01-23 06:24:46 +00001819 RoundOptimization()
1820 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1821
1822 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1823#ifdef HAVE_ROUNDF
1824 // If this is a float argument passed in, convert to roundf.
1825 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1826 return true;
1827#endif
1828 return false; // opt failed
1829 }
1830} RoundOptimizer;
1831
Reid Spencer9133fe22007-02-05 23:32:05 +00001832struct VISIBILITY_HIDDEN RintOptimization : public UnaryDoubleFPOptimizer {
Chris Lattnere46f6e92006-01-23 06:24:46 +00001833 RintOptimization()
1834 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1835
1836 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1837#ifdef HAVE_RINTF
1838 // If this is a float argument passed in, convert to rintf.
1839 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1840 return true;
1841#endif
1842 return false; // opt failed
1843 }
1844} RintOptimizer;
1845
Reid Spencer9133fe22007-02-05 23:32:05 +00001846struct VISIBILITY_HIDDEN NearByIntOptimization : public UnaryDoubleFPOptimizer {
Chris Lattnere46f6e92006-01-23 06:24:46 +00001847 NearByIntOptimization()
1848 : UnaryDoubleFPOptimizer("nearbyint",
1849 "Number of 'nearbyint' calls simplified") {}
1850
1851 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1852#ifdef HAVE_NEARBYINTF
1853 // If this is a float argument passed in, convert to nearbyintf.
1854 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
1855 return true;
1856#endif
1857 return false; // opt failed
1858 }
1859} NearByIntOptimizer;
Chris Lattner53249862005-08-24 17:22:17 +00001860
Chris Lattnerc8e17412007-04-06 22:54:17 +00001861/// GetConstantStringInfo - This function computes the length of a
1862/// null-terminated constant array of integers. This function can't rely on the
1863/// size of the constant array because there could be a null terminator in the
1864/// middle of the array.
1865///
Jeff Cohen00b168892005-07-27 06:12:32 +00001866/// We also have to bail out if we find a non-integer constant initializer
1867/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer716f49e2005-04-27 21:29:20 +00001868/// below checks each of these conditions and will return true only if all
Chris Lattnerc8e17412007-04-06 22:54:17 +00001869/// conditions are met. If the conditions aren't met, this returns false.
1870///
1871/// If successful, the \p Array param is set to the constant array being
1872/// indexed, the \p Length parameter is set to the length of the null-terminated
1873/// string pointed to by V, the \p StartIdx value is set to the first
1874/// element of the Array that V points to, and true is returned.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001875static bool GetConstantStringInfo(Value *V, std::string &Str) {
1876 // Look through noop bitcast instructions.
1877 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) {
1878 if (BCI->getType() == BCI->getOperand(0)->getType())
1879 return GetConstantStringInfo(BCI->getOperand(0), Str);
1880 return false;
1881 }
Chris Lattnerc8e17412007-04-06 22:54:17 +00001882
Jeff Cohen00b168892005-07-27 06:12:32 +00001883 // If the value is not a GEP instruction nor a constant expression with a
1884 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencera16d5a52005-04-27 07:54:40 +00001885 // any other way
Chris Lattner0cd3a232007-04-07 21:58:02 +00001886 User *GEP = 0;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001887 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
Reid Spencera16d5a52005-04-27 07:54:40 +00001888 GEP = GEPI;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001889 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
1890 if (CE->getOpcode() != Instruction::GetElementPtr)
Reid Spencera16d5a52005-04-27 07:54:40 +00001891 return false;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001892 GEP = CE;
1893 } else {
Reid Spencera16d5a52005-04-27 07:54:40 +00001894 return false;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001895 }
Reid Spencera16d5a52005-04-27 07:54:40 +00001896
1897 // Make sure the GEP has exactly three arguments.
1898 if (GEP->getNumOperands() != 3)
1899 return false;
1900
1901 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen00b168892005-07-27 06:12:32 +00001902 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001903 if (ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
1904 if (!Idx->isZero())
Reid Spencera16d5a52005-04-27 07:54:40 +00001905 return false;
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001906 } else
Reid Spencera16d5a52005-04-27 07:54:40 +00001907 return false;
1908
Chris Lattnerc8e17412007-04-06 22:54:17 +00001909 // If the second index isn't a ConstantInt, then this is a variable index
1910 // into the array. If this occurs, we can't say anything meaningful about
1911 // the string.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001912 uint64_t StartIdx = 0;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001913 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1914 StartIdx = CI->getZExtValue();
Reid Spencera16d5a52005-04-27 07:54:40 +00001915 else
1916 return false;
1917
1918 // The GEP instruction, constant or instruction, must reference a global
1919 // variable that is a constant and is initialized. The referenced constant
1920 // initializer is the array that we'll use for optimization.
1921 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1922 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1923 return false;
Chris Lattnerc8e17412007-04-06 22:54:17 +00001924 Constant *GlobalInit = GV->getInitializer();
Reid Spencera16d5a52005-04-27 07:54:40 +00001925
1926 // Handle the ConstantAggregateZero case
Chris Lattnerc8e17412007-04-06 22:54:17 +00001927 if (isa<ConstantAggregateZero>(GlobalInit)) {
Reid Spencera16d5a52005-04-27 07:54:40 +00001928 // This is a degenerate case. The initializer is constant zero so the
1929 // length of the string must be zero.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001930 Str.clear();
Reid Spencera16d5a52005-04-27 07:54:40 +00001931 return true;
1932 }
1933
1934 // Must be a Constant Array
Chris Lattner0cd3a232007-04-07 21:58:02 +00001935 ConstantArray *Array = dyn_cast<ConstantArray>(GlobalInit);
Chris Lattnerc8e17412007-04-06 22:54:17 +00001936 if (!Array) return false;
Reid Spencera16d5a52005-04-27 07:54:40 +00001937
1938 // Get the number of elements in the array
Chris Lattnerc8e17412007-04-06 22:54:17 +00001939 uint64_t NumElts = Array->getType()->getNumElements();
Reid Spencera16d5a52005-04-27 07:54:40 +00001940
Chris Lattner0cd3a232007-04-07 21:58:02 +00001941 // Traverse the constant array from StartIdx (derived above) which is
Jeff Cohen00b168892005-07-27 06:12:32 +00001942 // the place the GEP refers to in the array.
Chris Lattner0cd3a232007-04-07 21:58:02 +00001943 for (unsigned i = StartIdx; i < NumElts; ++i) {
1944 Constant *Elt = Array->getOperand(i);
1945 ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1946 if (!CI) // This array isn't suitable, non-int initializer.
1947 return false;
1948 if (CI->isZero())
1949 return true; // we found end of string, success!
1950 Str += (char)CI->getZExtValue();
Reid Spencera16d5a52005-04-27 07:54:40 +00001951 }
Chris Lattner0f9f8c32006-01-22 22:35:08 +00001952
Chris Lattner0cd3a232007-04-07 21:58:02 +00001953 return false; // The array isn't null terminated.
Reid Spencera16d5a52005-04-27 07:54:40 +00001954}
1955
Reid Spencer134d2e42005-06-18 17:46:28 +00001956/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
1957/// inserting the cast before IP, and return the cast.
1958/// @brief Cast a value to a "C" string.
Chris Lattner3492cda2007-04-07 21:04:50 +00001959static Value *CastToCStr(Value *V, Instruction *IP) {
Reid Spencerdccd9fe2006-12-13 08:04:32 +00001960 assert(isa<PointerType>(V->getType()) &&
Reid Spencer7b06bd52006-12-13 00:50:17 +00001961 "Can't cast non-pointer type to C string type");
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001962 const Type *SBPTy = PointerType::getUnqual(Type::Int8Ty);
Reid Spencer134d2e42005-06-18 17:46:28 +00001963 if (V->getType() != SBPTy)
Chris Lattner3492cda2007-04-07 21:04:50 +00001964 return new BitCastInst(V, SBPTy, V->getName(), IP);
Reid Spencer134d2e42005-06-18 17:46:28 +00001965 return V;
1966}
1967
Jeff Cohen00b168892005-07-27 06:12:32 +00001968// TODO:
Reid Spencer8441a012005-04-28 04:40:06 +00001969// Additional cases that we need to add to this file:
1970//
Reid Spencer8441a012005-04-28 04:40:06 +00001971// cbrt:
Reid Spencer8441a012005-04-28 04:40:06 +00001972// * cbrt(expN(X)) -> expN(x/3)
1973// * cbrt(sqrt(x)) -> pow(x,1/6)
1974// * cbrt(sqrt(x)) -> pow(x,1/9)
1975//
Reid Spencer8441a012005-04-28 04:40:06 +00001976// cos, cosf, cosl:
Reid Spencer5624c752005-04-28 18:05:16 +00001977// * cos(-x) -> cos(x)
Reid Spencer8441a012005-04-28 04:40:06 +00001978//
1979// exp, expf, expl:
Reid Spencer8441a012005-04-28 04:40:06 +00001980// * exp(log(x)) -> x
1981//
Reid Spencer8441a012005-04-28 04:40:06 +00001982// log, logf, logl:
Reid Spencer8441a012005-04-28 04:40:06 +00001983// * log(exp(x)) -> x
1984// * log(x**y) -> y*log(x)
1985// * log(exp(y)) -> y*log(e)
1986// * log(exp2(y)) -> y*log(2)
1987// * log(exp10(y)) -> y*log(10)
1988// * log(sqrt(x)) -> 0.5*log(x)
1989// * log(pow(x,y)) -> y*log(x)
1990//
1991// lround, lroundf, lroundl:
1992// * lround(cnst) -> cnst'
1993//
1994// memcmp:
Reid Spencer8441a012005-04-28 04:40:06 +00001995// * memcmp(x,y,l) -> cnst
1996// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer8441a012005-04-28 04:40:06 +00001997//
Reid Spencer8441a012005-04-28 04:40:06 +00001998// memmove:
Jeff Cohen00b168892005-07-27 06:12:32 +00001999// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer8441a012005-04-28 04:40:06 +00002000// (if s is a global constant array)
2001//
Reid Spencer8441a012005-04-28 04:40:06 +00002002// pow, powf, powl:
Reid Spencer8441a012005-04-28 04:40:06 +00002003// * pow(exp(x),y) -> exp(x*y)
2004// * pow(sqrt(x),y) -> pow(x,y*0.5)
2005// * pow(pow(x,y),z)-> pow(x,y*z)
2006//
2007// puts:
Chris Lattner35b9b492007-04-14 01:17:48 +00002008// * puts("") -> putchar("\n")
Reid Spencer8441a012005-04-28 04:40:06 +00002009//
2010// round, roundf, roundl:
2011// * round(cnst) -> cnst'
2012//
2013// signbit:
2014// * signbit(cnst) -> cnst'
2015// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2016//
Reid Spencer8441a012005-04-28 04:40:06 +00002017// sqrt, sqrtf, sqrtl:
Reid Spencer8441a012005-04-28 04:40:06 +00002018// * sqrt(expN(x)) -> expN(x*0.5)
2019// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2020// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2021//
Reid Spencer789082a2005-05-07 20:15:59 +00002022// stpcpy:
2023// * stpcpy(str, "literal") ->
2024// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer21506ff2005-05-03 07:23:44 +00002025// strrchr:
Reid Spencer8441a012005-04-28 04:40:06 +00002026// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2027// (if c is a constant integer and s is a constant string)
2028// * strrchr(s1,0) -> strchr(s1,0)
2029//
Reid Spencer8441a012005-04-28 04:40:06 +00002030// strncat:
2031// * strncat(x,y,0) -> x
2032// * strncat(x,y,0) -> x (if strlen(y) = 0)
2033// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2034//
Reid Spencer8441a012005-04-28 04:40:06 +00002035// strncpy:
2036// * strncpy(d,s,0) -> d
2037// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2038// (if s and l are constants)
2039//
2040// strpbrk:
2041// * strpbrk(s,a) -> offset_in_for(s,a)
2042// (if s and a are both constant strings)
2043// * strpbrk(s,"") -> 0
2044// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2045//
2046// strspn, strcspn:
2047// * strspn(s,a) -> const_int (if both args are constant)
2048// * strspn("",a) -> 0
2049// * strspn(s,"") -> 0
2050// * strcspn(s,a) -> const_int (if both args are constant)
2051// * strcspn("",a) -> 0
2052// * strcspn(s,"") -> strlen(a)
2053//
2054// strstr:
2055// * strstr(x,x) -> x
Jeff Cohen00b168892005-07-27 06:12:32 +00002056// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer8441a012005-04-28 04:40:06 +00002057// (if s1 and s2 are constant strings)
Jeff Cohen00b168892005-07-27 06:12:32 +00002058//
Reid Spencer8441a012005-04-28 04:40:06 +00002059// tan, tanf, tanl:
Reid Spencer8441a012005-04-28 04:40:06 +00002060// * tan(atan(x)) -> x
Jeff Cohen00b168892005-07-27 06:12:32 +00002061//
Reid Spencer8441a012005-04-28 04:40:06 +00002062// trunc, truncf, truncl:
2063// * trunc(cnst) -> cnst'
2064//
Jeff Cohen00b168892005-07-27 06:12:32 +00002065//
Reid Spencera7c049b2005-04-25 02:53:12 +00002066}