Wrap long lines
[oota-llvm.git] / lib / Transforms / IPO / DeadArgumentElimination.cpp
1 //===-- DeadArgumentElimination.cpp - Eliminate dead arguments ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass deletes dead arguments from internal functions.  Dead argument
11 // elimination removes arguments which are directly dead, as well as arguments
12 // only passed into function calls as dead arguments of other functions.  This
13 // pass also deletes dead arguments in a similar way.
14 //
15 // This pass is often useful as a cleanup pass to run after aggressive
16 // interprocedural passes, which add possibly-dead arguments.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #include "llvm/Transforms/IPO.h"
21 #include "llvm/Module.h"
22 #include "llvm/Pass.h"
23 #include "llvm/DerivedTypes.h"
24 #include "llvm/Constant.h"
25 #include "llvm/Instructions.h"
26 #include "llvm/Support/CallSite.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/ADT/Statistic.h"
29 #include "llvm/ADT/iterator"
30 #include <set>
31 using namespace llvm;
32
33 namespace {
34   Statistic<> NumArgumentsEliminated("deadargelim",
35                                      "Number of unread args removed");
36   Statistic<> NumRetValsEliminated("deadargelim",
37                                    "Number of unused return values removed");
38
39   /// DAE - The dead argument elimination pass.
40   ///
41   class DAE : public ModulePass {
42     /// Liveness enum - During our initial pass over the program, we determine
43     /// that things are either definately alive, definately dead, or in need of
44     /// interprocedural analysis (MaybeLive).
45     ///
46     enum Liveness { Live, MaybeLive, Dead };
47
48     /// LiveArguments, MaybeLiveArguments, DeadArguments - These sets contain
49     /// all of the arguments in the program.  The Dead set contains arguments
50     /// which are completely dead (never used in the function).  The MaybeLive
51     /// set contains arguments which are only passed into other function calls,
52     /// thus may be live and may be dead.  The Live set contains arguments which
53     /// are known to be alive.
54     ///
55     std::set<Argument*> DeadArguments, MaybeLiveArguments, LiveArguments;
56
57     /// DeadRetVal, MaybeLiveRetVal, LifeRetVal - These sets contain all of the
58     /// functions in the program.  The Dead set contains functions whose return
59     /// value is known to be dead.  The MaybeLive set contains functions whose
60     /// return values are only used by return instructions, and the Live set
61     /// contains functions whose return values are used, functions that are
62     /// external, and functions that already return void.
63     ///
64     std::set<Function*> DeadRetVal, MaybeLiveRetVal, LiveRetVal;
65
66     /// InstructionsToInspect - As we mark arguments and return values
67     /// MaybeLive, we keep track of which instructions could make the values
68     /// live here.  Once the entire program has had the return value and
69     /// arguments analyzed, this set is scanned to promote the MaybeLive objects
70     /// to be Live if they really are used.
71     std::vector<Instruction*> InstructionsToInspect;
72
73     /// CallSites - Keep track of the call sites of functions that have
74     /// MaybeLive arguments or return values.
75     std::multimap<Function*, CallSite> CallSites;
76
77   public:
78     bool runOnModule(Module &M);
79
80     virtual bool ShouldHackArguments() const { return false; }
81
82   private:
83     Liveness getArgumentLiveness(const Argument &A);
84     bool isMaybeLiveArgumentNowLive(Argument *Arg);
85
86     void SurveyFunction(Function &Fn);
87
88     void MarkArgumentLive(Argument *Arg);
89     void MarkRetValLive(Function *F);
90     void MarkReturnInstArgumentLive(ReturnInst *RI);
91
92     void RemoveDeadArgumentsFromFunction(Function *F);
93   };
94   RegisterOpt<DAE> X("deadargelim", "Dead Argument Elimination");
95
96   /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but
97   /// deletes arguments to functions which are external.  This is only for use
98   /// by bugpoint.
99   struct DAH : public DAE {
100     virtual bool ShouldHackArguments() const { return true; }
101   };
102   RegisterPass<DAH> Y("deadarghaX0r",
103                       "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)");
104 }
105
106 /// createDeadArgEliminationPass - This pass removes arguments from functions
107 /// which are not used by the body of the function.
108 ///
109 ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); }
110 ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); }
111
112 static inline bool CallPassesValueThoughVararg(Instruction *Call,
113                                                const Value *Arg) {
114   CallSite CS = CallSite::get(Call);
115   const Type *CalledValueTy = CS.getCalledValue()->getType();
116   const Type *FTy = cast<PointerType>(CalledValueTy)->getElementType();
117   unsigned NumFixedArgs = cast<FunctionType>(FTy)->getNumParams();
118   for (CallSite::arg_iterator AI = CS.arg_begin()+NumFixedArgs;
119        AI != CS.arg_end(); ++AI)
120     if (AI->get() == Arg)
121       return true;
122   return false;
123 }
124
125 // getArgumentLiveness - Inspect an argument, determining if is known Live
126 // (used in a computation), MaybeLive (only passed as an argument to a call), or
127 // Dead (not used).
128 DAE::Liveness DAE::getArgumentLiveness(const Argument &A) {
129   if (A.use_empty()) return Dead;  // First check, directly dead?
130
131   // Scan through all of the uses, looking for non-argument passing uses.
132   for (Value::use_const_iterator I = A.use_begin(), E = A.use_end(); I!=E;++I) {
133     // Return instructions do not immediately effect liveness.
134     if (isa<ReturnInst>(*I))
135       continue;
136
137     CallSite CS = CallSite::get(const_cast<User*>(*I));
138     if (!CS.getInstruction()) {
139       // If its used by something that is not a call or invoke, it's alive!
140       return Live;
141     }
142     // If it's an indirect call, mark it alive...
143     Function *Callee = CS.getCalledFunction();
144     if (!Callee) return Live;
145
146     // Check to see if it's passed through a va_arg area: if so, we cannot
147     // remove it.
148     if (CallPassesValueThoughVararg(CS.getInstruction(), &A))
149       return Live;   // If passed through va_arg area, we cannot remove it
150   }
151
152   return MaybeLive;  // It must be used, but only as argument to a function
153 }
154
155
156 // SurveyFunction - This performs the initial survey of the specified function,
157 // checking out whether or not it uses any of its incoming arguments or whether
158 // any callers use the return value.  This fills in the
159 // (Dead|MaybeLive|Live)(Arguments|RetVal) sets.
160 //
161 // We consider arguments of non-internal functions to be intrinsically alive as
162 // well as arguments to functions which have their "address taken".
163 //
164 void DAE::SurveyFunction(Function &F) {
165   bool FunctionIntrinsicallyLive = false;
166   Liveness RetValLiveness = F.getReturnType() == Type::VoidTy ? Live : Dead;
167
168   if (!F.hasInternalLinkage() &&
169       (!ShouldHackArguments() || F.getIntrinsicID()))
170     FunctionIntrinsicallyLive = true;
171   else
172     for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
173       // If this use is anything other than a call site, the function is alive.
174       CallSite CS = CallSite::get(*I);
175       Instruction *TheCall = CS.getInstruction();
176       if (!TheCall) {   // Not a direct call site?
177         FunctionIntrinsicallyLive = true;
178         break;
179       }
180
181       // Check to see if the return value is used...
182       if (RetValLiveness != Live)
183         for (Value::use_iterator I = TheCall->use_begin(),
184                E = TheCall->use_end(); I != E; ++I)
185           if (isa<ReturnInst>(cast<Instruction>(*I))) {
186             RetValLiveness = MaybeLive;
187           } else if (isa<CallInst>(cast<Instruction>(*I)) ||
188                      isa<InvokeInst>(cast<Instruction>(*I))) {
189             if (CallPassesValueThoughVararg(cast<Instruction>(*I), TheCall) ||
190                 !CallSite::get(cast<Instruction>(*I)).getCalledFunction()) {
191               RetValLiveness = Live;
192               break;
193             } else {
194               RetValLiveness = MaybeLive;
195             }
196           } else {
197             RetValLiveness = Live;
198             break;
199           }
200
201       // If the function is PASSED IN as an argument, its address has been taken
202       for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
203            AI != E; ++AI)
204         if (AI->get() == &F) {
205           FunctionIntrinsicallyLive = true;
206           break;
207         }
208       if (FunctionIntrinsicallyLive) break;
209     }
210
211   if (FunctionIntrinsicallyLive) {
212     DEBUG(std::cerr << "  Intrinsically live fn: " << F.getName() << "\n");
213     for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
214          AI != E; ++AI)
215       LiveArguments.insert(AI);
216     LiveRetVal.insert(&F);
217     return;
218   }
219
220   switch (RetValLiveness) {
221   case Live:      LiveRetVal.insert(&F); break;
222   case MaybeLive: MaybeLiveRetVal.insert(&F); break;
223   case Dead:      DeadRetVal.insert(&F); break;
224   }
225
226   DEBUG(std::cerr << "  Inspecting args for fn: " << F.getName() << "\n");
227
228   // If it is not intrinsically alive, we know that all users of the
229   // function are call sites.  Mark all of the arguments live which are
230   // directly used, and keep track of all of the call sites of this function
231   // if there are any arguments we assume that are dead.
232   //
233   bool AnyMaybeLiveArgs = false;
234   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
235        AI != E; ++AI)
236     switch (getArgumentLiveness(*AI)) {
237     case Live:
238       DEBUG(std::cerr << "    Arg live by use: " << AI->getName() << "\n");
239       LiveArguments.insert(AI);
240       break;
241     case Dead:
242       DEBUG(std::cerr << "    Arg definitely dead: " <<AI->getName()<<"\n");
243       DeadArguments.insert(AI);
244       break;
245     case MaybeLive:
246       DEBUG(std::cerr << "    Arg only passed to calls: "
247             << AI->getName() << "\n");
248       AnyMaybeLiveArgs = true;
249       MaybeLiveArguments.insert(AI);
250       break;
251     }
252
253   // If there are any "MaybeLive" arguments, we need to check callees of
254   // this function when/if they become alive.  Record which functions are
255   // callees...
256   if (AnyMaybeLiveArgs || RetValLiveness == MaybeLive)
257     for (Value::use_iterator I = F.use_begin(), E = F.use_end();
258          I != E; ++I) {
259       if (AnyMaybeLiveArgs)
260         CallSites.insert(std::make_pair(&F, CallSite::get(*I)));
261
262       if (RetValLiveness == MaybeLive)
263         for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
264              UI != E; ++UI)
265           InstructionsToInspect.push_back(cast<Instruction>(*UI));
266     }
267 }
268
269 // isMaybeLiveArgumentNowLive - Check to see if Arg is alive.  At this point, we
270 // know that the only uses of Arg are to be passed in as an argument to a
271 // function call or return.  Check to see if the formal argument passed in is in
272 // the LiveArguments set.  If so, return true.
273 //
274 bool DAE::isMaybeLiveArgumentNowLive(Argument *Arg) {
275   for (Value::use_iterator I = Arg->use_begin(), E = Arg->use_end(); I!=E; ++I){
276     if (isa<ReturnInst>(*I)) {
277       if (LiveRetVal.count(Arg->getParent())) return true;
278       continue;
279     }
280
281     CallSite CS = CallSite::get(*I);
282
283     // We know that this can only be used for direct calls...
284     Function *Callee = CS.getCalledFunction();
285
286     // Loop over all of the arguments (because Arg may be passed into the call
287     // multiple times) and check to see if any are now alive...
288     CallSite::arg_iterator CSAI = CS.arg_begin();
289     for (Function::arg_iterator AI = Callee->arg_begin(), E = Callee->arg_end();
290          AI != E; ++AI, ++CSAI)
291       // If this is the argument we are looking for, check to see if it's alive
292       if (*CSAI == Arg && LiveArguments.count(AI))
293         return true;
294   }
295   return false;
296 }
297
298 /// MarkArgumentLive - The MaybeLive argument 'Arg' is now known to be alive.
299 /// Mark it live in the specified sets and recursively mark arguments in callers
300 /// live that are needed to pass in a value.
301 ///
302 void DAE::MarkArgumentLive(Argument *Arg) {
303   std::set<Argument*>::iterator It = MaybeLiveArguments.lower_bound(Arg);
304   if (It == MaybeLiveArguments.end() || *It != Arg) return;
305
306   DEBUG(std::cerr << "  MaybeLive argument now live: " << Arg->getName()<<"\n");
307   MaybeLiveArguments.erase(It);
308   LiveArguments.insert(Arg);
309
310   // Loop over all of the call sites of the function, making any arguments
311   // passed in to provide a value for this argument live as necessary.
312   //
313   Function *Fn = Arg->getParent();
314   unsigned ArgNo = std::distance(Fn->arg_begin(), Function::arg_iterator(Arg));
315
316   std::multimap<Function*, CallSite>::iterator I = CallSites.lower_bound(Fn);
317   for (; I != CallSites.end() && I->first == Fn; ++I) {
318     CallSite CS = I->second;
319     Value *ArgVal = *(CS.arg_begin()+ArgNo);
320     if (Argument *ActualArg = dyn_cast<Argument>(ArgVal)) {
321       MarkArgumentLive(ActualArg);
322     } else {
323       // If the value passed in at this call site is a return value computed by
324       // some other call site, make sure to mark the return value at the other
325       // call site as being needed.
326       CallSite ArgCS = CallSite::get(ArgVal);
327       if (ArgCS.getInstruction())
328         if (Function *Fn = ArgCS.getCalledFunction())
329           MarkRetValLive(Fn);
330     }
331   }
332 }
333
334 /// MarkArgumentLive - The MaybeLive return value for the specified function is
335 /// now known to be alive.  Propagate this fact to the return instructions which
336 /// produce it.
337 void DAE::MarkRetValLive(Function *F) {
338   assert(F && "Shame shame, we can't have null pointers here!");
339
340   // Check to see if we already knew it was live
341   std::set<Function*>::iterator I = MaybeLiveRetVal.lower_bound(F);
342   if (I == MaybeLiveRetVal.end() || *I != F) return;  // It's already alive!
343
344   DEBUG(std::cerr << "  MaybeLive retval now live: " << F->getName() << "\n");
345
346   MaybeLiveRetVal.erase(I);
347   LiveRetVal.insert(F);        // It is now known to be live!
348
349   // Loop over all of the functions, noticing that the return value is now live.
350   for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
351     if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
352       MarkReturnInstArgumentLive(RI);
353 }
354
355 void DAE::MarkReturnInstArgumentLive(ReturnInst *RI) {
356   Value *Op = RI->getOperand(0);
357   if (Argument *A = dyn_cast<Argument>(Op)) {
358     MarkArgumentLive(A);
359   } else if (CallInst *CI = dyn_cast<CallInst>(Op)) {
360     if (Function *F = CI->getCalledFunction())
361       MarkRetValLive(F);
362   } else if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
363     if (Function *F = II->getCalledFunction())
364       MarkRetValLive(F);
365   }
366 }
367
368 // RemoveDeadArgumentsFromFunction - We know that F has dead arguments, as
369 // specified by the DeadArguments list.  Transform the function and all of the
370 // callees of the function to not have these arguments.
371 //
372 void DAE::RemoveDeadArgumentsFromFunction(Function *F) {
373   // Start by computing a new prototype for the function, which is the same as
374   // the old function, but has fewer arguments.
375   const FunctionType *FTy = F->getFunctionType();
376   std::vector<const Type*> Params;
377
378   for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
379     if (!DeadArguments.count(I))
380       Params.push_back(I->getType());
381
382   const Type *RetTy = FTy->getReturnType();
383   if (DeadRetVal.count(F)) {
384     RetTy = Type::VoidTy;
385     DeadRetVal.erase(F);
386   }
387
388   // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
389   // have zero fixed arguments.
390   //
391   // FIXME: once this bug is fixed in the CWriter, this hack should be removed.
392   //
393   bool ExtraArgHack = false;
394   if (Params.empty() && FTy->isVarArg()) {
395     ExtraArgHack = true;
396     Params.push_back(Type::IntTy);
397   }
398
399   FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
400
401   // Create the new function body and insert it into the module...
402   Function *NF = new Function(NFTy, F->getLinkage(), F->getName());
403   F->getParent()->getFunctionList().insert(F, NF);
404
405   // Loop over all of the callers of the function, transforming the call sites
406   // to pass in a smaller number of arguments into the new function.
407   //
408   std::vector<Value*> Args;
409   while (!F->use_empty()) {
410     CallSite CS = CallSite::get(F->use_back());
411     Instruction *Call = CS.getInstruction();
412
413     // Loop over the operands, deleting dead ones...
414     CallSite::arg_iterator AI = CS.arg_begin();
415     for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
416          I != E; ++I, ++AI)
417       if (!DeadArguments.count(I))      // Remove operands for dead arguments
418         Args.push_back(*AI);
419
420     if (ExtraArgHack)
421       Args.push_back(Constant::getNullValue(Type::IntTy));
422
423     // Push any varargs arguments on the list
424     for (; AI != CS.arg_end(); ++AI)
425       Args.push_back(*AI);
426
427     Instruction *New;
428     if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
429       New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
430                            Args, "", Call);
431     } else {
432       New = new CallInst(NF, Args, "", Call);
433     }
434     Args.clear();
435
436     if (!Call->use_empty()) {
437       if (New->getType() == Type::VoidTy)
438         Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
439       else {
440         Call->replaceAllUsesWith(New);
441         std::string Name = Call->getName();
442         Call->setName("");
443         New->setName(Name);
444       }
445     }
446
447     // Finally, remove the old call from the program, reducing the use-count of
448     // F.
449     Call->getParent()->getInstList().erase(Call);
450   }
451
452   // Since we have now created the new function, splice the body of the old
453   // function right into the new function, leaving the old rotting hulk of the
454   // function empty.
455   NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
456
457   // Loop over the argument list, transfering uses of the old arguments over to
458   // the new arguments, also transfering over the names as well.  While we're at
459   // it, remove the dead arguments from the DeadArguments list.
460   //
461   for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
462          I2 = NF->arg_begin();
463        I != E; ++I)
464     if (!DeadArguments.count(I)) {
465       // If this is a live argument, move the name and users over to the new
466       // version.
467       I->replaceAllUsesWith(I2);
468       I2->setName(I->getName());
469       ++I2;
470     } else {
471       // If this argument is dead, replace any uses of it with null constants
472       // (these are guaranteed to only be operands to call instructions which
473       // will later be simplified).
474       I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
475       DeadArguments.erase(I);
476     }
477
478   // If we change the return value of the function we must rewrite any return
479   // instructions.  Check this now.
480   if (F->getReturnType() != NF->getReturnType())
481     for (Function::iterator BB = NF->begin(), E = NF->end(); BB != E; ++BB)
482       if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
483         new ReturnInst(0, RI);
484         BB->getInstList().erase(RI);
485       }
486
487   // Now that the old function is dead, delete it.
488   F->getParent()->getFunctionList().erase(F);
489 }
490
491 bool DAE::runOnModule(Module &M) {
492   // First phase: loop through the module, determining which arguments are live.
493   // We assume all arguments are dead unless proven otherwise (allowing us to
494   // determine that dead arguments passed into recursive functions are dead).
495   //
496   DEBUG(std::cerr << "DAE - Determining liveness\n");
497   for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
498     SurveyFunction(*I);
499
500   // Loop over the instructions to inspect, propagating liveness among arguments
501   // and return values which are MaybeLive.
502
503   while (!InstructionsToInspect.empty()) {
504     Instruction *I = InstructionsToInspect.back();
505     InstructionsToInspect.pop_back();
506
507     if (ReturnInst *RI = dyn_cast<ReturnInst>(I)) {
508       // For return instructions, we just have to check to see if the return
509       // value for the current function is known now to be alive.  If so, any
510       // arguments used by it are now alive, and any call instruction return
511       // value is alive as well.
512       if (LiveRetVal.count(RI->getParent()->getParent()))
513         MarkReturnInstArgumentLive(RI);
514
515     } else {
516       CallSite CS = CallSite::get(I);
517       assert(CS.getInstruction() && "Unknown instruction for the I2I list!");
518
519       Function *Callee = CS.getCalledFunction();
520
521       // If we found a call or invoke instruction on this list, that means that
522       // an argument of the function is a call instruction.  If the argument is
523       // live, then the return value of the called instruction is now live.
524       //
525       CallSite::arg_iterator AI = CS.arg_begin();  // ActualIterator
526       for (Function::arg_iterator FI = Callee->arg_begin(),
527              E = Callee->arg_end(); FI != E; ++AI, ++FI) {
528         // If this argument is another call...
529         CallSite ArgCS = CallSite::get(*AI);
530         if (ArgCS.getInstruction() && LiveArguments.count(FI))
531           if (Function *Callee = ArgCS.getCalledFunction())
532             MarkRetValLive(Callee);
533       }
534     }
535   }
536
537   // Now we loop over all of the MaybeLive arguments, promoting them to be live
538   // arguments if one of the calls that uses the arguments to the calls they are
539   // passed into requires them to be live.  Of course this could make other
540   // arguments live, so process callers recursively.
541   //
542   // Because elements can be removed from the MaybeLiveArguments set, copy it to
543   // a temporary vector.
544   //
545   std::vector<Argument*> TmpArgList(MaybeLiveArguments.begin(),
546                                     MaybeLiveArguments.end());
547   for (unsigned i = 0, e = TmpArgList.size(); i != e; ++i) {
548     Argument *MLA = TmpArgList[i];
549     if (MaybeLiveArguments.count(MLA) &&
550         isMaybeLiveArgumentNowLive(MLA))
551       MarkArgumentLive(MLA);
552   }
553
554   // Recover memory early...
555   CallSites.clear();
556
557   // At this point, we know that all arguments in DeadArguments and
558   // MaybeLiveArguments are dead.  If the two sets are empty, there is nothing
559   // to do.
560   if (MaybeLiveArguments.empty() && DeadArguments.empty() &&
561       MaybeLiveRetVal.empty() && DeadRetVal.empty())
562     return false;
563
564   // Otherwise, compact into one set, and start eliminating the arguments from
565   // the functions.
566   DeadArguments.insert(MaybeLiveArguments.begin(), MaybeLiveArguments.end());
567   MaybeLiveArguments.clear();
568   DeadRetVal.insert(MaybeLiveRetVal.begin(), MaybeLiveRetVal.end());
569   MaybeLiveRetVal.clear();
570
571   LiveArguments.clear();
572   LiveRetVal.clear();
573
574   NumArgumentsEliminated += DeadArguments.size();
575   NumRetValsEliminated   += DeadRetVal.size();
576   while (!DeadArguments.empty())
577     RemoveDeadArgumentsFromFunction((*DeadArguments.begin())->getParent());
578
579   while (!DeadRetVal.empty())
580     RemoveDeadArgumentsFromFunction(*DeadRetVal.begin());
581   return true;
582 }