Remove RequireDefault parameter from EmitCaseConstructHandler.
[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 <string>
28
29 using namespace llvm;
30
31 namespace {
32
33 //===----------------------------------------------------------------------===//
34 /// Typedefs
35
36 typedef std::vector<Record*> RecordVector;
37 typedef std::vector<std::string> StrVector;
38
39 //===----------------------------------------------------------------------===//
40 /// Constants
41
42 // Indentation strings.
43 const char * Indent1 = "    ";
44 const char * Indent2 = "        ";
45 const char * Indent3 = "            ";
46 const char * Indent4 = "                ";
47
48 // Default help string.
49 const char * DefaultHelpString = "NO HELP MESSAGE PROVIDED";
50
51 // Name for the "sink" option.
52 const char * SinkOptionName = "AutoGeneratedSinkOption";
53
54 //===----------------------------------------------------------------------===//
55 /// Helper functions
56
57 int InitPtrToInt(const Init* ptr) {
58   const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
59   return val.getValue();
60 }
61
62 const std::string& InitPtrToString(const Init* ptr) {
63   const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
64   return val.getValue();
65 }
66
67 const ListInit& InitPtrToList(const Init* ptr) {
68   const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
69   return val;
70 }
71
72 const DagInit& InitPtrToDag(const Init* ptr) {
73   const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
74   return val;
75 }
76
77 // checkNumberOfArguments - Ensure that the number of args in d is
78 // less than or equal to min_arguments, otherwise throw an exception.
79 void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
80   if (d->getNumArgs() < min_arguments)
81     throw "Property " + d->getOperator()->getAsString()
82       + " has too few arguments!";
83 }
84
85 // isDagEmpty - is this DAG marked with an empty marker?
86 bool isDagEmpty (const DagInit* d) {
87   return d->getOperator()->getAsString() == "empty";
88 }
89
90 //===----------------------------------------------------------------------===//
91 /// Back-end specific code
92
93 // A command-line option can have one of the following types:
94 //
95 // Switch - a simple switch w/o arguments, e.g. -O2
96 //
97 // Parameter - an option that takes one(and only one) argument, e.g. -o file,
98 // --output=file
99 //
100 // ParameterList - same as Parameter, but more than one occurence
101 // of the option is allowed, e.g. -lm -lpthread
102 //
103 // Prefix - argument is everything after the prefix,
104 // e.g. -Wa,-foo,-bar, -DNAME=VALUE
105 //
106 // PrefixList - same as Prefix, but more than one option occurence is
107 // allowed
108
109 namespace OptionType {
110   enum OptionType { Switch, Parameter, ParameterList, Prefix, PrefixList};
111 }
112
113 bool IsListOptionType (OptionType::OptionType t) {
114   return (t == OptionType::ParameterList || t == OptionType::PrefixList);
115 }
116
117 // Code duplication here is necessary because one option can affect
118 // several tools and those tools may have different actions associated
119 // with this option. GlobalOptionDescriptions are used to generate
120 // the option registration code, while ToolOptionDescriptions are used
121 // to generate tool-specific code.
122
123 /// OptionDescription - Base class for option descriptions.
124 struct OptionDescription {
125   OptionType::OptionType Type;
126   std::string Name;
127
128   OptionDescription(OptionType::OptionType t = OptionType::Switch,
129                     const std::string& n = "")
130   : Type(t), Name(n)
131   {}
132
133   const char* GenTypeDeclaration() const {
134     switch (Type) {
135     case OptionType::PrefixList:
136     case OptionType::ParameterList:
137       return "cl::list<std::string>";
138     case OptionType::Switch:
139       return "cl::opt<bool>";
140     case OptionType::Parameter:
141     case OptionType::Prefix:
142     default:
143       return "cl::opt<std::string>";
144     }
145   }
146
147   // Escape commas and other symbols not allowed in the C++ variable
148   // names. Makes it possible to use options with names like "Wa,"
149   // (useful for prefix options).
150   std::string EscapeVariableName(const std::string& Var) const {
151     std::string ret;
152     for (unsigned i = 0; i != Var.size(); ++i) {
153       if (Var[i] == ',') {
154         ret += "_comma_";
155       }
156       else {
157         ret.push_back(Var[i]);
158       }
159     }
160     return ret;
161   }
162
163   std::string GenVariableName() const {
164     const std::string& EscapedName = EscapeVariableName(Name);
165     switch (Type) {
166     case OptionType::Switch:
167      return "AutoGeneratedSwitch" + EscapedName;
168    case OptionType::Prefix:
169      return "AutoGeneratedPrefix" + EscapedName;
170    case OptionType::PrefixList:
171      return "AutoGeneratedPrefixList" + EscapedName;
172    case OptionType::Parameter:
173      return "AutoGeneratedParameter" + EscapedName;
174    case OptionType::ParameterList:
175    default:
176      return "AutoGeneratedParameterList" + EscapedName;
177    }
178   }
179
180 };
181
182 // Global option description.
183
184 namespace GlobalOptionDescriptionFlags {
185   enum GlobalOptionDescriptionFlags { Required = 0x1 };
186 }
187
188 struct GlobalOptionDescription : public OptionDescription {
189   std::string Help;
190   unsigned Flags;
191
192   // We need to provide a default constructor because
193   // StringMap can only store DefaultConstructible objects.
194   GlobalOptionDescription() : OptionDescription(), Flags(0)
195   {}
196
197   GlobalOptionDescription (OptionType::OptionType t, const std::string& n)
198     : OptionDescription(t, n), Help(DefaultHelpString), Flags(0)
199   {}
200
201   bool isRequired() const {
202     return Flags & GlobalOptionDescriptionFlags::Required;
203   }
204   void setRequired() {
205     Flags |= GlobalOptionDescriptionFlags::Required;
206   }
207
208   /// Merge - Merge two option descriptions.
209   void Merge (const GlobalOptionDescription& other)
210   {
211     if (other.Type != Type)
212       throw "Conflicting definitions for the option " + Name + "!";
213
214     if (Help == DefaultHelpString)
215       Help = other.Help;
216     else if (other.Help != DefaultHelpString) {
217       llvm::cerr << "Warning: more than one help string defined for option "
218         + Name + "\n";
219     }
220
221     Flags |= other.Flags;
222   }
223 };
224
225 /// GlobalOptionDescriptions - A GlobalOptionDescription array
226 /// together with some flags affecting generation of option
227 /// declarations.
228 struct GlobalOptionDescriptions {
229   typedef StringMap<GlobalOptionDescription> container_type;
230   typedef container_type::const_iterator const_iterator;
231
232   /// Descriptions - A list of GlobalOptionDescriptions.
233   container_type Descriptions;
234   /// HasSink - Should the emitter generate a "cl::sink" option?
235   bool HasSink;
236
237   const GlobalOptionDescription& FindOption(const std::string& OptName) const {
238     const_iterator I = Descriptions.find(OptName);
239     if (I != Descriptions.end())
240       return I->second;
241     else
242       throw OptName + ": no such option!";
243   }
244
245   // Support for STL-style iteration
246   const_iterator begin() const { return Descriptions.begin(); }
247   const_iterator end() const { return Descriptions.end(); }
248 };
249
250
251 // Tool-local option description.
252
253 // Properties without arguments are implemented as flags.
254 namespace ToolOptionDescriptionFlags {
255   enum ToolOptionDescriptionFlags { StopCompilation = 0x1,
256                                     Forward = 0x2, UnpackValues = 0x4};
257 }
258 namespace OptionPropertyType {
259   enum OptionPropertyType { AppendCmd, OutputSuffix };
260 }
261
262 typedef std::pair<OptionPropertyType::OptionPropertyType, std::string>
263 OptionProperty;
264 typedef SmallVector<OptionProperty, 4> OptionPropertyList;
265
266 struct ToolOptionDescription : public OptionDescription {
267   unsigned Flags;
268   OptionPropertyList Props;
269
270   // StringMap can only store DefaultConstructible objects
271   ToolOptionDescription() : OptionDescription(), Flags(0) {}
272
273   ToolOptionDescription (OptionType::OptionType t, const std::string& n)
274     : OptionDescription(t, n)
275   {}
276
277   // Various boolean properties
278   bool isStopCompilation() const {
279     return Flags & ToolOptionDescriptionFlags::StopCompilation;
280   }
281   void setStopCompilation() {
282     Flags |= ToolOptionDescriptionFlags::StopCompilation;
283   }
284
285   bool isForward() const {
286     return Flags & ToolOptionDescriptionFlags::Forward;
287   }
288   void setForward() {
289     Flags |= ToolOptionDescriptionFlags::Forward;
290   }
291
292   bool isUnpackValues() const {
293     return Flags & ToolOptionDescriptionFlags::UnpackValues;
294   }
295   void setUnpackValues() {
296     Flags |= ToolOptionDescriptionFlags::UnpackValues;
297   }
298
299   void AddProperty (OptionPropertyType::OptionPropertyType t,
300                     const std::string& val)
301   {
302     Props.push_back(std::make_pair(t, val));
303   }
304 };
305
306 typedef StringMap<ToolOptionDescription> ToolOptionDescriptions;
307
308 // Tool information record
309
310 namespace ToolFlags {
311   enum ToolFlags { Join = 0x1, Sink = 0x2 };
312 }
313
314 struct ToolProperties : public RefCountedBase<ToolProperties> {
315   std::string Name;
316   Init* CmdLine;
317   StrVector InLanguage;
318   std::string OutLanguage;
319   std::string OutputSuffix;
320   unsigned Flags;
321   ToolOptionDescriptions OptDescs;
322
323   // Various boolean properties
324   void setSink()      { Flags |= ToolFlags::Sink; }
325   bool isSink() const { return Flags & ToolFlags::Sink; }
326   void setJoin()      { Flags |= ToolFlags::Join; }
327   bool isJoin() const { return Flags & ToolFlags::Join; }
328
329   // Default ctor here is needed because StringMap can only store
330   // DefaultConstructible objects
331   ToolProperties() : Flags(0) {}
332   ToolProperties (const std::string& n) : Name(n), Flags(0) {}
333 };
334
335
336 /// ToolPropertiesList - A list of Tool information records
337 /// IntrusiveRefCntPtrs are used here because StringMap has no copy
338 /// constructor (and we want to avoid copying ToolProperties anyway).
339 typedef std::vector<IntrusiveRefCntPtr<ToolProperties> > ToolPropertiesList;
340
341
342 /// CollectProperties - Function object for iterating over a list of
343 /// tool property records.
344 class CollectProperties {
345 private:
346
347   /// Implementation details
348
349   /// PropertyHandler - a function that extracts information
350   /// about a given tool property from its DAG representation
351   typedef void (CollectProperties::*PropertyHandler)(const DagInit*);
352
353   /// PropertyHandlerMap - A map from property names to property
354   /// handlers.
355   typedef StringMap<PropertyHandler> PropertyHandlerMap;
356
357   /// OptionPropertyHandler - a function that extracts information
358   /// about a given option property from its DAG representation.
359   typedef void (CollectProperties::* OptionPropertyHandler)
360   (const DagInit*, GlobalOptionDescription &);
361
362   /// OptionPropertyHandlerMap - A map from option property names to
363   /// option property handlers
364   typedef StringMap<OptionPropertyHandler> OptionPropertyHandlerMap;
365
366   // Static maps from strings to CollectProperties methods("handlers")
367   static PropertyHandlerMap propertyHandlers_;
368   static OptionPropertyHandlerMap optionPropertyHandlers_;
369   static bool staticMembersInitialized_;
370
371
372   /// This is where the information is stored
373
374   /// toolProps_ -  Properties of the current Tool.
375   ToolProperties& toolProps_;
376   /// optDescs_ - OptionDescriptions table (used to register options
377   /// globally).
378   GlobalOptionDescriptions& optDescs_;
379
380 public:
381
382   explicit CollectProperties (ToolProperties& p, GlobalOptionDescriptions& d)
383     : toolProps_(p), optDescs_(d)
384   {
385     if (!staticMembersInitialized_) {
386       // Init tool property handlers
387       propertyHandlers_["cmd_line"] = &CollectProperties::onCmdLine;
388       propertyHandlers_["in_language"] = &CollectProperties::onInLanguage;
389       propertyHandlers_["join"] = &CollectProperties::onJoin;
390       propertyHandlers_["out_language"] = &CollectProperties::onOutLanguage;
391       propertyHandlers_["output_suffix"] = &CollectProperties::onOutputSuffix;
392       propertyHandlers_["parameter_option"]
393         = &CollectProperties::onParameter;
394       propertyHandlers_["parameter_list_option"] =
395         &CollectProperties::onParameterList;
396       propertyHandlers_["prefix_option"] = &CollectProperties::onPrefix;
397       propertyHandlers_["prefix_list_option"] =
398         &CollectProperties::onPrefixList;
399       propertyHandlers_["sink"] = &CollectProperties::onSink;
400       propertyHandlers_["switch_option"] = &CollectProperties::onSwitch;
401
402       // Init option property handlers
403       optionPropertyHandlers_["append_cmd"] = &CollectProperties::onAppendCmd;
404       optionPropertyHandlers_["forward"] = &CollectProperties::onForward;
405       optionPropertyHandlers_["help"] = &CollectProperties::onHelp;
406       optionPropertyHandlers_["output_suffix"] =
407         &CollectProperties::onOutputSuffixOptionProp;
408       optionPropertyHandlers_["required"] = &CollectProperties::onRequired;
409       optionPropertyHandlers_["stop_compilation"] =
410         &CollectProperties::onStopCompilation;
411       optionPropertyHandlers_["unpack_values"] =
412         &CollectProperties::onUnpackValues;
413
414       staticMembersInitialized_ = true;
415     }
416   }
417
418   /// operator() - Gets called for every tool property; Just forwards
419   /// to the corresponding property handler.
420   void operator() (Init* i) {
421     const DagInit& d = InitPtrToDag(i);
422     const std::string& property_name = d.getOperator()->getAsString();
423     PropertyHandlerMap::iterator method
424       = propertyHandlers_.find(property_name);
425
426     if (method != propertyHandlers_.end()) {
427       PropertyHandler h = method->second;
428       (this->*h)(&d);
429     }
430     else {
431       throw "Unknown tool property: " + property_name + "!";
432     }
433   }
434
435 private:
436
437   /// Property handlers --
438   /// Functions that extract information about tool properties from
439   /// DAG representation.
440
441   void onCmdLine (const DagInit* d) {
442     checkNumberOfArguments(d, 1);
443     toolProps_.CmdLine = d->getArg(0);
444   }
445
446   void onInLanguage (const DagInit* d) {
447     checkNumberOfArguments(d, 1);
448     Init* arg = d->getArg(0);
449
450     // Find out the argument's type.
451     if (typeid(*arg) == typeid(StringInit)) {
452       // It's a string.
453       toolProps_.InLanguage.push_back(InitPtrToString(arg));
454     }
455     else {
456       // It's a list.
457       const ListInit& lst = InitPtrToList(arg);
458       StrVector& out = toolProps_.InLanguage;
459
460       // Copy strings to the output vector.
461       for (ListInit::const_iterator B = lst.begin(), E = lst.end();
462            B != E; ++B) {
463         out.push_back(InitPtrToString(*B));
464       }
465
466       // Remove duplicates.
467       std::sort(out.begin(), out.end());
468       StrVector::iterator newE = std::unique(out.begin(), out.end());
469       out.erase(newE, out.end());
470     }
471   }
472
473   void onJoin (const DagInit* d) {
474     checkNumberOfArguments(d, 0);
475     toolProps_.setJoin();
476   }
477
478   void onOutLanguage (const DagInit* d) {
479     checkNumberOfArguments(d, 1);
480     toolProps_.OutLanguage = InitPtrToString(d->getArg(0));
481   }
482
483   void onOutputSuffix (const DagInit* d) {
484     checkNumberOfArguments(d, 1);
485     toolProps_.OutputSuffix = InitPtrToString(d->getArg(0));
486   }
487
488   void onSink (const DagInit* d) {
489     checkNumberOfArguments(d, 0);
490     optDescs_.HasSink = true;
491     toolProps_.setSink();
492   }
493
494   void onSwitch (const DagInit* d) {
495     addOption(d, OptionType::Switch);
496   }
497
498   void onParameter (const DagInit* d) {
499     addOption(d, OptionType::Parameter);
500   }
501
502   void onParameterList (const DagInit* d) {
503     addOption(d, OptionType::ParameterList);
504   }
505
506   void onPrefix (const DagInit* d) {
507     addOption(d, OptionType::Prefix);
508   }
509
510   void onPrefixList (const DagInit* d) {
511     addOption(d, OptionType::PrefixList);
512   }
513
514   /// Option property handlers --
515   /// Methods that handle properties that are common for all types of
516   /// options (like append_cmd, stop_compilation)
517
518   void onAppendCmd (const DagInit* d, GlobalOptionDescription& o) {
519     checkNumberOfArguments(d, 1);
520     const std::string& cmd = InitPtrToString(d->getArg(0));
521
522     toolProps_.OptDescs[o.Name].AddProperty(OptionPropertyType::AppendCmd, cmd);
523   }
524
525   void onOutputSuffixOptionProp (const DagInit* d, GlobalOptionDescription& o) {
526     checkNumberOfArguments(d, 1);
527     const std::string& suf = InitPtrToString(d->getArg(0));
528
529     if (toolProps_.OptDescs[o.Name].Type != OptionType::Switch)
530       throw "Option " + o.Name
531         + " can't have 'output_suffix' property since it isn't a switch!";
532
533     toolProps_.OptDescs[o.Name].AddProperty
534       (OptionPropertyType::OutputSuffix, suf);
535   }
536
537   void onForward (const DagInit* d, GlobalOptionDescription& o) {
538     checkNumberOfArguments(d, 0);
539     toolProps_.OptDescs[o.Name].setForward();
540   }
541
542   void onHelp (const DagInit* d, GlobalOptionDescription& o) {
543     checkNumberOfArguments(d, 1);
544     const std::string& help_message = InitPtrToString(d->getArg(0));
545
546     o.Help = help_message;
547   }
548
549   void onRequired (const DagInit* d, GlobalOptionDescription& o) {
550     checkNumberOfArguments(d, 0);
551     o.setRequired();
552   }
553
554   void onStopCompilation (const DagInit* d, GlobalOptionDescription& o) {
555     checkNumberOfArguments(d, 0);
556     if (o.Type != OptionType::Switch)
557       throw std::string("Only options of type Switch can stop compilation!");
558     toolProps_.OptDescs[o.Name].setStopCompilation();
559   }
560
561   void onUnpackValues (const DagInit* d, GlobalOptionDescription& o) {
562     checkNumberOfArguments(d, 0);
563     toolProps_.OptDescs[o.Name].setUnpackValues();
564   }
565
566   /// Helper functions
567
568   // Add an option of type t
569   void addOption (const DagInit* d, OptionType::OptionType t) {
570     checkNumberOfArguments(d, 2);
571     const std::string& name = InitPtrToString(d->getArg(0));
572
573     GlobalOptionDescription o(t, name);
574     toolProps_.OptDescs[name].Type = t;
575     toolProps_.OptDescs[name].Name = name;
576     processOptionProperties(d, o);
577     insertDescription(o);
578   }
579
580   // Insert new GlobalOptionDescription into GlobalOptionDescriptions list
581   void insertDescription (const GlobalOptionDescription& o)
582   {
583     if (optDescs_.Descriptions.count(o.Name)) {
584       GlobalOptionDescription& D = optDescs_.Descriptions[o.Name];
585       D.Merge(o);
586     }
587     else {
588       optDescs_.Descriptions[o.Name] = o;
589     }
590   }
591
592   /// processOptionProperties - Go through the list of option
593   /// properties and call a corresponding handler for each.
594   ///
595   /// Parameters:
596   /// name - option name
597   /// d - option property list
598   void processOptionProperties (const DagInit* d, GlobalOptionDescription& o) {
599     // First argument is option name
600     checkNumberOfArguments(d, 2);
601
602     for (unsigned B = 1, E = d->getNumArgs(); B!=E; ++B) {
603       const DagInit& option_property
604         = InitPtrToDag(d->getArg(B));
605       const std::string& option_property_name
606         = option_property.getOperator()->getAsString();
607       OptionPropertyHandlerMap::iterator method
608         = optionPropertyHandlers_.find(option_property_name);
609
610       if (method != optionPropertyHandlers_.end()) {
611         OptionPropertyHandler h = method->second;
612         (this->*h)(&option_property, o);
613       }
614       else {
615         throw "Unknown option property: " + option_property_name + "!";
616       }
617     }
618   }
619 };
620
621 // Static members of CollectProperties
622 CollectProperties::PropertyHandlerMap
623 CollectProperties::propertyHandlers_;
624
625 CollectProperties::OptionPropertyHandlerMap
626 CollectProperties::optionPropertyHandlers_;
627
628 bool CollectProperties::staticMembersInitialized_ = false;
629
630
631 /// CollectToolProperties - Gather information from the parsed
632 /// TableGen data (basically a wrapper for the CollectProperties
633 /// function object).
634 void CollectToolProperties (RecordVector::const_iterator B,
635                             RecordVector::const_iterator E,
636                             ToolPropertiesList& TPList,
637                             GlobalOptionDescriptions& OptDescs)
638 {
639   // Iterate over a properties list of every Tool definition
640   for (;B!=E;++B) {
641     RecordVector::value_type T = *B;
642     ListInit* PropList = T->getValueAsListInit("properties");
643
644     IntrusiveRefCntPtr<ToolProperties>
645       ToolProps(new ToolProperties(T->getName()));
646
647     std::for_each(PropList->begin(), PropList->end(),
648                   CollectProperties(*ToolProps, OptDescs));
649     TPList.push_back(ToolProps);
650   }
651 }
652
653 /// EmitCaseTest1Arg - Helper function used by
654 /// EmitCaseConstructHandler.
655 bool EmitCaseTest1Arg(const std::string& TestName,
656                       const DagInit& d,
657                       const GlobalOptionDescriptions& OptDescs,
658                       std::ostream& O) {
659   checkNumberOfArguments(&d, 1);
660   const std::string& OptName = InitPtrToString(d.getArg(0));
661   if (TestName == "switch_on") {
662     const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
663     if (OptDesc.Type != OptionType::Switch)
664       throw OptName + ": incorrect option type!";
665     O << OptDesc.GenVariableName();
666     return true;
667   } else if (TestName == "input_languages_contain") {
668     O << "InLangs.count(\"" << OptName << "\") != 0";
669     return true;
670   } else if (TestName == "in_language") {
671     // Works only for cmd_line!
672     O << "GetLanguage(inFile) == \"" << OptName << '\"';
673     return true;
674   } else if (TestName == "not_empty") {
675     const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
676     if (OptDesc.Type == OptionType::Switch)
677       throw OptName + ": incorrect option type!";
678     O << '!' << OptDesc.GenVariableName() << ".empty()";
679     return true;
680   }
681
682   return false;
683 }
684
685 /// EmitCaseTest2Args - Helper function used by
686 /// EmitCaseConstructHandler.
687 bool EmitCaseTest2Args(const std::string& TestName,
688                        const DagInit& d,
689                        const char* IndentLevel,
690                        const GlobalOptionDescriptions& OptDescs,
691                        std::ostream& O) {
692   checkNumberOfArguments(&d, 2);
693   const std::string& OptName = InitPtrToString(d.getArg(0));
694   const std::string& OptArg = InitPtrToString(d.getArg(1));
695   const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
696
697   if (TestName == "parameter_equals") {
698     if (OptDesc.Type != OptionType::Parameter
699         && OptDesc.Type != OptionType::Prefix)
700       throw OptName + ": incorrect option type!";
701     O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
702     return true;
703   }
704   else if (TestName == "element_in_list") {
705     if (OptDesc.Type != OptionType::ParameterList
706         && OptDesc.Type != OptionType::PrefixList)
707       throw OptName + ": incorrect option type!";
708     const std::string& VarName = OptDesc.GenVariableName();
709     O << "std::find(" << VarName << ".begin(),\n"
710       << IndentLevel << Indent1 << VarName << ".end(), \""
711       << OptArg << "\") != " << VarName << ".end()";
712     return true;
713   }
714
715   return false;
716 }
717
718 // Forward declaration.
719 // EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
720 void EmitCaseTest(const DagInit& d, const char* IndentLevel,
721                   const GlobalOptionDescriptions& OptDescs,
722                   std::ostream& O);
723
724 /// EmitLogicalOperationTest - Helper function used by
725 /// EmitCaseConstructHandler.
726 void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
727                               const char* IndentLevel,
728                               const GlobalOptionDescriptions& OptDescs,
729                               std::ostream& O) {
730   O << '(';
731   for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
732     const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
733     EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
734     if (j != NumArgs - 1)
735       O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
736     else
737       O << ')';
738   }
739 }
740
741 /// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
742 void EmitCaseTest(const DagInit& d, const char* IndentLevel,
743                   const GlobalOptionDescriptions& OptDescs,
744                   std::ostream& O) {
745   const std::string& TestName = d.getOperator()->getAsString();
746
747   if (TestName == "and")
748     EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
749   else if (TestName == "or")
750     EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
751   else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
752     return;
753   else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
754     return;
755   else
756     throw TestName + ": unknown edge property!";
757 }
758
759 // Emit code that handles the 'case' construct.
760 // Takes a function object that should emit code for every case clause.
761 // Callback's type is
762 // void F(Init* Statement, const char* IndentLevel, std::ostream& O).
763 template <typename F>
764 void EmitCaseConstructHandler(const DagInit* d, const char* IndentLevel,
765                               const F& Callback,
766                               const GlobalOptionDescriptions& OptDescs,
767                               std::ostream& O) {
768   assert(d->getOperator()->getAsString() == "case");
769
770   unsigned numArgs = d->getNumArgs();
771   if (d->getNumArgs() < 2)
772     throw "There should be at least one clause in the 'case' expression:\n"
773       + d->getAsString();
774
775   for (unsigned i = 0; i != numArgs; ++i) {
776     const DagInit& Test = InitPtrToDag(d->getArg(i));
777
778     // Emit the test.
779     if (Test.getOperator()->getAsString() == "default") {
780       if (i+2 != numArgs)
781         throw std::string("The 'default' clause should be the last in the"
782                           "'case' construct!");
783       O << IndentLevel << "else {\n";
784     }
785     else {
786       O << IndentLevel << "if (";
787       EmitCaseTest(Test, IndentLevel, OptDescs, O);
788       O << ") {\n";
789     }
790
791     // Emit the corresponding statement.
792     ++i;
793     if (i == numArgs)
794       throw "Case construct handler: no corresponding action "
795         "found for the test " + Test.getAsString() + '!';
796
797     Callback(d->getArg(i), IndentLevel, O);
798     O << IndentLevel << "}\n";
799   }
800 }
801
802 /// EmitForwardOptionPropertyHandlingCode - Helper function used to
803 /// implement EmitOptionPropertyHandlingCode(). Emits code for
804 /// handling the (forward) option property.
805 void EmitForwardOptionPropertyHandlingCode (const ToolOptionDescription& D,
806                                             std::ostream& O) {
807   switch (D.Type) {
808   case OptionType::Switch:
809     O << Indent3 << "vec.push_back(\"-" << D.Name << "\");\n";
810     break;
811   case OptionType::Parameter:
812     O << Indent3 << "vec.push_back(\"-" << D.Name << "\");\n";
813     O << Indent3 << "vec.push_back(" << D.GenVariableName() << ");\n";
814     break;
815   case OptionType::Prefix:
816     O << Indent3 << "vec.push_back(\"-" << D.Name << "\" + "
817       << D.GenVariableName() << ");\n";
818     break;
819   case OptionType::PrefixList:
820     O << Indent3 << "for (" << D.GenTypeDeclaration()
821       << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
822       << Indent3 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n"
823       << Indent4 << "vec.push_back(\"-" << D.Name << "\" + "
824       << "*B);\n";
825     break;
826   case OptionType::ParameterList:
827     O << Indent3 << "for (" << D.GenTypeDeclaration()
828       << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
829       << Indent3 << "E = " << D.GenVariableName()
830       << ".end() ; B != E; ++B) {\n"
831       << Indent4 << "vec.push_back(\"-" << D.Name << "\");\n"
832       << Indent4 << "vec.push_back(*B);\n"
833       << Indent3 << "}\n";
834     break;
835   }
836 }
837
838 // ToolOptionHasInterestingProperties - A helper function used by
839 // EmitOptionPropertyHandlingCode() that tells us whether we should
840 // emit any property handling code at all.
841 bool ToolOptionHasInterestingProperties(const ToolOptionDescription& D) {
842   bool ret = false;
843   for (OptionPropertyList::const_iterator B = D.Props.begin(),
844          E = D.Props.end(); B != E; ++B) {
845       const OptionProperty& OptProp = *B;
846       if (OptProp.first == OptionPropertyType::AppendCmd)
847         ret = true;
848     }
849   if (D.isForward() || D.isUnpackValues())
850     ret = true;
851   return ret;
852 }
853
854 /// EmitOptionPropertyHandlingCode - Helper function used by
855 /// EmitGenerateActionMethod(). Emits code that handles option
856 /// properties.
857 void EmitOptionPropertyHandlingCode (const ToolOptionDescription& D,
858                                      std::ostream& O)
859 {
860   if (!ToolOptionHasInterestingProperties(D))
861     return;
862   // Start of the if-clause.
863   O << Indent2 << "if (";
864   if (D.Type == OptionType::Switch)
865     O << D.GenVariableName();
866   else
867     O << '!' << D.GenVariableName() << ".empty()";
868
869   O <<") {\n";
870
871   // Handle option properties that take an argument.
872   for (OptionPropertyList::const_iterator B = D.Props.begin(),
873         E = D.Props.end(); B!=E; ++B) {
874     const OptionProperty& val = *B;
875
876     switch (val.first) {
877       // (append_cmd cmd) property
878     case OptionPropertyType::AppendCmd:
879       O << Indent3 << "vec.push_back(\"" << val.second << "\");\n";
880       break;
881       // Other properties with argument
882     default:
883       break;
884     }
885   }
886
887   // Handle flags
888
889   // (forward) property
890   if (D.isForward())
891     EmitForwardOptionPropertyHandlingCode(D, O);
892
893   // (unpack_values) property
894   if (D.isUnpackValues()) {
895     if (IsListOptionType(D.Type)) {
896       O << Indent3 << "for (" << D.GenTypeDeclaration()
897         << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
898         << Indent3 << "E = " << D.GenVariableName()
899         << ".end(); B != E; ++B)\n"
900         << Indent4 << "llvm::SplitString(*B, vec, \",\");\n";
901     }
902     else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
903       O << Indent3 << "llvm::SplitString("
904         << D.GenVariableName() << ", vec, \",\");\n";
905     }
906     else {
907       throw std::string("Switches can't have unpack_values property!");
908     }
909   }
910
911   // End of the if-clause.
912   O << Indent2 << "}\n";
913 }
914
915 /// SubstituteSpecialCommands - Perform string substitution for $CALL
916 /// and $ENV. Helper function used by EmitCmdLineVecFill().
917 std::string SubstituteSpecialCommands(const std::string& cmd) {
918   size_t cparen = cmd.find(")");
919   std::string ret;
920
921   if (cmd.find("$CALL(") == 0) {
922     if (cmd.size() == 6)
923       throw std::string("$CALL invocation: empty argument list!");
924
925     ret += "hooks::";
926     ret += std::string(cmd.begin() + 6, cmd.begin() + cparen);
927     ret += "()";
928   }
929   else if (cmd.find("$ENV(") == 0) {
930     if (cmd.size() == 5)
931       throw std::string("$ENV invocation: empty argument list!");
932
933     ret += "std::getenv(\"";
934     ret += std::string(cmd.begin() + 5, cmd.begin() + cparen);
935     ret += "\")";
936   }
937   else {
938     throw "Unknown special command: " + cmd;
939   }
940
941   if (cmd.begin() + cparen + 1 != cmd.end()) {
942     ret += " + std::string(\"";
943     ret += (cmd.c_str() + cparen + 1);
944     ret += "\")";
945   }
946
947   return ret;
948 }
949
950 /// EmitCmdLineVecFill - Emit code that fills in the command line
951 /// vector. Helper function used by EmitGenerateActionMethod().
952 void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
953                         bool Version, const char* IndentLevel,
954                         std::ostream& O) {
955   StrVector StrVec;
956   SplitString(InitPtrToString(CmdLine), StrVec);
957   if (StrVec.empty())
958     throw "Tool " + ToolName + " has empty command line!";
959
960   StrVector::const_iterator I = StrVec.begin();
961   ++I;
962   for (StrVector::const_iterator E = StrVec.end(); I != E; ++I) {
963     const std::string& cmd = *I;
964     O << IndentLevel;
965     if (cmd.at(0) == '$') {
966       if (cmd == "$INFILE") {
967         if (Version)
968           O << "for (PathVector::const_iterator B = inFiles.begin()"
969             << ", E = inFiles.end();\n"
970             << IndentLevel << "B != E; ++B)\n"
971             << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
972         else
973           O << "vec.push_back(inFile.toString());\n";
974       }
975       else if (cmd == "$OUTFILE") {
976         O << "vec.push_back(outFile.toString());\n";
977       }
978       else {
979         O << "vec.push_back(" << SubstituteSpecialCommands(cmd);
980         O << ");\n";
981       }
982     }
983     else {
984       O << "vec.push_back(\"" << cmd << "\");\n";
985     }
986   }
987   O << IndentLevel << "ret = Action("
988     << ((StrVec[0][0] == '$') ? SubstituteSpecialCommands(StrVec[0])
989         : "\"" + StrVec[0] + "\"")
990     << ", vec);\n";
991 }
992
993 /// EmitCmdLineVecFillCallback - A function object wrapper around
994 /// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
995 /// argument to EmitCaseConstructHandler().
996 class EmitCmdLineVecFillCallback {
997   bool Version;
998   const std::string& ToolName;
999  public:
1000   EmitCmdLineVecFillCallback(bool Ver, const std::string& TN)
1001     : Version(Ver), ToolName(TN) {}
1002
1003   void operator()(const Init* Statement, const char* IndentLevel,
1004                   std::ostream& O) const
1005   {
1006     EmitCmdLineVecFill(Statement, ToolName, Version,
1007                        (std::string(IndentLevel) + Indent1).c_str(), O);
1008   }
1009 };
1010
1011 // EmitGenerateActionMethod - Emit one of two versions of the
1012 // Tool::GenerateAction() method.
1013 void EmitGenerateActionMethod (const ToolProperties& P,
1014                                const GlobalOptionDescriptions& OptDescs,
1015                                bool Version, std::ostream& O) {
1016   if (Version)
1017     O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1018   else
1019     O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1020
1021   O << Indent2 << "const sys::Path& outFile,\n"
1022     << Indent2 << "const InputLanguagesSet& InLangs) const\n"
1023     << Indent1 << "{\n"
1024     << Indent2 << "Action ret;\n"
1025     << Indent2 << "std::vector<std::string> vec;\n";
1026
1027   // cmd_line is either a string or a 'case' construct.
1028   if (typeid(*P.CmdLine) == typeid(StringInit))
1029     EmitCmdLineVecFill(P.CmdLine, P.Name, Version, Indent2, O);
1030   else
1031     EmitCaseConstructHandler(&InitPtrToDag(P.CmdLine), Indent2,
1032                              EmitCmdLineVecFillCallback(Version, P.Name),
1033                              OptDescs, O);
1034
1035   // For every understood option, emit handling code.
1036   for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1037         E = P.OptDescs.end(); B != E; ++B) {
1038     const ToolOptionDescription& val = B->second;
1039     EmitOptionPropertyHandlingCode(val, O);
1040   }
1041
1042   // Handle the Sink property.
1043   if (P.isSink()) {
1044     O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1045       << Indent3 << "vec.insert(vec.end(), "
1046       << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1047       << Indent2 << "}\n";
1048   }
1049
1050   O << Indent2 << "return ret;\n"
1051     << Indent1 << "}\n\n";
1052 }
1053
1054 /// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1055 /// a given Tool class.
1056 void EmitGenerateActionMethods (const ToolProperties& P,
1057                                 const GlobalOptionDescriptions& OptDescs,
1058                                 std::ostream& O) {
1059   if (!P.isJoin())
1060     O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
1061       << Indent2 << "const llvm::sys::Path& outFile,\n"
1062       << Indent2 << "const InputLanguagesSet& InLangs) const\n"
1063       << Indent1 << "{\n"
1064       << Indent2 << "throw std::runtime_error(\"" << P.Name
1065       << " is not a Join tool!\");\n"
1066       << Indent1 << "}\n\n";
1067   else
1068     EmitGenerateActionMethod(P, OptDescs, true, O);
1069
1070   EmitGenerateActionMethod(P, OptDescs, false, O);
1071 }
1072
1073 /// EmitIsLastMethod - Emit the IsLast() method for a given Tool
1074 /// class.
1075 void EmitIsLastMethod (const ToolProperties& P, std::ostream& O) {
1076   O << Indent1 << "bool IsLast() const {\n"
1077     << Indent2 << "bool last = false;\n";
1078
1079   for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1080         E = P.OptDescs.end(); B != E; ++B) {
1081     const ToolOptionDescription& val = B->second;
1082
1083     if (val.isStopCompilation())
1084       O << Indent2
1085         << "if (" << val.GenVariableName()
1086         << ")\n" << Indent3 << "last = true;\n";
1087   }
1088
1089   O << Indent2 << "return last;\n"
1090     << Indent1 <<  "}\n\n";
1091 }
1092
1093 /// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1094 /// methods for a given Tool class.
1095 void EmitInOutLanguageMethods (const ToolProperties& P, std::ostream& O) {
1096   O << Indent1 << "StrVector InputLanguages() const {\n"
1097     << Indent2 << "StrVector ret;\n";
1098
1099   for (StrVector::const_iterator B = P.InLanguage.begin(),
1100          E = P.InLanguage.end(); B != E; ++B) {
1101     O << Indent2 << "ret.push_back(\"" << *B << "\");\n";
1102   }
1103
1104   O << Indent2 << "return ret;\n"
1105     << Indent1 << "}\n\n";
1106
1107   O << Indent1 << "const char* OutputLanguage() const {\n"
1108     << Indent2 << "return \"" << P.OutLanguage << "\";\n"
1109     << Indent1 << "}\n\n";
1110 }
1111
1112 /// EmitOutputSuffixMethod - Emit the OutputSuffix() method for a
1113 /// given Tool class.
1114 void EmitOutputSuffixMethod (const ToolProperties& P, std::ostream& O) {
1115   O << Indent1 << "const char* OutputSuffix() const {\n"
1116     << Indent2 << "const char* ret = \"" << P.OutputSuffix << "\";\n";
1117
1118   for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1119          E = P.OptDescs.end(); B != E; ++B) {
1120     const ToolOptionDescription& OptDesc = B->second;
1121     for (OptionPropertyList::const_iterator B = OptDesc.Props.begin(),
1122            E = OptDesc.Props.end(); B != E; ++B) {
1123       const OptionProperty& OptProp = *B;
1124       if (OptProp.first == OptionPropertyType::OutputSuffix) {
1125         O << Indent2 << "if (" << OptDesc.GenVariableName() << ")\n"
1126           << Indent3 << "ret = \"" << OptProp.second << "\";\n";
1127       }
1128     }
1129   }
1130
1131   O << Indent2 << "return ret;\n"
1132     << Indent1 << "}\n\n";
1133 }
1134
1135 /// EmitNameMethod - Emit the Name() method for a given Tool class.
1136 void EmitNameMethod (const ToolProperties& P, std::ostream& O) {
1137   O << Indent1 << "const char* Name() const {\n"
1138     << Indent2 << "return \"" << P.Name << "\";\n"
1139     << Indent1 << "}\n\n";
1140 }
1141
1142 /// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1143 /// class.
1144 void EmitIsJoinMethod (const ToolProperties& P, std::ostream& O) {
1145   O << Indent1 << "bool IsJoin() const {\n";
1146   if (P.isJoin())
1147     O << Indent2 << "return true;\n";
1148   else
1149     O << Indent2 << "return false;\n";
1150   O << Indent1 << "}\n\n";
1151 }
1152
1153 /// EmitToolClassDefinition - Emit a Tool class definition.
1154 void EmitToolClassDefinition (const ToolProperties& P,
1155                               const GlobalOptionDescriptions& OptDescs,
1156                               std::ostream& O) {
1157   if (P.Name == "root")
1158     return;
1159
1160   // Header
1161   O << "class " << P.Name << " : public ";
1162   if (P.isJoin())
1163     O << "JoinTool";
1164   else
1165     O << "Tool";
1166   O << " {\npublic:\n";
1167
1168   EmitNameMethod(P, O);
1169   EmitInOutLanguageMethods(P, O);
1170   EmitOutputSuffixMethod(P, O);
1171   EmitIsJoinMethod(P, O);
1172   EmitGenerateActionMethods(P, OptDescs, O);
1173   EmitIsLastMethod(P, O);
1174
1175   // Close class definition
1176   O << "};\n\n";
1177 }
1178
1179 /// EmitOptionDescriptions - Iterate over a list of option
1180 /// descriptions and emit registration code.
1181 void EmitOptionDescriptions (const GlobalOptionDescriptions& descs,
1182                              std::ostream& O)
1183 {
1184   // Emit static cl::Option variables
1185   for (GlobalOptionDescriptions::const_iterator B = descs.begin(),
1186          E = descs.end(); B!=E; ++B) {
1187     const GlobalOptionDescription& val = B->second;
1188
1189     O << val.GenTypeDeclaration() << ' '
1190       << val.GenVariableName()
1191       << "(\"" << val.Name << '\"';
1192
1193     if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1194       O << ", cl::Prefix";
1195
1196     if (val.isRequired()) {
1197       switch (val.Type) {
1198       case OptionType::PrefixList:
1199       case OptionType::ParameterList:
1200         O << ", cl::OneOrMore";
1201         break;
1202       default:
1203         O << ", cl::Required";
1204       }
1205     }
1206
1207     O << ", cl::desc(\"" << val.Help << "\"));\n";
1208   }
1209
1210   if (descs.HasSink)
1211     O << "cl::list<std::string> " << SinkOptionName << "(cl::Sink);\n";
1212
1213   O << '\n';
1214 }
1215
1216 /// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
1217 void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1218 {
1219   // Get the relevant field out of RecordKeeper
1220   Record* LangMapRecord = Records.getDef("LanguageMap");
1221   if (!LangMapRecord)
1222     throw std::string("Language map definition not found!");
1223
1224   ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1225   if (!LangsToSuffixesList)
1226     throw std::string("Error in the language map definition!");
1227
1228   // Generate code
1229   O << "void llvmc::PopulateLanguageMap() {\n";
1230
1231   for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
1232     Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
1233
1234     const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1235     const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1236
1237     for (unsigned i = 0; i < Suffixes->size(); ++i)
1238       O << Indent1 << "GlobalLanguageMap[\""
1239         << InitPtrToString(Suffixes->getElement(i))
1240         << "\"] = \"" << Lang << "\";\n";
1241   }
1242
1243   O << "}\n\n";
1244 }
1245
1246 /// FillInToolToLang - Fills in two tables that map tool names to
1247 /// (input, output) languages.  Used by the typechecker.
1248 void FillInToolToLang (const ToolPropertiesList& TPList,
1249                        StringMap<StringSet<> >& ToolToInLang,
1250                        StringMap<std::string>& ToolToOutLang) {
1251   for (ToolPropertiesList::const_iterator B = TPList.begin(), E = TPList.end();
1252        B != E; ++B) {
1253     const ToolProperties& P = *(*B);
1254     for (StrVector::const_iterator B = P.InLanguage.begin(),
1255            E = P.InLanguage.end(); B != E; ++B)
1256       ToolToInLang[P.Name].insert(*B);
1257     ToolToOutLang[P.Name] = P.OutLanguage;
1258   }
1259 }
1260
1261 /// TypecheckGraph - Check that names for output and input languages
1262 /// on all edges do match.
1263 // TOFIX: It would be nice if this function also checked for cycles
1264 // and multiple default edges in the graph (better error
1265 // reporting). Unfortunately, it is awkward to do right now because
1266 // our intermediate representation is not sufficiently
1267 // sofisticated. Algorithms like these should be run on a real graph
1268 // instead of AST.
1269 void TypecheckGraph (Record* CompilationGraph,
1270                      const ToolPropertiesList& TPList) {
1271   StringMap<StringSet<> > ToolToInLang;
1272   StringMap<std::string> ToolToOutLang;
1273
1274   FillInToolToLang(TPList, ToolToInLang, ToolToOutLang);
1275   ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1276   StringMap<std::string>::iterator IAE = ToolToOutLang.end();
1277   StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
1278
1279   for (unsigned i = 0; i < edges->size(); ++i) {
1280     Record* Edge = edges->getElementAsRecord(i);
1281     Record* A = Edge->getValueAsDef("a");
1282     Record* B = Edge->getValueAsDef("b");
1283     StringMap<std::string>::iterator IA = ToolToOutLang.find(A->getName());
1284     StringMap<StringSet<> >::iterator IB = ToolToInLang.find(B->getName());
1285     if (IA == IAE)
1286       throw A->getName() + ": no such tool!";
1287     if (IB == IBE)
1288       throw B->getName() + ": no such tool!";
1289     if (A->getName() != "root" && IB->second.count(IA->second) == 0)
1290       throw "Edge " + A->getName() + "->" + B->getName()
1291         + ": output->input language mismatch";
1292     if (B->getName() == "root")
1293       throw std::string("Edges back to the root are not allowed!");
1294   }
1295 }
1296
1297 /// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1298 /// by EmitEdgeClass().
1299 void IncDecWeight (const Init* i, const char* IndentLevel,
1300                    std::ostream& O) {
1301   const DagInit& d = InitPtrToDag(i);
1302   const std::string& OpName = d.getOperator()->getAsString();
1303
1304   if (OpName == "inc_weight")
1305     O << IndentLevel << Indent1 << "ret += ";
1306   else if (OpName == "dec_weight")
1307     O << IndentLevel << Indent1 << "ret -= ";
1308   else
1309     throw "Unknown operator in edge properties list: " + OpName + '!';
1310
1311   if (d.getNumArgs() > 0)
1312     O << InitPtrToInt(d.getArg(0)) << ";\n";
1313   else
1314     O << "2;\n";
1315
1316 }
1317
1318 /// EmitEdgeClass - Emit a single Edge# class.
1319 void EmitEdgeClass (unsigned N, const std::string& Target,
1320                     DagInit* Case, const GlobalOptionDescriptions& OptDescs,
1321                     std::ostream& O) {
1322
1323   // Class constructor.
1324   O << "class Edge" << N << ": public Edge {\n"
1325     << "public:\n"
1326     << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1327     << "\") {}\n\n"
1328
1329   // Function Weight().
1330     << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
1331     << Indent2 << "unsigned ret = 0;\n";
1332
1333   // Handle the 'case' construct.
1334   EmitCaseConstructHandler(Case, Indent2, IncDecWeight, OptDescs, O);
1335
1336   O << Indent2 << "return ret;\n"
1337     << Indent1 << "};\n\n};\n\n";
1338 }
1339
1340 /// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
1341 void EmitEdgeClasses (Record* CompilationGraph,
1342                       const GlobalOptionDescriptions& OptDescs,
1343                       std::ostream& O) {
1344   ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1345
1346   for (unsigned i = 0; i < edges->size(); ++i) {
1347     Record* Edge = edges->getElementAsRecord(i);
1348     Record* B = Edge->getValueAsDef("b");
1349     DagInit* Weight = Edge->getValueAsDag("weight");
1350
1351     if (isDagEmpty(Weight))
1352       continue;
1353
1354     EmitEdgeClass(i, B->getName(), Weight, OptDescs, O);
1355   }
1356 }
1357
1358 /// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1359 /// function.
1360 void EmitPopulateCompilationGraph (Record* CompilationGraph,
1361                                    std::ostream& O)
1362 {
1363   ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1364
1365   // Generate code
1366   O << "void llvmc::PopulateCompilationGraph(CompilationGraph& G) {\n"
1367     << Indent1 << "PopulateLanguageMap();\n\n";
1368
1369   // Insert vertices
1370
1371   RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1372   if (Tools.empty())
1373     throw std::string("No tool definitions found!");
1374
1375   for (RecordVector::iterator B = Tools.begin(), E = Tools.end(); B != E; ++B) {
1376     const std::string& Name = (*B)->getName();
1377     if (Name != "root")
1378       O << Indent1 << "G.insertNode(new "
1379         << Name << "());\n";
1380   }
1381
1382   O << '\n';
1383
1384   // Insert edges
1385   for (unsigned i = 0; i < edges->size(); ++i) {
1386     Record* Edge = edges->getElementAsRecord(i);
1387     Record* A = Edge->getValueAsDef("a");
1388     Record* B = Edge->getValueAsDef("b");
1389     DagInit* Weight = Edge->getValueAsDag("weight");
1390
1391     O << Indent1 << "G.insertEdge(\"" << A->getName() << "\", ";
1392
1393     if (isDagEmpty(Weight))
1394       O << "new SimpleEdge(\"" << B->getName() << "\")";
1395     else
1396       O << "new Edge" << i << "()";
1397
1398     O << ");\n";
1399   }
1400
1401   O << "}\n\n";
1402 }
1403
1404 /// ExtractHookNames - Extract the hook names from all instances of
1405 /// $CALL(HookName) in the provided command line string. Helper
1406 /// function used by FillInHookNames().
1407 void ExtractHookNames(const Init* CmdLine, StrVector& HookNames) {
1408   StrVector cmds;
1409   llvm::SplitString(InitPtrToString(CmdLine), cmds);
1410   for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1411        B != E; ++B) {
1412     const std::string& cmd = *B;
1413     if (cmd.find("$CALL(") == 0) {
1414       if (cmd.size() == 6)
1415         throw std::string("$CALL invocation: empty argument list!");
1416       HookNames.push_back(std::string(cmd.begin() + 6,
1417                                       cmd.begin() + cmd.find(")")));
1418     }
1419   }
1420 }
1421
1422 /// FillInHookNames - Actually extract the hook names from all command
1423 /// line strings. Helper function used by EmitHookDeclarations().
1424 void FillInHookNames(const ToolPropertiesList& TPList,
1425                      StrVector& HookNames) {
1426   for (ToolPropertiesList::const_iterator B = TPList.begin(),
1427          E = TPList.end(); B != E; ++B) {
1428     const ToolProperties& P = *(*B);
1429     if (!P.CmdLine)
1430       continue;
1431     if (typeid(*P.CmdLine) == typeid(StringInit)) {
1432       // This is a string.
1433       ExtractHookNames(P.CmdLine, HookNames);
1434     }
1435     else {
1436       // This is a 'case' construct.
1437       const DagInit& d = InitPtrToDag(P.CmdLine);
1438       bool even = false;
1439       for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
1440            B != E; ++B) {
1441         if (even)
1442           ExtractHookNames(*B, HookNames);
1443         even = !even;
1444       }
1445     }
1446   }
1447 }
1448
1449 /// EmitHookDeclarations - Parse CmdLine fields of all the tool
1450 /// property records and emit hook function declaration for each
1451 /// instance of $CALL(HookName).
1452 void EmitHookDeclarations(const ToolPropertiesList& ToolProps,
1453                           std::ostream& O) {
1454   StrVector HookNames;
1455   FillInHookNames(ToolProps, HookNames);
1456   if (HookNames.empty())
1457     return;
1458   std::sort(HookNames.begin(), HookNames.end());
1459   StrVector::const_iterator E = std::unique(HookNames.begin(), HookNames.end());
1460
1461   O << "namespace hooks {\n";
1462   for (StrVector::const_iterator B = HookNames.begin(); B != E; ++B)
1463     O << Indent1 << "std::string " << *B << "();\n";
1464
1465   O << "}\n\n";
1466 }
1467
1468 // End of anonymous namespace
1469 }
1470
1471 /// run - The back-end entry point.
1472 void LLVMCConfigurationEmitter::run (std::ostream &O) {
1473
1474   // Emit file header.
1475   EmitSourceFileHeader("LLVMC Configuration Library", O);
1476
1477   // Get a list of all defined Tools.
1478   RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1479   if (Tools.empty())
1480     throw std::string("No tool definitions found!");
1481
1482   // Gather information from the Tool description dags.
1483   ToolPropertiesList tool_props;
1484   GlobalOptionDescriptions opt_descs;
1485   CollectToolProperties(Tools.begin(), Tools.end(), tool_props, opt_descs);
1486
1487   // Emit global option registration code.
1488   EmitOptionDescriptions(opt_descs, O);
1489
1490   // Emit hook declarations.
1491   EmitHookDeclarations(tool_props, O);
1492
1493   // Emit PopulateLanguageMap() function
1494   // (a language map maps from file extensions to language names).
1495   EmitPopulateLanguageMap(Records, O);
1496
1497   // Emit Tool classes.
1498   for (ToolPropertiesList::const_iterator B = tool_props.begin(),
1499          E = tool_props.end(); B!=E; ++B)
1500     EmitToolClassDefinition(*(*B), opt_descs, O);
1501
1502   Record* CompilationGraphRecord = Records.getDef("CompilationGraph");
1503   if (!CompilationGraphRecord)
1504     throw std::string("Compilation graph description not found!");
1505
1506   // Typecheck the compilation graph.
1507   TypecheckGraph(CompilationGraphRecord, tool_props);
1508
1509   // Emit Edge# classes.
1510   EmitEdgeClasses(CompilationGraphRecord, opt_descs, O);
1511
1512   // Emit PopulateCompilationGraph() function.
1513   EmitPopulateCompilationGraph(CompilationGraphRecord, O);
1514
1515   // EOF
1516 }