834fb9c14ab4929129e3daeb6242559a6f001379
[oota-llvm.git] / utils / TableGen / LLVMCConfigurationEmitter.cpp
1 //===- LLVMCConfigurationEmitter.cpp - Generate LLVMC config ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open
6 // Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend is responsible for emitting LLVMC configuration code.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "LLVMCConfigurationEmitter.h"
15 #include "Record.h"
16
17 #include "llvm/ADT/IntrusiveRefCntPtr.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/ADT/StringMap.h"
21 #include "llvm/ADT/StringSet.h"
22 #include "llvm/Support/Streams.h"
23
24 #include <algorithm>
25 #include <cassert>
26 #include <functional>
27 #include <stdexcept>
28 #include <string>
29 #include <typeinfo>
30
31 using namespace llvm;
32
33 namespace {
34
35 //===----------------------------------------------------------------------===//
36 /// Typedefs
37
38 typedef std::vector<Record*> RecordVector;
39 typedef std::vector<std::string> StrVector;
40
41 //===----------------------------------------------------------------------===//
42 /// Constants
43
44 // Indentation strings.
45 const char * Indent1 = "    ";
46 const char * Indent2 = "        ";
47 const char * Indent3 = "            ";
48
49 // Default help string.
50 const char * DefaultHelpString = "NO HELP MESSAGE PROVIDED";
51
52 // Name for the "sink" option.
53 const char * SinkOptionName = "AutoGeneratedSinkOption";
54
55 //===----------------------------------------------------------------------===//
56 /// Helper functions
57
58 /// Id - An 'identity' function object.
59 struct Id {
60   template<typename T>
61   void operator()(const T&) const {
62   }
63 };
64
65 int InitPtrToInt(const Init* ptr) {
66   const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
67   return val.getValue();
68 }
69
70 const std::string& InitPtrToString(const Init* ptr) {
71   const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
72   return val.getValue();
73 }
74
75 const ListInit& InitPtrToList(const Init* ptr) {
76   const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
77   return val;
78 }
79
80 const DagInit& InitPtrToDag(const Init* ptr) {
81   const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
82   return val;
83 }
84
85 // checkNumberOfArguments - Ensure that the number of args in d is
86 // less than or equal to min_arguments, otherwise throw an exception.
87 void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
88   if (!d || d->getNumArgs() < min_arguments)
89     throw "Property " + d->getOperator()->getAsString()
90       + " has too few arguments!";
91 }
92
93 // isDagEmpty - is this DAG marked with an empty marker?
94 bool isDagEmpty (const DagInit* d) {
95   return d->getOperator()->getAsString() == "empty";
96 }
97
98 // EscapeVariableName - Escape commas and other symbols not allowed
99 // in the C++ variable names. Makes it possible to use options named
100 // like "Wa," (useful for prefix options).
101 std::string EscapeVariableName(const std::string& Var) {
102   std::string ret;
103   for (unsigned i = 0; i != Var.size(); ++i) {
104     char cur_char = Var[i];
105     if (cur_char == ',') {
106       ret += "_comma_";
107     }
108     else if (cur_char == '+') {
109       ret += "_plus_";
110     }
111     else if (cur_char == '-') {
112       ret += "_dash_";
113     }
114     else {
115       ret.push_back(cur_char);
116     }
117   }
118   return ret;
119 }
120
121 /// oneOf - Does the input string contain this character?
122 bool oneOf(const char* lst, char c) {
123   while (*lst) {
124     if (*lst++ == c)
125       return true;
126   }
127   return false;
128 }
129
130 template <class I, class S>
131 void checkedIncrement(I& P, I E, S ErrorString) {
132   ++P;
133   if (P == E)
134     throw ErrorString;
135 }
136
137 //===----------------------------------------------------------------------===//
138 /// Back-end specific code
139
140
141 /// OptionType - One of six different option types. See the
142 /// documentation for detailed description of differences.
143 namespace OptionType {
144   enum OptionType { Alias, Switch, Parameter, ParameterList,
145                     Prefix, PrefixList};
146
147 bool IsList (OptionType t) {
148   return (t == ParameterList || t == PrefixList);
149 }
150
151 bool IsSwitch (OptionType t) {
152   return (t == Switch);
153 }
154
155 bool IsParameter (OptionType t) {
156   return (t == Parameter || t == Prefix);
157 }
158
159 }
160
161 OptionType::OptionType stringToOptionType(const std::string& T) {
162   if (T == "alias_option")
163     return OptionType::Alias;
164   else if (T == "switch_option")
165     return OptionType::Switch;
166   else if (T == "parameter_option")
167     return OptionType::Parameter;
168   else if (T == "parameter_list_option")
169     return OptionType::ParameterList;
170   else if (T == "prefix_option")
171     return OptionType::Prefix;
172   else if (T == "prefix_list_option")
173     return OptionType::PrefixList;
174   else
175     throw "Unknown option type: " + T + '!';
176 }
177
178 namespace OptionDescriptionFlags {
179   enum OptionDescriptionFlags { Required = 0x1, Hidden = 0x2,
180                                 ReallyHidden = 0x4, Extern = 0x8,
181                                 OneOrMore = 0x10, ZeroOrOne = 0x20 };
182 }
183
184 /// OptionDescription - Represents data contained in a single
185 /// OptionList entry.
186 struct OptionDescription {
187   OptionType::OptionType Type;
188   std::string Name;
189   unsigned Flags;
190   std::string Help;
191   unsigned MultiVal;
192
193   OptionDescription(OptionType::OptionType t = OptionType::Switch,
194                     const std::string& n = "",
195                     const std::string& h = DefaultHelpString)
196     : Type(t), Name(n), Flags(0x0), Help(h), MultiVal(1)
197   {}
198
199   /// GenTypeDeclaration - Returns the C++ variable type of this
200   /// option.
201   const char* GenTypeDeclaration() const;
202
203   /// GenVariableName - Returns the variable name used in the
204   /// generated C++ code.
205   std::string GenVariableName() const;
206
207   /// Merge - Merge two option descriptions.
208   void Merge (const OptionDescription& other);
209
210   // Misc convenient getters/setters.
211
212   bool isAlias() const;
213
214   bool isMultiVal() const;
215
216   bool isExtern() const;
217   void setExtern();
218
219   bool isRequired() const;
220   void setRequired();
221
222   bool isOneOrMore() const;
223   void setOneOrMore();
224
225   bool isZeroOrOne() const;
226   void setZeroOrOne();
227
228   bool isHidden() const;
229   void setHidden();
230
231   bool isReallyHidden() const;
232   void setReallyHidden();
233
234 };
235
236 void OptionDescription::Merge (const OptionDescription& other)
237 {
238   if (other.Type != Type)
239     throw "Conflicting definitions for the option " + Name + "!";
240
241   if (Help == other.Help || Help == DefaultHelpString)
242     Help = other.Help;
243   else if (other.Help != DefaultHelpString) {
244     llvm::cerr << "Warning: several different help strings"
245       " defined for option " + Name + "\n";
246   }
247
248   Flags |= other.Flags;
249 }
250
251 bool OptionDescription::isAlias() const {
252   return Type == OptionType::Alias;
253 }
254
255 bool OptionDescription::isMultiVal() const {
256   return MultiVal > 1;
257 }
258
259 bool OptionDescription::isExtern() const {
260   return Flags & OptionDescriptionFlags::Extern;
261 }
262 void OptionDescription::setExtern() {
263   Flags |= OptionDescriptionFlags::Extern;
264 }
265
266 bool OptionDescription::isRequired() const {
267   return Flags & OptionDescriptionFlags::Required;
268 }
269 void OptionDescription::setRequired() {
270   Flags |= OptionDescriptionFlags::Required;
271 }
272
273 bool OptionDescription::isOneOrMore() const {
274   return Flags & OptionDescriptionFlags::OneOrMore;
275 }
276 void OptionDescription::setOneOrMore() {
277   Flags |= OptionDescriptionFlags::OneOrMore;
278 }
279
280 bool OptionDescription::isZeroOrOne() const {
281   return Flags & OptionDescriptionFlags::ZeroOrOne;
282 }
283 void OptionDescription::setZeroOrOne() {
284   Flags |= OptionDescriptionFlags::ZeroOrOne;
285 }
286
287 bool OptionDescription::isHidden() const {
288   return Flags & OptionDescriptionFlags::Hidden;
289 }
290 void OptionDescription::setHidden() {
291   Flags |= OptionDescriptionFlags::Hidden;
292 }
293
294 bool OptionDescription::isReallyHidden() const {
295   return Flags & OptionDescriptionFlags::ReallyHidden;
296 }
297 void OptionDescription::setReallyHidden() {
298   Flags |= OptionDescriptionFlags::ReallyHidden;
299 }
300
301 const char* OptionDescription::GenTypeDeclaration() const {
302   switch (Type) {
303   case OptionType::Alias:
304     return "cl::alias";
305   case OptionType::PrefixList:
306   case OptionType::ParameterList:
307     return "cl::list<std::string>";
308   case OptionType::Switch:
309     return "cl::opt<bool>";
310   case OptionType::Parameter:
311   case OptionType::Prefix:
312   default:
313     return "cl::opt<std::string>";
314   }
315 }
316
317 std::string OptionDescription::GenVariableName() const {
318   const std::string& EscapedName = EscapeVariableName(Name);
319   switch (Type) {
320   case OptionType::Alias:
321     return "AutoGeneratedAlias_" + EscapedName;
322   case OptionType::PrefixList:
323   case OptionType::ParameterList:
324     return "AutoGeneratedList_" + EscapedName;
325   case OptionType::Switch:
326     return "AutoGeneratedSwitch_" + EscapedName;
327   case OptionType::Prefix:
328   case OptionType::Parameter:
329   default:
330     return "AutoGeneratedParameter_" + EscapedName;
331   }
332 }
333
334 /// OptionDescriptions - An OptionDescription array plus some helper
335 /// functions.
336 class OptionDescriptions {
337   typedef StringMap<OptionDescription> container_type;
338
339   /// Descriptions - A list of OptionDescriptions.
340   container_type Descriptions;
341
342 public:
343   /// FindOption - exception-throwing wrapper for find().
344   const OptionDescription& FindOption(const std::string& OptName) const;
345
346   /// insertDescription - Insert new OptionDescription into
347   /// OptionDescriptions list
348   void InsertDescription (const OptionDescription& o);
349
350   // Support for STL-style iteration
351   typedef container_type::const_iterator const_iterator;
352   const_iterator begin() const { return Descriptions.begin(); }
353   const_iterator end() const { return Descriptions.end(); }
354 };
355
356 const OptionDescription&
357 OptionDescriptions::FindOption(const std::string& OptName) const
358 {
359   const_iterator I = Descriptions.find(OptName);
360   if (I != Descriptions.end())
361     return I->second;
362   else
363     throw OptName + ": no such option!";
364 }
365
366 void OptionDescriptions::InsertDescription (const OptionDescription& o)
367 {
368   container_type::iterator I = Descriptions.find(o.Name);
369   if (I != Descriptions.end()) {
370     OptionDescription& D = I->second;
371     D.Merge(o);
372   }
373   else {
374     Descriptions[o.Name] = o;
375   }
376 }
377
378 /// HandlerTable - A base class for function objects implemented as
379 /// 'tables of handlers'.
380 template <class T>
381 class HandlerTable {
382 protected:
383   // Implementation details.
384
385   /// Handler -
386   typedef void (T::* Handler) (const DagInit*);
387   /// HandlerMap - A map from property names to property handlers
388   typedef StringMap<Handler> HandlerMap;
389
390   static HandlerMap Handlers_;
391   static bool staticMembersInitialized_;
392
393   T* childPtr;
394 public:
395
396   HandlerTable(T* cp) : childPtr(cp)
397   {}
398
399   /// operator() - Just forwards to the corresponding property
400   /// handler.
401   void operator() (Init* i) {
402     const DagInit& property = InitPtrToDag(i);
403     const std::string& property_name = property.getOperator()->getAsString();
404     typename HandlerMap::iterator method = Handlers_.find(property_name);
405
406     if (method != Handlers_.end()) {
407       Handler h = method->second;
408       (childPtr->*h)(&property);
409     }
410     else {
411       throw "No handler found for property " + property_name + "!";
412     }
413   }
414
415   void AddHandler(const char* Property, Handler Handl) {
416     Handlers_[Property] = Handl;
417   }
418 };
419
420 template <class T> typename HandlerTable<T>::HandlerMap
421 HandlerTable<T>::Handlers_;
422 template <class T> bool HandlerTable<T>::staticMembersInitialized_ = false;
423
424
425 /// CollectOptionProperties - Function object for iterating over an
426 /// option property list.
427 class CollectOptionProperties : public HandlerTable<CollectOptionProperties> {
428 private:
429
430   /// optDescs_ - OptionDescriptions table. This is where the
431   /// information is stored.
432   OptionDescription& optDesc_;
433
434 public:
435
436   explicit CollectOptionProperties(OptionDescription& OD)
437     : HandlerTable<CollectOptionProperties>(this), optDesc_(OD)
438   {
439     if (!staticMembersInitialized_) {
440       AddHandler("extern", &CollectOptionProperties::onExtern);
441       AddHandler("help", &CollectOptionProperties::onHelp);
442       AddHandler("hidden", &CollectOptionProperties::onHidden);
443       AddHandler("multi_val", &CollectOptionProperties::onMultiVal);
444       AddHandler("one_or_more", &CollectOptionProperties::onOneOrMore);
445       AddHandler("really_hidden", &CollectOptionProperties::onReallyHidden);
446       AddHandler("required", &CollectOptionProperties::onRequired);
447       AddHandler("zero_or_one", &CollectOptionProperties::onZeroOrOne);
448
449       staticMembersInitialized_ = true;
450     }
451   }
452
453 private:
454
455   /// Option property handlers --
456   /// Methods that handle option properties such as (help) or (hidden).
457
458   void onExtern (const DagInit* d) {
459     checkNumberOfArguments(d, 0);
460     optDesc_.setExtern();
461   }
462
463   void onHelp (const DagInit* d) {
464     checkNumberOfArguments(d, 1);
465     optDesc_.Help = InitPtrToString(d->getArg(0));
466   }
467
468   void onHidden (const DagInit* d) {
469     checkNumberOfArguments(d, 0);
470     optDesc_.setHidden();
471   }
472
473   void onReallyHidden (const DagInit* d) {
474     checkNumberOfArguments(d, 0);
475     optDesc_.setReallyHidden();
476   }
477
478   void onRequired (const DagInit* d) {
479     checkNumberOfArguments(d, 0);
480     if (optDesc_.isOneOrMore())
481       throw std::string("An option can't have both (required) "
482                         "and (one_or_more) properties!");
483     optDesc_.setRequired();
484   }
485
486   void onOneOrMore (const DagInit* d) {
487     checkNumberOfArguments(d, 0);
488     if (optDesc_.isRequired() || optDesc_.isZeroOrOne())
489       throw std::string("Only one of (required), (zero_or_one) or "
490                         "(one_or_more) properties is allowed!");
491     if (!OptionType::IsList(optDesc_.Type))
492       llvm::cerr << "Warning: specifying the 'one_or_more' property "
493         "on a non-list option will have no effect.\n";
494     optDesc_.setOneOrMore();
495   }
496
497   void onZeroOrOne (const DagInit* d) {
498     checkNumberOfArguments(d, 0);
499     if (optDesc_.isRequired() || optDesc_.isOneOrMore())
500       throw std::string("Only one of (required), (zero_or_one) or "
501                         "(one_or_more) properties is allowed!");
502     if (!OptionType::IsList(optDesc_.Type))
503       llvm::cerr << "Warning: specifying the 'zero_or_one' property"
504         "on a non-list option will have no effect.\n";
505     optDesc_.setZeroOrOne();
506   }
507
508   void onMultiVal (const DagInit* d) {
509     checkNumberOfArguments(d, 1);
510     int val = InitPtrToInt(d->getArg(0));
511     if (val < 2)
512       throw std::string("Error in the 'multi_val' property: "
513                         "the value must be greater than 1!");
514     if (!OptionType::IsList(optDesc_.Type))
515       throw std::string("The multi_val property is valid only "
516                         "on list options!");
517     optDesc_.MultiVal = val;
518   }
519
520 };
521
522 /// AddOption - A function object that is applied to every option
523 /// description. Used by CollectOptionDescriptions.
524 class AddOption {
525 private:
526   OptionDescriptions& OptDescs_;
527
528 public:
529   explicit AddOption(OptionDescriptions& OD) : OptDescs_(OD)
530   {}
531
532   void operator()(const Init* i) {
533     const DagInit& d = InitPtrToDag(i);
534     checkNumberOfArguments(&d, 1);
535
536     const OptionType::OptionType Type =
537       stringToOptionType(d.getOperator()->getAsString());
538     const std::string& Name = InitPtrToString(d.getArg(0));
539
540     OptionDescription OD(Type, Name);
541
542     if (!OD.isExtern())
543       checkNumberOfArguments(&d, 2);
544
545     if (OD.isAlias()) {
546       // Aliases store the aliased option name in the 'Help' field.
547       OD.Help = InitPtrToString(d.getArg(1));
548     }
549     else if (!OD.isExtern()) {
550       processOptionProperties(&d, OD);
551     }
552     OptDescs_.InsertDescription(OD);
553   }
554
555 private:
556   /// processOptionProperties - Go through the list of option
557   /// properties and call a corresponding handler for each.
558   static void processOptionProperties (const DagInit* d, OptionDescription& o) {
559     checkNumberOfArguments(d, 2);
560     DagInit::const_arg_iterator B = d->arg_begin();
561     // Skip the first argument: it's always the option name.
562     ++B;
563     std::for_each(B, d->arg_end(), CollectOptionProperties(o));
564   }
565
566 };
567
568 /// CollectOptionDescriptions - Collects option properties from all
569 /// OptionLists.
570 void CollectOptionDescriptions (RecordVector::const_iterator B,
571                                 RecordVector::const_iterator E,
572                                 OptionDescriptions& OptDescs)
573 {
574   // For every OptionList:
575   for (; B!=E; ++B) {
576     RecordVector::value_type T = *B;
577     // Throws an exception if the value does not exist.
578     ListInit* PropList = T->getValueAsListInit("options");
579
580     // For every option description in this list:
581     // collect the information and
582     std::for_each(PropList->begin(), PropList->end(), AddOption(OptDescs));
583   }
584 }
585
586 // Tool information record
587
588 namespace ToolFlags {
589   enum ToolFlags { Join = 0x1, Sink = 0x2 };
590 }
591
592 struct ToolDescription : public RefCountedBase<ToolDescription> {
593   std::string Name;
594   Init* CmdLine;
595   Init* Actions;
596   StrVector InLanguage;
597   std::string OutLanguage;
598   std::string OutputSuffix;
599   unsigned Flags;
600
601   // Various boolean properties
602   void setSink()      { Flags |= ToolFlags::Sink; }
603   bool isSink() const { return Flags & ToolFlags::Sink; }
604   void setJoin()      { Flags |= ToolFlags::Join; }
605   bool isJoin() const { return Flags & ToolFlags::Join; }
606
607   // Default ctor here is needed because StringMap can only store
608   // DefaultConstructible objects
609   ToolDescription() : CmdLine(0), Actions(0), Flags(0) {}
610   ToolDescription (const std::string& n)
611   : Name(n), CmdLine(0), Actions(0), Flags(0)
612   {}
613 };
614
615 /// ToolDescriptions - A list of Tool information records.
616 typedef std::vector<IntrusiveRefCntPtr<ToolDescription> > ToolDescriptions;
617
618
619 /// CollectToolProperties - Function object for iterating over a list of
620 /// tool property records.
621 class CollectToolProperties : public HandlerTable<CollectToolProperties> {
622 private:
623
624   /// toolDesc_ - Properties of the current Tool. This is where the
625   /// information is stored.
626   ToolDescription& toolDesc_;
627
628 public:
629
630   explicit CollectToolProperties (ToolDescription& d)
631     : HandlerTable<CollectToolProperties>(this) , toolDesc_(d)
632   {
633     if (!staticMembersInitialized_) {
634
635       AddHandler("actions", &CollectToolProperties::onActions);
636       AddHandler("cmd_line", &CollectToolProperties::onCmdLine);
637       AddHandler("in_language", &CollectToolProperties::onInLanguage);
638       AddHandler("join", &CollectToolProperties::onJoin);
639       AddHandler("out_language", &CollectToolProperties::onOutLanguage);
640       AddHandler("output_suffix", &CollectToolProperties::onOutputSuffix);
641       AddHandler("sink", &CollectToolProperties::onSink);
642
643       staticMembersInitialized_ = true;
644     }
645   }
646
647 private:
648
649   /// Property handlers --
650   /// Functions that extract information about tool properties from
651   /// DAG representation.
652
653   void onActions (const DagInit* d) {
654     checkNumberOfArguments(d, 1);
655     Init* Case = d->getArg(0);
656     if (typeid(*Case) != typeid(DagInit) ||
657         static_cast<DagInit*>(Case)->getOperator()->getAsString() != "case")
658       throw
659         std::string("The argument to (actions) should be a 'case' construct!");
660     toolDesc_.Actions = Case;
661   }
662
663   void onCmdLine (const DagInit* d) {
664     checkNumberOfArguments(d, 1);
665     toolDesc_.CmdLine = d->getArg(0);
666   }
667
668   void onInLanguage (const DagInit* d) {
669     checkNumberOfArguments(d, 1);
670     Init* arg = d->getArg(0);
671
672     // Find out the argument's type.
673     if (typeid(*arg) == typeid(StringInit)) {
674       // It's a string.
675       toolDesc_.InLanguage.push_back(InitPtrToString(arg));
676     }
677     else {
678       // It's a list.
679       const ListInit& lst = InitPtrToList(arg);
680       StrVector& out = toolDesc_.InLanguage;
681
682       // Copy strings to the output vector.
683       for (ListInit::const_iterator B = lst.begin(), E = lst.end();
684            B != E; ++B) {
685         out.push_back(InitPtrToString(*B));
686       }
687
688       // Remove duplicates.
689       std::sort(out.begin(), out.end());
690       StrVector::iterator newE = std::unique(out.begin(), out.end());
691       out.erase(newE, out.end());
692     }
693   }
694
695   void onJoin (const DagInit* d) {
696     checkNumberOfArguments(d, 0);
697     toolDesc_.setJoin();
698   }
699
700   void onOutLanguage (const DagInit* d) {
701     checkNumberOfArguments(d, 1);
702     toolDesc_.OutLanguage = InitPtrToString(d->getArg(0));
703   }
704
705   void onOutputSuffix (const DagInit* d) {
706     checkNumberOfArguments(d, 1);
707     toolDesc_.OutputSuffix = InitPtrToString(d->getArg(0));
708   }
709
710   void onSink (const DagInit* d) {
711     checkNumberOfArguments(d, 0);
712     toolDesc_.setSink();
713   }
714
715 };
716
717 /// CollectToolDescriptions - Gather information about tool properties
718 /// from the parsed TableGen data (basically a wrapper for the
719 /// CollectToolProperties function object).
720 void CollectToolDescriptions (RecordVector::const_iterator B,
721                               RecordVector::const_iterator E,
722                               ToolDescriptions& ToolDescs)
723 {
724   // Iterate over a properties list of every Tool definition
725   for (;B!=E;++B) {
726     const Record* T = *B;
727     // Throws an exception if the value does not exist.
728     ListInit* PropList = T->getValueAsListInit("properties");
729
730     IntrusiveRefCntPtr<ToolDescription>
731       ToolDesc(new ToolDescription(T->getName()));
732
733     std::for_each(PropList->begin(), PropList->end(),
734                   CollectToolProperties(*ToolDesc));
735     ToolDescs.push_back(ToolDesc);
736   }
737 }
738
739 /// FillInEdgeVector - Merge all compilation graph definitions into
740 /// one single edge list.
741 void FillInEdgeVector(RecordVector::const_iterator B,
742                       RecordVector::const_iterator E, RecordVector& Out) {
743   for (; B != E; ++B) {
744     const ListInit* edges = (*B)->getValueAsListInit("edges");
745
746     for (unsigned i = 0; i < edges->size(); ++i)
747       Out.push_back(edges->getElementAsRecord(i));
748   }
749 }
750
751 /// CalculatePriority - Calculate the priority of this plugin.
752 int CalculatePriority(RecordVector::const_iterator B,
753                       RecordVector::const_iterator E) {
754   int total = 0;
755   for (; B!=E; ++B) {
756     total += static_cast<int>((*B)->getValueAsInt("priority"));
757   }
758   return total;
759 }
760
761 /// NotInGraph - Helper function object for FilterNotInGraph.
762 struct NotInGraph {
763 private:
764   const llvm::StringSet<>& ToolsInGraph_;
765
766 public:
767   NotInGraph(const llvm::StringSet<>& ToolsInGraph)
768   : ToolsInGraph_(ToolsInGraph)
769   {}
770
771   bool operator()(const IntrusiveRefCntPtr<ToolDescription>& x) {
772     return (ToolsInGraph_.count(x->Name) == 0);
773   }
774 };
775
776 /// FilterNotInGraph - Filter out from ToolDescs all Tools not
777 /// mentioned in the compilation graph definition.
778 void FilterNotInGraph (const RecordVector& EdgeVector,
779                        ToolDescriptions& ToolDescs) {
780
781   // List all tools mentioned in the graph.
782   llvm::StringSet<> ToolsInGraph;
783
784   for (RecordVector::const_iterator B = EdgeVector.begin(),
785          E = EdgeVector.end(); B != E; ++B) {
786
787     const Record* Edge = *B;
788     const std::string& NodeA = Edge->getValueAsString("a");
789     const std::string& NodeB = Edge->getValueAsString("b");
790
791     if (NodeA != "root")
792       ToolsInGraph.insert(NodeA);
793     ToolsInGraph.insert(NodeB);
794   }
795
796   // Filter ToolPropertiesList.
797   ToolDescriptions::iterator new_end =
798     std::remove_if(ToolDescs.begin(), ToolDescs.end(),
799                    NotInGraph(ToolsInGraph));
800   ToolDescs.erase(new_end, ToolDescs.end());
801 }
802
803 /// FillInToolToLang - Fills in two tables that map tool names to
804 /// (input, output) languages.  Helper function used by TypecheckGraph().
805 void FillInToolToLang (const ToolDescriptions& ToolDescs,
806                        StringMap<StringSet<> >& ToolToInLang,
807                        StringMap<std::string>& ToolToOutLang) {
808   for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
809          E = ToolDescs.end(); B != E; ++B) {
810     const ToolDescription& D = *(*B);
811     for (StrVector::const_iterator B = D.InLanguage.begin(),
812            E = D.InLanguage.end(); B != E; ++B)
813       ToolToInLang[D.Name].insert(*B);
814     ToolToOutLang[D.Name] = D.OutLanguage;
815   }
816 }
817
818 /// TypecheckGraph - Check that names for output and input languages
819 /// on all edges do match. This doesn't do much when the information
820 /// about the whole graph is not available (i.e. when compiling most
821 /// plugins).
822 void TypecheckGraph (const RecordVector& EdgeVector,
823                      const ToolDescriptions& ToolDescs) {
824   StringMap<StringSet<> > ToolToInLang;
825   StringMap<std::string> ToolToOutLang;
826
827   FillInToolToLang(ToolDescs, ToolToInLang, ToolToOutLang);
828   StringMap<std::string>::iterator IAE = ToolToOutLang.end();
829   StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
830
831   for (RecordVector::const_iterator B = EdgeVector.begin(),
832          E = EdgeVector.end(); B != E; ++B) {
833     const Record* Edge = *B;
834     const std::string& NodeA = Edge->getValueAsString("a");
835     const std::string& NodeB = Edge->getValueAsString("b");
836     StringMap<std::string>::iterator IA = ToolToOutLang.find(NodeA);
837     StringMap<StringSet<> >::iterator IB = ToolToInLang.find(NodeB);
838
839     if (NodeA != "root") {
840       if (IA != IAE && IB != IBE && IB->second.count(IA->second) == 0)
841         throw "Edge " + NodeA + "->" + NodeB
842           + ": output->input language mismatch";
843     }
844
845     if (NodeB == "root")
846       throw std::string("Edges back to the root are not allowed!");
847   }
848 }
849
850 /// WalkCase - Walks the 'case' expression DAG and invokes
851 /// TestCallback on every test, and StatementCallback on every
852 /// statement. Handles 'case' nesting, but not the 'and' and 'or'
853 /// combinators.
854 // TODO: Re-implement EmitCaseConstructHandler on top of this function?
855 template <typename F1, typename F2>
856 void WalkCase(Init* Case, F1 TestCallback, F2 StatementCallback) {
857   const DagInit& d = InitPtrToDag(Case);
858   bool even = false;
859   for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
860        B != E; ++B) {
861     Init* arg = *B;
862     if (even && dynamic_cast<DagInit*>(arg)
863         && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case")
864       WalkCase(arg, TestCallback, StatementCallback);
865     else if (!even)
866       TestCallback(arg);
867     else
868       StatementCallback(arg);
869     even = !even;
870   }
871 }
872
873 /// ExtractOptionNames - A helper function object used by
874 /// CheckForSuperfluousOptions() to walk the 'case' DAG.
875 class ExtractOptionNames {
876   llvm::StringSet<>& OptionNames_;
877
878   void processDag(const Init* Statement) {
879     const DagInit& Stmt = InitPtrToDag(Statement);
880     const std::string& ActionName = Stmt.getOperator()->getAsString();
881     if (ActionName == "forward" || ActionName == "forward_as" ||
882         ActionName == "unpack_values" || ActionName == "switch_on" ||
883         ActionName == "parameter_equals" || ActionName == "element_in_list" ||
884         ActionName == "not_empty" || ActionName == "empty") {
885       checkNumberOfArguments(&Stmt, 1);
886       const std::string& Name = InitPtrToString(Stmt.getArg(0));
887       OptionNames_.insert(Name);
888     }
889     else if (ActionName == "and" || ActionName == "or") {
890       for (unsigned i = 0, NumArgs = Stmt.getNumArgs(); i < NumArgs; ++i) {
891         this->processDag(Stmt.getArg(i));
892       }
893     }
894   }
895
896 public:
897   ExtractOptionNames(llvm::StringSet<>& OptionNames) : OptionNames_(OptionNames)
898   {}
899
900   void operator()(const Init* Statement) {
901     if (typeid(*Statement) == typeid(ListInit)) {
902       const ListInit& DagList = *static_cast<const ListInit*>(Statement);
903       for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
904            B != E; ++B)
905         this->processDag(*B);
906     }
907     else {
908       this->processDag(Statement);
909     }
910   }
911 };
912
913 /// CheckForSuperfluousOptions - Check that there are no side
914 /// effect-free options (specified only in the OptionList). Otherwise,
915 /// output a warning.
916 void CheckForSuperfluousOptions (const RecordVector& Edges,
917                                  const ToolDescriptions& ToolDescs,
918                                  const OptionDescriptions& OptDescs) {
919   llvm::StringSet<> nonSuperfluousOptions;
920
921   // Add all options mentioned in the ToolDesc.Actions to the set of
922   // non-superfluous options.
923   for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
924          E = ToolDescs.end(); B != E; ++B) {
925     const ToolDescription& TD = *(*B);
926     ExtractOptionNames Callback(nonSuperfluousOptions);
927     if (TD.Actions)
928       WalkCase(TD.Actions, Callback, Callback);
929   }
930
931   // Add all options mentioned in the 'case' clauses of the
932   // OptionalEdges of the compilation graph to the set of
933   // non-superfluous options.
934   for (RecordVector::const_iterator B = Edges.begin(), E = Edges.end();
935        B != E; ++B) {
936     const Record* Edge = *B;
937     DagInit* Weight = Edge->getValueAsDag("weight");
938
939     if (!isDagEmpty(Weight))
940       WalkCase(Weight, ExtractOptionNames(nonSuperfluousOptions), Id());
941   }
942
943   // Check that all options in OptDescs belong to the set of
944   // non-superfluous options.
945   for (OptionDescriptions::const_iterator B = OptDescs.begin(),
946          E = OptDescs.end(); B != E; ++B) {
947     const OptionDescription& Val = B->second;
948     if (!nonSuperfluousOptions.count(Val.Name)
949         && Val.Type != OptionType::Alias)
950       llvm::cerr << "Warning: option '-" << Val.Name << "' has no effect! "
951         "Probable cause: this option is specified only in the OptionList.\n";
952   }
953 }
954
955 /// EmitCaseTest1Arg - Helper function used by
956 /// EmitCaseConstructHandler.
957 bool EmitCaseTest1Arg(const std::string& TestName,
958                       const DagInit& d,
959                       const OptionDescriptions& OptDescs,
960                       std::ostream& O) {
961   checkNumberOfArguments(&d, 1);
962   const std::string& OptName = InitPtrToString(d.getArg(0));
963
964   if (TestName == "switch_on") {
965     const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
966     if (!OptionType::IsSwitch(OptDesc.Type))
967       throw OptName + ": incorrect option type - should be a switch!";
968     O << OptDesc.GenVariableName();
969     return true;
970   } else if (TestName == "input_languages_contain") {
971     O << "InLangs.count(\"" << OptName << "\") != 0";
972     return true;
973   } else if (TestName == "in_language") {
974     // This works only for single-argument Tool::GenerateAction. Join
975     // tools can process several files in different languages simultaneously.
976
977     // TODO: make this work with Edge::Weight (if possible).
978     O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
979     return true;
980   } else if (TestName == "not_empty" || TestName == "empty") {
981     const char* Test = (TestName == "empty") ? "" : "!";
982
983     if (OptName == "o") {
984       O << Test << "OutputFilename.empty()";
985       return true;
986     }
987     else {
988       const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
989       if (OptionType::IsSwitch(OptDesc.Type))
990         throw OptName
991           + ": incorrect option type - should be a list or parameter!";
992       O << Test << OptDesc.GenVariableName() << ".empty()";
993       return true;
994     }
995   }
996
997   return false;
998 }
999
1000 /// EmitCaseTest2Args - Helper function used by
1001 /// EmitCaseConstructHandler.
1002 bool EmitCaseTest2Args(const std::string& TestName,
1003                        const DagInit& d,
1004                        const char* IndentLevel,
1005                        const OptionDescriptions& OptDescs,
1006                        std::ostream& O) {
1007   checkNumberOfArguments(&d, 2);
1008   const std::string& OptName = InitPtrToString(d.getArg(0));
1009   const std::string& OptArg = InitPtrToString(d.getArg(1));
1010   const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
1011
1012   if (TestName == "parameter_equals") {
1013     if (!OptionType::IsParameter(OptDesc.Type))
1014       throw OptName + ": incorrect option type - should be a parameter!";
1015     O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
1016     return true;
1017   }
1018   else if (TestName == "element_in_list") {
1019     if (!OptionType::IsList(OptDesc.Type))
1020       throw OptName + ": incorrect option type - should be a list!";
1021     const std::string& VarName = OptDesc.GenVariableName();
1022     O << "std::find(" << VarName << ".begin(),\n"
1023       << IndentLevel << Indent1 << VarName << ".end(), \""
1024       << OptArg << "\") != " << VarName << ".end()";
1025     return true;
1026   }
1027
1028   return false;
1029 }
1030
1031 // Forward declaration.
1032 // EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
1033 void EmitCaseTest(const DagInit& d, const char* IndentLevel,
1034                   const OptionDescriptions& OptDescs,
1035                   std::ostream& O);
1036
1037 /// EmitLogicalOperationTest - Helper function used by
1038 /// EmitCaseConstructHandler.
1039 void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
1040                               const char* IndentLevel,
1041                               const OptionDescriptions& OptDescs,
1042                               std::ostream& O) {
1043   O << '(';
1044   for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
1045     const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
1046     EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
1047     if (j != NumArgs - 1)
1048       O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
1049     else
1050       O << ')';
1051   }
1052 }
1053
1054 /// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
1055 void EmitCaseTest(const DagInit& d, const char* IndentLevel,
1056                   const OptionDescriptions& OptDescs,
1057                   std::ostream& O) {
1058   const std::string& TestName = d.getOperator()->getAsString();
1059
1060   if (TestName == "and")
1061     EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
1062   else if (TestName == "or")
1063     EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
1064   else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
1065     return;
1066   else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
1067     return;
1068   else
1069     throw TestName + ": unknown edge property!";
1070 }
1071
1072 // Emit code that handles the 'case' construct.
1073 // Takes a function object that should emit code for every case clause.
1074 // Callback's type is
1075 // void F(Init* Statement, const char* IndentLevel, std::ostream& O).
1076 template <typename F>
1077 void EmitCaseConstructHandler(const Init* Dag, const char* IndentLevel,
1078                               F Callback, bool EmitElseIf,
1079                               const OptionDescriptions& OptDescs,
1080                               std::ostream& O) {
1081   const DagInit* d = &InitPtrToDag(Dag);
1082   if (d->getOperator()->getAsString() != "case")
1083     throw std::string("EmitCaseConstructHandler should be invoked"
1084                       " only on 'case' expressions!");
1085
1086   unsigned numArgs = d->getNumArgs();
1087   if (d->getNumArgs() < 2)
1088     throw "There should be at least one clause in the 'case' expression:\n"
1089       + d->getAsString();
1090
1091   for (unsigned i = 0; i != numArgs; ++i) {
1092     const DagInit& Test = InitPtrToDag(d->getArg(i));
1093
1094     // Emit the test.
1095     if (Test.getOperator()->getAsString() == "default") {
1096       if (i+2 != numArgs)
1097         throw std::string("The 'default' clause should be the last in the"
1098                           "'case' construct!");
1099       O << IndentLevel << "else {\n";
1100     }
1101     else {
1102       O << IndentLevel << ((i != 0 && EmitElseIf) ? "else if (" : "if (");
1103       EmitCaseTest(Test, IndentLevel, OptDescs, O);
1104       O << ") {\n";
1105     }
1106
1107     // Emit the corresponding statement.
1108     ++i;
1109     if (i == numArgs)
1110       throw "Case construct handler: no corresponding action "
1111         "found for the test " + Test.getAsString() + '!';
1112
1113     Init* arg = d->getArg(i);
1114     const DagInit* nd = dynamic_cast<DagInit*>(arg);
1115     if (nd && (nd->getOperator()->getAsString() == "case")) {
1116       // Handle the nested 'case'.
1117       EmitCaseConstructHandler(nd, (std::string(IndentLevel) + Indent1).c_str(),
1118                                Callback, EmitElseIf, OptDescs, O);
1119     }
1120     else {
1121       Callback(arg, (std::string(IndentLevel) + Indent1).c_str(), O);
1122     }
1123     O << IndentLevel << "}\n";
1124   }
1125 }
1126
1127 /// TokenizeCmdline - converts from "$CALL(HookName, 'Arg1', 'Arg2')/path" to
1128 /// ["$CALL(", "HookName", "Arg1", "Arg2", ")/path"] .
1129 /// Helper function used by EmitCmdLineVecFill and.
1130 void TokenizeCmdline(const std::string& CmdLine, StrVector& Out) {
1131   const char* Delimiters = " \t\n\v\f\r";
1132   enum TokenizerState
1133   { Normal, SpecialCommand, InsideSpecialCommand, InsideQuotationMarks }
1134   cur_st  = Normal;
1135   Out.push_back("");
1136
1137   std::string::size_type B = CmdLine.find_first_not_of(Delimiters),
1138     E = CmdLine.size();
1139   if (B == std::string::npos)
1140     throw "Empty command-line string!";
1141   for (; B != E; ++B) {
1142     char cur_ch = CmdLine[B];
1143
1144     switch (cur_st) {
1145     case Normal:
1146       if (cur_ch == '$') {
1147         cur_st = SpecialCommand;
1148         break;
1149       }
1150       if (oneOf(Delimiters, cur_ch)) {
1151         // Skip whitespace
1152         B = CmdLine.find_first_not_of(Delimiters, B);
1153         if (B == std::string::npos) {
1154           B = E-1;
1155           continue;
1156         }
1157         --B;
1158         Out.push_back("");
1159         continue;
1160       }
1161       break;
1162
1163
1164     case SpecialCommand:
1165       if (oneOf(Delimiters, cur_ch)) {
1166         cur_st = Normal;
1167         Out.push_back("");
1168         continue;
1169       }
1170       if (cur_ch == '(') {
1171         Out.push_back("");
1172         cur_st = InsideSpecialCommand;
1173         continue;
1174       }
1175       break;
1176
1177     case InsideSpecialCommand:
1178       if (oneOf(Delimiters, cur_ch)) {
1179         continue;
1180       }
1181       if (cur_ch == '\'') {
1182         cur_st = InsideQuotationMarks;
1183         Out.push_back("");
1184         continue;
1185       }
1186       if (cur_ch == ')') {
1187         cur_st = Normal;
1188         Out.push_back("");
1189       }
1190       if (cur_ch == ',') {
1191         continue;
1192       }
1193
1194       break;
1195
1196     case InsideQuotationMarks:
1197       if (cur_ch == '\'') {
1198         cur_st = InsideSpecialCommand;
1199         continue;
1200       }
1201       break;
1202     }
1203
1204     Out.back().push_back(cur_ch);
1205   }
1206 }
1207
1208 /// SubstituteSpecialCommands - Perform string substitution for $CALL
1209 /// and $ENV. Helper function used by EmitCmdLineVecFill().
1210 StrVector::const_iterator SubstituteSpecialCommands
1211 (StrVector::const_iterator Pos, StrVector::const_iterator End, std::ostream& O)
1212 {
1213
1214   const std::string& cmd = *Pos;
1215
1216   if (cmd == "$CALL") {
1217     checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1218     const std::string& CmdName = *Pos;
1219
1220     if (CmdName == ")")
1221       throw std::string("$CALL invocation: empty argument list!");
1222
1223     O << "hooks::";
1224     O << CmdName << "(";
1225
1226
1227     bool firstIteration = true;
1228     while (true) {
1229       checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1230       const std::string& Arg = *Pos;
1231       assert(Arg.size() != 0);
1232
1233       if (Arg[0] == ')')
1234         break;
1235
1236       if (firstIteration)
1237         firstIteration = false;
1238       else
1239         O << ", ";
1240
1241       O << '"' << Arg << '"';
1242     }
1243
1244     O << ')';
1245
1246   }
1247   else if (cmd == "$ENV") {
1248     checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
1249     const std::string& EnvName = *Pos;
1250
1251     if (EnvName == ")")
1252       throw "$ENV invocation: empty argument list!";
1253
1254     O << "checkCString(std::getenv(\"";
1255     O << EnvName;
1256     O << "\"))";
1257
1258     checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
1259   }
1260   else {
1261     throw "Unknown special command: " + cmd;
1262   }
1263
1264   const std::string& Leftover = *Pos;
1265   assert(Leftover.at(0) == ')');
1266   if (Leftover.size() != 1)
1267     O << " + std::string(\"" << (Leftover.c_str() + 1) << "\")";
1268   O << ')';
1269
1270   return Pos;
1271 }
1272
1273 /// EmitCmdLineVecFill - Emit code that fills in the command line
1274 /// vector. Helper function used by EmitGenerateActionMethod().
1275 void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
1276                         bool IsJoin, const char* IndentLevel,
1277                         std::ostream& O) {
1278   StrVector StrVec;
1279   TokenizeCmdline(InitPtrToString(CmdLine), StrVec);
1280
1281   if (StrVec.empty())
1282     throw "Tool " + ToolName + " has empty command line!";
1283
1284   StrVector::const_iterator I = StrVec.begin(), E = StrVec.end();
1285
1286   // If there is a hook invocation on the place of the first command, skip it.
1287   assert(!StrVec[0].empty());
1288   if (StrVec[0][0] == '$') {
1289     while (I != E && (*I)[0] != ')' )
1290       ++I;
1291
1292     // Skip the ')' symbol.
1293     ++I;
1294   }
1295   else {
1296     ++I;
1297   }
1298
1299   for (; I != E; ++I) {
1300     const std::string& cmd = *I;
1301     assert(!cmd.empty());
1302     O << IndentLevel;
1303     if (cmd.at(0) == '$') {
1304       if (cmd == "$INFILE") {
1305         if (IsJoin)
1306           O << "for (PathVector::const_iterator B = inFiles.begin()"
1307             << ", E = inFiles.end();\n"
1308             << IndentLevel << "B != E; ++B)\n"
1309             << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
1310         else
1311           O << "vec.push_back(inFile.toString());\n";
1312       }
1313       else if (cmd == "$OUTFILE") {
1314         O << "vec.push_back(out_file);\n";
1315       }
1316       else {
1317         O << "vec.push_back(";
1318         I = SubstituteSpecialCommands(I, E, O);
1319         O << ");\n";
1320       }
1321     }
1322     else {
1323       O << "vec.push_back(\"" << cmd << "\");\n";
1324     }
1325   }
1326   O << IndentLevel << "cmd = ";
1327
1328   if (StrVec[0][0] == '$')
1329     SubstituteSpecialCommands(StrVec.begin(), StrVec.end(), O);
1330   else
1331     O << '"' << StrVec[0] << '"';
1332   O << ";\n";
1333 }
1334
1335 /// EmitCmdLineVecFillCallback - A function object wrapper around
1336 /// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1337 /// argument to EmitCaseConstructHandler().
1338 class EmitCmdLineVecFillCallback {
1339   bool IsJoin;
1340   const std::string& ToolName;
1341  public:
1342   EmitCmdLineVecFillCallback(bool J, const std::string& TN)
1343     : IsJoin(J), ToolName(TN) {}
1344
1345   void operator()(const Init* Statement, const char* IndentLevel,
1346                   std::ostream& O) const
1347   {
1348     EmitCmdLineVecFill(Statement, ToolName, IsJoin,
1349                        IndentLevel, O);
1350   }
1351 };
1352
1353 /// EmitForwardOptionPropertyHandlingCode - Helper function used to
1354 /// implement EmitActionHandler. Emits code for
1355 /// handling the (forward) and (forward_as) option properties.
1356 void EmitForwardOptionPropertyHandlingCode (const OptionDescription& D,
1357                                             const char* Indent,
1358                                             const std::string& NewName,
1359                                             std::ostream& O) {
1360   const std::string& Name = NewName.empty()
1361     ? ("-" + D.Name)
1362     : NewName;
1363
1364   switch (D.Type) {
1365   case OptionType::Switch:
1366     O << Indent << "vec.push_back(\"" << Name << "\");\n";
1367     break;
1368   case OptionType::Parameter:
1369     O << Indent << "vec.push_back(\"" << Name << "\");\n";
1370     O << Indent << "vec.push_back(" << D.GenVariableName() << ");\n";
1371     break;
1372   case OptionType::Prefix:
1373     O << Indent << "vec.push_back(\"" << Name << "\" + "
1374       << D.GenVariableName() << ");\n";
1375     break;
1376   case OptionType::PrefixList:
1377     O << Indent << "for (" << D.GenTypeDeclaration()
1378       << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1379       << Indent << "E = " << D.GenVariableName() << ".end(); B != E;) {\n"
1380       << Indent << Indent1 << "vec.push_back(\"" << Name << "\" + "
1381       << "*B);\n"
1382       << Indent << Indent1 << "++B;\n";
1383
1384     for (int i = 1, j = D.MultiVal; i < j; ++i) {
1385       O << Indent << Indent1 << "vec.push_back(*B);\n"
1386         << Indent << Indent1 << "++B;\n";
1387     }
1388
1389     O << Indent << "}\n";
1390     break;
1391   case OptionType::ParameterList:
1392     O << Indent << "for (" << D.GenTypeDeclaration()
1393       << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1394       << Indent << "E = " << D.GenVariableName()
1395       << ".end() ; B != E;) {\n"
1396       << Indent << Indent1 << "vec.push_back(\"" << Name << "\");\n";
1397
1398     for (int i = 0, j = D.MultiVal; i < j; ++i) {
1399       O << Indent << Indent1 << "vec.push_back(*B);\n"
1400         << Indent << Indent1 << "++B;\n";
1401     }
1402
1403     O << Indent << "}\n";
1404     break;
1405   case OptionType::Alias:
1406   default:
1407     throw std::string("Aliases are not allowed in tool option descriptions!");
1408   }
1409 }
1410
1411 /// EmitActionHandler - Emit code that handles actions. Used by
1412 /// EmitGenerateActionMethod() as an argument to
1413 /// EmitCaseConstructHandler().
1414 class EmitActionHandler {
1415   const OptionDescriptions& OptDescs;
1416
1417   void processActionDag(const Init* Statement, const char* IndentLevel,
1418                         std::ostream& O) const
1419   {
1420     const DagInit& Dag = InitPtrToDag(Statement);
1421     const std::string& ActionName = Dag.getOperator()->getAsString();
1422
1423     if (ActionName == "append_cmd") {
1424       checkNumberOfArguments(&Dag, 1);
1425       const std::string& Cmd = InitPtrToString(Dag.getArg(0));
1426       StrVector Out;
1427       llvm::SplitString(Cmd, Out);
1428
1429       for (StrVector::const_iterator B = Out.begin(), E = Out.end();
1430            B != E; ++B)
1431         O << IndentLevel << "vec.push_back(\"" << *B << "\");\n";
1432     }
1433     else if (ActionName == "error") {
1434       O << IndentLevel << "throw std::runtime_error(\"" <<
1435         (Dag.getNumArgs() >= 1 ? InitPtrToString(Dag.getArg(0))
1436          : "Unknown error!")
1437         << "\");\n";
1438     }
1439     else if (ActionName == "forward") {
1440       checkNumberOfArguments(&Dag, 1);
1441       const std::string& Name = InitPtrToString(Dag.getArg(0));
1442       EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1443                                             IndentLevel, "", O);
1444     }
1445     else if (ActionName == "forward_as") {
1446       checkNumberOfArguments(&Dag, 2);
1447       const std::string& Name = InitPtrToString(Dag.getArg(0));
1448       const std::string& NewName = InitPtrToString(Dag.getArg(0));
1449       EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1450                                             IndentLevel, NewName, O);
1451     }
1452     else if (ActionName == "output_suffix") {
1453       checkNumberOfArguments(&Dag, 1);
1454       const std::string& OutSuf = InitPtrToString(Dag.getArg(0));
1455       O << IndentLevel << "output_suffix = \"" << OutSuf << "\";\n";
1456     }
1457     else if (ActionName == "stop_compilation") {
1458       O << IndentLevel << "stop_compilation = true;\n";
1459     }
1460     else if (ActionName == "unpack_values") {
1461       checkNumberOfArguments(&Dag, 1);
1462       const std::string& Name = InitPtrToString(Dag.getArg(0));
1463       const OptionDescription& D = OptDescs.FindOption(Name);
1464
1465       if (D.isMultiVal())
1466         throw std::string("Can't use unpack_values with multi-valued options!");
1467
1468       if (OptionType::IsList(D.Type)) {
1469         O << IndentLevel << "for (" << D.GenTypeDeclaration()
1470           << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1471           << IndentLevel << "E = " << D.GenVariableName()
1472           << ".end(); B != E; ++B)\n"
1473           << IndentLevel << Indent1 << "llvm::SplitString(*B, vec, \",\");\n";
1474       }
1475       else if (OptionType::IsParameter(D.Type)){
1476         O << Indent3 << "llvm::SplitString("
1477           << D.GenVariableName() << ", vec, \",\");\n";
1478       }
1479       else {
1480         throw "Option '" + D.Name +
1481           "': switches can't have the 'unpack_values' property!";
1482       }
1483     }
1484     else {
1485       throw "Unknown action name: " + ActionName + "!";
1486     }
1487   }
1488  public:
1489   EmitActionHandler(const OptionDescriptions& OD)
1490     : OptDescs(OD) {}
1491
1492   void operator()(const Init* Statement, const char* IndentLevel,
1493                   std::ostream& O) const
1494   {
1495     if (typeid(*Statement) == typeid(ListInit)) {
1496       const ListInit& DagList = *static_cast<const ListInit*>(Statement);
1497       for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
1498            B != E; ++B)
1499         this->processActionDag(*B, IndentLevel, O);
1500     }
1501     else {
1502       this->processActionDag(Statement, IndentLevel, O);
1503     }
1504   }
1505 };
1506
1507 // EmitGenerateActionMethod - Emit one of two versions of the
1508 // Tool::GenerateAction() method.
1509 void EmitGenerateActionMethod (const ToolDescription& D,
1510                                const OptionDescriptions& OptDescs,
1511                                bool IsJoin, std::ostream& O) {
1512   if (IsJoin)
1513     O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1514   else
1515     O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1516
1517   O << Indent2 << "bool HasChildren,\n"
1518     << Indent2 << "const llvm::sys::Path& TempDir,\n"
1519     << Indent2 << "const InputLanguagesSet& InLangs,\n"
1520     << Indent2 << "const LanguageMap& LangMap) const\n"
1521     << Indent1 << "{\n"
1522     << Indent2 << "std::string cmd;\n"
1523     << Indent2 << "std::vector<std::string> vec;\n"
1524     << Indent2 << "bool stop_compilation = !HasChildren;\n"
1525     << Indent2 << "const char* output_suffix = \"" << D.OutputSuffix << "\";\n"
1526     << Indent2 << "std::string out_file;\n\n";
1527
1528   // For every understood option, emit handling code.
1529   if (D.Actions)
1530     EmitCaseConstructHandler(D.Actions, Indent2, EmitActionHandler(OptDescs),
1531                              false, OptDescs, O);
1532
1533   O << '\n' << Indent2
1534     << "out_file = OutFilename(" << (IsJoin ? "sys::Path(),\n" : "inFile,\n")
1535     << Indent3 << "TempDir, stop_compilation, output_suffix).toString();\n\n";
1536
1537   // cmd_line is either a string or a 'case' construct.
1538   if (!D.CmdLine)
1539     throw "Tool " + D.Name + " has no cmd_line property!";
1540   else if (typeid(*D.CmdLine) == typeid(StringInit))
1541     EmitCmdLineVecFill(D.CmdLine, D.Name, IsJoin, Indent2, O);
1542   else
1543     EmitCaseConstructHandler(D.CmdLine, Indent2,
1544                              EmitCmdLineVecFillCallback(IsJoin, D.Name),
1545                              true, OptDescs, O);
1546
1547   // Handle the Sink property.
1548   if (D.isSink()) {
1549     O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1550       << Indent3 << "vec.insert(vec.end(), "
1551       << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1552       << Indent2 << "}\n";
1553   }
1554
1555   O << Indent2 << "return Action(cmd, vec, stop_compilation, out_file);\n"
1556     << Indent1 << "}\n\n";
1557 }
1558
1559 /// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1560 /// a given Tool class.
1561 void EmitGenerateActionMethods (const ToolDescription& ToolDesc,
1562                                 const OptionDescriptions& OptDescs,
1563                                 std::ostream& O) {
1564   if (!ToolDesc.isJoin())
1565     O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
1566       << Indent2 << "bool HasChildren,\n"
1567       << Indent2 << "const llvm::sys::Path& TempDir,\n"
1568       << Indent2 << "const InputLanguagesSet& InLangs,\n"
1569       << Indent2 << "const LanguageMap& LangMap) const\n"
1570       << Indent1 << "{\n"
1571       << Indent2 << "throw std::runtime_error(\"" << ToolDesc.Name
1572       << " is not a Join tool!\");\n"
1573       << Indent1 << "}\n\n";
1574   else
1575     EmitGenerateActionMethod(ToolDesc, OptDescs, true, O);
1576
1577   EmitGenerateActionMethod(ToolDesc, OptDescs, false, O);
1578 }
1579
1580 /// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1581 /// methods for a given Tool class.
1582 void EmitInOutLanguageMethods (const ToolDescription& D, std::ostream& O) {
1583   O << Indent1 << "const char** InputLanguages() const {\n"
1584     << Indent2 << "return InputLanguages_;\n"
1585     << Indent1 << "}\n\n";
1586
1587   if (D.OutLanguage.empty())
1588     throw "Tool " + D.Name + " has no 'out_language' property!";
1589
1590   O << Indent1 << "const char* OutputLanguage() const {\n"
1591     << Indent2 << "return \"" << D.OutLanguage << "\";\n"
1592     << Indent1 << "}\n\n";
1593 }
1594
1595 /// EmitNameMethod - Emit the Name() method for a given Tool class.
1596 void EmitNameMethod (const ToolDescription& D, std::ostream& O) {
1597   O << Indent1 << "const char* Name() const {\n"
1598     << Indent2 << "return \"" << D.Name << "\";\n"
1599     << Indent1 << "}\n\n";
1600 }
1601
1602 /// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1603 /// class.
1604 void EmitIsJoinMethod (const ToolDescription& D, std::ostream& O) {
1605   O << Indent1 << "bool IsJoin() const {\n";
1606   if (D.isJoin())
1607     O << Indent2 << "return true;\n";
1608   else
1609     O << Indent2 << "return false;\n";
1610   O << Indent1 << "}\n\n";
1611 }
1612
1613 /// EmitStaticMemberDefinitions - Emit static member definitions for a
1614 /// given Tool class.
1615 void EmitStaticMemberDefinitions(const ToolDescription& D, std::ostream& O) {
1616   if (D.InLanguage.empty())
1617     throw "Tool " + D.Name + " has no 'in_language' property!";
1618
1619   O << "const char* " << D.Name << "::InputLanguages_[] = {";
1620   for (StrVector::const_iterator B = D.InLanguage.begin(),
1621          E = D.InLanguage.end(); B != E; ++B)
1622     O << '\"' << *B << "\", ";
1623   O << "0};\n\n";
1624 }
1625
1626 /// EmitToolClassDefinition - Emit a Tool class definition.
1627 void EmitToolClassDefinition (const ToolDescription& D,
1628                               const OptionDescriptions& OptDescs,
1629                               std::ostream& O) {
1630   if (D.Name == "root")
1631     return;
1632
1633   // Header
1634   O << "class " << D.Name << " : public ";
1635   if (D.isJoin())
1636     O << "JoinTool";
1637   else
1638     O << "Tool";
1639
1640   O << "{\nprivate:\n"
1641     << Indent1 << "static const char* InputLanguages_[];\n\n";
1642
1643   O << "public:\n";
1644   EmitNameMethod(D, O);
1645   EmitInOutLanguageMethods(D, O);
1646   EmitIsJoinMethod(D, O);
1647   EmitGenerateActionMethods(D, OptDescs, O);
1648
1649   // Close class definition
1650   O << "};\n";
1651
1652   EmitStaticMemberDefinitions(D, O);
1653
1654 }
1655
1656 /// EmitOptionDefintions - Iterate over a list of option descriptions
1657 /// and emit registration code.
1658 void EmitOptionDefintions (const OptionDescriptions& descs,
1659                            bool HasSink, bool HasExterns,
1660                            std::ostream& O)
1661 {
1662   std::vector<OptionDescription> Aliases;
1663
1664   // Emit static cl::Option variables.
1665   for (OptionDescriptions::const_iterator B = descs.begin(),
1666          E = descs.end(); B!=E; ++B) {
1667     const OptionDescription& val = B->second;
1668
1669     if (val.Type == OptionType::Alias) {
1670       Aliases.push_back(val);
1671       continue;
1672     }
1673
1674     if (val.isExtern())
1675       O << "extern ";
1676
1677     O << val.GenTypeDeclaration() << ' '
1678       << val.GenVariableName();
1679
1680     if (val.isExtern()) {
1681       O << ";\n";
1682       continue;
1683     }
1684
1685     O << "(\"" << val.Name << '\"';
1686
1687     if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1688       O << ", cl::Prefix";
1689
1690     if (val.isRequired()) {
1691       if (OptionType::IsList(val.Type) && !val.isMultiVal())
1692         O << ", cl::OneOrMore";
1693       else
1694         O << ", cl::Required";
1695     }
1696     else if (val.isOneOrMore() && OptionType::IsList(val.Type)) {
1697         O << ", cl::OneOrMore";
1698     }
1699     else if (val.isZeroOrOne() && OptionType::IsList(val.Type)) {
1700         O << ", cl::ZeroOrOne";
1701     }
1702
1703     if (val.isReallyHidden()) {
1704       O << ", cl::ReallyHidden";
1705     }
1706     else if (val.isHidden()) {
1707       O << ", cl::Hidden";
1708     }
1709
1710     if (val.MultiVal > 1)
1711       O << ", cl::multi_val(" << val.MultiVal << ")";
1712
1713     if (!val.Help.empty())
1714       O << ", cl::desc(\"" << val.Help << "\")";
1715
1716     O << ");\n";
1717   }
1718
1719   // Emit the aliases (they should go after all the 'proper' options).
1720   for (std::vector<OptionDescription>::const_iterator
1721          B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
1722     const OptionDescription& val = *B;
1723
1724     O << val.GenTypeDeclaration() << ' '
1725       << val.GenVariableName()
1726       << "(\"" << val.Name << '\"';
1727
1728     const OptionDescription& D = descs.FindOption(val.Help);
1729     O << ", cl::aliasopt(" << D.GenVariableName() << ")";
1730
1731     O << ", cl::desc(\"" << "An alias for -" + val.Help  << "\"));\n";
1732   }
1733
1734   // Emit the sink option.
1735   if (HasSink)
1736     O << (HasExterns ? "extern cl" : "cl")
1737       << "::list<std::string> " << SinkOptionName
1738       << (HasExterns ? ";\n" : "(cl::Sink);\n");
1739
1740   O << '\n';
1741 }
1742
1743 /// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
1744 void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1745 {
1746   // Generate code
1747   O << "void PopulateLanguageMapLocal(LanguageMap& langMap) {\n";
1748
1749   // Get the relevant field out of RecordKeeper
1750   const Record* LangMapRecord = Records.getDef("LanguageMap");
1751
1752   // It is allowed for a plugin to have no language map.
1753   if (LangMapRecord) {
1754
1755     ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1756     if (!LangsToSuffixesList)
1757       throw std::string("Error in the language map definition!");
1758
1759     for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
1760       const Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
1761
1762       const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1763       const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1764
1765       for (unsigned i = 0; i < Suffixes->size(); ++i)
1766         O << Indent1 << "langMap[\""
1767           << InitPtrToString(Suffixes->getElement(i))
1768           << "\"] = \"" << Lang << "\";\n";
1769     }
1770   }
1771
1772   O << "}\n\n";
1773 }
1774
1775 /// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1776 /// by EmitEdgeClass().
1777 void IncDecWeight (const Init* i, const char* IndentLevel,
1778                    std::ostream& O) {
1779   const DagInit& d = InitPtrToDag(i);
1780   const std::string& OpName = d.getOperator()->getAsString();
1781
1782   if (OpName == "inc_weight") {
1783     O << IndentLevel << "ret += ";
1784   }
1785   else if (OpName == "dec_weight") {
1786     O << IndentLevel << "ret -= ";
1787   }
1788   else if (OpName == "error") {
1789     O << IndentLevel << "throw std::runtime_error(\"" <<
1790         (d.getNumArgs() >= 1 ? InitPtrToString(d.getArg(0))
1791          : "Unknown error!")
1792       << "\");\n";
1793     return;
1794   }
1795
1796   else
1797     throw "Unknown operator in edge properties list: " + OpName + '!' +
1798       "\nOnly 'inc_weight', 'dec_weight' and 'error' are allowed.";
1799
1800   if (d.getNumArgs() > 0)
1801     O << InitPtrToInt(d.getArg(0)) << ";\n";
1802   else
1803     O << "2;\n";
1804
1805 }
1806
1807 /// EmitEdgeClass - Emit a single Edge# class.
1808 void EmitEdgeClass (unsigned N, const std::string& Target,
1809                     DagInit* Case, const OptionDescriptions& OptDescs,
1810                     std::ostream& O) {
1811
1812   // Class constructor.
1813   O << "class Edge" << N << ": public Edge {\n"
1814     << "public:\n"
1815     << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1816     << "\") {}\n\n"
1817
1818   // Function Weight().
1819     << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
1820     << Indent2 << "unsigned ret = 0;\n";
1821
1822   // Handle the 'case' construct.
1823   EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
1824
1825   O << Indent2 << "return ret;\n"
1826     << Indent1 << "};\n\n};\n\n";
1827 }
1828
1829 /// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
1830 void EmitEdgeClasses (const RecordVector& EdgeVector,
1831                       const OptionDescriptions& OptDescs,
1832                       std::ostream& O) {
1833   int i = 0;
1834   for (RecordVector::const_iterator B = EdgeVector.begin(),
1835          E = EdgeVector.end(); B != E; ++B) {
1836     const Record* Edge = *B;
1837     const std::string& NodeB = Edge->getValueAsString("b");
1838     DagInit* Weight = Edge->getValueAsDag("weight");
1839
1840     if (!isDagEmpty(Weight))
1841       EmitEdgeClass(i, NodeB, Weight, OptDescs, O);
1842     ++i;
1843   }
1844 }
1845
1846 /// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1847 /// function.
1848 void EmitPopulateCompilationGraph (const RecordVector& EdgeVector,
1849                                    const ToolDescriptions& ToolDescs,
1850                                    std::ostream& O)
1851 {
1852   O << "void PopulateCompilationGraphLocal(CompilationGraph& G) {\n";
1853
1854   for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1855          E = ToolDescs.end(); B != E; ++B)
1856     O << Indent1 << "G.insertNode(new " << (*B)->Name << "());\n";
1857
1858   O << '\n';
1859
1860   // Insert edges.
1861
1862   int i = 0;
1863   for (RecordVector::const_iterator B = EdgeVector.begin(),
1864          E = EdgeVector.end(); B != E; ++B) {
1865     const Record* Edge = *B;
1866     const std::string& NodeA = Edge->getValueAsString("a");
1867     const std::string& NodeB = Edge->getValueAsString("b");
1868     DagInit* Weight = Edge->getValueAsDag("weight");
1869
1870     O << Indent1 << "G.insertEdge(\"" << NodeA << "\", ";
1871
1872     if (isDagEmpty(Weight))
1873       O << "new SimpleEdge(\"" << NodeB << "\")";
1874     else
1875       O << "new Edge" << i << "()";
1876
1877     O << ");\n";
1878     ++i;
1879   }
1880
1881   O << "}\n\n";
1882 }
1883
1884 /// ExtractHookNames - Extract the hook names from all instances of
1885 /// $CALL(HookName) in the provided command line string. Helper
1886 /// function used by FillInHookNames().
1887 class ExtractHookNames {
1888   llvm::StringMap<unsigned>& HookNames_;
1889 public:
1890   ExtractHookNames(llvm::StringMap<unsigned>& HookNames)
1891   : HookNames_(HookNames) {}
1892
1893   void operator()(const Init* CmdLine) {
1894     StrVector cmds;
1895     TokenizeCmdline(InitPtrToString(CmdLine), cmds);
1896     for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1897          B != E; ++B) {
1898       const std::string& cmd = *B;
1899
1900       if (cmd == "$CALL") {
1901         unsigned NumArgs = 0;
1902         checkedIncrement(B, E, "Syntax error in $CALL invocation!");
1903         const std::string& HookName = *B;
1904
1905
1906         if (HookName.at(0) == ')')
1907           throw "$CALL invoked with no arguments!";
1908
1909         while (++B != E && B->at(0) != ')') {
1910           ++NumArgs;
1911         }
1912
1913         StringMap<unsigned>::const_iterator H = HookNames_.find(HookName);
1914
1915         if (H != HookNames_.end() && H->second != NumArgs)
1916           throw "Overloading of hooks is not allowed. Overloaded hook: "
1917             + HookName;
1918         else
1919           HookNames_[HookName] = NumArgs;
1920
1921       }
1922     }
1923   }
1924 };
1925
1926 /// FillInHookNames - Actually extract the hook names from all command
1927 /// line strings. Helper function used by EmitHookDeclarations().
1928 void FillInHookNames(const ToolDescriptions& ToolDescs,
1929                      llvm::StringMap<unsigned>& HookNames)
1930 {
1931   // For all command lines:
1932   for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1933          E = ToolDescs.end(); B != E; ++B) {
1934     const ToolDescription& D = *(*B);
1935     if (!D.CmdLine)
1936       continue;
1937     if (dynamic_cast<StringInit*>(D.CmdLine))
1938       // This is a string.
1939       ExtractHookNames(HookNames).operator()(D.CmdLine);
1940     else
1941       // This is a 'case' construct.
1942       WalkCase(D.CmdLine, Id(), ExtractHookNames(HookNames));
1943   }
1944 }
1945
1946 /// EmitHookDeclarations - Parse CmdLine fields of all the tool
1947 /// property records and emit hook function declaration for each
1948 /// instance of $CALL(HookName).
1949 void EmitHookDeclarations(const ToolDescriptions& ToolDescs, std::ostream& O) {
1950   llvm::StringMap<unsigned> HookNames;
1951
1952   FillInHookNames(ToolDescs, HookNames);
1953   if (HookNames.empty())
1954     return;
1955
1956   O << "namespace hooks {\n";
1957   for (StringMap<unsigned>::const_iterator B = HookNames.begin(),
1958          E = HookNames.end(); B != E; ++B) {
1959     O << Indent1 << "std::string " << B->first() << "(";
1960
1961     for (unsigned i = 0, j = B->second; i < j; ++i) {
1962       O << "const char* Arg" << i << (i+1 == j ? "" : ", ");
1963     }
1964
1965     O <<");\n";
1966   }
1967   O << "}\n\n";
1968 }
1969
1970 /// EmitRegisterPlugin - Emit code to register this plugin.
1971 void EmitRegisterPlugin(int Priority, std::ostream& O) {
1972   O << "struct Plugin : public llvmc::BasePlugin {\n\n"
1973     << Indent1 << "int Priority() const { return " << Priority << "; }\n\n"
1974     << Indent1 << "void PopulateLanguageMap(LanguageMap& langMap) const\n"
1975     << Indent1 << "{ PopulateLanguageMapLocal(langMap); }\n\n"
1976     << Indent1
1977     << "void PopulateCompilationGraph(CompilationGraph& graph) const\n"
1978     << Indent1 << "{ PopulateCompilationGraphLocal(graph); }\n"
1979     << "};\n\n"
1980
1981     << "static llvmc::RegisterPlugin<Plugin> RP;\n\n";
1982 }
1983
1984 /// EmitIncludes - Emit necessary #include directives and some
1985 /// additional declarations.
1986 void EmitIncludes(std::ostream& O) {
1987   O << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n"
1988     << "#include \"llvm/CompilerDriver/Plugin.h\"\n"
1989     << "#include \"llvm/CompilerDriver/Tool.h\"\n\n"
1990
1991     << "#include \"llvm/ADT/StringExtras.h\"\n"
1992     << "#include \"llvm/Support/CommandLine.h\"\n\n"
1993
1994     << "#include <cstdlib>\n"
1995     << "#include <stdexcept>\n\n"
1996
1997     << "using namespace llvm;\n"
1998     << "using namespace llvmc;\n\n"
1999
2000     << "extern cl::opt<std::string> OutputFilename;\n\n"
2001
2002     << "inline const char* checkCString(const char* s)\n"
2003     << "{ return s == NULL ? \"\" : s; }\n\n";
2004 }
2005
2006
2007 /// PluginData - Holds all information about a plugin.
2008 struct PluginData {
2009   OptionDescriptions OptDescs;
2010   bool HasSink;
2011   bool HasExterns;
2012   ToolDescriptions ToolDescs;
2013   RecordVector Edges;
2014   int Priority;
2015 };
2016
2017 /// HasSink - Go through the list of tool descriptions and check if
2018 /// there are any with the 'sink' property set.
2019 bool HasSink(const ToolDescriptions& ToolDescs) {
2020   for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2021          E = ToolDescs.end(); B != E; ++B)
2022     if ((*B)->isSink())
2023       return true;
2024
2025   return false;
2026 }
2027
2028 /// HasExterns - Go through the list of option descriptions and check
2029 /// if there are any external options.
2030 bool HasExterns(const OptionDescriptions& OptDescs) {
2031  for (OptionDescriptions::const_iterator B = OptDescs.begin(),
2032          E = OptDescs.end(); B != E; ++B)
2033     if (B->second.isExtern())
2034       return true;
2035
2036   return false;
2037 }
2038
2039 /// CollectPluginData - Collect tool and option properties,
2040 /// compilation graph edges and plugin priority from the parse tree.
2041 void CollectPluginData (const RecordKeeper& Records, PluginData& Data) {
2042   // Collect option properties.
2043   const RecordVector& OptionLists =
2044     Records.getAllDerivedDefinitions("OptionList");
2045   CollectOptionDescriptions(OptionLists.begin(), OptionLists.end(),
2046                             Data.OptDescs);
2047
2048   // Collect tool properties.
2049   const RecordVector& Tools = Records.getAllDerivedDefinitions("Tool");
2050   CollectToolDescriptions(Tools.begin(), Tools.end(), Data.ToolDescs);
2051   Data.HasSink = HasSink(Data.ToolDescs);
2052   Data.HasExterns = HasExterns(Data.OptDescs);
2053
2054   // Collect compilation graph edges.
2055   const RecordVector& CompilationGraphs =
2056     Records.getAllDerivedDefinitions("CompilationGraph");
2057   FillInEdgeVector(CompilationGraphs.begin(), CompilationGraphs.end(),
2058                    Data.Edges);
2059
2060   // Calculate the priority of this plugin.
2061   const RecordVector& Priorities =
2062     Records.getAllDerivedDefinitions("PluginPriority");
2063   Data.Priority = CalculatePriority(Priorities.begin(), Priorities.end());
2064 }
2065
2066 /// CheckPluginData - Perform some sanity checks on the collected data.
2067 void CheckPluginData(PluginData& Data) {
2068   // Filter out all tools not mentioned in the compilation graph.
2069   FilterNotInGraph(Data.Edges, Data.ToolDescs);
2070
2071   // Typecheck the compilation graph.
2072   TypecheckGraph(Data.Edges, Data.ToolDescs);
2073
2074   // Check that there are no options without side effects (specified
2075   // only in the OptionList).
2076   CheckForSuperfluousOptions(Data.Edges, Data.ToolDescs, Data.OptDescs);
2077
2078 }
2079
2080 void EmitPluginCode(const PluginData& Data, std::ostream& O) {
2081   // Emit file header.
2082   EmitIncludes(O);
2083
2084   // Emit global option registration code.
2085   EmitOptionDefintions(Data.OptDescs, Data.HasSink, Data.HasExterns, O);
2086
2087   // Emit hook declarations.
2088   EmitHookDeclarations(Data.ToolDescs, O);
2089
2090   O << "namespace {\n\n";
2091
2092   // Emit PopulateLanguageMap() function
2093   // (a language map maps from file extensions to language names).
2094   EmitPopulateLanguageMap(Records, O);
2095
2096   // Emit Tool classes.
2097   for (ToolDescriptions::const_iterator B = Data.ToolDescs.begin(),
2098          E = Data.ToolDescs.end(); B!=E; ++B)
2099     EmitToolClassDefinition(*(*B), Data.OptDescs, O);
2100
2101   // Emit Edge# classes.
2102   EmitEdgeClasses(Data.Edges, Data.OptDescs, O);
2103
2104   // Emit PopulateCompilationGraph() function.
2105   EmitPopulateCompilationGraph(Data.Edges, Data.ToolDescs, O);
2106
2107   // Emit code for plugin registration.
2108   EmitRegisterPlugin(Data.Priority, O);
2109
2110   O << "} // End anonymous namespace.\n";
2111   // EOF
2112 }
2113
2114
2115 // End of anonymous namespace
2116 }
2117
2118 /// run - The back-end entry point.
2119 void LLVMCConfigurationEmitter::run (std::ostream &O) {
2120   try {
2121   PluginData Data;
2122
2123   CollectPluginData(Records, Data);
2124   CheckPluginData(Data);
2125
2126   EmitSourceFileHeader("LLVMC Configuration Library", O);
2127   EmitPluginCode(Data, O);
2128
2129   } catch (std::exception& Error) {
2130     throw Error.what() + std::string(" - usually this means a syntax error.");
2131   }
2132 }