blob: 24bcf4ed63075366445d917c32691d979140f240 [file] [log] [blame]
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00001//===- SimplifyLibCalls.cpp - Optimize specific well-known library calls --===//
Reid Spencer39a762d2005-04-25 02:53:12 +00002//
3// The LLVM Compiler Infrastructure
4//
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00005// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a variety of small optimizations for calls to specific
11// well-known (e.g. runtime library) function calls. For example, a call to the
12// function "exit(3)" that occurs within the main() function can be transformed
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000013// into a simple "return 3" instruction. Any optimization that takes this form
14// (replace call to library function with simpler code that provides same
15// result) belongs in this file.
Reid Spencer39a762d2005-04-25 02:53:12 +000016//
17//===----------------------------------------------------------------------===//
18
Reid Spencer18b99812005-04-26 23:05:17 +000019#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000023#include "llvm/Module.h"
24#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000025#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000026#include "llvm/ADT/Statistic.h"
27#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000028#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000029#include "llvm/Transforms/IPO.h"
Reid Spencerf2534c72005-04-25 21:11:48 +000030#include <iostream>
Reid Spencer39a762d2005-04-25 02:53:12 +000031using namespace llvm;
32
33namespace {
Reid Spencer39a762d2005-04-25 02:53:12 +000034
Reid Spencere249a822005-04-27 07:54:40 +000035/// This statistic keeps track of the total number of library calls that have
36/// been simplified regardless of which call it is.
37Statistic<> SimplifiedLibCalls("simplify-libcalls",
Reid Spencer170ae7f2005-05-07 20:15:59 +000038 "Total number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000039
Reid Spencer7ddcfb32005-04-27 21:29:20 +000040// Forward declarations
Reid Spencere249a822005-04-27 07:54:40 +000041class LibCallOptimization;
42class SimplifyLibCalls;
Reid Spencer7ddcfb32005-04-27 21:29:20 +000043
44/// @brief The list of optimizations deriving from LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +000045hash_map<std::string,LibCallOptimization*> optlist;
Reid Spencer39a762d2005-04-25 02:53:12 +000046
Reid Spencere249a822005-04-27 07:54:40 +000047/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000048/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000049/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000050/// is the kind that the optimization can handle. If the subclass returns true,
51/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
52/// or attempt to perform, the optimization(s) for the library call. Otherwise,
53/// OptimizeCall won't be called. Subclasses are responsible for providing the
54/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
55/// constructor. This is used to efficiently select which call instructions to
56/// optimize. The criteria for a "lib call" is "anything with well known
57/// semantics", typically a library function that is defined by an international
58/// standard. Because the semantics are well known, the optimizations can
59/// generally short-circuit actually calling the function if there's a simpler
60/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000061/// @brief Base class for library call optimizations
Jeff Cohen4bc952f2005-04-29 03:05:44 +000062class LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +000063{
Jeff Cohen4bc952f2005-04-29 03:05:44 +000064public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +000065 /// The \p fname argument must be the name of the library function being
66 /// optimized by the subclass.
67 /// @brief Constructor that registers the optimization.
Reid Spencer170ae7f2005-05-07 20:15:59 +000068 LibCallOptimization(const char* fname, const char* description )
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000069 : func_name(fname)
Reid Spencere95a6472005-04-27 00:05:45 +000070#ifndef NDEBUG
Reid Spencer170ae7f2005-05-07 20:15:59 +000071 , occurrences("simplify-libcalls",description)
Reid Spencere95a6472005-04-27 00:05:45 +000072#endif
Reid Spencer39a762d2005-04-25 02:53:12 +000073 {
Reid Spencer7ddcfb32005-04-27 21:29:20 +000074 // Register this call optimizer in the optlist (a hash_map)
Reid Spencer95d8efd2005-05-03 02:54:54 +000075 optlist[fname] = this;
Reid Spencer39a762d2005-04-25 02:53:12 +000076 }
77
Reid Spencer7ddcfb32005-04-27 21:29:20 +000078 /// @brief Deregister from the optlist
79 virtual ~LibCallOptimization() { optlist.erase(func_name); }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000080
Reid Spencere249a822005-04-27 07:54:40 +000081 /// The implementation of this function in subclasses should determine if
82 /// \p F is suitable for the optimization. This method is called by
Reid Spencer7ddcfb32005-04-27 21:29:20 +000083 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
84 /// sites of such a function if that function is not suitable in the first
85 /// place. If the called function is suitabe, this method should return true;
Reid Spencere249a822005-04-27 07:54:40 +000086 /// false, otherwise. This function should also perform any lazy
87 /// initialization that the LibCallOptimization needs to do, if its to return
88 /// true. This avoids doing initialization until the optimizer is actually
89 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000090 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +000091 virtual bool ValidateCalledFunction(
92 const Function* F, ///< The function that is the target of call sites
93 SimplifyLibCalls& SLC ///< The pass object invoking us
94 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +000095
Reid Spencere249a822005-04-27 07:54:40 +000096 /// The implementations of this function in subclasses is the heart of the
97 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
98 /// OptimizeCall to determine if (a) the conditions are right for optimizing
99 /// the call and (b) to perform the optimization. If an action is taken
100 /// against ci, the subclass is responsible for returning true and ensuring
101 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000102 /// @brief Optimize a call, if possible.
103 virtual bool OptimizeCall(
104 CallInst* ci, ///< The call instruction that should be optimized.
105 SimplifyLibCalls& SLC ///< The pass object invoking us
106 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000107
Reid Spencere249a822005-04-27 07:54:40 +0000108 /// @brief Get the name of the library call being optimized
109 const char * getFunctionName() const { return func_name; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000110
Reid Spencere95a6472005-04-27 00:05:45 +0000111#ifndef NDEBUG
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000112 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Reid Spencer4f01a822005-05-07 04:59:45 +0000113 void succeeded() { DEBUG(++occurrences); }
Reid Spencere95a6472005-04-27 00:05:45 +0000114#endif
Reid Spencere249a822005-04-27 07:54:40 +0000115
116private:
117 const char* func_name; ///< Name of the library call we optimize
118#ifndef NDEBUG
Reid Spencere249a822005-04-27 07:54:40 +0000119 Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
120#endif
121};
122
Reid Spencere249a822005-04-27 07:54:40 +0000123/// This class is an LLVM Pass that applies each of the LibCallOptimization
124/// instances to all the call sites in a module, relatively efficiently. The
125/// purpose of this pass is to provide optimizations for calls to well-known
126/// functions with well-known semantics, such as those in the c library. The
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000127/// class provides the basic infrastructure for handling runOnModule. Whenever /// this pass finds a function call, it asks the appropriate optimizer to
128/// validate the call (ValidateLibraryCall). If it is validated, then
129/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000130/// @brief A ModulePass for optimizing well-known function calls.
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000131class SimplifyLibCalls : public ModulePass
Reid Spencere249a822005-04-27 07:54:40 +0000132{
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000133public:
Reid Spencere249a822005-04-27 07:54:40 +0000134 /// We need some target data for accurate signature details that are
135 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000136 /// @brief Require TargetData from AnalysisUsage.
Reid Spencere249a822005-04-27 07:54:40 +0000137 virtual void getAnalysisUsage(AnalysisUsage& Info) const
138 {
139 // Ask that the TargetData analysis be performed before us so we can use
140 // the target data.
141 Info.addRequired<TargetData>();
142 }
143
144 /// For this pass, process all of the function calls in the module, calling
145 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000146 /// @brief Run all the lib call optimizations on a Module.
Reid Spencere249a822005-04-27 07:54:40 +0000147 virtual bool runOnModule(Module &M)
148 {
149 reset(M);
150
151 bool result = false;
152
153 // The call optimizations can be recursive. That is, the optimization might
154 // generate a call to another function which can also be optimized. This way
155 // we make the LibCallOptimization instances very specific to the case they
156 // handle. It also means we need to keep running over the function calls in
157 // the module until we don't get any more optimizations possible.
158 bool found_optimization = false;
159 do
160 {
161 found_optimization = false;
162 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI)
163 {
164 // All the "well-known" functions are external and have external linkage
165 // because they live in a runtime library somewhere and were (probably)
Reid Spencer38cabd72005-05-03 07:23:44 +0000166 // not compiled by LLVM. So, we only act on external functions that
167 // have external linkage and non-empty uses.
Reid Spencere249a822005-04-27 07:54:40 +0000168 if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty())
169 continue;
170
171 // Get the optimization class that pertains to this function
172 LibCallOptimization* CO = optlist[FI->getName().c_str()];
173 if (!CO)
174 continue;
175
176 // Make sure the called function is suitable for the optimization
177 if (!CO->ValidateCalledFunction(FI,*this))
178 continue;
179
180 // Loop over each of the uses of the function
181 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
182 UI != UE ; )
183 {
184 // If the use of the function is a call instruction
185 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
186 {
187 // Do the optimization on the LibCallOptimization.
188 if (CO->OptimizeCall(CI,*this))
189 {
190 ++SimplifiedLibCalls;
191 found_optimization = result = true;
192#ifndef NDEBUG
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000193 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000194#endif
195 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000196 }
197 }
198 }
Reid Spencere249a822005-04-27 07:54:40 +0000199 } while (found_optimization);
200 return result;
201 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000202
Reid Spencere249a822005-04-27 07:54:40 +0000203 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000204 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000205
Reid Spencere249a822005-04-27 07:54:40 +0000206 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000207 TargetData* getTargetData() const { return TD; }
208
209 /// @brief Return the size_t type -- syntactic shortcut
210 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
211
212 /// @brief Return a Function* for the fputc libcall
Reid Spencer4c444fe2005-04-30 03:17:54 +0000213 Function* get_fputc(const Type* FILEptr_type)
Reid Spencer93616972005-04-29 09:39:47 +0000214 {
215 if (!fputc_func)
216 {
217 std::vector<const Type*> args;
218 args.push_back(Type::IntTy);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000219 args.push_back(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +0000220 FunctionType* fputc_type =
221 FunctionType::get(Type::IntTy, args, false);
222 fputc_func = M->getOrInsertFunction("fputc",fputc_type);
223 }
224 return fputc_func;
225 }
226
227 /// @brief Return a Function* for the fwrite libcall
Reid Spencer4c444fe2005-04-30 03:17:54 +0000228 Function* get_fwrite(const Type* FILEptr_type)
Reid Spencer93616972005-04-29 09:39:47 +0000229 {
230 if (!fwrite_func)
231 {
232 std::vector<const Type*> args;
233 args.push_back(PointerType::get(Type::SByteTy));
234 args.push_back(TD->getIntPtrType());
235 args.push_back(TD->getIntPtrType());
Reid Spencer4c444fe2005-04-30 03:17:54 +0000236 args.push_back(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +0000237 FunctionType* fwrite_type =
238 FunctionType::get(TD->getIntPtrType(), args, false);
239 fwrite_func = M->getOrInsertFunction("fwrite",fwrite_type);
240 }
241 return fwrite_func;
242 }
243
244 /// @brief Return a Function* for the sqrt libcall
245 Function* get_sqrt()
246 {
247 if (!sqrt_func)
248 {
249 std::vector<const Type*> args;
250 args.push_back(Type::DoubleTy);
251 FunctionType* sqrt_type =
252 FunctionType::get(Type::DoubleTy, args, false);
253 sqrt_func = M->getOrInsertFunction("sqrt",sqrt_type);
254 }
255 return sqrt_func;
256 }
Reid Spencere249a822005-04-27 07:54:40 +0000257
258 /// @brief Return a Function* for the strlen libcall
Reid Spencer1e520fd2005-05-04 03:20:21 +0000259 Function* get_strcpy()
260 {
261 if (!strcpy_func)
262 {
263 std::vector<const Type*> args;
264 args.push_back(PointerType::get(Type::SByteTy));
265 args.push_back(PointerType::get(Type::SByteTy));
266 FunctionType* strcpy_type =
267 FunctionType::get(PointerType::get(Type::SByteTy), args, false);
268 strcpy_func = M->getOrInsertFunction("strcpy",strcpy_type);
269 }
270 return strcpy_func;
271 }
272
273 /// @brief Return a Function* for the strlen libcall
Reid Spencere249a822005-04-27 07:54:40 +0000274 Function* get_strlen()
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000275 {
Reid Spencere249a822005-04-27 07:54:40 +0000276 if (!strlen_func)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000277 {
278 std::vector<const Type*> args;
279 args.push_back(PointerType::get(Type::SByteTy));
Reid Spencere249a822005-04-27 07:54:40 +0000280 FunctionType* strlen_type =
281 FunctionType::get(TD->getIntPtrType(), args, false);
282 strlen_func = M->getOrInsertFunction("strlen",strlen_type);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000283 }
Reid Spencere249a822005-04-27 07:54:40 +0000284 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000285 }
286
Reid Spencer38cabd72005-05-03 07:23:44 +0000287 /// @brief Return a Function* for the memchr libcall
288 Function* get_memchr()
289 {
290 if (!memchr_func)
291 {
292 std::vector<const Type*> args;
293 args.push_back(PointerType::get(Type::SByteTy));
294 args.push_back(Type::IntTy);
295 args.push_back(TD->getIntPtrType());
296 FunctionType* memchr_type = FunctionType::get(
297 PointerType::get(Type::SByteTy), args, false);
298 memchr_func = M->getOrInsertFunction("memchr",memchr_type);
299 }
300 return memchr_func;
301 }
302
Reid Spencere249a822005-04-27 07:54:40 +0000303 /// @brief Return a Function* for the memcpy libcall
304 Function* get_memcpy()
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000305 {
Reid Spencere249a822005-04-27 07:54:40 +0000306 if (!memcpy_func)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000307 {
308 // Note: this is for llvm.memcpy intrinsic
309 std::vector<const Type*> args;
310 args.push_back(PointerType::get(Type::SByteTy));
311 args.push_back(PointerType::get(Type::SByteTy));
Reid Spencer1e520fd2005-05-04 03:20:21 +0000312 args.push_back(Type::UIntTy);
313 args.push_back(Type::UIntTy);
Reid Spencere249a822005-04-27 07:54:40 +0000314 FunctionType* memcpy_type = FunctionType::get(Type::VoidTy, args, false);
315 memcpy_func = M->getOrInsertFunction("llvm.memcpy",memcpy_type);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000316 }
Reid Spencere249a822005-04-27 07:54:40 +0000317 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000318 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000319
Reid Spencere249a822005-04-27 07:54:40 +0000320private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000321 /// @brief Reset our cached data for a new Module
Reid Spencere249a822005-04-27 07:54:40 +0000322 void reset(Module& mod)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000323 {
Reid Spencere249a822005-04-27 07:54:40 +0000324 M = &mod;
325 TD = &getAnalysis<TargetData>();
Reid Spencer93616972005-04-29 09:39:47 +0000326 fputc_func = 0;
327 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000328 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000329 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000330 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000331 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000332 strlen_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000333 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000334
Reid Spencere249a822005-04-27 07:54:40 +0000335private:
Reid Spencer93616972005-04-29 09:39:47 +0000336 Function* fputc_func; ///< Cached fputc function
337 Function* fwrite_func; ///< Cached fwrite function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000338 Function* memcpy_func; ///< Cached llvm.memcpy function
Reid Spencer38cabd72005-05-03 07:23:44 +0000339 Function* memchr_func; ///< Cached memchr function
Reid Spencer93616972005-04-29 09:39:47 +0000340 Function* sqrt_func; ///< Cached sqrt function
Reid Spencer1e520fd2005-05-04 03:20:21 +0000341 Function* strcpy_func; ///< Cached strcpy function
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000342 Function* strlen_func; ///< Cached strlen function
343 Module* M; ///< Cached Module
344 TargetData* TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000345};
346
347// Register the pass
348RegisterOpt<SimplifyLibCalls>
349X("simplify-libcalls","Simplify well-known library calls");
350
351} // anonymous namespace
352
353// The only public symbol in this file which just instantiates the pass object
354ModulePass *llvm::createSimplifyLibCallsPass()
355{
356 return new SimplifyLibCalls();
357}
358
359// Classes below here, in the anonymous namespace, are all subclasses of the
360// LibCallOptimization class, each implementing all optimizations possible for a
361// single well-known library call. Each has a static singleton instance that
362// auto registers it into the "optlist" global above.
363namespace {
364
Reid Spencer08b49402005-04-27 17:46:54 +0000365// Forward declare a utility function.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000366bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencere249a822005-04-27 07:54:40 +0000367
368/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000369/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000370/// the same value passed to the exit function. When this is done, it splits the
371/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000372/// @brief Replace calls to exit in main with a simple return
Reid Spencere249a822005-04-27 07:54:40 +0000373struct ExitInMainOptimization : public LibCallOptimization
Reid Spencer39a762d2005-04-25 02:53:12 +0000374{
Reid Spencer95d8efd2005-05-03 02:54:54 +0000375 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000376 "Number of 'exit' calls simplified") {}
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000377 virtual ~ExitInMainOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000378
379 // Make sure the called function looks like exit (int argument, int return
380 // type, external linkage, not varargs).
Reid Spencere249a822005-04-27 07:54:40 +0000381 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencerf2534c72005-04-25 21:11:48 +0000382 {
Reid Spencerb4f7b832005-04-26 07:45:18 +0000383 if (f->arg_size() >= 1)
384 if (f->arg_begin()->getType()->isInteger())
385 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +0000386 return false;
387 }
388
Reid Spencere249a822005-04-27 07:54:40 +0000389 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000390 {
Reid Spencerf2534c72005-04-25 21:11:48 +0000391 // To be careful, we check that the call to exit is coming from "main", that
392 // main has external linkage, and the return type of main and the argument
393 // to exit have the same type.
394 Function *from = ci->getParent()->getParent();
395 if (from->hasExternalLinkage())
396 if (from->getReturnType() == ci->getOperand(1)->getType())
397 if (from->getName() == "main")
398 {
399 // Okay, time to actually do the optimization. First, get the basic
400 // block of the call instruction
401 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000402
Reid Spencerf2534c72005-04-25 21:11:48 +0000403 // Create a return instruction that we'll replace the call with.
404 // Note that the argument of the return is the argument of the call
405 // instruction.
406 ReturnInst* ri = new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000407
Reid Spencerf2534c72005-04-25 21:11:48 +0000408 // Split the block at the call instruction which places it in a new
409 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000410 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000411
Reid Spencerf2534c72005-04-25 21:11:48 +0000412 // The block split caused a branch instruction to be inserted into
413 // the end of the original block, right after the return instruction
414 // that we put there. That's not a valid block, so delete the branch
415 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000416 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000417
Reid Spencerf2534c72005-04-25 21:11:48 +0000418 // Now we can finally get rid of the call instruction which now lives
419 // in the new basic block.
420 ci->eraseFromParent();
421
422 // Optimization succeeded, return true.
423 return true;
424 }
425 // We didn't pass the criteria for this optimization so return false
426 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000427 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000428} ExitInMainOptimizer;
429
Reid Spencere249a822005-04-27 07:54:40 +0000430/// This LibCallOptimization will simplify a call to the strcat library
431/// function. The simplification is possible only if the string being
432/// concatenated is a constant array or a constant expression that results in
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000433/// a constant string. In this case we can replace it with strlen + llvm.memcpy
434/// of the constant string. Both of these calls are further reduced, if possible
435/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000436/// @brief Simplify the strcat library function.
Reid Spencere249a822005-04-27 07:54:40 +0000437struct StrCatOptimization : public LibCallOptimization
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000438{
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000439public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000440 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000441 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000442 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000443
444public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000445 /// @breif Destructor
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000446 virtual ~StrCatOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000447
448 /// @brief Make sure that the "strcat" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000449 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencerf2534c72005-04-25 21:11:48 +0000450 {
451 if (f->getReturnType() == PointerType::get(Type::SByteTy))
452 if (f->arg_size() == 2)
453 {
454 Function::const_arg_iterator AI = f->arg_begin();
455 if (AI++->getType() == PointerType::get(Type::SByteTy))
456 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000457 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000458 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000459 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000460 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000461 }
462 return false;
463 }
464
Reid Spencere249a822005-04-27 07:54:40 +0000465 /// @brief Optimize the strcat library function
466 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000467 {
Reid Spencer08b49402005-04-27 17:46:54 +0000468 // Extract some information from the instruction
469 Module* M = ci->getParent()->getParent()->getParent();
470 Value* dest = ci->getOperand(1);
471 Value* src = ci->getOperand(2);
472
Reid Spencer76dab9a2005-04-26 05:24:00 +0000473 // Extract the initializer (while making numerous checks) from the
474 // source operand of the call to strcat. If we get null back, one of
475 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000476 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000477 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000478 return false;
479
Reid Spencerb4f7b832005-04-26 07:45:18 +0000480 // Handle the simple, do-nothing case
481 if (len == 0)
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000482 {
Reid Spencer08b49402005-04-27 17:46:54 +0000483 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000484 ci->eraseFromParent();
485 return true;
486 }
487
Reid Spencerb4f7b832005-04-26 07:45:18 +0000488 // Increment the length because we actually want to memcpy the null
489 // terminator as well.
490 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000491
Reid Spencerb4f7b832005-04-26 07:45:18 +0000492 // We need to find the end of the destination string. That's where the
493 // memory is to be moved to. We just generate a call to strlen (further
Reid Spencere249a822005-04-27 07:54:40 +0000494 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000495 // caches the Function* for us.
496 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000497 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000498
499 // Now that we have the destination's length, we must index into the
500 // destination's pointer to get the actual memcpy destination (end of
501 // the string .. we're concatenating).
502 std::vector<Value*> idx;
503 idx.push_back(strlen_inst);
504 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000505 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000506
507 // We have enough information to now generate the memcpy call to
508 // do the concatenation for us.
509 std::vector<Value*> vals;
510 vals.push_back(gep); // destination
511 vals.push_back(ci->getOperand(2)); // source
Reid Spencer1e520fd2005-05-04 03:20:21 +0000512 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
513 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000514 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000515
516 // Finally, substitute the first operand of the strcat call for the
517 // strcat call itself since strcat returns its first operand; and,
518 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000519 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000520 ci->eraseFromParent();
521 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000522 }
523} StrCatOptimizer;
524
Reid Spencer38cabd72005-05-03 07:23:44 +0000525/// This LibCallOptimization will simplify a call to the strchr library
526/// function. It optimizes out cases where the arguments are both constant
527/// and the result can be determined statically.
528/// @brief Simplify the strcmp library function.
529struct StrChrOptimization : public LibCallOptimization
530{
531public:
532 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000533 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000534 virtual ~StrChrOptimization() {}
535
536 /// @brief Make sure that the "strchr" function has the right prototype
537 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
538 {
539 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
540 f->arg_size() == 2)
541 return true;
542 return false;
543 }
544
545 /// @brief Perform the strcpy optimization
546 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
547 {
548 // If there aren't three operands, bail
549 if (ci->getNumOperands() != 3)
550 return false;
551
552 // Check that the first argument to strchr is a constant array of sbyte.
553 // If it is, get the length and data, otherwise return false.
554 uint64_t len = 0;
555 ConstantArray* CA;
556 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
557 return false;
558
559 // Check that the second argument to strchr is a constant int, return false
560 // if it isn't
561 ConstantSInt* CSI = dyn_cast<ConstantSInt>(ci->getOperand(2));
562 if (!CSI)
563 {
564 // Just lower this to memchr since we know the length of the string as
565 // it is constant.
566 Function* f = SLC.get_memchr();
567 std::vector<Value*> args;
568 args.push_back(ci->getOperand(1));
569 args.push_back(ci->getOperand(2));
570 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
571 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
572 ci->eraseFromParent();
573 return true;
574 }
575
576 // Get the character we're looking for
577 int64_t chr = CSI->getValue();
578
579 // Compute the offset
580 uint64_t offset = 0;
581 bool char_found = false;
582 for (uint64_t i = 0; i < len; ++i)
583 {
584 if (ConstantSInt* CI = dyn_cast<ConstantSInt>(CA->getOperand(i)))
585 {
586 // Check for the null terminator
587 if (CI->isNullValue())
588 break; // we found end of string
589 else if (CI->getValue() == chr)
590 {
591 char_found = true;
592 offset = i;
593 break;
594 }
595 }
596 }
597
598 // strchr(s,c) -> offset_of_in(c,s)
599 // (if c is a constant integer and s is a constant string)
600 if (char_found)
601 {
602 std::vector<Value*> indices;
603 indices.push_back(ConstantUInt::get(Type::ULongTy,offset));
604 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
605 ci->getOperand(1)->getName()+".strchr",ci);
606 ci->replaceAllUsesWith(GEP);
607 }
608 else
609 ci->replaceAllUsesWith(
610 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
611
612 ci->eraseFromParent();
613 return true;
614 }
615} StrChrOptimizer;
616
Reid Spencer4c444fe2005-04-30 03:17:54 +0000617/// This LibCallOptimization will simplify a call to the strcmp library
618/// function. It optimizes out cases where one or both arguments are constant
619/// and the result can be determined statically.
620/// @brief Simplify the strcmp library function.
621struct StrCmpOptimization : public LibCallOptimization
622{
623public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000624 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000625 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000626 virtual ~StrCmpOptimization() {}
627
628 /// @brief Make sure that the "strcpy" function has the right prototype
629 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
630 {
631 if (f->getReturnType() == Type::IntTy && f->arg_size() == 2)
632 return true;
633 return false;
634 }
635
636 /// @brief Perform the strcpy optimization
637 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
638 {
639 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000640 // then the optimization is to replace the CallInst with a constant 0
641 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000642 Value* s1 = ci->getOperand(1);
643 Value* s2 = ci->getOperand(2);
644 if (s1 == s2)
645 {
646 // strcmp(x,x) -> 0
647 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
648 ci->eraseFromParent();
649 return true;
650 }
651
652 bool isstr_1 = false;
653 uint64_t len_1 = 0;
654 ConstantArray* A1;
655 if (getConstantStringLength(s1,len_1,&A1))
656 {
657 isstr_1 = true;
658 if (len_1 == 0)
659 {
660 // strcmp("",x) -> *x
661 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
662 CastInst* cast =
663 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
664 ci->replaceAllUsesWith(cast);
665 ci->eraseFromParent();
666 return true;
667 }
668 }
669
670 bool isstr_2 = false;
671 uint64_t len_2 = 0;
672 ConstantArray* A2;
673 if (getConstantStringLength(s2,len_2,&A2))
674 {
675 isstr_2 = true;
676 if (len_2 == 0)
677 {
678 // strcmp(x,"") -> *x
679 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
680 CastInst* cast =
681 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
682 ci->replaceAllUsesWith(cast);
683 ci->eraseFromParent();
684 return true;
685 }
686 }
687
688 if (isstr_1 && isstr_2)
689 {
690 // strcmp(x,y) -> cnst (if both x and y are constant strings)
691 std::string str1 = A1->getAsString();
692 std::string str2 = A2->getAsString();
693 int result = strcmp(str1.c_str(), str2.c_str());
694 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
695 ci->eraseFromParent();
696 return true;
697 }
698 return false;
699 }
700} StrCmpOptimizer;
701
Reid Spencer49fa07042005-05-03 01:43:45 +0000702/// This LibCallOptimization will simplify a call to the strncmp library
703/// function. It optimizes out cases where one or both arguments are constant
704/// and the result can be determined statically.
705/// @brief Simplify the strncmp library function.
706struct StrNCmpOptimization : public LibCallOptimization
707{
708public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000709 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000710 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000711 virtual ~StrNCmpOptimization() {}
712
713 /// @brief Make sure that the "strcpy" function has the right prototype
714 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
715 {
716 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
717 return true;
718 return false;
719 }
720
721 /// @brief Perform the strncpy optimization
722 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
723 {
724 // First, check to see if src and destination are the same. If they are,
725 // then the optimization is to replace the CallInst with a constant 0
726 // because the call is a no-op.
727 Value* s1 = ci->getOperand(1);
728 Value* s2 = ci->getOperand(2);
729 if (s1 == s2)
730 {
731 // strncmp(x,x,l) -> 0
732 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
733 ci->eraseFromParent();
734 return true;
735 }
736
737 // Check the length argument, if it is Constant zero then the strings are
738 // considered equal.
739 uint64_t len_arg = 0;
740 bool len_arg_is_const = false;
741 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3)))
742 {
743 len_arg_is_const = true;
744 len_arg = len_CI->getRawValue();
745 if (len_arg == 0)
746 {
747 // strncmp(x,y,0) -> 0
748 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
749 ci->eraseFromParent();
750 return true;
751 }
752 }
753
754 bool isstr_1 = false;
755 uint64_t len_1 = 0;
756 ConstantArray* A1;
757 if (getConstantStringLength(s1,len_1,&A1))
758 {
759 isstr_1 = true;
760 if (len_1 == 0)
761 {
762 // strncmp("",x) -> *x
763 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
764 CastInst* cast =
765 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
766 ci->replaceAllUsesWith(cast);
767 ci->eraseFromParent();
768 return true;
769 }
770 }
771
772 bool isstr_2 = false;
773 uint64_t len_2 = 0;
774 ConstantArray* A2;
775 if (getConstantStringLength(s2,len_2,&A2))
776 {
777 isstr_2 = true;
778 if (len_2 == 0)
779 {
780 // strncmp(x,"") -> *x
781 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
782 CastInst* cast =
783 new CastInst(load,Type::IntTy,ci->getName()+".int",ci);
784 ci->replaceAllUsesWith(cast);
785 ci->eraseFromParent();
786 return true;
787 }
788 }
789
790 if (isstr_1 && isstr_2 && len_arg_is_const)
791 {
792 // strncmp(x,y,const) -> constant
793 std::string str1 = A1->getAsString();
794 std::string str2 = A2->getAsString();
795 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
796 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result));
797 ci->eraseFromParent();
798 return true;
799 }
800 return false;
801 }
802} StrNCmpOptimizer;
803
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000804/// This LibCallOptimization will simplify a call to the strcpy library
805/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000806/// (1) If src and dest are the same and not volatile, just return dest
807/// (2) If the src is a constant then we can convert to llvm.memmove
808/// @brief Simplify the strcpy library function.
809struct StrCpyOptimization : public LibCallOptimization
810{
811public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000812 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000813 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000814 virtual ~StrCpyOptimization() {}
815
816 /// @brief Make sure that the "strcpy" function has the right prototype
817 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
818 {
819 if (f->getReturnType() == PointerType::get(Type::SByteTy))
820 if (f->arg_size() == 2)
821 {
822 Function::const_arg_iterator AI = f->arg_begin();
823 if (AI++->getType() == PointerType::get(Type::SByteTy))
824 if (AI->getType() == PointerType::get(Type::SByteTy))
825 {
826 // Indicate this is a suitable call type.
827 return true;
828 }
829 }
830 return false;
831 }
832
833 /// @brief Perform the strcpy optimization
834 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
835 {
836 // First, check to see if src and destination are the same. If they are,
837 // then the optimization is to replace the CallInst with the destination
838 // because the call is a no-op. Note that this corresponds to the
839 // degenerate strcpy(X,X) case which should have "undefined" results
840 // according to the C specification. However, it occurs sometimes and
841 // we optimize it as a no-op.
842 Value* dest = ci->getOperand(1);
843 Value* src = ci->getOperand(2);
844 if (dest == src)
845 {
846 ci->replaceAllUsesWith(dest);
847 ci->eraseFromParent();
848 return true;
849 }
850
851 // Get the length of the constant string referenced by the second operand,
852 // the "src" parameter. Fail the optimization if we can't get the length
853 // (note that getConstantStringLength does lots of checks to make sure this
854 // is valid).
855 uint64_t len = 0;
856 if (!getConstantStringLength(ci->getOperand(2),len))
857 return false;
858
859 // If the constant string's length is zero we can optimize this by just
860 // doing a store of 0 at the first byte of the destination
861 if (len == 0)
862 {
863 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
864 ci->replaceAllUsesWith(dest);
865 ci->eraseFromParent();
866 return true;
867 }
868
869 // Increment the length because we actually want to memcpy the null
870 // terminator as well.
871 len++;
872
873 // Extract some information from the instruction
874 Module* M = ci->getParent()->getParent()->getParent();
875
876 // We have enough information to now generate the memcpy call to
877 // do the concatenation for us.
878 std::vector<Value*> vals;
879 vals.push_back(dest); // destination
880 vals.push_back(src); // source
Reid Spencer1e520fd2005-05-04 03:20:21 +0000881 vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length
882 vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000883 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000884
885 // Finally, substitute the first operand of the strcat call for the
886 // strcat call itself since strcat returns its first operand; and,
887 // kill the strcat CallInst.
888 ci->replaceAllUsesWith(dest);
889 ci->eraseFromParent();
890 return true;
891 }
892} StrCpyOptimizer;
893
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000894/// This LibCallOptimization will simplify a call to the strlen library
895/// function by replacing it with a constant value if the string provided to
896/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000897/// @brief Simplify the strlen library function.
Reid Spencere249a822005-04-27 07:54:40 +0000898struct StrLenOptimization : public LibCallOptimization
Reid Spencer76dab9a2005-04-26 05:24:00 +0000899{
Reid Spencer95d8efd2005-05-03 02:54:54 +0000900 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000901 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000902 virtual ~StrLenOptimization() {}
903
904 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000905 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000906 {
Reid Spencere249a822005-04-27 07:54:40 +0000907 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Reid Spencer76dab9a2005-04-26 05:24:00 +0000908 if (f->arg_size() == 1)
909 if (Function::const_arg_iterator AI = f->arg_begin())
910 if (AI->getType() == PointerType::get(Type::SByteTy))
911 return true;
912 return false;
913 }
914
915 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000916 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000917 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000918 // Make sure we're dealing with an sbyte* here.
919 Value* str = ci->getOperand(1);
920 if (str->getType() != PointerType::get(Type::SByteTy))
921 return false;
922
923 // Does the call to strlen have exactly one use?
924 if (ci->hasOneUse())
925 // Is that single use a binary operator?
926 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
927 // Is it compared against a constant integer?
928 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
929 {
930 // Get the value the strlen result is compared to
931 uint64_t val = CI->getRawValue();
932
933 // If its compared against length 0 with == or !=
934 if (val == 0 &&
935 (bop->getOpcode() == Instruction::SetEQ ||
936 bop->getOpcode() == Instruction::SetNE))
937 {
938 // strlen(x) != 0 -> *x != 0
939 // strlen(x) == 0 -> *x == 0
940 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
941 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
942 load, ConstantSInt::get(Type::SByteTy,0),
943 bop->getName()+".strlen", ci);
944 bop->replaceAllUsesWith(rbop);
945 bop->eraseFromParent();
946 ci->eraseFromParent();
947 return true;
948 }
949 }
950
951 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000952 uint64_t len = 0;
953 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000954 return false;
955
Reid Spencer170ae7f2005-05-07 20:15:59 +0000956 // strlen("xyz") -> 3 (for example)
Reid Spencere249a822005-04-27 07:54:40 +0000957 ci->replaceAllUsesWith(
958 ConstantInt::get(SLC.getTargetData()->getIntPtrType(),len));
Reid Spencerb4f7b832005-04-26 07:45:18 +0000959 ci->eraseFromParent();
960 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000961 }
962} StrLenOptimizer;
963
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000964/// This LibCallOptimization will simplify a call to the memcpy library
965/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
966/// bytes depending on the length of the string and the alignment. Additional
967/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +0000968/// @brief Simplify the memcpy library function.
Reid Spencer38cabd72005-05-03 07:23:44 +0000969struct LLVMMemCpyOptimization : public LibCallOptimization
Reid Spencerf2534c72005-04-25 21:11:48 +0000970{
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000971 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +0000972 LLVMMemCpyOptimization() : LibCallOptimization("llvm.memcpy",
Reid Spencer95d8efd2005-05-03 02:54:54 +0000973 "Number of 'llvm.memcpy' calls simplified") {}
974
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000975protected:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000976 /// @brief Subclass Constructor
Reid Spencer170ae7f2005-05-07 20:15:59 +0000977 LLVMMemCpyOptimization(const char* fname, const char* desc)
978 : LibCallOptimization(fname, desc) {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000979public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000980 /// @brief Destructor
Reid Spencer38cabd72005-05-03 07:23:44 +0000981 virtual ~LLVMMemCpyOptimization() {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000982
983 /// @brief Make sure that the "memcpy" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000984 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
Reid Spencerf2534c72005-04-25 21:11:48 +0000985 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000986 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +0000987 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +0000988 }
989
Reid Spencerb4f7b832005-04-26 07:45:18 +0000990 /// Because of alignment and instruction information that we don't have, we
991 /// leave the bulk of this to the code generators. The optimization here just
992 /// deals with a few degenerate cases where the length of the string and the
993 /// alignment match the sizes of our intrinsic types so we can do a load and
994 /// store instead of the memcpy call.
995 /// @brief Perform the memcpy optimization.
Reid Spencere249a822005-04-27 07:54:40 +0000996 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
Reid Spencerf2534c72005-04-25 21:11:48 +0000997 {
Reid Spencer4855ebf2005-04-26 19:55:57 +0000998 // Make sure we have constant int values to work with
999 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1000 if (!LEN)
1001 return false;
1002 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1003 if (!ALIGN)
1004 return false;
1005
1006 // If the length is larger than the alignment, we can't optimize
1007 uint64_t len = LEN->getRawValue();
1008 uint64_t alignment = ALIGN->getRawValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001009 if (alignment == 0)
1010 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001011 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001012 return false;
1013
Reid Spencer08b49402005-04-27 17:46:54 +00001014 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001015 Value* dest = ci->getOperand(1);
1016 Value* src = ci->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +00001017 Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001018 switch (len)
1019 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001020 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001021 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001022 ci->eraseFromParent();
1023 return true;
Reid Spencer08b49402005-04-27 17:46:54 +00001024 case 1: castType = Type::SByteTy; break;
1025 case 2: castType = Type::ShortTy; break;
1026 case 4: castType = Type::IntTy; break;
1027 case 8: castType = Type::LongTy; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001028 default:
1029 return false;
1030 }
Reid Spencer08b49402005-04-27 17:46:54 +00001031
1032 // Cast source and dest to the right sized primitive and then load/store
1033 CastInst* SrcCast =
1034 new CastInst(src,PointerType::get(castType),src->getName()+".cast",ci);
1035 CastInst* DestCast =
1036 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1037 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001038 StoreInst* SI = new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001039 ci->eraseFromParent();
1040 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001041 }
Reid Spencer38cabd72005-05-03 07:23:44 +00001042} LLVMMemCpyOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001043
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001044/// This LibCallOptimization will simplify a call to the memmove library
1045/// function. It is identical to MemCopyOptimization except for the name of
1046/// the intrinsic.
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001047/// @brief Simplify the memmove library function.
Reid Spencer38cabd72005-05-03 07:23:44 +00001048struct LLVMMemMoveOptimization : public LLVMMemCpyOptimization
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001049{
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001050 /// @brief Default Constructor
Reid Spencer38cabd72005-05-03 07:23:44 +00001051 LLVMMemMoveOptimization() : LLVMMemCpyOptimization("llvm.memmove",
Reid Spencer95d8efd2005-05-03 02:54:54 +00001052 "Number of 'llvm.memmove' calls simplified") {}
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001053
Reid Spencer38cabd72005-05-03 07:23:44 +00001054} LLVMMemMoveOptimizer;
1055
1056/// This LibCallOptimization will simplify a call to the memset library
1057/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1058/// bytes depending on the length argument.
1059struct LLVMMemSetOptimization : public LibCallOptimization
1060{
1061 /// @brief Default Constructor
1062 LLVMMemSetOptimization() : LibCallOptimization("llvm.memset",
Reid Spencer38cabd72005-05-03 07:23:44 +00001063 "Number of 'llvm.memset' calls simplified") {}
1064
1065public:
1066 /// @brief Destructor
1067 virtual ~LLVMMemSetOptimization() {}
1068
1069 /// @brief Make sure that the "memset" function has the right prototype
1070 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD)
1071 {
1072 // Just make sure this has 3 arguments per LLVM spec.
1073 return (f->arg_size() == 4);
1074 }
1075
1076 /// Because of alignment and instruction information that we don't have, we
1077 /// leave the bulk of this to the code generators. The optimization here just
1078 /// deals with a few degenerate cases where the length parameter is constant
1079 /// and the alignment matches the sizes of our intrinsic types so we can do
1080 /// store instead of the memcpy call. Other calls are transformed into the
1081 /// llvm.memset intrinsic.
1082 /// @brief Perform the memset optimization.
1083 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD)
1084 {
1085 // Make sure we have constant int values to work with
1086 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1087 if (!LEN)
1088 return false;
1089 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1090 if (!ALIGN)
1091 return false;
1092
1093 // Extract the length and alignment
1094 uint64_t len = LEN->getRawValue();
1095 uint64_t alignment = ALIGN->getRawValue();
1096
1097 // Alignment 0 is identity for alignment 1
1098 if (alignment == 0)
1099 alignment = 1;
1100
1101 // If the length is zero, this is a no-op
1102 if (len == 0)
1103 {
1104 // memset(d,c,0,a) -> noop
1105 ci->eraseFromParent();
1106 return true;
1107 }
1108
1109 // If the length is larger than the alignment, we can't optimize
1110 if (len > alignment)
1111 return false;
1112
1113 // Make sure we have a constant ubyte to work with so we can extract
1114 // the value to be filled.
1115 ConstantUInt* FILL = dyn_cast<ConstantUInt>(ci->getOperand(2));
1116 if (!FILL)
1117 return false;
1118 if (FILL->getType() != Type::UByteTy)
1119 return false;
1120
1121 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
1122
1123 // Extract the fill character
1124 uint64_t fill_char = FILL->getValue();
1125 uint64_t fill_value = fill_char;
1126
1127 // Get the type we will cast to, based on size of memory area to fill, and
1128 // and the value we will store there.
1129 Value* dest = ci->getOperand(1);
1130 Type* castType = 0;
1131 switch (len)
1132 {
1133 case 1:
1134 castType = Type::UByteTy;
1135 break;
1136 case 2:
1137 castType = Type::UShortTy;
1138 fill_value |= fill_char << 8;
1139 break;
1140 case 4:
1141 castType = Type::UIntTy;
1142 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1143 break;
1144 case 8:
1145 castType = Type::ULongTy;
1146 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1147 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1148 fill_value |= fill_char << 56;
1149 break;
1150 default:
1151 return false;
1152 }
1153
1154 // Cast dest to the right sized primitive and then load/store
1155 CastInst* DestCast =
1156 new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci);
1157 new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci);
1158 ci->eraseFromParent();
1159 return true;
1160 }
1161} LLVMMemSetOptimizer;
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001162
Reid Spencer93616972005-04-29 09:39:47 +00001163/// This LibCallOptimization will simplify calls to the "pow" library
1164/// function. It looks for cases where the result of pow is well known and
1165/// substitutes the appropriate value.
1166/// @brief Simplify the pow library function.
1167struct PowOptimization : public LibCallOptimization
1168{
1169public:
1170 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001171 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001172 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001173
Reid Spencer93616972005-04-29 09:39:47 +00001174 /// @brief Destructor
1175 virtual ~PowOptimization() {}
1176
1177 /// @brief Make sure that the "pow" function has the right prototype
1178 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1179 {
1180 // Just make sure this has 2 arguments
1181 return (f->arg_size() == 2);
1182 }
1183
1184 /// @brief Perform the pow optimization.
1185 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1186 {
1187 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1188 Value* base = ci->getOperand(1);
1189 Value* expn = ci->getOperand(2);
1190 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1191 double Op1V = Op1->getValue();
1192 if (Op1V == 1.0)
1193 {
1194 // pow(1.0,x) -> 1.0
1195 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1196 ci->eraseFromParent();
1197 return true;
1198 }
1199 }
1200 else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn))
1201 {
1202 double Op2V = Op2->getValue();
1203 if (Op2V == 0.0)
1204 {
1205 // pow(x,0.0) -> 1.0
1206 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1207 ci->eraseFromParent();
1208 return true;
1209 }
1210 else if (Op2V == 0.5)
1211 {
1212 // pow(x,0.5) -> sqrt(x)
1213 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1214 ci->getName()+".pow",ci);
1215 ci->replaceAllUsesWith(sqrt_inst);
1216 ci->eraseFromParent();
1217 return true;
1218 }
1219 else if (Op2V == 1.0)
1220 {
1221 // pow(x,1.0) -> x
1222 ci->replaceAllUsesWith(base);
1223 ci->eraseFromParent();
1224 return true;
1225 }
1226 else if (Op2V == -1.0)
1227 {
1228 // pow(x,-1.0) -> 1.0/x
1229 BinaryOperator* div_inst= BinaryOperator::create(Instruction::Div,
1230 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1231 ci->replaceAllUsesWith(div_inst);
1232 ci->eraseFromParent();
1233 return true;
1234 }
1235 }
1236 return false; // opt failed
1237 }
1238} PowOptimizer;
1239
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001240/// This LibCallOptimization will simplify calls to the "fprintf" library
1241/// function. It looks for cases where the result of fprintf is not used and the
1242/// operation can be reduced to something simpler.
1243/// @brief Simplify the pow library function.
1244struct FPrintFOptimization : public LibCallOptimization
1245{
1246public:
1247 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001248 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001249 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001250
1251 /// @brief Destructor
1252 virtual ~FPrintFOptimization() {}
1253
1254 /// @brief Make sure that the "fprintf" function has the right prototype
1255 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1256 {
1257 // Just make sure this has at least 2 arguments
1258 return (f->arg_size() >= 2);
1259 }
1260
1261 /// @brief Perform the fprintf optimization.
1262 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1263 {
1264 // If the call has more than 3 operands, we can't optimize it
1265 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1266 return false;
1267
1268 // If the result of the fprintf call is used, none of these optimizations
1269 // can be made.
1270 if (!ci->hasNUses(0))
1271 return false;
1272
1273 // All the optimizations depend on the length of the second argument and the
1274 // fact that it is a constant string array. Check that now
1275 uint64_t len = 0;
1276 ConstantArray* CA = 0;
1277 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1278 return false;
1279
1280 if (ci->getNumOperands() == 3)
1281 {
1282 // Make sure there's no % in the constant array
1283 for (unsigned i = 0; i < len; ++i)
1284 {
1285 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1286 {
1287 // Check for the null terminator
1288 if (CI->getRawValue() == '%')
1289 return false; // we found end of string
1290 }
1291 else
1292 return false;
1293 }
1294
1295 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),1file)
1296 const Type* FILEptr_type = ci->getOperand(1)->getType();
1297 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1298 if (!fwrite_func)
1299 return false;
1300 std::vector<Value*> args;
1301 args.push_back(ci->getOperand(2));
1302 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1303 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1304 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001305 new CallInst(fwrite_func,args,ci->getName(),ci);
1306 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001307 ci->eraseFromParent();
1308 return true;
1309 }
1310
1311 // The remaining optimizations require the format string to be length 2
1312 // "%s" or "%c".
1313 if (len != 2)
1314 return false;
1315
1316 // The first character has to be a %
1317 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1318 if (CI->getRawValue() != '%')
1319 return false;
1320
1321 // Get the second character and switch on its value
1322 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1323 switch (CI->getRawValue())
1324 {
1325 case 's':
1326 {
1327 uint64_t len = 0;
1328 ConstantArray* CA = 0;
1329 if (!getConstantStringLength(ci->getOperand(3), len, &CA))
1330 return false;
1331
Reid Spencer1e520fd2005-05-04 03:20:21 +00001332 // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001333 const Type* FILEptr_type = ci->getOperand(1)->getType();
1334 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1335 if (!fwrite_func)
1336 return false;
1337 std::vector<Value*> args;
1338 args.push_back(ci->getOperand(3));
1339 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1340 args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1341 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001342 new CallInst(fwrite_func,args,ci->getName(),ci);
1343 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001344 break;
1345 }
1346 case 'c':
1347 {
1348 ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(3));
1349 if (!CI)
1350 return false;
1351
1352 const Type* FILEptr_type = ci->getOperand(1)->getType();
1353 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1354 if (!fputc_func)
1355 return false;
1356 CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci);
1357 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencer1e520fd2005-05-04 03:20:21 +00001358 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001359 break;
1360 }
1361 default:
1362 return false;
1363 }
1364 ci->eraseFromParent();
1365 return true;
1366 }
1367} FPrintFOptimizer;
1368
1369
Reid Spencer1e520fd2005-05-04 03:20:21 +00001370/// This LibCallOptimization will simplify calls to the "sprintf" library
1371/// function. It looks for cases where the result of sprintf is not used and the
1372/// operation can be reduced to something simpler.
1373/// @brief Simplify the pow library function.
1374struct SPrintFOptimization : public LibCallOptimization
1375{
1376public:
1377 /// @brief Default Constructor
1378 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001379 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001380
1381 /// @brief Destructor
1382 virtual ~SPrintFOptimization() {}
1383
1384 /// @brief Make sure that the "fprintf" function has the right prototype
1385 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1386 {
1387 // Just make sure this has at least 2 arguments
1388 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1389 }
1390
1391 /// @brief Perform the sprintf optimization.
1392 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1393 {
1394 // If the call has more than 3 operands, we can't optimize it
1395 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1396 return false;
1397
1398 // All the optimizations depend on the length of the second argument and the
1399 // fact that it is a constant string array. Check that now
1400 uint64_t len = 0;
1401 ConstantArray* CA = 0;
1402 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1403 return false;
1404
1405 if (ci->getNumOperands() == 3)
1406 {
1407 if (len == 0)
1408 {
1409 // If the length is 0, we just need to store a null byte
1410 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
1411 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1412 ci->eraseFromParent();
1413 return true;
1414 }
1415
1416 // Make sure there's no % in the constant array
1417 for (unsigned i = 0; i < len; ++i)
1418 {
1419 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i)))
1420 {
1421 // Check for the null terminator
1422 if (CI->getRawValue() == '%')
1423 return false; // we found a %, can't optimize
1424 }
1425 else
1426 return false; // initializer is not constant int, can't optimize
1427 }
1428
1429 // Increment length because we want to copy the null byte too
1430 len++;
1431
1432 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
1433 Function* memcpy_func = SLC.get_memcpy();
1434 if (!memcpy_func)
1435 return false;
1436 std::vector<Value*> args;
1437 args.push_back(ci->getOperand(1));
1438 args.push_back(ci->getOperand(2));
1439 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1440 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1441 new CallInst(memcpy_func,args,"",ci);
1442 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1443 ci->eraseFromParent();
1444 return true;
1445 }
1446
1447 // The remaining optimizations require the format string to be length 2
1448 // "%s" or "%c".
1449 if (len != 2)
1450 return false;
1451
1452 // The first character has to be a %
1453 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
1454 if (CI->getRawValue() != '%')
1455 return false;
1456
1457 // Get the second character and switch on its value
1458 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
1459 switch (CI->getRawValue())
1460 {
1461 case 's':
1462 {
1463 uint64_t len = 0;
1464 if (ci->hasNUses(0))
1465 {
1466 // sprintf(dest,"%s",str) -> strcpy(dest,str)
1467 Function* strcpy_func = SLC.get_strcpy();
1468 if (!strcpy_func)
1469 return false;
1470 std::vector<Value*> args;
1471 args.push_back(ci->getOperand(1));
1472 args.push_back(ci->getOperand(3));
1473 new CallInst(strcpy_func,args,"",ci);
1474 }
1475 else if (getConstantStringLength(ci->getOperand(3),len))
1476 {
1477 // sprintf(dest,"%s",cstr) -> llvm.memcpy(dest,str,strlen(str),1)
1478 len++; // get the null-terminator
1479 Function* memcpy_func = SLC.get_memcpy();
1480 if (!memcpy_func)
1481 return false;
1482 std::vector<Value*> args;
1483 args.push_back(ci->getOperand(1));
1484 args.push_back(ci->getOperand(3));
1485 args.push_back(ConstantUInt::get(Type::UIntTy,len));
1486 args.push_back(ConstantUInt::get(Type::UIntTy,1));
1487 new CallInst(memcpy_func,args,"",ci);
1488 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len));
1489 }
1490 break;
1491 }
1492 case 'c':
1493 {
1494 // sprintf(dest,"%c",chr) -> store chr, dest
1495 CastInst* cast =
1496 new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci);
1497 new StoreInst(cast, ci->getOperand(1), ci);
1498 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
1499 ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
1500 ci);
1501 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
1502 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1503 break;
1504 }
1505 default:
1506 return false;
1507 }
1508 ci->eraseFromParent();
1509 return true;
1510 }
1511} SPrintFOptimizer;
1512
Reid Spencer93616972005-04-29 09:39:47 +00001513/// This LibCallOptimization will simplify calls to the "fputs" library
1514/// function. It looks for cases where the result of fputs is not used and the
1515/// operation can be reduced to something simpler.
1516/// @brief Simplify the pow library function.
1517struct PutsOptimization : public LibCallOptimization
1518{
1519public:
1520 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001521 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001522 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001523
1524 /// @brief Destructor
1525 virtual ~PutsOptimization() {}
1526
1527 /// @brief Make sure that the "fputs" function has the right prototype
1528 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1529 {
1530 // Just make sure this has 2 arguments
1531 return (f->arg_size() == 2);
1532 }
1533
1534 /// @brief Perform the fputs optimization.
1535 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1536 {
1537 // If the result is used, none of these optimizations work
1538 if (!ci->hasNUses(0))
1539 return false;
1540
1541 // All the optimizations depend on the length of the first argument and the
1542 // fact that it is a constant string array. Check that now
1543 uint64_t len = 0;
1544 if (!getConstantStringLength(ci->getOperand(1), len))
1545 return false;
1546
1547 switch (len)
1548 {
1549 case 0:
1550 // fputs("",F) -> noop
1551 break;
1552 case 1:
1553 {
1554 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001555 const Type* FILEptr_type = ci->getOperand(2)->getType();
1556 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001557 if (!fputc_func)
1558 return false;
1559 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1560 ci->getOperand(1)->getName()+".byte",ci);
1561 CastInst* casti = new CastInst(loadi,Type::IntTy,
1562 loadi->getName()+".int",ci);
1563 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1564 break;
1565 }
1566 default:
1567 {
1568 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001569 const Type* FILEptr_type = ci->getOperand(2)->getType();
1570 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001571 if (!fwrite_func)
1572 return false;
1573 std::vector<Value*> parms;
1574 parms.push_back(ci->getOperand(1));
1575 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),len));
1576 parms.push_back(ConstantUInt::get(SLC.getIntPtrType(),1));
1577 parms.push_back(ci->getOperand(2));
1578 new CallInst(fwrite_func,parms,"",ci);
1579 break;
1580 }
1581 }
1582 ci->eraseFromParent();
1583 return true; // success
1584 }
1585} PutsOptimizer;
1586
Reid Spencer282d0572005-05-04 18:58:28 +00001587/// This LibCallOptimization will simplify calls to the "isdigit" library
1588/// function. It simply does range checks the parameter explicitly.
1589/// @brief Simplify the isdigit library function.
1590struct IsDigitOptimization : public LibCallOptimization
1591{
1592public:
1593 /// @brief Default Constructor
1594 IsDigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001595 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001596
1597 /// @brief Destructor
1598 virtual ~IsDigitOptimization() {}
1599
1600 /// @brief Make sure that the "fputs" function has the right prototype
1601 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1602 {
1603 // Just make sure this has 1 argument
1604 return (f->arg_size() == 1);
1605 }
1606
1607 /// @brief Perform the toascii optimization.
1608 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1609 {
1610 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1)))
1611 {
1612 // isdigit(c) -> 0 or 1, if 'c' is constant
1613 uint64_t val = CI->getRawValue();
1614 if (val >= '0' && val <='9')
1615 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1));
1616 else
1617 ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0));
1618 ci->eraseFromParent();
1619 return true;
1620 }
1621
1622 // isdigit(c) -> (unsigned)c - '0' <= 9
1623 CastInst* cast =
1624 new CastInst(ci->getOperand(1),Type::UIntTy,
1625 ci->getOperand(1)->getName()+".uint",ci);
1626 BinaryOperator* sub_inst = BinaryOperator::create(Instruction::Sub,cast,
1627 ConstantUInt::get(Type::UIntTy,0x30),
1628 ci->getOperand(1)->getName()+".sub",ci);
1629 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
1630 ConstantUInt::get(Type::UIntTy,9),
1631 ci->getOperand(1)->getName()+".cmp",ci);
1632 CastInst* c2 =
1633 new CastInst(setcond_inst,Type::IntTy,
1634 ci->getOperand(1)->getName()+".isdigit",ci);
1635 ci->replaceAllUsesWith(c2);
1636 ci->eraseFromParent();
1637 return true;
1638 }
1639} IsDigitOptimizer;
1640
Reid Spencer4c444fe2005-04-30 03:17:54 +00001641/// This LibCallOptimization will simplify calls to the "toascii" library
1642/// function. It simply does the corresponding and operation to restrict the
1643/// range of values to the ASCII character set (0-127).
1644/// @brief Simplify the toascii library function.
1645struct ToAsciiOptimization : public LibCallOptimization
1646{
1647public:
1648 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001649 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001650 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001651
1652 /// @brief Destructor
1653 virtual ~ToAsciiOptimization() {}
1654
1655 /// @brief Make sure that the "fputs" function has the right prototype
1656 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
1657 {
1658 // Just make sure this has 2 arguments
1659 return (f->arg_size() == 1);
1660 }
1661
1662 /// @brief Perform the toascii optimization.
1663 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
1664 {
1665 // toascii(c) -> (c & 0x7f)
1666 Value* chr = ci->getOperand(1);
1667 BinaryOperator* and_inst = BinaryOperator::create(Instruction::And,chr,
1668 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1669 ci->replaceAllUsesWith(and_inst);
1670 ci->eraseFromParent();
1671 return true;
1672 }
1673} ToAsciiOptimizer;
1674
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001675/// A function to compute the length of a null-terminated constant array of
1676/// integers. This function can't rely on the size of the constant array
1677/// because there could be a null terminator in the middle of the array.
1678/// We also have to bail out if we find a non-integer constant initializer
1679/// of one of the elements or if there is no null-terminator. The logic
1680/// below checks each of these conditions and will return true only if all
1681/// conditions are met. In that case, the \p len parameter is set to the length
1682/// of the null-terminated string. If false is returned, the conditions were
1683/// not met and len is set to 0.
1684/// @brief Get the length of a constant string (null-terminated array).
Reid Spencer4c444fe2005-04-30 03:17:54 +00001685bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** CA )
Reid Spencere249a822005-04-27 07:54:40 +00001686{
1687 assert(V != 0 && "Invalid args to getConstantStringLength");
1688 len = 0; // make sure we initialize this
1689 User* GEP = 0;
1690 // If the value is not a GEP instruction nor a constant expression with a
1691 // GEP instruction, then return false because ConstantArray can't occur
1692 // any other way
1693 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
1694 GEP = GEPI;
1695 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
1696 if (CE->getOpcode() == Instruction::GetElementPtr)
1697 GEP = CE;
1698 else
1699 return false;
1700 else
1701 return false;
1702
1703 // Make sure the GEP has exactly three arguments.
1704 if (GEP->getNumOperands() != 3)
1705 return false;
1706
1707 // Check to make sure that the first operand of the GEP is an integer and
1708 // has value 0 so that we are sure we're indexing into the initializer.
1709 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1)))
1710 {
1711 if (!op1->isNullValue())
1712 return false;
1713 }
1714 else
1715 return false;
1716
1717 // Ensure that the second operand is a ConstantInt. If it isn't then this
1718 // GEP is wonky and we're not really sure what were referencing into and
1719 // better of not optimizing it. While we're at it, get the second index
1720 // value. We'll need this later for indexing the ConstantArray.
1721 uint64_t start_idx = 0;
1722 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
1723 start_idx = CI->getRawValue();
1724 else
1725 return false;
1726
1727 // The GEP instruction, constant or instruction, must reference a global
1728 // variable that is a constant and is initialized. The referenced constant
1729 // initializer is the array that we'll use for optimization.
1730 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
1731 if (!GV || !GV->isConstant() || !GV->hasInitializer())
1732 return false;
1733
1734 // Get the initializer.
1735 Constant* INTLZR = GV->getInitializer();
1736
1737 // Handle the ConstantAggregateZero case
1738 if (ConstantAggregateZero* CAZ = dyn_cast<ConstantAggregateZero>(INTLZR))
1739 {
1740 // This is a degenerate case. The initializer is constant zero so the
1741 // length of the string must be zero.
1742 len = 0;
1743 return true;
1744 }
1745
1746 // Must be a Constant Array
1747 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
1748 if (!A)
1749 return false;
1750
1751 // Get the number of elements in the array
1752 uint64_t max_elems = A->getType()->getNumElements();
1753
1754 // Traverse the constant array from start_idx (derived above) which is
1755 // the place the GEP refers to in the array.
1756 for ( len = start_idx; len < max_elems; len++)
1757 {
1758 if (ConstantInt* CI = dyn_cast<ConstantInt>(A->getOperand(len)))
1759 {
1760 // Check for the null terminator
1761 if (CI->isNullValue())
1762 break; // we found end of string
1763 }
1764 else
1765 return false; // This array isn't suitable, non-int initializer
1766 }
1767 if (len >= max_elems)
1768 return false; // This array isn't null terminated
1769
1770 // Subtract out the initial value from the length
1771 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00001772 if (CA)
1773 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00001774 return true; // success!
1775}
1776
Reid Spencer649ac282005-04-28 04:40:06 +00001777// TODO:
1778// Additional cases that we need to add to this file:
1779//
Reid Spencer649ac282005-04-28 04:40:06 +00001780// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00001781// * cbrt(expN(X)) -> expN(x/3)
1782// * cbrt(sqrt(x)) -> pow(x,1/6)
1783// * cbrt(sqrt(x)) -> pow(x,1/9)
1784//
Reid Spencer649ac282005-04-28 04:40:06 +00001785// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00001786// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00001787//
1788// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00001789// * exp(log(x)) -> x
1790//
Reid Spencer649ac282005-04-28 04:40:06 +00001791// ffs, ffsl, ffsll:
1792// * ffs(cnst) -> cnst'
1793//
Reid Spencer649ac282005-04-28 04:40:06 +00001794// isascii:
1795// * isascii(c) -> ((c & ~0x7f) == 0)
1796//
1797// isdigit:
1798// * isdigit(c) -> (unsigned)(c) - '0' <= 9
1799//
1800// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00001801// * log(exp(x)) -> x
1802// * log(x**y) -> y*log(x)
1803// * log(exp(y)) -> y*log(e)
1804// * log(exp2(y)) -> y*log(2)
1805// * log(exp10(y)) -> y*log(10)
1806// * log(sqrt(x)) -> 0.5*log(x)
1807// * log(pow(x,y)) -> y*log(x)
1808//
1809// lround, lroundf, lroundl:
1810// * lround(cnst) -> cnst'
1811//
1812// memcmp:
1813// * memcmp(s1,s2,0) -> 0
1814// * memcmp(x,x,l) -> 0
1815// * memcmp(x,y,l) -> cnst
1816// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer38cabd72005-05-03 07:23:44 +00001817// * memcmp(x,y,1) -> *x - *y
Reid Spencer649ac282005-04-28 04:40:06 +00001818//
Reid Spencer649ac282005-04-28 04:40:06 +00001819// memmove:
1820// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
1821// (if s is a global constant array)
1822//
Reid Spencer649ac282005-04-28 04:40:06 +00001823// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00001824// * pow(exp(x),y) -> exp(x*y)
1825// * pow(sqrt(x),y) -> pow(x,y*0.5)
1826// * pow(pow(x,y),z)-> pow(x,y*z)
1827//
1828// puts:
1829// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
1830//
1831// round, roundf, roundl:
1832// * round(cnst) -> cnst'
1833//
1834// signbit:
1835// * signbit(cnst) -> cnst'
1836// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
1837//
Reid Spencer649ac282005-04-28 04:40:06 +00001838// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00001839// * sqrt(expN(x)) -> expN(x*0.5)
1840// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
1841// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
1842//
Reid Spencer170ae7f2005-05-07 20:15:59 +00001843// stpcpy:
1844// * stpcpy(str, "literal") ->
1845// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00001846// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00001847// * strrchr(s,c) -> reverse_offset_of_in(c,s)
1848// (if c is a constant integer and s is a constant string)
1849// * strrchr(s1,0) -> strchr(s1,0)
1850//
Reid Spencer649ac282005-04-28 04:40:06 +00001851// strncat:
1852// * strncat(x,y,0) -> x
1853// * strncat(x,y,0) -> x (if strlen(y) = 0)
1854// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
1855//
Reid Spencer649ac282005-04-28 04:40:06 +00001856// strncpy:
1857// * strncpy(d,s,0) -> d
1858// * strncpy(d,s,l) -> memcpy(d,s,l,1)
1859// (if s and l are constants)
1860//
1861// strpbrk:
1862// * strpbrk(s,a) -> offset_in_for(s,a)
1863// (if s and a are both constant strings)
1864// * strpbrk(s,"") -> 0
1865// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
1866//
1867// strspn, strcspn:
1868// * strspn(s,a) -> const_int (if both args are constant)
1869// * strspn("",a) -> 0
1870// * strspn(s,"") -> 0
1871// * strcspn(s,a) -> const_int (if both args are constant)
1872// * strcspn("",a) -> 0
1873// * strcspn(s,"") -> strlen(a)
1874//
1875// strstr:
1876// * strstr(x,x) -> x
1877// * strstr(s1,s2) -> offset_of_s2_in(s1)
1878// (if s1 and s2 are constant strings)
1879//
1880// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00001881// * tan(atan(x)) -> x
1882//
Reid Spencer649ac282005-04-28 04:40:06 +00001883// trunc, truncf, truncl:
1884// * trunc(cnst) -> cnst'
1885//
1886//
Reid Spencer39a762d2005-04-25 02:53:12 +00001887}