blob: 7cc1a5bccb55fa5ffab11a74c015910d27e16aeb [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//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer9bbaa2a2005-04-25 03:59:26 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencer39a762d2005-04-25 02:53:12 +00007//
8//===----------------------------------------------------------------------===//
9//
Jeff Cohen5f4ef3c2005-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 Spencer0b13cda2005-05-21 00:57:44 +000013// occurs within the main() function can be transformed into a simple "return 3"
Jeff Cohen5f4ef3c2005-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 Spencer39a762d2005-04-25 02:53:12 +000017//
18//===----------------------------------------------------------------------===//
19
Reid Spencer18b99812005-04-26 23:05:17 +000020#define DEBUG_TYPE "simplify-libcalls"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000021#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Instructions.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000024#include "llvm/Module.h"
25#include "llvm/Pass.h"
Reid Spencer9bbaa2a2005-04-25 03:59:26 +000026#include "llvm/ADT/hash_map"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000027#include "llvm/ADT/Statistic.h"
Reid Spencerade18212006-01-19 08:36:56 +000028#include "llvm/Config/config.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000029#include "llvm/Support/Debug.h"
Reid Spencerbb92b4f2005-04-26 19:13:17 +000030#include "llvm/Target/TargetData.h"
Reid Spencer2bc7a4f2005-04-26 23:02:16 +000031#include "llvm/Transforms/IPO.h"
Reid Spencer39a762d2005-04-25 02:53:12 +000032using namespace llvm;
33
Reid Spencere249a822005-04-27 07:54:40 +000034/// This statistic keeps track of the total number of library calls that have
35/// been simplified regardless of which call it is.
Chris Lattner1631bcb2006-12-19 22:09:18 +000036STATISTIC(SimplifiedLibCalls, "Number of library calls simplified");
Reid Spencer39a762d2005-04-25 02:53:12 +000037
Chris Lattner1631bcb2006-12-19 22:09:18 +000038namespace {
39 // Forward declarations
40 class LibCallOptimization;
41 class SimplifyLibCalls;
42
Chris Lattner33081b42006-01-22 23:10:26 +000043/// This list is populated by the constructor for LibCallOptimization class.
Reid Spencer9fbad132005-05-21 01:27:04 +000044/// Therefore all subclasses are registered here at static initialization time
45/// and this list is what the SimplifyLibCalls pass uses to apply the individual
46/// optimizations to the call sites.
Reid Spencer7ddcfb32005-04-27 21:29:20 +000047/// @brief The list of optimizations deriving from LibCallOptimization
Chris Lattner33081b42006-01-22 23:10:26 +000048static LibCallOptimization *OptList = 0;
Reid Spencer39a762d2005-04-25 02:53:12 +000049
Reid Spencere249a822005-04-27 07:54:40 +000050/// This class is the abstract base class for the set of optimizations that
Reid Spencer7ddcfb32005-04-27 21:29:20 +000051/// corresponds to one library call. The SimplifyLibCalls pass will call the
Reid Spencere249a822005-04-27 07:54:40 +000052/// ValidateCalledFunction method to ask the optimization if a given Function
Reid Spencer7ddcfb32005-04-27 21:29:20 +000053/// is the kind that the optimization can handle. If the subclass returns true,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000054/// then SImplifyLibCalls will also call the OptimizeCall method to perform,
Reid Spencer7ddcfb32005-04-27 21:29:20 +000055/// or attempt to perform, the optimization(s) for the library call. Otherwise,
56/// OptimizeCall won't be called. Subclasses are responsible for providing the
57/// name of the library call (strlen, strcpy, etc.) to the LibCallOptimization
58/// constructor. This is used to efficiently select which call instructions to
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000059/// optimize. The criteria for a "lib call" is "anything with well known
Reid Spencer7ddcfb32005-04-27 21:29:20 +000060/// semantics", typically a library function that is defined by an international
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000061/// standard. Because the semantics are well known, the optimizations can
Reid Spencer7ddcfb32005-04-27 21:29:20 +000062/// generally short-circuit actually calling the function if there's a simpler
63/// way (e.g. strlen(X) can be reduced to a constant if X is a constant global).
Reid Spencere249a822005-04-27 07:54:40 +000064/// @brief Base class for library call optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +000065class LibCallOptimization {
Chris Lattner33081b42006-01-22 23:10:26 +000066 LibCallOptimization **Prev, *Next;
67 const char *FunctionName; ///< Name of the library call we optimize
68#ifndef NDEBUG
Chris Lattner700b8732006-12-06 17:46:33 +000069 Statistic occurrences; ///< debug statistic (-debug-only=simplify-libcalls)
Chris Lattner33081b42006-01-22 23:10:26 +000070#endif
Jeff Cohen4bc952f2005-04-29 03:05:44 +000071public:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000072 /// The \p fname argument must be the name of the library function being
Reid Spencer7ddcfb32005-04-27 21:29:20 +000073 /// optimized by the subclass.
74 /// @brief Constructor that registers the optimization.
Chris Lattner33081b42006-01-22 23:10:26 +000075 LibCallOptimization(const char *FName, const char *Description)
Chris Lattner575d3212006-12-19 23:16:47 +000076 : FunctionName(FName) {
77
Reid Spencere95a6472005-04-27 00:05:45 +000078#ifndef NDEBUG
Chris Lattner575d3212006-12-19 23:16:47 +000079 occurrences.construct("simplify-libcalls", Description);
Reid Spencere95a6472005-04-27 00:05:45 +000080#endif
Chris Lattner33081b42006-01-22 23:10:26 +000081 // Register this optimizer in the list of optimizations.
82 Next = OptList;
83 OptList = this;
84 Prev = &OptList;
85 if (Next) Next->Prev = &Next;
Reid Spencer39a762d2005-04-25 02:53:12 +000086 }
Chris Lattner33081b42006-01-22 23:10:26 +000087
88 /// getNext - All libcall optimizations are chained together into a list,
89 /// return the next one in the list.
90 LibCallOptimization *getNext() { return Next; }
Reid Spencer39a762d2005-04-25 02:53:12 +000091
Reid Spencer7ddcfb32005-04-27 21:29:20 +000092 /// @brief Deregister from the optlist
Chris Lattner33081b42006-01-22 23:10:26 +000093 virtual ~LibCallOptimization() {
94 *Prev = Next;
95 if (Next) Next->Prev = Prev;
96 }
Reid Spencer8ee5aac2005-04-26 03:26:15 +000097
Reid Spencere249a822005-04-27 07:54:40 +000098 /// The implementation of this function in subclasses should determine if
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +000099 /// \p F is suitable for the optimization. This method is called by
100 /// SimplifyLibCalls::runOnModule to short circuit visiting all the call
101 /// sites of such a function if that function is not suitable in the first
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000102 /// place. If the called function is suitabe, this method should return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000103 /// false, otherwise. This function should also perform any lazy
104 /// initialization that the LibCallOptimization needs to do, if its to return
Reid Spencere249a822005-04-27 07:54:40 +0000105 /// true. This avoids doing initialization until the optimizer is actually
106 /// going to be called upon to do some optimization.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000107 /// @brief Determine if the function is suitable for optimization
Reid Spencere249a822005-04-27 07:54:40 +0000108 virtual bool ValidateCalledFunction(
109 const Function* F, ///< The function that is the target of call sites
110 SimplifyLibCalls& SLC ///< The pass object invoking us
111 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000112
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000113 /// The implementations of this function in subclasses is the heart of the
114 /// SimplifyLibCalls algorithm. Sublcasses of this class implement
Reid Spencere249a822005-04-27 07:54:40 +0000115 /// OptimizeCall to determine if (a) the conditions are right for optimizing
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000116 /// the call and (b) to perform the optimization. If an action is taken
Reid Spencere249a822005-04-27 07:54:40 +0000117 /// against ci, the subclass is responsible for returning true and ensuring
118 /// that ci is erased from its parent.
Reid Spencere249a822005-04-27 07:54:40 +0000119 /// @brief Optimize a call, if possible.
120 virtual bool OptimizeCall(
121 CallInst* ci, ///< The call instruction that should be optimized.
122 SimplifyLibCalls& SLC ///< The pass object invoking us
123 ) = 0;
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000124
Reid Spencere249a822005-04-27 07:54:40 +0000125 /// @brief Get the name of the library call being optimized
Chris Lattner33081b42006-01-22 23:10:26 +0000126 const char *getFunctionName() const { return FunctionName; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000127
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000128 /// @brief Called by SimplifyLibCalls to update the occurrences statistic.
Chris Lattner33081b42006-01-22 23:10:26 +0000129 void succeeded() {
Reid Spencere249a822005-04-27 07:54:40 +0000130#ifndef NDEBUG
Chris Lattner33081b42006-01-22 23:10:26 +0000131 DEBUG(++occurrences);
Reid Spencere249a822005-04-27 07:54:40 +0000132#endif
Chris Lattner33081b42006-01-22 23:10:26 +0000133 }
Reid Spencere249a822005-04-27 07:54:40 +0000134};
135
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000136/// This class is an LLVM Pass that applies each of the LibCallOptimization
Reid Spencere249a822005-04-27 07:54:40 +0000137/// instances to all the call sites in a module, relatively efficiently. The
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000138/// purpose of this pass is to provide optimizations for calls to well-known
Reid Spencere249a822005-04-27 07:54:40 +0000139/// functions with well-known semantics, such as those in the c library. The
Chris Lattner4201cd12005-08-24 17:22:17 +0000140/// class provides the basic infrastructure for handling runOnModule. Whenever
141/// this pass finds a function call, it asks the appropriate optimizer to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000142/// validate the call (ValidateLibraryCall). If it is validated, then
143/// the OptimizeCall method is also called.
Reid Spencere249a822005-04-27 07:54:40 +0000144/// @brief A ModulePass for optimizing well-known function calls.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000145class SimplifyLibCalls : public ModulePass {
Jeff Cohen4bc952f2005-04-29 03:05:44 +0000146public:
Reid Spencere249a822005-04-27 07:54:40 +0000147 /// We need some target data for accurate signature details that are
148 /// target dependent. So we require target data in our AnalysisUsage.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000149 /// @brief Require TargetData from AnalysisUsage.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000150 virtual void getAnalysisUsage(AnalysisUsage& Info) const {
Reid Spencere249a822005-04-27 07:54:40 +0000151 // Ask that the TargetData analysis be performed before us so we can use
152 // the target data.
153 Info.addRequired<TargetData>();
154 }
155
156 /// For this pass, process all of the function calls in the module, calling
157 /// ValidateLibraryCall and OptimizeCall as appropriate.
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000158 /// @brief Run all the lib call optimizations on a Module.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000159 virtual bool runOnModule(Module &M) {
Reid Spencere249a822005-04-27 07:54:40 +0000160 reset(M);
161
162 bool result = false;
Chris Lattner33081b42006-01-22 23:10:26 +0000163 hash_map<std::string, LibCallOptimization*> OptznMap;
164 for (LibCallOptimization *Optzn = OptList; Optzn; Optzn = Optzn->getNext())
165 OptznMap[Optzn->getFunctionName()] = Optzn;
Reid Spencere249a822005-04-27 07:54:40 +0000166
167 // The call optimizations can be recursive. That is, the optimization might
168 // generate a call to another function which can also be optimized. This way
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000169 // we make the LibCallOptimization instances very specific to the case they
170 // handle. It also means we need to keep running over the function calls in
Reid Spencere249a822005-04-27 07:54:40 +0000171 // the module until we don't get any more optimizations possible.
172 bool found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000173 do {
Reid Spencere249a822005-04-27 07:54:40 +0000174 found_optimization = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000175 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Reid Spencere249a822005-04-27 07:54:40 +0000176 // All the "well-known" functions are external and have external linkage
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000177 // because they live in a runtime library somewhere and were (probably)
178 // not compiled by LLVM. So, we only act on external functions that
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000179 // have external or dllimport linkage and non-empty uses.
180 if (!FI->isExternal() ||
181 !(FI->hasExternalLinkage() || FI->hasDLLImportLinkage()) ||
182 FI->use_empty())
Reid Spencere249a822005-04-27 07:54:40 +0000183 continue;
184
185 // Get the optimization class that pertains to this function
Chris Lattner33081b42006-01-22 23:10:26 +0000186 hash_map<std::string, LibCallOptimization*>::iterator OMI =
187 OptznMap.find(FI->getName());
188 if (OMI == OptznMap.end()) continue;
189
190 LibCallOptimization *CO = OMI->second;
Reid Spencere249a822005-04-27 07:54:40 +0000191
192 // Make sure the called function is suitable for the optimization
Chris Lattner33081b42006-01-22 23:10:26 +0000193 if (!CO->ValidateCalledFunction(FI, *this))
Reid Spencere249a822005-04-27 07:54:40 +0000194 continue;
195
196 // Loop over each of the uses of the function
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000197 for (Value::use_iterator UI = FI->use_begin(), UE = FI->use_end();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000198 UI != UE ; ) {
Reid Spencere249a822005-04-27 07:54:40 +0000199 // If the use of the function is a call instruction
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000200 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
Reid Spencere249a822005-04-27 07:54:40 +0000201 // Do the optimization on the LibCallOptimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000202 if (CO->OptimizeCall(CI, *this)) {
Reid Spencere249a822005-04-27 07:54:40 +0000203 ++SimplifiedLibCalls;
204 found_optimization = result = true;
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000205 CO->succeeded();
Reid Spencere249a822005-04-27 07:54:40 +0000206 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000207 }
208 }
209 }
Reid Spencere249a822005-04-27 07:54:40 +0000210 } while (found_optimization);
Chris Lattner33081b42006-01-22 23:10:26 +0000211
Reid Spencere249a822005-04-27 07:54:40 +0000212 return result;
213 }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000214
Reid Spencere249a822005-04-27 07:54:40 +0000215 /// @brief Return the *current* module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000216 Module* getModule() const { return M; }
Reid Spencerbb92b4f2005-04-26 19:13:17 +0000217
Reid Spencere249a822005-04-27 07:54:40 +0000218 /// @brief Return the *current* target data for the module we're working on.
Reid Spencer93616972005-04-29 09:39:47 +0000219 TargetData* getTargetData() const { return TD; }
220
221 /// @brief Return the size_t type -- syntactic shortcut
222 const Type* getIntPtrType() const { return TD->getIntPtrType(); }
223
Evan Cheng1fc40252006-06-16 08:36:35 +0000224 /// @brief Return a Function* for the putchar libcall
225 Function* get_putchar() {
226 if (!putchar_func)
227 putchar_func = M->getOrInsertFunction("putchar", Type::IntTy, Type::IntTy,
228 NULL);
229 return putchar_func;
230 }
231
232 /// @brief Return a Function* for the puts libcall
233 Function* get_puts() {
234 if (!puts_func)
235 puts_func = M->getOrInsertFunction("puts", Type::IntTy,
236 PointerType::get(Type::SByteTy),
237 NULL);
238 return puts_func;
239 }
240
Reid Spencer93616972005-04-29 09:39:47 +0000241 /// @brief Return a Function* for the fputc libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000242 Function* get_fputc(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000243 if (!fputc_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000244 fputc_func = M->getOrInsertFunction("fputc", Type::IntTy, Type::IntTy,
245 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000246 return fputc_func;
247 }
248
Evan Chengf2ea5872006-06-16 04:52:30 +0000249 /// @brief Return a Function* for the fputs libcall
250 Function* get_fputs(const Type* FILEptr_type) {
251 if (!fputs_func)
252 fputs_func = M->getOrInsertFunction("fputs", Type::IntTy,
253 PointerType::get(Type::SByteTy),
254 FILEptr_type, NULL);
255 return fputs_func;
256 }
257
Reid Spencer93616972005-04-29 09:39:47 +0000258 /// @brief Return a Function* for the fwrite libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000259 Function* get_fwrite(const Type* FILEptr_type) {
Reid Spencer93616972005-04-29 09:39:47 +0000260 if (!fwrite_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000261 fwrite_func = M->getOrInsertFunction("fwrite", TD->getIntPtrType(),
262 PointerType::get(Type::SByteTy),
263 TD->getIntPtrType(),
264 TD->getIntPtrType(),
265 FILEptr_type, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000266 return fwrite_func;
267 }
268
269 /// @brief Return a Function* for the sqrt libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000270 Function* get_sqrt() {
Reid Spencer93616972005-04-29 09:39:47 +0000271 if (!sqrt_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000272 sqrt_func = M->getOrInsertFunction("sqrt", Type::DoubleTy,
273 Type::DoubleTy, NULL);
Reid Spencer93616972005-04-29 09:39:47 +0000274 return sqrt_func;
275 }
Reid Spencere249a822005-04-27 07:54:40 +0000276
277 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000278 Function* get_strcpy() {
Reid Spencer1e520fd2005-05-04 03:20:21 +0000279 if (!strcpy_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000280 strcpy_func = M->getOrInsertFunction("strcpy",
281 PointerType::get(Type::SByteTy),
282 PointerType::get(Type::SByteTy),
283 PointerType::get(Type::SByteTy),
284 NULL);
Reid Spencer1e520fd2005-05-04 03:20:21 +0000285 return strcpy_func;
286 }
287
288 /// @brief Return a Function* for the strlen libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000289 Function* get_strlen() {
Reid Spencere249a822005-04-27 07:54:40 +0000290 if (!strlen_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000291 strlen_func = M->getOrInsertFunction("strlen", TD->getIntPtrType(),
292 PointerType::get(Type::SByteTy),
293 NULL);
Reid Spencere249a822005-04-27 07:54:40 +0000294 return strlen_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000295 }
296
Reid Spencer38cabd72005-05-03 07:23:44 +0000297 /// @brief Return a Function* for the memchr libcall
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000298 Function* get_memchr() {
Reid Spencer38cabd72005-05-03 07:23:44 +0000299 if (!memchr_func)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000300 memchr_func = M->getOrInsertFunction("memchr",
301 PointerType::get(Type::SByteTy),
302 PointerType::get(Type::SByteTy),
303 Type::IntTy, TD->getIntPtrType(),
304 NULL);
Reid Spencer38cabd72005-05-03 07:23:44 +0000305 return memchr_func;
306 }
307
Reid Spencere249a822005-04-27 07:54:40 +0000308 /// @brief Return a Function* for the memcpy libcall
Chris Lattner4201cd12005-08-24 17:22:17 +0000309 Function* get_memcpy() {
310 if (!memcpy_func) {
311 const Type *SBP = PointerType::get(Type::SByteTy);
Chris Lattnerea7986a2006-03-03 01:30:23 +0000312 const char *N = TD->getIntPtrType() == Type::UIntTy ?
313 "llvm.memcpy.i32" : "llvm.memcpy.i64";
314 memcpy_func = M->getOrInsertFunction(N, Type::VoidTy, SBP, SBP,
315 TD->getIntPtrType(), Type::UIntTy,
316 NULL);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000317 }
Reid Spencere249a822005-04-27 07:54:40 +0000318 return memcpy_func;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000319 }
Reid Spencer76dab9a2005-04-26 05:24:00 +0000320
Chris Lattner57740402006-01-23 06:24:46 +0000321 Function *getUnaryFloatFunction(const char *Name, Function *&Cache) {
322 if (!Cache)
323 Cache = M->getOrInsertFunction(Name, Type::FloatTy, Type::FloatTy, NULL);
324 return Cache;
Chris Lattner4201cd12005-08-24 17:22:17 +0000325 }
326
Chris Lattner57740402006-01-23 06:24:46 +0000327 Function *get_floorf() { return getUnaryFloatFunction("floorf", floorf_func);}
328 Function *get_ceilf() { return getUnaryFloatFunction( "ceilf", ceilf_func);}
329 Function *get_roundf() { return getUnaryFloatFunction("roundf", roundf_func);}
330 Function *get_rintf() { return getUnaryFloatFunction( "rintf", rintf_func);}
331 Function *get_nearbyintf() { return getUnaryFloatFunction("nearbyintf",
332 nearbyintf_func); }
Reid Spencere249a822005-04-27 07:54:40 +0000333private:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000334 /// @brief Reset our cached data for a new Module
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000335 void reset(Module& mod) {
Reid Spencere249a822005-04-27 07:54:40 +0000336 M = &mod;
337 TD = &getAnalysis<TargetData>();
Evan Cheng1fc40252006-06-16 08:36:35 +0000338 putchar_func = 0;
339 puts_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000340 fputc_func = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +0000341 fputs_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000342 fwrite_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000343 memcpy_func = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000344 memchr_func = 0;
Reid Spencer93616972005-04-29 09:39:47 +0000345 sqrt_func = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +0000346 strcpy_func = 0;
Reid Spencere249a822005-04-27 07:54:40 +0000347 strlen_func = 0;
Chris Lattner4201cd12005-08-24 17:22:17 +0000348 floorf_func = 0;
Chris Lattner57740402006-01-23 06:24:46 +0000349 ceilf_func = 0;
350 roundf_func = 0;
351 rintf_func = 0;
352 nearbyintf_func = 0;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000353 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000354
Reid Spencere249a822005-04-27 07:54:40 +0000355private:
Chris Lattner57740402006-01-23 06:24:46 +0000356 /// Caches for function pointers.
Evan Cheng1fc40252006-06-16 08:36:35 +0000357 Function *putchar_func, *puts_func;
Evan Chengf2ea5872006-06-16 04:52:30 +0000358 Function *fputc_func, *fputs_func, *fwrite_func;
Chris Lattner57740402006-01-23 06:24:46 +0000359 Function *memcpy_func, *memchr_func;
360 Function* sqrt_func;
361 Function *strcpy_func, *strlen_func;
362 Function *floorf_func, *ceilf_func, *roundf_func;
363 Function *rintf_func, *nearbyintf_func;
364 Module *M; ///< Cached Module
365 TargetData *TD; ///< Cached TargetData
Reid Spencere249a822005-04-27 07:54:40 +0000366};
367
368// Register the pass
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000369RegisterPass<SimplifyLibCalls>
370X("simplify-libcalls", "Simplify well-known library calls");
Reid Spencere249a822005-04-27 07:54:40 +0000371
372} // anonymous namespace
373
374// The only public symbol in this file which just instantiates the pass object
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000375ModulePass *llvm::createSimplifyLibCallsPass() {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000376 return new SimplifyLibCalls();
Reid Spencere249a822005-04-27 07:54:40 +0000377}
378
379// Classes below here, in the anonymous namespace, are all subclasses of the
380// LibCallOptimization class, each implementing all optimizations possible for a
381// single well-known library call. Each has a static singleton instance that
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000382// auto registers it into the "optlist" global above.
Reid Spencere249a822005-04-27 07:54:40 +0000383namespace {
384
Reid Spencera7828ba2005-06-18 17:46:28 +0000385// Forward declare utility functions.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000386bool getConstantStringLength(Value* V, uint64_t& len, ConstantArray** A = 0 );
Reid Spencera7828ba2005-06-18 17:46:28 +0000387Value *CastToCStr(Value *V, Instruction &IP);
Reid Spencere249a822005-04-27 07:54:40 +0000388
389/// This LibCallOptimization will find instances of a call to "exit" that occurs
Reid Spencer39a762d2005-04-25 02:53:12 +0000390/// within the "main" function and change it to a simple "ret" instruction with
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000391/// the same value passed to the exit function. When this is done, it splits the
392/// basic block at the exit(3) call and deletes the call instruction.
Reid Spencer39a762d2005-04-25 02:53:12 +0000393/// @brief Replace calls to exit in main with a simple return
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000394struct ExitInMainOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000395 ExitInMainOptimization() : LibCallOptimization("exit",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000396 "Number of 'exit' calls simplified") {}
Reid Spencerf2534c72005-04-25 21:11:48 +0000397
398 // Make sure the called function looks like exit (int argument, int return
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000399 // type, external linkage, not varargs).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000400 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
401 return F->arg_size() >= 1 && F->arg_begin()->getType()->isInteger();
Reid Spencerf2534c72005-04-25 21:11:48 +0000402 }
403
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000404 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencerf2534c72005-04-25 21:11:48 +0000405 // To be careful, we check that the call to exit is coming from "main", that
406 // main has external linkage, and the return type of main and the argument
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000407 // to exit have the same type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000408 Function *from = ci->getParent()->getParent();
409 if (from->hasExternalLinkage())
410 if (from->getReturnType() == ci->getOperand(1)->getType())
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000411 if (from->getName() == "main") {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000412 // Okay, time to actually do the optimization. First, get the basic
Reid Spencerf2534c72005-04-25 21:11:48 +0000413 // block of the call instruction
414 BasicBlock* bb = ci->getParent();
Reid Spencer39a762d2005-04-25 02:53:12 +0000415
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000416 // Create a return instruction that we'll replace the call with.
417 // Note that the argument of the return is the argument of the call
Reid Spencerf2534c72005-04-25 21:11:48 +0000418 // instruction.
Chris Lattnercd60d382006-05-12 23:35:26 +0000419 new ReturnInst(ci->getOperand(1), ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000420
Reid Spencerf2534c72005-04-25 21:11:48 +0000421 // Split the block at the call instruction which places it in a new
422 // basic block.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000423 bb->splitBasicBlock(ci);
Reid Spencer39a762d2005-04-25 02:53:12 +0000424
Reid Spencerf2534c72005-04-25 21:11:48 +0000425 // The block split caused a branch instruction to be inserted into
426 // the end of the original block, right after the return instruction
427 // that we put there. That's not a valid block, so delete the branch
428 // instruction.
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000429 bb->getInstList().pop_back();
Reid Spencer39a762d2005-04-25 02:53:12 +0000430
Reid Spencerf2534c72005-04-25 21:11:48 +0000431 // Now we can finally get rid of the call instruction which now lives
432 // in the new basic block.
433 ci->eraseFromParent();
434
435 // Optimization succeeded, return true.
436 return true;
437 }
438 // We didn't pass the criteria for this optimization so return false
439 return false;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000440 }
Reid Spencer39a762d2005-04-25 02:53:12 +0000441} ExitInMainOptimizer;
442
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000443/// This LibCallOptimization will simplify a call to the strcat library
444/// function. The simplification is possible only if the string being
445/// concatenated is a constant array or a constant expression that results in
446/// a constant string. In this case we can replace it with strlen + llvm.memcpy
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000447/// of the constant string. Both of these calls are further reduced, if possible
448/// on subsequent passes.
Reid Spencerf2534c72005-04-25 21:11:48 +0000449/// @brief Simplify the strcat library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000450struct StrCatOptimization : public LibCallOptimization {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000451public:
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000452 /// @brief Default constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +0000453 StrCatOptimization() : LibCallOptimization("strcat",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000454 "Number of 'strcat' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000455
456public:
Reid Spencerf2534c72005-04-25 21:11:48 +0000457
458 /// @brief Make sure that the "strcat" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000459 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencerf2534c72005-04-25 21:11:48 +0000460 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000461 if (f->arg_size() == 2)
Reid Spencerf2534c72005-04-25 21:11:48 +0000462 {
463 Function::const_arg_iterator AI = f->arg_begin();
464 if (AI++->getType() == PointerType::get(Type::SByteTy))
465 if (AI->getType() == PointerType::get(Type::SByteTy))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000466 {
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000467 // Indicate this is a suitable call type.
Reid Spencerf2534c72005-04-25 21:11:48 +0000468 return true;
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000469 }
Reid Spencerf2534c72005-04-25 21:11:48 +0000470 }
471 return false;
472 }
473
Reid Spencere249a822005-04-27 07:54:40 +0000474 /// @brief Optimize the strcat library function
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000475 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer08b49402005-04-27 17:46:54 +0000476 // Extract some information from the instruction
Reid Spencer08b49402005-04-27 17:46:54 +0000477 Value* dest = ci->getOperand(1);
478 Value* src = ci->getOperand(2);
479
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000480 // Extract the initializer (while making numerous checks) from the
Reid Spencer76dab9a2005-04-26 05:24:00 +0000481 // source operand of the call to strcat. If we get null back, one of
482 // a variety of checks in get_GVInitializer failed
Reid Spencerb4f7b832005-04-26 07:45:18 +0000483 uint64_t len = 0;
Reid Spencer08b49402005-04-27 17:46:54 +0000484 if (!getConstantStringLength(src,len))
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000485 return false;
486
Reid Spencerb4f7b832005-04-26 07:45:18 +0000487 // Handle the simple, do-nothing case
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000488 if (len == 0) {
Reid Spencer08b49402005-04-27 17:46:54 +0000489 ci->replaceAllUsesWith(dest);
Reid Spencer8ee5aac2005-04-26 03:26:15 +0000490 ci->eraseFromParent();
491 return true;
492 }
493
Reid Spencerb4f7b832005-04-26 07:45:18 +0000494 // Increment the length because we actually want to memcpy the null
495 // terminator as well.
496 len++;
Reid Spencerf2534c72005-04-25 21:11:48 +0000497
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000498 // We need to find the end of the destination string. That's where the
499 // memory is to be moved to. We just generate a call to strlen (further
500 // optimized in another pass). Note that the SLC.get_strlen() call
Reid Spencerb4f7b832005-04-26 07:45:18 +0000501 // caches the Function* for us.
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000502 CallInst* strlen_inst =
Reid Spencer08b49402005-04-27 17:46:54 +0000503 new CallInst(SLC.get_strlen(), dest, dest->getName()+".len",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000504
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000505 // Now that we have the destination's length, we must index into the
Reid Spencerb4f7b832005-04-26 07:45:18 +0000506 // destination's pointer to get the actual memcpy destination (end of
507 // the string .. we're concatenating).
508 std::vector<Value*> idx;
509 idx.push_back(strlen_inst);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000510 GetElementPtrInst* gep =
Reid Spencer08b49402005-04-27 17:46:54 +0000511 new GetElementPtrInst(dest,idx,dest->getName()+".indexed",ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000512
513 // We have enough information to now generate the memcpy call to
514 // do the concatenation for us.
515 std::vector<Value*> vals;
516 vals.push_back(gep); // destination
517 vals.push_back(ci->getOperand(2)); // source
Reid Spencere0fc4df2006-10-20 07:07:24 +0000518 vals.push_back(ConstantInt::get(SLC.getIntPtrType(),len)); // length
519 vals.push_back(ConstantInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000520 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000521
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000522 // Finally, substitute the first operand of the strcat call for the
523 // strcat call itself since strcat returns its first operand; and,
Reid Spencerb4f7b832005-04-26 07:45:18 +0000524 // kill the strcat CallInst.
Reid Spencer08b49402005-04-27 17:46:54 +0000525 ci->replaceAllUsesWith(dest);
Reid Spencerb4f7b832005-04-26 07:45:18 +0000526 ci->eraseFromParent();
527 return true;
Reid Spencer9bbaa2a2005-04-25 03:59:26 +0000528 }
529} StrCatOptimizer;
530
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000531/// This LibCallOptimization will simplify a call to the strchr library
Reid Spencer38cabd72005-05-03 07:23:44 +0000532/// function. It optimizes out cases where the arguments are both constant
533/// and the result can be determined statically.
534/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000535struct StrChrOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +0000536public:
537 StrChrOptimization() : LibCallOptimization("strchr",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000538 "Number of 'strchr' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +0000539
540 /// @brief Make sure that the "strchr" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000541 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000542 if (f->getReturnType() == PointerType::get(Type::SByteTy) &&
Reid Spencer38cabd72005-05-03 07:23:44 +0000543 f->arg_size() == 2)
544 return true;
545 return false;
546 }
547
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000548 /// @brief Perform the strchr optimizations
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000549 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000550 // If there aren't three operands, bail
551 if (ci->getNumOperands() != 3)
552 return false;
553
554 // Check that the first argument to strchr is a constant array of sbyte.
555 // If it is, get the length and data, otherwise return false.
556 uint64_t len = 0;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000557 ConstantArray* CA = 0;
Reid Spencer38cabd72005-05-03 07:23:44 +0000558 if (!getConstantStringLength(ci->getOperand(1),len,&CA))
559 return false;
560
Reid Spencere0fc4df2006-10-20 07:07:24 +0000561 // Check that the second argument to strchr is a constant int. If it isn't
562 // a constant signed integer, we can try an alternate optimization
563 ConstantInt* CSI = dyn_cast<ConstantInt>(ci->getOperand(2));
564 if (!CSI || CSI->getType()->isUnsigned() ) {
565 // The second operand is not constant, or not signed. Just lower this to
566 // memchr since we know the length of the string since it is constant.
Reid Spencer38cabd72005-05-03 07:23:44 +0000567 Function* f = SLC.get_memchr();
568 std::vector<Value*> args;
569 args.push_back(ci->getOperand(1));
570 args.push_back(ci->getOperand(2));
Reid Spencere0fc4df2006-10-20 07:07:24 +0000571 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
Reid Spencer38cabd72005-05-03 07:23:44 +0000572 ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci));
573 ci->eraseFromParent();
574 return true;
575 }
576
577 // Get the character we're looking for
Reid Spencere0fc4df2006-10-20 07:07:24 +0000578 int64_t chr = CSI->getSExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +0000579
580 // Compute the offset
581 uint64_t offset = 0;
582 bool char_found = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000583 for (uint64_t i = 0; i < len; ++i) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000584 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000585 // Check for the null terminator
586 if (CI->isNullValue())
587 break; // we found end of string
Reid Spencere0fc4df2006-10-20 07:07:24 +0000588 else if (CI->getSExtValue() == chr) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000589 char_found = true;
590 offset = i;
591 break;
592 }
593 }
594 }
595
596 // strchr(s,c) -> offset_of_in(c,s)
597 // (if c is a constant integer and s is a constant string)
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000598 if (char_found) {
Reid Spencer38cabd72005-05-03 07:23:44 +0000599 std::vector<Value*> indices;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000600 indices.push_back(ConstantInt::get(Type::ULongTy,offset));
Reid Spencer38cabd72005-05-03 07:23:44 +0000601 GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices,
602 ci->getOperand(1)->getName()+".strchr",ci);
603 ci->replaceAllUsesWith(GEP);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000604 } else {
Reid Spencer38cabd72005-05-03 07:23:44 +0000605 ci->replaceAllUsesWith(
606 ConstantPointerNull::get(PointerType::get(Type::SByteTy)));
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000607 }
Reid Spencer38cabd72005-05-03 07:23:44 +0000608 ci->eraseFromParent();
609 return true;
610 }
611} StrChrOptimizer;
612
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000613/// This LibCallOptimization will simplify a call to the strcmp library
Reid Spencer4c444fe2005-04-30 03:17:54 +0000614/// function. It optimizes out cases where one or both arguments are constant
615/// and the result can be determined statically.
616/// @brief Simplify the strcmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000617struct StrCmpOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000618public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000619 StrCmpOptimization() : LibCallOptimization("strcmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000620 "Number of 'strcmp' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +0000621
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000622 /// @brief Make sure that the "strcmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000623 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
624 return F->getReturnType() == Type::IntTy && F->arg_size() == 2;
Reid Spencer4c444fe2005-04-30 03:17:54 +0000625 }
626
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000627 /// @brief Perform the strcmp optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000628 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000629 // First, check to see if src and destination are the same. If they are,
Reid Spencer16449a92005-04-30 06:45:47 +0000630 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000631 // because the call is a no-op.
Reid Spencer4c444fe2005-04-30 03:17:54 +0000632 Value* s1 = ci->getOperand(1);
633 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000634 if (s1 == s2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000635 // strcmp(x,x) -> 0
636 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
637 ci->eraseFromParent();
638 return true;
639 }
640
641 bool isstr_1 = false;
642 uint64_t len_1 = 0;
643 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000644 if (getConstantStringLength(s1,len_1,&A1)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000645 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000646 if (len_1 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000647 // strcmp("",x) -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000648 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000649 new LoadInst(CastToCStr(s2,*ci), ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000650 CastInst* cast =
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000651 CastInst::create(Instruction::SExt, load, Type::IntTy,
652 ci->getName()+".int", ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000653 ci->replaceAllUsesWith(cast);
654 ci->eraseFromParent();
655 return true;
656 }
657 }
658
659 bool isstr_2 = false;
660 uint64_t len_2 = 0;
661 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000662 if (getConstantStringLength(s2, len_2, &A2)) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000663 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000664 if (len_2 == 0) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000665 // strcmp(x,"") -> *x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000666 LoadInst* load =
Reid Spencera7828ba2005-06-18 17:46:28 +0000667 new LoadInst(CastToCStr(s1,*ci),ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000668 CastInst* cast =
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000669 CastInst::create(Instruction::SExt, load, Type::IntTy,
670 ci->getName()+".int", ci);
Reid Spencer4c444fe2005-04-30 03:17:54 +0000671 ci->replaceAllUsesWith(cast);
672 ci->eraseFromParent();
673 return true;
674 }
675 }
676
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000677 if (isstr_1 && isstr_2) {
Reid Spencer4c444fe2005-04-30 03:17:54 +0000678 // strcmp(x,y) -> cnst (if both x and y are constant strings)
679 std::string str1 = A1->getAsString();
680 std::string str2 = A2->getAsString();
681 int result = strcmp(str1.c_str(), str2.c_str());
Reid Spencere0fc4df2006-10-20 07:07:24 +0000682 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,result));
Reid Spencer4c444fe2005-04-30 03:17:54 +0000683 ci->eraseFromParent();
684 return true;
685 }
686 return false;
687 }
688} StrCmpOptimizer;
689
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000690/// This LibCallOptimization will simplify a call to the strncmp library
Reid Spencer49fa07042005-05-03 01:43:45 +0000691/// function. It optimizes out cases where one or both arguments are constant
692/// and the result can be determined statically.
693/// @brief Simplify the strncmp library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000694struct StrNCmpOptimization : public LibCallOptimization {
Reid Spencer49fa07042005-05-03 01:43:45 +0000695public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000696 StrNCmpOptimization() : LibCallOptimization("strncmp",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000697 "Number of 'strncmp' calls simplified") {}
Reid Spencer49fa07042005-05-03 01:43:45 +0000698
Chris Lattnerf8053ce2005-05-20 22:22:25 +0000699 /// @brief Make sure that the "strncmp" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000700 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer49fa07042005-05-03 01:43:45 +0000701 if (f->getReturnType() == Type::IntTy && f->arg_size() == 3)
702 return true;
703 return false;
704 }
705
706 /// @brief Perform the strncpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000707 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000708 // First, check to see if src and destination are the same. If they are,
709 // then the optimization is to replace the CallInst with a constant 0
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000710 // because the call is a no-op.
Reid Spencer49fa07042005-05-03 01:43:45 +0000711 Value* s1 = ci->getOperand(1);
712 Value* s2 = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000713 if (s1 == s2) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000714 // strncmp(x,x,l) -> 0
715 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
716 ci->eraseFromParent();
717 return true;
718 }
719
720 // Check the length argument, if it is Constant zero then the strings are
721 // considered equal.
722 uint64_t len_arg = 0;
723 bool len_arg_is_const = false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000724 if (ConstantInt* len_CI = dyn_cast<ConstantInt>(ci->getOperand(3))) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000725 len_arg_is_const = true;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000726 len_arg = len_CI->getZExtValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000727 if (len_arg == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000728 // strncmp(x,y,0) -> 0
729 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
730 ci->eraseFromParent();
731 return true;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000732 }
Reid Spencer49fa07042005-05-03 01:43:45 +0000733 }
734
735 bool isstr_1 = false;
736 uint64_t len_1 = 0;
737 ConstantArray* A1;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000738 if (getConstantStringLength(s1, len_1, &A1)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000739 isstr_1 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000740 if (len_1 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000741 // strncmp("",x) -> *x
742 LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000743 CastInst* cast =
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000744 CastInst::create(Instruction::SExt, load, Type::IntTy,
745 ci->getName()+".int", ci);
Reid Spencer49fa07042005-05-03 01:43:45 +0000746 ci->replaceAllUsesWith(cast);
747 ci->eraseFromParent();
748 return true;
749 }
750 }
751
752 bool isstr_2 = false;
753 uint64_t len_2 = 0;
754 ConstantArray* A2;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000755 if (getConstantStringLength(s2,len_2,&A2)) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000756 isstr_2 = true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000757 if (len_2 == 0) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000758 // strncmp(x,"") -> *x
759 LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000760 CastInst* cast =
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000761 CastInst::create(Instruction::SExt, load, Type::IntTy,
762 ci->getName()+".int", ci);
Reid Spencer49fa07042005-05-03 01:43:45 +0000763 ci->replaceAllUsesWith(cast);
764 ci->eraseFromParent();
765 return true;
766 }
767 }
768
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000769 if (isstr_1 && isstr_2 && len_arg_is_const) {
Reid Spencer49fa07042005-05-03 01:43:45 +0000770 // strncmp(x,y,const) -> constant
771 std::string str1 = A1->getAsString();
772 std::string str2 = A2->getAsString();
773 int result = strncmp(str1.c_str(), str2.c_str(), len_arg);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000774 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,result));
Reid Spencer49fa07042005-05-03 01:43:45 +0000775 ci->eraseFromParent();
776 return true;
777 }
778 return false;
779 }
780} StrNCmpOptimizer;
781
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000782/// This LibCallOptimization will simplify a call to the strcpy library
783/// function. Two optimizations are possible:
Reid Spencere249a822005-04-27 07:54:40 +0000784/// (1) If src and dest are the same and not volatile, just return dest
785/// (2) If the src is a constant then we can convert to llvm.memmove
786/// @brief Simplify the strcpy library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000787struct StrCpyOptimization : public LibCallOptimization {
Reid Spencere249a822005-04-27 07:54:40 +0000788public:
Reid Spencer95d8efd2005-05-03 02:54:54 +0000789 StrCpyOptimization() : LibCallOptimization("strcpy",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000790 "Number of 'strcpy' calls simplified") {}
Reid Spencere249a822005-04-27 07:54:40 +0000791
792 /// @brief Make sure that the "strcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000793 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencere249a822005-04-27 07:54:40 +0000794 if (f->getReturnType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000795 if (f->arg_size() == 2) {
Reid Spencere249a822005-04-27 07:54:40 +0000796 Function::const_arg_iterator AI = f->arg_begin();
797 if (AI++->getType() == PointerType::get(Type::SByteTy))
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000798 if (AI->getType() == PointerType::get(Type::SByteTy)) {
Reid Spencere249a822005-04-27 07:54:40 +0000799 // Indicate this is a suitable call type.
800 return true;
801 }
802 }
803 return false;
804 }
805
806 /// @brief Perform the strcpy optimization
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000807 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencere249a822005-04-27 07:54:40 +0000808 // First, check to see if src and destination are the same. If they are,
809 // then the optimization is to replace the CallInst with the destination
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000810 // because the call is a no-op. Note that this corresponds to the
Reid Spencere249a822005-04-27 07:54:40 +0000811 // degenerate strcpy(X,X) case which should have "undefined" results
812 // according to the C specification. However, it occurs sometimes and
813 // we optimize it as a no-op.
814 Value* dest = ci->getOperand(1);
815 Value* src = ci->getOperand(2);
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000816 if (dest == src) {
Reid Spencere249a822005-04-27 07:54:40 +0000817 ci->replaceAllUsesWith(dest);
818 ci->eraseFromParent();
819 return true;
820 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000821
Reid Spencere249a822005-04-27 07:54:40 +0000822 // Get the length of the constant string referenced by the second operand,
823 // the "src" parameter. Fail the optimization if we can't get the length
824 // (note that getConstantStringLength does lots of checks to make sure this
825 // is valid).
826 uint64_t len = 0;
827 if (!getConstantStringLength(ci->getOperand(2),len))
828 return false;
829
830 // If the constant string's length is zero we can optimize this by just
831 // doing a store of 0 at the first byte of the destination
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000832 if (len == 0) {
Reid Spencere249a822005-04-27 07:54:40 +0000833 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
834 ci->replaceAllUsesWith(dest);
835 ci->eraseFromParent();
836 return true;
837 }
838
839 // Increment the length because we actually want to memcpy the null
840 // terminator as well.
841 len++;
842
Reid Spencere249a822005-04-27 07:54:40 +0000843 // We have enough information to now generate the memcpy call to
844 // do the concatenation for us.
845 std::vector<Value*> vals;
846 vals.push_back(dest); // destination
847 vals.push_back(src); // source
Reid Spencere0fc4df2006-10-20 07:07:24 +0000848 vals.push_back(ConstantInt::get(SLC.getIntPtrType(),len)); // length
849 vals.push_back(ConstantInt::get(Type::UIntTy,1)); // alignment
Reid Spencer08b49402005-04-27 17:46:54 +0000850 new CallInst(SLC.get_memcpy(), vals, "", ci);
Reid Spencere249a822005-04-27 07:54:40 +0000851
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000852 // Finally, substitute the first operand of the strcat call for the
853 // strcat call itself since strcat returns its first operand; and,
Reid Spencere249a822005-04-27 07:54:40 +0000854 // kill the strcat CallInst.
855 ci->replaceAllUsesWith(dest);
856 ci->eraseFromParent();
857 return true;
858 }
859} StrCpyOptimizer;
860
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000861/// This LibCallOptimization will simplify a call to the strlen library
862/// function by replacing it with a constant value if the string provided to
Reid Spencer7ddcfb32005-04-27 21:29:20 +0000863/// it is a constant array.
Reid Spencer76dab9a2005-04-26 05:24:00 +0000864/// @brief Simplify the strlen library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +0000865struct StrLenOptimization : public LibCallOptimization {
Reid Spencer95d8efd2005-05-03 02:54:54 +0000866 StrLenOptimization() : LibCallOptimization("strlen",
Reid Spencer170ae7f2005-05-07 20:15:59 +0000867 "Number of 'strlen' calls simplified") {}
Reid Spencer76dab9a2005-04-26 05:24:00 +0000868
869 /// @brief Make sure that the "strlen" function has the right prototype
Reid Spencere249a822005-04-27 07:54:40 +0000870 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000871 {
Reid Spencere249a822005-04-27 07:54:40 +0000872 if (f->getReturnType() == SLC.getTargetData()->getIntPtrType())
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000873 if (f->arg_size() == 1)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000874 if (Function::const_arg_iterator AI = f->arg_begin())
875 if (AI->getType() == PointerType::get(Type::SByteTy))
876 return true;
877 return false;
878 }
879
880 /// @brief Perform the strlen optimization
Reid Spencere249a822005-04-27 07:54:40 +0000881 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC)
Reid Spencer76dab9a2005-04-26 05:24:00 +0000882 {
Reid Spencer170ae7f2005-05-07 20:15:59 +0000883 // Make sure we're dealing with an sbyte* here.
884 Value* str = ci->getOperand(1);
885 if (str->getType() != PointerType::get(Type::SByteTy))
886 return false;
887
888 // Does the call to strlen have exactly one use?
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000889 if (ci->hasOneUse())
Reid Spencer170ae7f2005-05-07 20:15:59 +0000890 // Is that single use a binary operator?
891 if (BinaryOperator* bop = dyn_cast<BinaryOperator>(ci->use_back()))
892 // Is it compared against a constant integer?
893 if (ConstantInt* CI = dyn_cast<ConstantInt>(bop->getOperand(1)))
894 {
895 // Get the value the strlen result is compared to
Reid Spencere0fc4df2006-10-20 07:07:24 +0000896 uint64_t val = CI->getZExtValue();
Reid Spencer170ae7f2005-05-07 20:15:59 +0000897
898 // If its compared against length 0 with == or !=
899 if (val == 0 &&
900 (bop->getOpcode() == Instruction::SetEQ ||
901 bop->getOpcode() == Instruction::SetNE))
902 {
903 // strlen(x) != 0 -> *x != 0
904 // strlen(x) == 0 -> *x == 0
905 LoadInst* load = new LoadInst(str,str->getName()+".first",ci);
906 BinaryOperator* rbop = BinaryOperator::create(bop->getOpcode(),
Reid Spencere0fc4df2006-10-20 07:07:24 +0000907 load, ConstantInt::get(Type::SByteTy,0),
Reid Spencer170ae7f2005-05-07 20:15:59 +0000908 bop->getName()+".strlen", ci);
909 bop->replaceAllUsesWith(rbop);
910 bop->eraseFromParent();
911 ci->eraseFromParent();
912 return true;
913 }
914 }
915
916 // Get the length of the constant string operand
Reid Spencerb4f7b832005-04-26 07:45:18 +0000917 uint64_t len = 0;
918 if (!getConstantStringLength(ci->getOperand(1),len))
Reid Spencer76dab9a2005-04-26 05:24:00 +0000919 return false;
920
Reid Spencer170ae7f2005-05-07 20:15:59 +0000921 // strlen("xyz") -> 3 (for example)
Chris Lattnere17c5d02005-08-01 16:52:50 +0000922 const Type *Ty = SLC.getTargetData()->getIntPtrType();
Reid Spencer4720d4d2006-12-21 07:15:54 +0000923 ci->replaceAllUsesWith(ConstantInt::get(Ty, len));
Chris Lattnere17c5d02005-08-01 16:52:50 +0000924
Reid Spencerb4f7b832005-04-26 07:45:18 +0000925 ci->eraseFromParent();
926 return true;
Reid Spencer76dab9a2005-04-26 05:24:00 +0000927 }
928} StrLenOptimizer;
929
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000930/// IsOnlyUsedInEqualsComparison - Return true if it only matters that the value
931/// is equal or not-equal to zero.
932static bool IsOnlyUsedInEqualsZeroComparison(Instruction *I) {
933 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
934 UI != E; ++UI) {
935 Instruction *User = cast<Instruction>(*UI);
936 if (User->getOpcode() == Instruction::SetNE ||
937 User->getOpcode() == Instruction::SetEQ) {
938 if (isa<Constant>(User->getOperand(1)) &&
939 cast<Constant>(User->getOperand(1))->isNullValue())
940 continue;
941 } else if (CastInst *CI = dyn_cast<CastInst>(User))
942 if (CI->getType() == Type::BoolTy)
943 continue;
944 // Unknown instruction.
945 return false;
946 }
947 return true;
948}
949
950/// This memcmpOptimization will simplify a call to the memcmp library
951/// function.
952struct memcmpOptimization : public LibCallOptimization {
953 /// @brief Default Constructor
954 memcmpOptimization()
955 : LibCallOptimization("memcmp", "Number of 'memcmp' calls simplified") {}
956
957 /// @brief Make sure that the "memcmp" function has the right prototype
958 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
959 Function::const_arg_iterator AI = F->arg_begin();
960 if (F->arg_size() != 3 || !isa<PointerType>(AI->getType())) return false;
961 if (!isa<PointerType>((++AI)->getType())) return false;
962 if (!(++AI)->getType()->isInteger()) return false;
963 if (!F->getReturnType()->isInteger()) return false;
964 return true;
965 }
966
967 /// Because of alignment and instruction information that we don't have, we
968 /// leave the bulk of this to the code generators.
969 ///
970 /// Note that we could do much more if we could force alignment on otherwise
971 /// small aligned allocas, or if we could indicate that loads have a small
972 /// alignment.
973 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &TD) {
974 Value *LHS = CI->getOperand(1), *RHS = CI->getOperand(2);
975
976 // If the two operands are the same, return zero.
977 if (LHS == RHS) {
978 // memcmp(s,s,x) -> 0
979 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
980 CI->eraseFromParent();
981 return true;
982 }
983
984 // Make sure we have a constant length.
985 ConstantInt *LenC = dyn_cast<ConstantInt>(CI->getOperand(3));
986 if (!LenC) return false;
Reid Spencere0fc4df2006-10-20 07:07:24 +0000987 uint64_t Len = LenC->getZExtValue();
Chris Lattnerc244e7c2005-09-29 04:54:20 +0000988
989 // If the length is zero, this returns 0.
990 switch (Len) {
991 case 0:
992 // memcmp(s1,s2,0) -> 0
993 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
994 CI->eraseFromParent();
995 return true;
996 case 1: {
997 // memcmp(S1,S2,1) -> *(ubyte*)S1 - *(ubyte*)S2
998 const Type *UCharPtr = PointerType::get(Type::UByteTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000999 CastInst *Op1Cast = CastInst::create(
1000 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
1001 CastInst *Op2Cast = CastInst::create(
1002 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001003 Value *S1V = new LoadInst(Op1Cast, LHS->getName()+".val", CI);
1004 Value *S2V = new LoadInst(Op2Cast, RHS->getName()+".val", CI);
1005 Value *RV = BinaryOperator::createSub(S1V, S2V, CI->getName()+".diff",CI);
1006 if (RV->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001007 RV = CastInst::createIntegerCast(RV, CI->getType(), false,
1008 RV->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001009 CI->replaceAllUsesWith(RV);
1010 CI->eraseFromParent();
1011 return true;
1012 }
1013 case 2:
1014 if (IsOnlyUsedInEqualsZeroComparison(CI)) {
1015 // TODO: IF both are aligned, use a short load/compare.
1016
1017 // memcmp(S1,S2,2) -> S1[0]-S2[0] | S1[1]-S2[1] iff only ==/!= 0 matters
1018 const Type *UCharPtr = PointerType::get(Type::UByteTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001019 CastInst *Op1Cast = CastInst::create(
1020 Instruction::BitCast, LHS, UCharPtr, LHS->getName(), CI);
1021 CastInst *Op2Cast = CastInst::create(
1022 Instruction::BitCast, RHS, UCharPtr, RHS->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001023 Value *S1V1 = new LoadInst(Op1Cast, LHS->getName()+".val1", CI);
1024 Value *S2V1 = new LoadInst(Op2Cast, RHS->getName()+".val1", CI);
1025 Value *D1 = BinaryOperator::createSub(S1V1, S2V1,
1026 CI->getName()+".d1", CI);
1027 Constant *One = ConstantInt::get(Type::IntTy, 1);
1028 Value *G1 = new GetElementPtrInst(Op1Cast, One, "next1v", CI);
1029 Value *G2 = new GetElementPtrInst(Op2Cast, One, "next2v", CI);
1030 Value *S1V2 = new LoadInst(G1, LHS->getName()+".val2", CI);
Chris Lattnercd60d382006-05-12 23:35:26 +00001031 Value *S2V2 = new LoadInst(G2, RHS->getName()+".val2", CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001032 Value *D2 = BinaryOperator::createSub(S1V2, S2V2,
1033 CI->getName()+".d1", CI);
1034 Value *Or = BinaryOperator::createOr(D1, D2, CI->getName()+".res", CI);
1035 if (Or->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001036 Or = CastInst::createIntegerCast(Or, CI->getType(), false /*ZExt*/,
1037 Or->getName(), CI);
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001038 CI->replaceAllUsesWith(Or);
1039 CI->eraseFromParent();
1040 return true;
1041 }
1042 break;
1043 default:
1044 break;
1045 }
1046
Chris Lattnerc244e7c2005-09-29 04:54:20 +00001047 return false;
1048 }
1049} memcmpOptimizer;
1050
1051
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001052/// This LibCallOptimization will simplify a call to the memcpy library
1053/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
Reid Spencer7ddcfb32005-04-27 21:29:20 +00001054/// bytes depending on the length of the string and the alignment. Additional
1055/// optimizations are possible in code generation (sequence of immediate store)
Reid Spencerf2534c72005-04-25 21:11:48 +00001056/// @brief Simplify the memcpy library function.
Chris Lattnerea7986a2006-03-03 01:30:23 +00001057struct LLVMMemCpyMoveOptzn : public LibCallOptimization {
1058 LLVMMemCpyMoveOptzn(const char* fname, const char* desc)
1059 : LibCallOptimization(fname, desc) {}
Reid Spencerf2534c72005-04-25 21:11:48 +00001060
1061 /// @brief Make sure that the "memcpy" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001062 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001063 // Just make sure this has 4 arguments per LLVM spec.
Reid Spencer2bc7a4f2005-04-26 23:02:16 +00001064 return (f->arg_size() == 4);
Reid Spencerf2534c72005-04-25 21:11:48 +00001065 }
1066
Reid Spencerb4f7b832005-04-26 07:45:18 +00001067 /// Because of alignment and instruction information that we don't have, we
1068 /// leave the bulk of this to the code generators. The optimization here just
1069 /// deals with a few degenerate cases where the length of the string and the
1070 /// alignment match the sizes of our intrinsic types so we can do a load and
1071 /// store instead of the memcpy call.
1072 /// @brief Perform the memcpy optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001073 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) {
Reid Spencer4855ebf2005-04-26 19:55:57 +00001074 // Make sure we have constant int values to work with
1075 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1076 if (!LEN)
1077 return false;
1078 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1079 if (!ALIGN)
1080 return false;
1081
1082 // If the length is larger than the alignment, we can't optimize
Reid Spencere0fc4df2006-10-20 07:07:24 +00001083 uint64_t len = LEN->getZExtValue();
1084 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001085 if (alignment == 0)
1086 alignment = 1; // Alignment 0 is identity for alignment 1
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001087 if (len > alignment)
Reid Spencerb4f7b832005-04-26 07:45:18 +00001088 return false;
1089
Reid Spencer08b49402005-04-27 17:46:54 +00001090 // Get the type we will cast to, based on size of the string
Reid Spencerb4f7b832005-04-26 07:45:18 +00001091 Value* dest = ci->getOperand(1);
1092 Value* src = ci->getOperand(2);
Reid Spencer08b49402005-04-27 17:46:54 +00001093 Type* castType = 0;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001094 switch (len)
1095 {
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001096 case 0:
Reid Spencer93616972005-04-29 09:39:47 +00001097 // memcpy(d,s,0,a) -> noop
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001098 ci->eraseFromParent();
1099 return true;
Reid Spencer08b49402005-04-27 17:46:54 +00001100 case 1: castType = Type::SByteTy; break;
1101 case 2: castType = Type::ShortTy; break;
1102 case 4: castType = Type::IntTy; break;
1103 case 8: castType = Type::LongTy; break;
Reid Spencerb4f7b832005-04-26 07:45:18 +00001104 default:
1105 return false;
1106 }
Reid Spencer08b49402005-04-27 17:46:54 +00001107
1108 // Cast source and dest to the right sized primitive and then load/store
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001109 CastInst* SrcCast = CastInst::create(Instruction::BitCast,
1110 src, PointerType::get(castType), src->getName()+".cast", ci);
1111 CastInst* DestCast = CastInst::create(Instruction::BitCast,
1112 dest, PointerType::get(castType),dest->getName()+".cast", ci);
Reid Spencer08b49402005-04-27 17:46:54 +00001113 LoadInst* LI = new LoadInst(SrcCast,SrcCast->getName()+".val",ci);
Reid Spencerde46e482006-11-02 20:25:50 +00001114 new StoreInst(LI, DestCast, ci);
Reid Spencerb4f7b832005-04-26 07:45:18 +00001115 ci->eraseFromParent();
1116 return true;
Reid Spencerf2534c72005-04-25 21:11:48 +00001117 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001118};
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001119
Chris Lattnerea7986a2006-03-03 01:30:23 +00001120/// This LibCallOptimization will simplify a call to the memcpy/memmove library
1121/// functions.
1122LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer32("llvm.memcpy.i32",
1123 "Number of 'llvm.memcpy' calls simplified");
1124LLVMMemCpyMoveOptzn LLVMMemCpyOptimizer64("llvm.memcpy.i64",
1125 "Number of 'llvm.memcpy' calls simplified");
1126LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer32("llvm.memmove.i32",
1127 "Number of 'llvm.memmove' calls simplified");
1128LLVMMemCpyMoveOptzn LLVMMemMoveOptimizer64("llvm.memmove.i64",
1129 "Number of 'llvm.memmove' calls simplified");
Reid Spencer38cabd72005-05-03 07:23:44 +00001130
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001131/// This LibCallOptimization will simplify a call to the memset library
1132/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8
1133/// bytes depending on the length argument.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001134struct LLVMMemSetOptimization : public LibCallOptimization {
Reid Spencer38cabd72005-05-03 07:23:44 +00001135 /// @brief Default Constructor
Chris Lattnerea7986a2006-03-03 01:30:23 +00001136 LLVMMemSetOptimization(const char *Name) : LibCallOptimization(Name,
Reid Spencer38cabd72005-05-03 07:23:44 +00001137 "Number of 'llvm.memset' calls simplified") {}
Reid Spencer38cabd72005-05-03 07:23:44 +00001138
1139 /// @brief Make sure that the "memset" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001140 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001141 // Just make sure this has 3 arguments per LLVM spec.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001142 return F->arg_size() == 4;
Reid Spencer38cabd72005-05-03 07:23:44 +00001143 }
1144
1145 /// Because of alignment and instruction information that we don't have, we
1146 /// leave the bulk of this to the code generators. The optimization here just
1147 /// deals with a few degenerate cases where the length parameter is constant
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001148 /// and the alignment matches the sizes of our intrinsic types so we can do
Reid Spencer38cabd72005-05-03 07:23:44 +00001149 /// store instead of the memcpy call. Other calls are transformed into the
1150 /// llvm.memset intrinsic.
1151 /// @brief Perform the memset optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001152 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &TD) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001153 // Make sure we have constant int values to work with
1154 ConstantInt* LEN = dyn_cast<ConstantInt>(ci->getOperand(3));
1155 if (!LEN)
1156 return false;
1157 ConstantInt* ALIGN = dyn_cast<ConstantInt>(ci->getOperand(4));
1158 if (!ALIGN)
1159 return false;
1160
1161 // Extract the length and alignment
Reid Spencere0fc4df2006-10-20 07:07:24 +00001162 uint64_t len = LEN->getZExtValue();
1163 uint64_t alignment = ALIGN->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001164
1165 // Alignment 0 is identity for alignment 1
1166 if (alignment == 0)
1167 alignment = 1;
1168
1169 // If the length is zero, this is a no-op
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001170 if (len == 0) {
Reid Spencer38cabd72005-05-03 07:23:44 +00001171 // memset(d,c,0,a) -> noop
1172 ci->eraseFromParent();
1173 return true;
1174 }
1175
1176 // If the length is larger than the alignment, we can't optimize
1177 if (len > alignment)
1178 return false;
1179
1180 // Make sure we have a constant ubyte to work with so we can extract
1181 // the value to be filled.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001182 ConstantInt* FILL = dyn_cast<ConstantInt>(ci->getOperand(2));
Reid Spencer38cabd72005-05-03 07:23:44 +00001183 if (!FILL)
1184 return false;
1185 if (FILL->getType() != Type::UByteTy)
1186 return false;
1187
1188 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001189
Reid Spencer38cabd72005-05-03 07:23:44 +00001190 // Extract the fill character
Reid Spencere0fc4df2006-10-20 07:07:24 +00001191 uint64_t fill_char = FILL->getZExtValue();
Reid Spencer38cabd72005-05-03 07:23:44 +00001192 uint64_t fill_value = fill_char;
1193
1194 // Get the type we will cast to, based on size of memory area to fill, and
1195 // and the value we will store there.
1196 Value* dest = ci->getOperand(1);
1197 Type* castType = 0;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001198 switch (len) {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001199 case 1:
1200 castType = Type::UByteTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001201 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001202 case 2:
1203 castType = Type::UShortTy;
Reid Spencer38cabd72005-05-03 07:23:44 +00001204 fill_value |= fill_char << 8;
1205 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001206 case 4:
Reid Spencer38cabd72005-05-03 07:23:44 +00001207 castType = Type::UIntTy;
1208 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1209 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001210 case 8:
Reid Spencer38cabd72005-05-03 07:23:44 +00001211 castType = Type::ULongTy;
1212 fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24;
1213 fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48;
1214 fill_value |= fill_char << 56;
1215 break;
1216 default:
1217 return false;
1218 }
1219
1220 // Cast dest to the right sized primitive and then load/store
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001221 CastInst* DestCast = new BitCastInst(dest, PointerType::get(castType),
1222 dest->getName()+".cast", ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001223 new StoreInst(ConstantInt::get(castType,fill_value),DestCast, ci);
Reid Spencer38cabd72005-05-03 07:23:44 +00001224 ci->eraseFromParent();
1225 return true;
1226 }
Chris Lattnerea7986a2006-03-03 01:30:23 +00001227};
1228
1229LLVMMemSetOptimization MemSet32Optimizer("llvm.memset.i32");
1230LLVMMemSetOptimization MemSet64Optimizer("llvm.memset.i64");
1231
Reid Spencerbb92b4f2005-04-26 19:13:17 +00001232
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001233/// This LibCallOptimization will simplify calls to the "pow" library
1234/// function. It looks for cases where the result of pow is well known and
Reid Spencer93616972005-04-29 09:39:47 +00001235/// substitutes the appropriate value.
1236/// @brief Simplify the pow library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001237struct PowOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001238public:
1239 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001240 PowOptimization() : LibCallOptimization("pow",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001241 "Number of 'pow' calls simplified") {}
Reid Spencer95d8efd2005-05-03 02:54:54 +00001242
Reid Spencer93616972005-04-29 09:39:47 +00001243 /// @brief Make sure that the "pow" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001244 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001245 // Just make sure this has 2 arguments
1246 return (f->arg_size() == 2);
1247 }
1248
1249 /// @brief Perform the pow optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001250 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001251 const Type *Ty = cast<Function>(ci->getOperand(0))->getReturnType();
1252 Value* base = ci->getOperand(1);
1253 Value* expn = ci->getOperand(2);
1254 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(base)) {
1255 double Op1V = Op1->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001256 if (Op1V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001257 // pow(1.0,x) -> 1.0
1258 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1259 ci->eraseFromParent();
1260 return true;
1261 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001262 } else if (ConstantFP* Op2 = dyn_cast<ConstantFP>(expn)) {
Reid Spencer93616972005-04-29 09:39:47 +00001263 double Op2V = Op2->getValue();
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001264 if (Op2V == 0.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001265 // pow(x,0.0) -> 1.0
1266 ci->replaceAllUsesWith(ConstantFP::get(Ty,1.0));
1267 ci->eraseFromParent();
1268 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001269 } else if (Op2V == 0.5) {
Reid Spencer93616972005-04-29 09:39:47 +00001270 // pow(x,0.5) -> sqrt(x)
1271 CallInst* sqrt_inst = new CallInst(SLC.get_sqrt(), base,
1272 ci->getName()+".pow",ci);
1273 ci->replaceAllUsesWith(sqrt_inst);
1274 ci->eraseFromParent();
1275 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001276 } else if (Op2V == 1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001277 // pow(x,1.0) -> x
1278 ci->replaceAllUsesWith(base);
1279 ci->eraseFromParent();
1280 return true;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001281 } else if (Op2V == -1.0) {
Reid Spencer93616972005-04-29 09:39:47 +00001282 // pow(x,-1.0) -> 1.0/x
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001283 BinaryOperator* div_inst= BinaryOperator::createFDiv(
Reid Spencer93616972005-04-29 09:39:47 +00001284 ConstantFP::get(Ty,1.0), base, ci->getName()+".pow", ci);
1285 ci->replaceAllUsesWith(div_inst);
1286 ci->eraseFromParent();
1287 return true;
1288 }
1289 }
1290 return false; // opt failed
1291 }
1292} PowOptimizer;
1293
Evan Cheng1fc40252006-06-16 08:36:35 +00001294/// This LibCallOptimization will simplify calls to the "printf" library
1295/// function. It looks for cases where the result of printf is not used and the
1296/// operation can be reduced to something simpler.
1297/// @brief Simplify the printf library function.
1298struct PrintfOptimization : public LibCallOptimization {
1299public:
1300 /// @brief Default Constructor
1301 PrintfOptimization() : LibCallOptimization("printf",
1302 "Number of 'printf' calls simplified") {}
1303
1304 /// @brief Make sure that the "printf" function has the right prototype
1305 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
1306 // Just make sure this has at least 1 arguments
1307 return (f->arg_size() >= 1);
1308 }
1309
1310 /// @brief Perform the printf optimization.
1311 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
1312 // If the call has more than 2 operands, we can't optimize it
1313 if (ci->getNumOperands() > 3 || ci->getNumOperands() <= 2)
1314 return false;
1315
1316 // If the result of the printf call is used, none of these optimizations
1317 // can be made.
1318 if (!ci->use_empty())
1319 return false;
1320
1321 // All the optimizations depend on the length of the first argument and the
1322 // fact that it is a constant string array. Check that now
1323 uint64_t len = 0;
1324 ConstantArray* CA = 0;
1325 if (!getConstantStringLength(ci->getOperand(1), len, &CA))
1326 return false;
1327
1328 if (len != 2 && len != 3)
1329 return false;
1330
1331 // The first character has to be a %
1332 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001333 if (CI->getZExtValue() != '%')
Evan Cheng1fc40252006-06-16 08:36:35 +00001334 return false;
1335
1336 // Get the second character and switch on its value
1337 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001338 switch (CI->getZExtValue()) {
Evan Cheng1fc40252006-06-16 08:36:35 +00001339 case 's':
1340 {
1341 if (len != 3 ||
Reid Spencere0fc4df2006-10-20 07:07:24 +00001342 dyn_cast<ConstantInt>(CA->getOperand(2))->getZExtValue() != '\n')
Evan Cheng1fc40252006-06-16 08:36:35 +00001343 return false;
1344
1345 // printf("%s\n",str) -> puts(str)
1346 Function* puts_func = SLC.get_puts();
1347 if (!puts_func)
1348 return false;
1349 std::vector<Value*> args;
Evan Cheng8a417a22006-06-16 18:37:15 +00001350 args.push_back(CastToCStr(ci->getOperand(2), *ci));
Evan Cheng1fc40252006-06-16 08:36:35 +00001351 new CallInst(puts_func,args,ci->getName(),ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001352 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,len));
Evan Cheng1fc40252006-06-16 08:36:35 +00001353 break;
1354 }
1355 case 'c':
1356 {
1357 // printf("%c",c) -> putchar(c)
1358 if (len != 2)
1359 return false;
1360
1361 Function* putchar_func = SLC.get_putchar();
1362 if (!putchar_func)
1363 return false;
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001364 CastInst* cast = CastInst::createSExtOrBitCast(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001365 ci->getOperand(2), Type::IntTy, CI->getName()+".int", ci);
Evan Cheng1fc40252006-06-16 08:36:35 +00001366 new CallInst(putchar_func, cast, "", ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001367 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy, 1));
Evan Cheng1fc40252006-06-16 08:36:35 +00001368 break;
1369 }
1370 default:
1371 return false;
1372 }
1373 ci->eraseFromParent();
1374 return true;
1375 }
1376} PrintfOptimizer;
1377
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001378/// This LibCallOptimization will simplify calls to the "fprintf" library
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001379/// function. It looks for cases where the result of fprintf is not used and the
1380/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001381/// @brief Simplify the fprintf library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001382struct FPrintFOptimization : public LibCallOptimization {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001383public:
1384 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001385 FPrintFOptimization() : LibCallOptimization("fprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001386 "Number of 'fprintf' calls simplified") {}
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001387
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001388 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001389 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001390 // Just make sure this has at least 2 arguments
1391 return (f->arg_size() >= 2);
1392 }
1393
1394 /// @brief Perform the fprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001395 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001396 // If the call has more than 3 operands, we can't optimize it
1397 if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2)
1398 return false;
1399
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001400 // If the result of the fprintf call is used, none of these optimizations
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001401 // can be made.
Chris Lattner175463a2005-09-24 22:17:06 +00001402 if (!ci->use_empty())
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001403 return false;
1404
1405 // All the optimizations depend on the length of the second argument and the
1406 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001407 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001408 ConstantArray* CA = 0;
1409 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1410 return false;
1411
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001412 if (ci->getNumOperands() == 3) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001413 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001414 for (unsigned i = 0; i < len; ++i) {
1415 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001416 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001417 if (CI->getZExtValue() == '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001418 return false; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001419 } else {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001420 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001421 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001422 }
1423
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001424 // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001425 const Type* FILEptr_type = ci->getOperand(1)->getType();
1426 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1427 if (!fwrite_func)
1428 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001429
1430 // Make sure that the fprintf() and fwrite() functions both take the
1431 // same type of char pointer.
1432 if (ci->getOperand(2)->getType() !=
1433 fwrite_func->getFunctionType()->getParamType(0))
John Criswell4642afd2005-06-29 15:03:18 +00001434 return false;
John Criswell4642afd2005-06-29 15:03:18 +00001435
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001436 std::vector<Value*> args;
1437 args.push_back(ci->getOperand(2));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001438 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1439 args.push_back(ConstantInt::get(SLC.getIntPtrType(),1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001440 args.push_back(ci->getOperand(1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001441 new CallInst(fwrite_func,args,ci->getName(),ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001442 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,len));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001443 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)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001454 if (CI->getZExtValue() != '%')
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001455 return false;
1456
1457 // Get the second character and switch on its value
1458 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001459 switch (CI->getZExtValue()) {
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001460 case 's':
1461 {
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001462 uint64_t len = 0;
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001463 ConstantArray* CA = 0;
Evan Chengf2ea5872006-06-16 04:52:30 +00001464 if (getConstantStringLength(ci->getOperand(3), len, &CA)) {
1465 // fprintf(file,"%s",str) -> fwrite(str,strlen(str),1,file)
1466 const Type* FILEptr_type = ci->getOperand(1)->getType();
1467 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
1468 if (!fwrite_func)
1469 return false;
1470 std::vector<Value*> args;
1471 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001472 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1473 args.push_back(ConstantInt::get(SLC.getIntPtrType(),1));
Evan Chengf2ea5872006-06-16 04:52:30 +00001474 args.push_back(ci->getOperand(1));
1475 new CallInst(fwrite_func,args,ci->getName(),ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001476 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001477 } else {
1478 // fprintf(file,"%s",str) -> fputs(str,file)
1479 const Type* FILEptr_type = ci->getOperand(1)->getType();
1480 Function* fputs_func = SLC.get_fputs(FILEptr_type);
1481 if (!fputs_func)
1482 return false;
1483 std::vector<Value*> args;
Evan Cheng8a417a22006-06-16 18:37:15 +00001484 args.push_back(CastToCStr(ci->getOperand(3), *ci));
Evan Chengf2ea5872006-06-16 04:52:30 +00001485 args.push_back(ci->getOperand(1));
1486 new CallInst(fputs_func,args,ci->getName(),ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001487 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,len));
Evan Chengf2ea5872006-06-16 04:52:30 +00001488 }
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001489 break;
1490 }
1491 case 'c':
1492 {
Evan Cheng1fc40252006-06-16 08:36:35 +00001493 // fprintf(file,"%c",c) -> fputc(c,file)
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001494 const Type* FILEptr_type = ci->getOperand(1)->getType();
1495 Function* fputc_func = SLC.get_fputc(FILEptr_type);
1496 if (!fputc_func)
1497 return false;
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001498 CastInst* cast = CastInst::createSExtOrBitCast(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001499 ci->getOperand(3), Type::IntTy, CI->getName()+".int", ci);
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001500 new CallInst(fputc_func,cast,ci->getOperand(1),"",ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001501 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,1));
Reid Spencer2d5c7be2005-05-02 23:59:26 +00001502 break;
1503 }
1504 default:
1505 return false;
1506 }
1507 ci->eraseFromParent();
1508 return true;
1509 }
1510} FPrintFOptimizer;
1511
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001512/// This LibCallOptimization will simplify calls to the "sprintf" library
Reid Spencer1e520fd2005-05-04 03:20:21 +00001513/// function. It looks for cases where the result of sprintf is not used and the
1514/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001515/// @brief Simplify the sprintf library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001516struct SPrintFOptimization : public LibCallOptimization {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001517public:
1518 /// @brief Default Constructor
1519 SPrintFOptimization() : LibCallOptimization("sprintf",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001520 "Number of 'sprintf' calls simplified") {}
Reid Spencer1e520fd2005-05-04 03:20:21 +00001521
Reid Spencer1e520fd2005-05-04 03:20:21 +00001522 /// @brief Make sure that the "fprintf" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001523 virtual bool ValidateCalledFunction(const Function *f, SimplifyLibCalls &SLC){
Reid Spencer1e520fd2005-05-04 03:20:21 +00001524 // Just make sure this has at least 2 arguments
1525 return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2);
1526 }
1527
1528 /// @brief Perform the sprintf optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001529 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001530 // If the call has more than 3 operands, we can't optimize it
1531 if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3)
1532 return false;
1533
1534 // All the optimizations depend on the length of the second argument and the
1535 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001536 uint64_t len = 0;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001537 ConstantArray* CA = 0;
1538 if (!getConstantStringLength(ci->getOperand(2), len, &CA))
1539 return false;
1540
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001541 if (ci->getNumOperands() == 3) {
1542 if (len == 0) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001543 // If the length is 0, we just need to store a null byte
1544 new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001545 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001546 ci->eraseFromParent();
1547 return true;
1548 }
1549
1550 // Make sure there's no % in the constant array
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001551 for (unsigned i = 0; i < len; ++i) {
1552 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(i))) {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001553 // Check for the null terminator
Reid Spencere0fc4df2006-10-20 07:07:24 +00001554 if (CI->getZExtValue() == '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001555 return false; // we found a %, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001556 } else {
Reid Spencer1e520fd2005-05-04 03:20:21 +00001557 return false; // initializer is not constant int, can't optimize
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001558 }
Reid Spencer1e520fd2005-05-04 03:20:21 +00001559 }
1560
1561 // Increment length because we want to copy the null byte too
1562 len++;
1563
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001564 // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001565 Function* memcpy_func = SLC.get_memcpy();
1566 if (!memcpy_func)
1567 return false;
1568 std::vector<Value*> args;
1569 args.push_back(ci->getOperand(1));
1570 args.push_back(ci->getOperand(2));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001571 args.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1572 args.push_back(ConstantInt::get(Type::UIntTy,1));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001573 new CallInst(memcpy_func,args,"",ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001574 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,len));
Reid Spencer1e520fd2005-05-04 03:20:21 +00001575 ci->eraseFromParent();
1576 return true;
1577 }
1578
1579 // The remaining optimizations require the format string to be length 2
1580 // "%s" or "%c".
1581 if (len != 2)
1582 return false;
1583
1584 // The first character has to be a %
1585 if (ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(0)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00001586 if (CI->getZExtValue() != '%')
Reid Spencer1e520fd2005-05-04 03:20:21 +00001587 return false;
1588
1589 // Get the second character and switch on its value
1590 ConstantInt* CI = dyn_cast<ConstantInt>(CA->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001591 switch (CI->getZExtValue()) {
Chris Lattner175463a2005-09-24 22:17:06 +00001592 case 's': {
1593 // sprintf(dest,"%s",str) -> llvm.memcpy(dest, str, strlen(str)+1, 1)
1594 Function* strlen_func = SLC.get_strlen();
1595 Function* memcpy_func = SLC.get_memcpy();
1596 if (!strlen_func || !memcpy_func)
Reid Spencer1e520fd2005-05-04 03:20:21 +00001597 return false;
Chris Lattner175463a2005-09-24 22:17:06 +00001598
1599 Value *Len = new CallInst(strlen_func, CastToCStr(ci->getOperand(3), *ci),
1600 ci->getOperand(3)->getName()+".len", ci);
1601 Value *Len1 = BinaryOperator::createAdd(Len,
1602 ConstantInt::get(Len->getType(), 1),
1603 Len->getName()+"1", ci);
Andrew Lenharth47da6012006-02-15 21:13:37 +00001604 if (Len1->getType() != SLC.getIntPtrType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001605 Len1 = CastInst::createIntegerCast(Len1, SLC.getIntPtrType(), false,
1606 Len1->getName(), ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001607 std::vector<Value*> args;
1608 args.push_back(CastToCStr(ci->getOperand(1), *ci));
1609 args.push_back(CastToCStr(ci->getOperand(3), *ci));
1610 args.push_back(Len1);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001611 args.push_back(ConstantInt::get(Type::UIntTy,1));
Chris Lattner175463a2005-09-24 22:17:06 +00001612 new CallInst(memcpy_func, args, "", ci);
1613
1614 // The strlen result is the unincremented number of bytes in the string.
Chris Lattnerf4877682005-09-25 07:06:48 +00001615 if (!ci->use_empty()) {
1616 if (Len->getType() != ci->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001617 Len = CastInst::createIntegerCast(Len, ci->getType(), false,
1618 Len->getName(), ci);
Chris Lattnerf4877682005-09-25 07:06:48 +00001619 ci->replaceAllUsesWith(Len);
1620 }
Chris Lattner175463a2005-09-24 22:17:06 +00001621 ci->eraseFromParent();
1622 return true;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001623 }
Chris Lattner175463a2005-09-24 22:17:06 +00001624 case 'c': {
1625 // sprintf(dest,"%c",chr) -> store chr, dest
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001626 CastInst* cast = CastInst::createTruncOrBitCast(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001627 ci->getOperand(3), Type::SByteTy, "char", ci);
Chris Lattner175463a2005-09-24 22:17:06 +00001628 new StoreInst(cast, ci->getOperand(1), ci);
1629 GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1),
Reid Spencere0fc4df2006-10-20 07:07:24 +00001630 ConstantInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end",
Chris Lattner175463a2005-09-24 22:17:06 +00001631 ci);
1632 new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001633 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,1));
Chris Lattner175463a2005-09-24 22:17:06 +00001634 ci->eraseFromParent();
1635 return true;
1636 }
1637 }
1638 return false;
Reid Spencer1e520fd2005-05-04 03:20:21 +00001639 }
1640} SPrintFOptimizer;
1641
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001642/// This LibCallOptimization will simplify calls to the "fputs" library
Reid Spencer93616972005-04-29 09:39:47 +00001643/// function. It looks for cases where the result of fputs is not used and the
1644/// operation can be reduced to something simpler.
Evan Cheng1fc40252006-06-16 08:36:35 +00001645/// @brief Simplify the puts library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001646struct PutsOptimization : public LibCallOptimization {
Reid Spencer93616972005-04-29 09:39:47 +00001647public:
1648 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001649 PutsOptimization() : LibCallOptimization("fputs",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001650 "Number of 'fputs' calls simplified") {}
Reid Spencer93616972005-04-29 09:39:47 +00001651
Reid Spencer93616972005-04-29 09:39:47 +00001652 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001653 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencer93616972005-04-29 09:39:47 +00001654 // Just make sure this has 2 arguments
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001655 return F->arg_size() == 2;
Reid Spencer93616972005-04-29 09:39:47 +00001656 }
1657
1658 /// @brief Perform the fputs optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001659 virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) {
Reid Spencer93616972005-04-29 09:39:47 +00001660 // If the result is used, none of these optimizations work
Chris Lattner175463a2005-09-24 22:17:06 +00001661 if (!ci->use_empty())
Reid Spencer93616972005-04-29 09:39:47 +00001662 return false;
1663
1664 // All the optimizations depend on the length of the first argument and the
1665 // fact that it is a constant string array. Check that now
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001666 uint64_t len = 0;
Reid Spencer93616972005-04-29 09:39:47 +00001667 if (!getConstantStringLength(ci->getOperand(1), len))
1668 return false;
1669
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001670 switch (len) {
Reid Spencer93616972005-04-29 09:39:47 +00001671 case 0:
1672 // fputs("",F) -> noop
1673 break;
1674 case 1:
1675 {
1676 // fputs(s,F) -> fputc(s[0],F) (if s is constant and strlen(s) == 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001677 const Type* FILEptr_type = ci->getOperand(2)->getType();
1678 Function* fputc_func = SLC.get_fputc(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001679 if (!fputc_func)
1680 return false;
1681 LoadInst* loadi = new LoadInst(ci->getOperand(1),
1682 ci->getOperand(1)->getName()+".byte",ci);
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001683 CastInst* casti = new SExtInst(loadi, Type::IntTy,
1684 loadi->getName()+".int", ci);
Reid Spencer93616972005-04-29 09:39:47 +00001685 new CallInst(fputc_func,casti,ci->getOperand(2),"",ci);
1686 break;
1687 }
1688 default:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001689 {
Reid Spencer93616972005-04-29 09:39:47 +00001690 // fputs(s,F) -> fwrite(s,1,len,F) (if s is constant and strlen(s) > 1)
Reid Spencer4c444fe2005-04-30 03:17:54 +00001691 const Type* FILEptr_type = ci->getOperand(2)->getType();
1692 Function* fwrite_func = SLC.get_fwrite(FILEptr_type);
Reid Spencer93616972005-04-29 09:39:47 +00001693 if (!fwrite_func)
1694 return false;
1695 std::vector<Value*> parms;
1696 parms.push_back(ci->getOperand(1));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001697 parms.push_back(ConstantInt::get(SLC.getIntPtrType(),len));
1698 parms.push_back(ConstantInt::get(SLC.getIntPtrType(),1));
Reid Spencer93616972005-04-29 09:39:47 +00001699 parms.push_back(ci->getOperand(2));
1700 new CallInst(fwrite_func,parms,"",ci);
1701 break;
1702 }
1703 }
1704 ci->eraseFromParent();
1705 return true; // success
1706 }
1707} PutsOptimizer;
1708
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001709/// This LibCallOptimization will simplify calls to the "isdigit" library
Reid Spencer282d0572005-05-04 18:58:28 +00001710/// function. It simply does range checks the parameter explicitly.
1711/// @brief Simplify the isdigit library function.
Chris Lattner5f6035f2005-09-29 06:16:11 +00001712struct isdigitOptimization : public LibCallOptimization {
Reid Spencer282d0572005-05-04 18:58:28 +00001713public:
Chris Lattner5f6035f2005-09-29 06:16:11 +00001714 isdigitOptimization() : LibCallOptimization("isdigit",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001715 "Number of 'isdigit' calls simplified") {}
Reid Spencer282d0572005-05-04 18:58:28 +00001716
Chris Lattner5f6035f2005-09-29 06:16:11 +00001717 /// @brief Make sure that the "isdigit" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001718 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer282d0572005-05-04 18:58:28 +00001719 // Just make sure this has 1 argument
1720 return (f->arg_size() == 1);
1721 }
1722
1723 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001724 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
1725 if (ConstantInt* CI = dyn_cast<ConstantInt>(ci->getOperand(1))) {
Reid Spencer282d0572005-05-04 18:58:28 +00001726 // isdigit(c) -> 0 or 1, if 'c' is constant
Reid Spencere0fc4df2006-10-20 07:07:24 +00001727 uint64_t val = CI->getZExtValue();
Reid Spencer282d0572005-05-04 18:58:28 +00001728 if (val >= '0' && val <='9')
Reid Spencere0fc4df2006-10-20 07:07:24 +00001729 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,1));
Reid Spencer282d0572005-05-04 18:58:28 +00001730 else
Reid Spencere0fc4df2006-10-20 07:07:24 +00001731 ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0));
Reid Spencer282d0572005-05-04 18:58:28 +00001732 ci->eraseFromParent();
1733 return true;
1734 }
1735
1736 // isdigit(c) -> (unsigned)c - '0' <= 9
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001737 CastInst* cast = CastInst::createIntegerCast(ci->getOperand(1),
1738 Type::UIntTy, false/*ZExt*/, ci->getOperand(1)->getName()+".uint", ci);
Chris Lattner4201cd12005-08-24 17:22:17 +00001739 BinaryOperator* sub_inst = BinaryOperator::createSub(cast,
Reid Spencere0fc4df2006-10-20 07:07:24 +00001740 ConstantInt::get(Type::UIntTy,0x30),
Reid Spencer282d0572005-05-04 18:58:28 +00001741 ci->getOperand(1)->getName()+".sub",ci);
1742 SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst,
Reid Spencere0fc4df2006-10-20 07:07:24 +00001743 ConstantInt::get(Type::UIntTy,9),
Reid Spencer282d0572005-05-04 18:58:28 +00001744 ci->getOperand(1)->getName()+".cmp",ci);
Reid Spencera730cf82006-12-13 08:04:32 +00001745 CastInst* c2 = new ZExtInst(setcond_inst, Type::IntTy,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001746 ci->getOperand(1)->getName()+".isdigit", ci);
Reid Spencer282d0572005-05-04 18:58:28 +00001747 ci->replaceAllUsesWith(c2);
1748 ci->eraseFromParent();
1749 return true;
1750 }
Chris Lattner5f6035f2005-09-29 06:16:11 +00001751} isdigitOptimizer;
1752
Chris Lattner87ef9432005-09-29 06:17:27 +00001753struct isasciiOptimization : public LibCallOptimization {
1754public:
1755 isasciiOptimization()
1756 : LibCallOptimization("isascii", "Number of 'isascii' calls simplified") {}
1757
1758 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1759 return F->arg_size() == 1 && F->arg_begin()->getType()->isInteger() &&
1760 F->getReturnType()->isInteger();
1761 }
1762
1763 /// @brief Perform the isascii optimization.
1764 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1765 // isascii(c) -> (unsigned)c < 128
1766 Value *V = CI->getOperand(1);
1767 if (V->getType()->isSigned())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001768 V = new BitCastInst(V, V->getType()->getUnsignedVersion(), V->getName(),
1769 CI);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001770 Value *Cmp = BinaryOperator::createSetLT(V, ConstantInt::get(V->getType(),
Chris Lattner87ef9432005-09-29 06:17:27 +00001771 128),
1772 V->getName()+".isascii", CI);
1773 if (Cmp->getType() != CI->getType())
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001774 Cmp = new BitCastInst(Cmp, CI->getType(), Cmp->getName(), CI);
Chris Lattner87ef9432005-09-29 06:17:27 +00001775 CI->replaceAllUsesWith(Cmp);
1776 CI->eraseFromParent();
1777 return true;
1778 }
1779} isasciiOptimizer;
Chris Lattner5f6035f2005-09-29 06:16:11 +00001780
Reid Spencer282d0572005-05-04 18:58:28 +00001781
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001782/// This LibCallOptimization will simplify calls to the "toascii" library
Reid Spencer4c444fe2005-04-30 03:17:54 +00001783/// function. It simply does the corresponding and operation to restrict the
1784/// range of values to the ASCII character set (0-127).
1785/// @brief Simplify the toascii library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001786struct ToAsciiOptimization : public LibCallOptimization {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001787public:
1788 /// @brief Default Constructor
Reid Spencer95d8efd2005-05-03 02:54:54 +00001789 ToAsciiOptimization() : LibCallOptimization("toascii",
Reid Spencer170ae7f2005-05-07 20:15:59 +00001790 "Number of 'toascii' calls simplified") {}
Reid Spencer4c444fe2005-04-30 03:17:54 +00001791
Reid Spencer4c444fe2005-04-30 03:17:54 +00001792 /// @brief Make sure that the "fputs" function has the right prototype
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001793 virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC){
Reid Spencer4c444fe2005-04-30 03:17:54 +00001794 // Just make sure this has 2 arguments
1795 return (f->arg_size() == 1);
1796 }
1797
1798 /// @brief Perform the toascii optimization.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001799 virtual bool OptimizeCall(CallInst *ci, SimplifyLibCalls &SLC) {
Reid Spencer4c444fe2005-04-30 03:17:54 +00001800 // toascii(c) -> (c & 0x7f)
1801 Value* chr = ci->getOperand(1);
Chris Lattner4201cd12005-08-24 17:22:17 +00001802 BinaryOperator* and_inst = BinaryOperator::createAnd(chr,
Reid Spencer4c444fe2005-04-30 03:17:54 +00001803 ConstantInt::get(chr->getType(),0x7F),ci->getName()+".toascii",ci);
1804 ci->replaceAllUsesWith(and_inst);
1805 ci->eraseFromParent();
1806 return true;
1807 }
1808} ToAsciiOptimizer;
1809
Reid Spencerb195fcd2005-05-14 16:42:52 +00001810/// This LibCallOptimization will simplify calls to the "ffs" library
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00001811/// calls which find the first set bit in an int, long, or long long. The
Reid Spencerb195fcd2005-05-14 16:42:52 +00001812/// optimization is to compute the result at compile time if the argument is
1813/// a constant.
1814/// @brief Simplify the ffs library function.
Chris Lattner801f4752006-01-17 18:27:17 +00001815struct FFSOptimization : public LibCallOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001816protected:
1817 /// @brief Subclass Constructor
1818 FFSOptimization(const char* funcName, const char* description)
Chris Lattner801f4752006-01-17 18:27:17 +00001819 : LibCallOptimization(funcName, description) {}
Reid Spencerb195fcd2005-05-14 16:42:52 +00001820
1821public:
1822 /// @brief Default Constructor
1823 FFSOptimization() : LibCallOptimization("ffs",
1824 "Number of 'ffs' calls simplified") {}
1825
Chris Lattner801f4752006-01-17 18:27:17 +00001826 /// @brief Make sure that the "ffs" function has the right prototype
1827 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
Reid Spencerb195fcd2005-05-14 16:42:52 +00001828 // Just make sure this has 2 arguments
Chris Lattner801f4752006-01-17 18:27:17 +00001829 return F->arg_size() == 1 && F->getReturnType() == Type::IntTy;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001830 }
1831
1832 /// @brief Perform the ffs optimization.
Chris Lattner801f4752006-01-17 18:27:17 +00001833 virtual bool OptimizeCall(CallInst *TheCall, SimplifyLibCalls &SLC) {
1834 if (ConstantInt *CI = dyn_cast<ConstantInt>(TheCall->getOperand(1))) {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001835 // ffs(cnst) -> bit#
1836 // ffsl(cnst) -> bit#
Reid Spencer17f77842005-05-15 21:19:45 +00001837 // ffsll(cnst) -> bit#
Reid Spencere0fc4df2006-10-20 07:07:24 +00001838 uint64_t val = CI->getZExtValue();
Reid Spencer17f77842005-05-15 21:19:45 +00001839 int result = 0;
Chris Lattner801f4752006-01-17 18:27:17 +00001840 if (val) {
1841 ++result;
1842 while ((val & 1) == 0) {
1843 ++result;
1844 val >>= 1;
1845 }
Reid Spencer17f77842005-05-15 21:19:45 +00001846 }
Reid Spencere0fc4df2006-10-20 07:07:24 +00001847 TheCall->replaceAllUsesWith(ConstantInt::get(Type::IntTy, result));
Chris Lattner801f4752006-01-17 18:27:17 +00001848 TheCall->eraseFromParent();
Reid Spencerb195fcd2005-05-14 16:42:52 +00001849 return true;
1850 }
Reid Spencer17f77842005-05-15 21:19:45 +00001851
Chris Lattner801f4752006-01-17 18:27:17 +00001852 // ffs(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1853 // ffsl(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1854 // ffsll(x) -> x == 0 ? 0 : llvm.cttz(x)+1
1855 const Type *ArgType = TheCall->getOperand(1)->getType();
1856 ArgType = ArgType->getUnsignedVersion();
1857 const char *CTTZName;
1858 switch (ArgType->getTypeID()) {
1859 default: assert(0 && "Unknown unsigned type!");
1860 case Type::UByteTyID : CTTZName = "llvm.cttz.i8" ; break;
1861 case Type::UShortTyID: CTTZName = "llvm.cttz.i16"; break;
1862 case Type::UIntTyID : CTTZName = "llvm.cttz.i32"; break;
1863 case Type::ULongTyID : CTTZName = "llvm.cttz.i64"; break;
1864 }
1865
1866 Function *F = SLC.getModule()->getOrInsertFunction(CTTZName, ArgType,
1867 ArgType, NULL);
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001868 Value *V = CastInst::createIntegerCast(TheCall->getOperand(1), ArgType,
1869 false/*ZExt*/, "tmp", TheCall);
Chris Lattner801f4752006-01-17 18:27:17 +00001870 Value *V2 = new CallInst(F, V, "tmp", TheCall);
Reid Spencera730cf82006-12-13 08:04:32 +00001871 V2 = CastInst::createIntegerCast(V2, Type::IntTy, false/*ZExt*/,
Reid Spencerbfe26ff2006-12-13 00:50:17 +00001872 "tmp", TheCall);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001873 V2 = BinaryOperator::createAdd(V2, ConstantInt::get(Type::IntTy, 1),
Chris Lattner801f4752006-01-17 18:27:17 +00001874 "tmp", TheCall);
1875 Value *Cond =
1876 BinaryOperator::createSetEQ(V, Constant::getNullValue(V->getType()),
1877 "tmp", TheCall);
1878 V2 = new SelectInst(Cond, ConstantInt::get(Type::IntTy, 0), V2,
1879 TheCall->getName(), TheCall);
1880 TheCall->replaceAllUsesWith(V2);
1881 TheCall->eraseFromParent();
Reid Spencer17f77842005-05-15 21:19:45 +00001882 return true;
Reid Spencerb195fcd2005-05-14 16:42:52 +00001883 }
1884} FFSOptimizer;
1885
1886/// This LibCallOptimization will simplify calls to the "ffsl" library
1887/// calls. It simply uses FFSOptimization for which the transformation is
1888/// identical.
1889/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001890struct FFSLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001891public:
1892 /// @brief Default Constructor
1893 FFSLOptimization() : FFSOptimization("ffsl",
1894 "Number of 'ffsl' calls simplified") {}
1895
1896} FFSLOptimizer;
1897
1898/// This LibCallOptimization will simplify calls to the "ffsll" library
1899/// calls. It simply uses FFSOptimization for which the transformation is
1900/// identical.
1901/// @brief Simplify the ffsl library function.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001902struct FFSLLOptimization : public FFSOptimization {
Reid Spencerb195fcd2005-05-14 16:42:52 +00001903public:
1904 /// @brief Default Constructor
1905 FFSLLOptimization() : FFSOptimization("ffsll",
1906 "Number of 'ffsll' calls simplified") {}
1907
1908} FFSLLOptimizer;
1909
Chris Lattner57a28632006-01-23 05:57:36 +00001910/// This optimizes unary functions that take and return doubles.
1911struct UnaryDoubleFPOptimizer : public LibCallOptimization {
1912 UnaryDoubleFPOptimizer(const char *Fn, const char *Desc)
1913 : LibCallOptimization(Fn, Desc) {}
Chris Lattner4201cd12005-08-24 17:22:17 +00001914
Chris Lattner57a28632006-01-23 05:57:36 +00001915 // Make sure that this function has the right prototype
Chris Lattner4201cd12005-08-24 17:22:17 +00001916 virtual bool ValidateCalledFunction(const Function *F, SimplifyLibCalls &SLC){
1917 return F->arg_size() == 1 && F->arg_begin()->getType() == Type::DoubleTy &&
1918 F->getReturnType() == Type::DoubleTy;
1919 }
Chris Lattner57a28632006-01-23 05:57:36 +00001920
1921 /// ShrinkFunctionToFloatVersion - If the input to this function is really a
1922 /// float, strength reduce this to a float version of the function,
1923 /// e.g. floor((double)FLT) -> (double)floorf(FLT). This can only be called
1924 /// when the target supports the destination function and where there can be
1925 /// no precision loss.
1926 static bool ShrinkFunctionToFloatVersion(CallInst *CI, SimplifyLibCalls &SLC,
1927 Function *(SimplifyLibCalls::*FP)()){
Chris Lattner4201cd12005-08-24 17:22:17 +00001928 if (CastInst *Cast = dyn_cast<CastInst>(CI->getOperand(1)))
1929 if (Cast->getOperand(0)->getType() == Type::FloatTy) {
Chris Lattner57a28632006-01-23 05:57:36 +00001930 Value *New = new CallInst((SLC.*FP)(), Cast->getOperand(0),
Chris Lattner4201cd12005-08-24 17:22:17 +00001931 CI->getName(), CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001932 New = new FPExtInst(New, Type::DoubleTy, CI->getName(), CI);
Chris Lattner4201cd12005-08-24 17:22:17 +00001933 CI->replaceAllUsesWith(New);
1934 CI->eraseFromParent();
1935 if (Cast->use_empty())
1936 Cast->eraseFromParent();
1937 return true;
1938 }
Chris Lattner57a28632006-01-23 05:57:36 +00001939 return false;
Chris Lattner4201cd12005-08-24 17:22:17 +00001940 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001941};
1942
Chris Lattner57a28632006-01-23 05:57:36 +00001943
Chris Lattner57a28632006-01-23 05:57:36 +00001944struct FloorOptimization : public UnaryDoubleFPOptimizer {
1945 FloorOptimization()
1946 : UnaryDoubleFPOptimizer("floor", "Number of 'floor' calls simplified") {}
1947
1948 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00001949#ifdef HAVE_FLOORF
Chris Lattner57a28632006-01-23 05:57:36 +00001950 // If this is a float argument passed in, convert to floorf.
1951 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_floorf))
1952 return true;
Reid Spencerade18212006-01-19 08:36:56 +00001953#endif
Chris Lattner57a28632006-01-23 05:57:36 +00001954 return false; // opt failed
1955 }
1956} FloorOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001957
Chris Lattner57740402006-01-23 06:24:46 +00001958struct CeilOptimization : public UnaryDoubleFPOptimizer {
1959 CeilOptimization()
1960 : UnaryDoubleFPOptimizer("ceil", "Number of 'ceil' calls simplified") {}
1961
1962 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1963#ifdef HAVE_CEILF
1964 // If this is a float argument passed in, convert to ceilf.
1965 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_ceilf))
1966 return true;
1967#endif
1968 return false; // opt failed
1969 }
1970} CeilOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00001971
Chris Lattner57740402006-01-23 06:24:46 +00001972struct RoundOptimization : public UnaryDoubleFPOptimizer {
1973 RoundOptimization()
1974 : UnaryDoubleFPOptimizer("round", "Number of 'round' calls simplified") {}
1975
1976 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1977#ifdef HAVE_ROUNDF
1978 // If this is a float argument passed in, convert to roundf.
1979 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_roundf))
1980 return true;
1981#endif
1982 return false; // opt failed
1983 }
1984} RoundOptimizer;
1985
1986struct RintOptimization : public UnaryDoubleFPOptimizer {
1987 RintOptimization()
1988 : UnaryDoubleFPOptimizer("rint", "Number of 'rint' calls simplified") {}
1989
1990 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
1991#ifdef HAVE_RINTF
1992 // If this is a float argument passed in, convert to rintf.
1993 if (ShrinkFunctionToFloatVersion(CI, SLC, &SimplifyLibCalls::get_rintf))
1994 return true;
1995#endif
1996 return false; // opt failed
1997 }
1998} RintOptimizer;
1999
2000struct NearByIntOptimization : public UnaryDoubleFPOptimizer {
2001 NearByIntOptimization()
2002 : UnaryDoubleFPOptimizer("nearbyint",
2003 "Number of 'nearbyint' calls simplified") {}
2004
2005 virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
2006#ifdef HAVE_NEARBYINTF
2007 // If this is a float argument passed in, convert to nearbyintf.
2008 if (ShrinkFunctionToFloatVersion(CI, SLC,&SimplifyLibCalls::get_nearbyintf))
2009 return true;
2010#endif
2011 return false; // opt failed
2012 }
2013} NearByIntOptimizer;
Chris Lattner4201cd12005-08-24 17:22:17 +00002014
Reid Spencer7ddcfb32005-04-27 21:29:20 +00002015/// A function to compute the length of a null-terminated constant array of
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002016/// integers. This function can't rely on the size of the constant array
2017/// because there could be a null terminator in the middle of the array.
2018/// We also have to bail out if we find a non-integer constant initializer
2019/// of one of the elements or if there is no null-terminator. The logic
Reid Spencer7ddcfb32005-04-27 21:29:20 +00002020/// below checks each of these conditions and will return true only if all
2021/// conditions are met. In that case, the \p len parameter is set to the length
2022/// of the null-terminated string. If false is returned, the conditions were
2023/// not met and len is set to 0.
2024/// @brief Get the length of a constant string (null-terminated array).
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002025bool getConstantStringLength(Value *V, uint64_t &len, ConstantArray **CA) {
Reid Spencere249a822005-04-27 07:54:40 +00002026 assert(V != 0 && "Invalid args to getConstantStringLength");
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002027 len = 0; // make sure we initialize this
Reid Spencere249a822005-04-27 07:54:40 +00002028 User* GEP = 0;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002029 // If the value is not a GEP instruction nor a constant expression with a
2030 // GEP instruction, then return false because ConstantArray can't occur
Reid Spencere249a822005-04-27 07:54:40 +00002031 // any other way
2032 if (GetElementPtrInst* GEPI = dyn_cast<GetElementPtrInst>(V))
2033 GEP = GEPI;
2034 else if (ConstantExpr* CE = dyn_cast<ConstantExpr>(V))
2035 if (CE->getOpcode() == Instruction::GetElementPtr)
2036 GEP = CE;
2037 else
2038 return false;
2039 else
2040 return false;
2041
2042 // Make sure the GEP has exactly three arguments.
2043 if (GEP->getNumOperands() != 3)
2044 return false;
2045
2046 // Check to make sure that the first operand of the GEP is an integer and
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002047 // has value 0 so that we are sure we're indexing into the initializer.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002048 if (ConstantInt* op1 = dyn_cast<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere249a822005-04-27 07:54:40 +00002049 if (!op1->isNullValue())
2050 return false;
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002051 } else
Reid Spencere249a822005-04-27 07:54:40 +00002052 return false;
2053
2054 // Ensure that the second operand is a ConstantInt. If it isn't then this
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002055 // GEP is wonky and we're not really sure what were referencing into and
Reid Spencere249a822005-04-27 07:54:40 +00002056 // better of not optimizing it. While we're at it, get the second index
2057 // value. We'll need this later for indexing the ConstantArray.
2058 uint64_t start_idx = 0;
2059 if (ConstantInt* CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
Reid Spencere0fc4df2006-10-20 07:07:24 +00002060 start_idx = CI->getZExtValue();
Reid Spencere249a822005-04-27 07:54:40 +00002061 else
2062 return false;
2063
2064 // The GEP instruction, constant or instruction, must reference a global
2065 // variable that is a constant and is initialized. The referenced constant
2066 // initializer is the array that we'll use for optimization.
2067 GlobalVariable* GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
2068 if (!GV || !GV->isConstant() || !GV->hasInitializer())
2069 return false;
2070
2071 // Get the initializer.
2072 Constant* INTLZR = GV->getInitializer();
2073
2074 // Handle the ConstantAggregateZero case
Reid Spencerde46e482006-11-02 20:25:50 +00002075 if (isa<ConstantAggregateZero>(INTLZR)) {
Reid Spencere249a822005-04-27 07:54:40 +00002076 // This is a degenerate case. The initializer is constant zero so the
2077 // length of the string must be zero.
2078 len = 0;
2079 return true;
2080 }
2081
2082 // Must be a Constant Array
2083 ConstantArray* A = dyn_cast<ConstantArray>(INTLZR);
2084 if (!A)
2085 return false;
2086
2087 // Get the number of elements in the array
2088 uint64_t max_elems = A->getType()->getNumElements();
2089
2090 // Traverse the constant array from start_idx (derived above) which is
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002091 // the place the GEP refers to in the array.
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002092 for (len = start_idx; len < max_elems; len++) {
2093 if (ConstantInt *CI = dyn_cast<ConstantInt>(A->getOperand(len))) {
Reid Spencere249a822005-04-27 07:54:40 +00002094 // Check for the null terminator
2095 if (CI->isNullValue())
2096 break; // we found end of string
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002097 } else
Reid Spencere249a822005-04-27 07:54:40 +00002098 return false; // This array isn't suitable, non-int initializer
2099 }
Chris Lattner0d4ebfc2006-01-22 22:35:08 +00002100
Reid Spencere249a822005-04-27 07:54:40 +00002101 if (len >= max_elems)
2102 return false; // This array isn't null terminated
2103
2104 // Subtract out the initial value from the length
2105 len -= start_idx;
Reid Spencer4c444fe2005-04-30 03:17:54 +00002106 if (CA)
2107 *CA = A;
Reid Spencere249a822005-04-27 07:54:40 +00002108 return true; // success!
2109}
2110
Reid Spencera7828ba2005-06-18 17:46:28 +00002111/// CastToCStr - Return V if it is an sbyte*, otherwise cast it to sbyte*,
2112/// inserting the cast before IP, and return the cast.
2113/// @brief Cast a value to a "C" string.
2114Value *CastToCStr(Value *V, Instruction &IP) {
Reid Spencera730cf82006-12-13 08:04:32 +00002115 assert(isa<PointerType>(V->getType()) &&
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002116 "Can't cast non-pointer type to C string type");
Reid Spencera7828ba2005-06-18 17:46:28 +00002117 const Type *SBPTy = PointerType::get(Type::SByteTy);
2118 if (V->getType() != SBPTy)
Reid Spencerbfe26ff2006-12-13 00:50:17 +00002119 return new BitCastInst(V, SBPTy, V->getName(), &IP);
Reid Spencera7828ba2005-06-18 17:46:28 +00002120 return V;
2121}
2122
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002123// TODO:
Reid Spencer649ac282005-04-28 04:40:06 +00002124// Additional cases that we need to add to this file:
2125//
Reid Spencer649ac282005-04-28 04:40:06 +00002126// cbrt:
Reid Spencer649ac282005-04-28 04:40:06 +00002127// * cbrt(expN(X)) -> expN(x/3)
2128// * cbrt(sqrt(x)) -> pow(x,1/6)
2129// * cbrt(sqrt(x)) -> pow(x,1/9)
2130//
Reid Spencer649ac282005-04-28 04:40:06 +00002131// cos, cosf, cosl:
Reid Spencer16983ca2005-04-28 18:05:16 +00002132// * cos(-x) -> cos(x)
Reid Spencer649ac282005-04-28 04:40:06 +00002133//
2134// exp, expf, expl:
Reid Spencer649ac282005-04-28 04:40:06 +00002135// * exp(log(x)) -> x
2136//
Reid Spencer649ac282005-04-28 04:40:06 +00002137// log, logf, logl:
Reid Spencer649ac282005-04-28 04:40:06 +00002138// * log(exp(x)) -> x
2139// * log(x**y) -> y*log(x)
2140// * log(exp(y)) -> y*log(e)
2141// * log(exp2(y)) -> y*log(2)
2142// * log(exp10(y)) -> y*log(10)
2143// * log(sqrt(x)) -> 0.5*log(x)
2144// * log(pow(x,y)) -> y*log(x)
2145//
2146// lround, lroundf, lroundl:
2147// * lround(cnst) -> cnst'
2148//
2149// memcmp:
Reid Spencer649ac282005-04-28 04:40:06 +00002150// * memcmp(x,y,l) -> cnst
2151// (if all arguments are constant and strlen(x) <= l and strlen(y) <= l)
Reid Spencer649ac282005-04-28 04:40:06 +00002152//
Reid Spencer649ac282005-04-28 04:40:06 +00002153// memmove:
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002154// * memmove(d,s,l,a) -> memcpy(d,s,l,a)
Reid Spencer649ac282005-04-28 04:40:06 +00002155// (if s is a global constant array)
2156//
Reid Spencer649ac282005-04-28 04:40:06 +00002157// pow, powf, powl:
Reid Spencer649ac282005-04-28 04:40:06 +00002158// * pow(exp(x),y) -> exp(x*y)
2159// * pow(sqrt(x),y) -> pow(x,y*0.5)
2160// * pow(pow(x,y),z)-> pow(x,y*z)
2161//
2162// puts:
2163// * puts("") -> fputc("\n",stdout) (how do we get "stdout"?)
2164//
2165// round, roundf, roundl:
2166// * round(cnst) -> cnst'
2167//
2168// signbit:
2169// * signbit(cnst) -> cnst'
2170// * signbit(nncst) -> 0 (if pstv is a non-negative constant)
2171//
Reid Spencer649ac282005-04-28 04:40:06 +00002172// sqrt, sqrtf, sqrtl:
Reid Spencer649ac282005-04-28 04:40:06 +00002173// * sqrt(expN(x)) -> expN(x*0.5)
2174// * sqrt(Nroot(x)) -> pow(x,1/(2*N))
2175// * sqrt(pow(x,y)) -> pow(|x|,y*0.5)
2176//
Reid Spencer170ae7f2005-05-07 20:15:59 +00002177// stpcpy:
2178// * stpcpy(str, "literal") ->
2179// llvm.memcpy(str,"literal",strlen("literal")+1,1)
Reid Spencer38cabd72005-05-03 07:23:44 +00002180// strrchr:
Reid Spencer649ac282005-04-28 04:40:06 +00002181// * strrchr(s,c) -> reverse_offset_of_in(c,s)
2182// (if c is a constant integer and s is a constant string)
2183// * strrchr(s1,0) -> strchr(s1,0)
2184//
Reid Spencer649ac282005-04-28 04:40:06 +00002185// strncat:
2186// * strncat(x,y,0) -> x
2187// * strncat(x,y,0) -> x (if strlen(y) = 0)
2188// * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y))
2189//
Reid Spencer649ac282005-04-28 04:40:06 +00002190// strncpy:
2191// * strncpy(d,s,0) -> d
2192// * strncpy(d,s,l) -> memcpy(d,s,l,1)
2193// (if s and l are constants)
2194//
2195// strpbrk:
2196// * strpbrk(s,a) -> offset_in_for(s,a)
2197// (if s and a are both constant strings)
2198// * strpbrk(s,"") -> 0
2199// * strpbrk(s,a) -> strchr(s,a[0]) (if a is constant string of length 1)
2200//
2201// strspn, strcspn:
2202// * strspn(s,a) -> const_int (if both args are constant)
2203// * strspn("",a) -> 0
2204// * strspn(s,"") -> 0
2205// * strcspn(s,a) -> const_int (if both args are constant)
2206// * strcspn("",a) -> 0
2207// * strcspn(s,"") -> strlen(a)
2208//
2209// strstr:
2210// * strstr(x,x) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002211// * strstr(s1,s2) -> offset_of_s2_in(s1)
Reid Spencer649ac282005-04-28 04:40:06 +00002212// (if s1 and s2 are constant strings)
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002213//
Reid Spencer649ac282005-04-28 04:40:06 +00002214// tan, tanf, tanl:
Reid Spencer649ac282005-04-28 04:40:06 +00002215// * tan(atan(x)) -> x
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002216//
Reid Spencer649ac282005-04-28 04:40:06 +00002217// trunc, truncf, truncl:
2218// * trunc(cnst) -> cnst'
2219//
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002220//
Reid Spencer39a762d2005-04-25 02:53:12 +00002221}