blob: f73c09acce7d76059c7b6af49c2989f21ab1c313 [file] [log] [blame]
Mikhail Glushenkovfb37f392008-05-30 06:20:54 +00001//===- LLVMCConfigurationEmitter.cpp - Generate LLVMC config ----*- C++ -*-===//
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002//
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//
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +000010// This tablegen backend is responsible for emitting LLVMC configuration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
Mikhail Glushenkovecbdcf22008-05-06 18:09:29 +000014#include "LLVMCConfigurationEmitter.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000015#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"
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +000021#include "llvm/ADT/StringSet.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000022#include <algorithm>
23#include <cassert>
24#include <functional>
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +000025#include <stdexcept>
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000026#include <string>
Chris Lattner32a9e7a2008-06-04 04:46:14 +000027#include <typeinfo>
Mikhail Glushenkovaa4774c2008-11-12 00:04:46 +000028
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000029using namespace llvm;
30
Mikhail Glushenkov895820d2008-05-06 18:12:03 +000031namespace {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000032
33//===----------------------------------------------------------------------===//
34/// Typedefs
35
36typedef std::vector<Record*> RecordVector;
37typedef std::vector<std::string> StrVector;
38
39//===----------------------------------------------------------------------===//
40/// Constants
41
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +000042// Indentation.
43unsigned TabWidth = 4;
Mikhail Glushenkov9d7a2dc2009-09-28 01:15:44 +000044unsigned Indent1 = TabWidth*1;
45unsigned Indent2 = TabWidth*2;
46unsigned Indent3 = TabWidth*3;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000047
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000048// Default help string.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000049const char * DefaultHelpString = "NO HELP MESSAGE PROVIDED";
50
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000051// Name for the "sink" option.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000052const char * SinkOptionName = "AutoGeneratedSinkOption";
53
54//===----------------------------------------------------------------------===//
55/// Helper functions
56
Mikhail Glushenkovf9152532008-12-07 16:41:11 +000057/// Id - An 'identity' function object.
58struct Id {
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +000059 template<typename T0>
60 void operator()(const T0&) const {
61 }
62 template<typename T0, typename T1>
63 void operator()(const T0&, const T1&) const {
64 }
65 template<typename T0, typename T1, typename T2>
66 void operator()(const T0&, const T1&, const T2&) const {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +000067 }
68};
69
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +000070int InitPtrToInt(const Init* ptr) {
71 const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
Mikhail Glushenkov29063552008-05-06 18:18:20 +000072 return val.getValue();
73}
74
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +000075const std::string& InitPtrToString(const Init* ptr) {
76 const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
77 return val.getValue();
78}
79
80const ListInit& InitPtrToList(const Init* ptr) {
81 const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
82 return val;
83}
84
85const DagInit& InitPtrToDag(const Init* ptr) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +000086 const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
Mikhail Glushenkov29063552008-05-06 18:18:20 +000087 return val;
88}
89
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +000090const std::string GetOperatorName(const DagInit* D) {
91 return D->getOperator()->getAsString();
92}
93
94const std::string GetOperatorName(const DagInit& D) {
95 return GetOperatorName(&D);
96}
97
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000098// checkNumberOfArguments - Ensure that the number of args in d is
Mikhail Glushenkovb7970002009-07-07 16:07:36 +000099// greater than or equal to min_arguments, otherwise throw an exception.
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000100void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000101 if (!d || d->getNumArgs() < min_arguments)
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000102 throw GetOperatorName(d) + ": too few arguments!";
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000103}
104
Mikhail Glushenkove5557f42008-05-30 06:08:50 +0000105// isDagEmpty - is this DAG marked with an empty marker?
106bool isDagEmpty (const DagInit* d) {
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000107 return GetOperatorName(d) == "empty_dag_marker";
Mikhail Glushenkove5557f42008-05-30 06:08:50 +0000108}
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000109
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000110// EscapeVariableName - Escape commas and other symbols not allowed
111// in the C++ variable names. Makes it possible to use options named
112// like "Wa," (useful for prefix options).
113std::string EscapeVariableName(const std::string& Var) {
114 std::string ret;
115 for (unsigned i = 0; i != Var.size(); ++i) {
116 char cur_char = Var[i];
117 if (cur_char == ',') {
118 ret += "_comma_";
119 }
120 else if (cur_char == '+') {
121 ret += "_plus_";
122 }
123 else if (cur_char == '-') {
124 ret += "_dash_";
125 }
126 else {
127 ret.push_back(cur_char);
128 }
129 }
130 return ret;
131}
132
Mikhail Glushenkova298bb72009-01-21 13:04:00 +0000133/// oneOf - Does the input string contain this character?
134bool oneOf(const char* lst, char c) {
135 while (*lst) {
136 if (*lst++ == c)
137 return true;
138 }
139 return false;
140}
141
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000142template <class I, class S>
143void checkedIncrement(I& P, I E, S ErrorString) {
144 ++P;
145 if (P == E)
146 throw ErrorString;
147}
148
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000149//===----------------------------------------------------------------------===//
150/// Back-end specific code
151
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000152
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000153/// OptionType - One of six different option types. See the
154/// documentation for detailed description of differences.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000155namespace OptionType {
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +0000156
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000157 enum OptionType { Alias, Switch, Parameter, ParameterList,
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000158 Prefix, PrefixList};
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000159
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +0000160 bool IsList (OptionType t) {
161 return (t == ParameterList || t == PrefixList);
162 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000163
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +0000164 bool IsSwitch (OptionType t) {
165 return (t == Switch);
166 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000167
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +0000168 bool IsParameter (OptionType t) {
169 return (t == Parameter || t == Prefix);
170 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000171
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000172}
173
174OptionType::OptionType stringToOptionType(const std::string& T) {
175 if (T == "alias_option")
176 return OptionType::Alias;
177 else if (T == "switch_option")
178 return OptionType::Switch;
179 else if (T == "parameter_option")
180 return OptionType::Parameter;
181 else if (T == "parameter_list_option")
182 return OptionType::ParameterList;
183 else if (T == "prefix_option")
184 return OptionType::Prefix;
185 else if (T == "prefix_list_option")
186 return OptionType::PrefixList;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000187 else
188 throw "Unknown option type: " + T + '!';
189}
190
191namespace OptionDescriptionFlags {
192 enum OptionDescriptionFlags { Required = 0x1, Hidden = 0x2,
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000193 ReallyHidden = 0x4, Extern = 0x8,
194 OneOrMore = 0x10, ZeroOrOne = 0x20 };
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000195}
196
197/// OptionDescription - Represents data contained in a single
198/// OptionList entry.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000199struct OptionDescription {
200 OptionType::OptionType Type;
201 std::string Name;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000202 unsigned Flags;
203 std::string Help;
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000204 unsigned MultiVal;
Mikhail Glushenkov8fe44472009-07-07 16:08:41 +0000205 Init* InitVal;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000206
207 OptionDescription(OptionType::OptionType t = OptionType::Switch,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000208 const std::string& n = "",
209 const std::string& h = DefaultHelpString)
Mikhail Glushenkov8fe44472009-07-07 16:08:41 +0000210 : Type(t), Name(n), Flags(0x0), Help(h), MultiVal(1), InitVal(0)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000211 {}
212
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000213 /// GenTypeDeclaration - Returns the C++ variable type of this
214 /// option.
215 const char* GenTypeDeclaration() const;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000216
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000217 /// GenVariableName - Returns the variable name used in the
218 /// generated C++ code.
219 std::string GenVariableName() const;
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000220
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000221 /// Merge - Merge two option descriptions.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000222 void Merge (const OptionDescription& other);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000223
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000224 // Misc convenient getters/setters.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000225
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000226 bool isAlias() const;
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000227
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000228 bool isMultiVal() const;
229
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000230 bool isExtern() const;
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000231 void setExtern();
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000232
233 bool isRequired() const;
234 void setRequired();
235
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000236 bool isOneOrMore() const;
237 void setOneOrMore();
238
239 bool isZeroOrOne() const;
240 void setZeroOrOne();
241
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000242 bool isHidden() const;
243 void setHidden();
244
245 bool isReallyHidden() const;
246 void setReallyHidden();
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000247
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +0000248 bool isParameter() const
249 { return OptionType::IsParameter(this->Type); }
250
251 bool isSwitch() const
252 { return OptionType::IsSwitch(this->Type); }
253
254 bool isList() const
255 { return OptionType::IsList(this->Type); }
256
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000257};
258
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000259void OptionDescription::Merge (const OptionDescription& other)
260{
261 if (other.Type != Type)
262 throw "Conflicting definitions for the option " + Name + "!";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000263
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000264 if (Help == other.Help || Help == DefaultHelpString)
265 Help = other.Help;
266 else if (other.Help != DefaultHelpString) {
Daniel Dunbar1a551802009-07-03 00:10:29 +0000267 llvm::errs() << "Warning: several different help strings"
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000268 " defined for option " + Name + "\n";
269 }
270
271 Flags |= other.Flags;
272}
273
274bool OptionDescription::isAlias() const {
275 return Type == OptionType::Alias;
276}
277
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000278bool OptionDescription::isMultiVal() const {
Mikhail Glushenkov57cd67f2009-01-28 03:47:58 +0000279 return MultiVal > 1;
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000280}
281
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000282bool OptionDescription::isExtern() const {
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000283 return Flags & OptionDescriptionFlags::Extern;
284}
285void OptionDescription::setExtern() {
286 Flags |= OptionDescriptionFlags::Extern;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000287}
288
289bool OptionDescription::isRequired() const {
290 return Flags & OptionDescriptionFlags::Required;
291}
292void OptionDescription::setRequired() {
293 Flags |= OptionDescriptionFlags::Required;
294}
295
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000296bool OptionDescription::isOneOrMore() const {
297 return Flags & OptionDescriptionFlags::OneOrMore;
298}
299void OptionDescription::setOneOrMore() {
300 Flags |= OptionDescriptionFlags::OneOrMore;
301}
302
303bool OptionDescription::isZeroOrOne() const {
304 return Flags & OptionDescriptionFlags::ZeroOrOne;
305}
306void OptionDescription::setZeroOrOne() {
307 Flags |= OptionDescriptionFlags::ZeroOrOne;
308}
309
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000310bool OptionDescription::isHidden() const {
311 return Flags & OptionDescriptionFlags::Hidden;
312}
313void OptionDescription::setHidden() {
314 Flags |= OptionDescriptionFlags::Hidden;
315}
316
317bool OptionDescription::isReallyHidden() const {
318 return Flags & OptionDescriptionFlags::ReallyHidden;
319}
320void OptionDescription::setReallyHidden() {
321 Flags |= OptionDescriptionFlags::ReallyHidden;
322}
323
324const char* OptionDescription::GenTypeDeclaration() const {
325 switch (Type) {
326 case OptionType::Alias:
327 return "cl::alias";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000328 case OptionType::PrefixList:
329 case OptionType::ParameterList:
330 return "cl::list<std::string>";
331 case OptionType::Switch:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000332 return "cl::opt<bool>";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000333 case OptionType::Parameter:
334 case OptionType::Prefix:
335 default:
336 return "cl::opt<std::string>";
337 }
338}
339
340std::string OptionDescription::GenVariableName() const {
341 const std::string& EscapedName = EscapeVariableName(Name);
342 switch (Type) {
343 case OptionType::Alias:
344 return "AutoGeneratedAlias_" + EscapedName;
345 case OptionType::PrefixList:
346 case OptionType::ParameterList:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000347 return "AutoGeneratedList_" + EscapedName;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000348 case OptionType::Switch:
349 return "AutoGeneratedSwitch_" + EscapedName;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000350 case OptionType::Prefix:
351 case OptionType::Parameter:
352 default:
353 return "AutoGeneratedParameter_" + EscapedName;
354 }
355}
356
357/// OptionDescriptions - An OptionDescription array plus some helper
358/// functions.
359class OptionDescriptions {
360 typedef StringMap<OptionDescription> container_type;
361
362 /// Descriptions - A list of OptionDescriptions.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000363 container_type Descriptions;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000364
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000365public:
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +0000366 /// FindOption - exception-throwing wrapper for find().
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000367 const OptionDescription& FindOption(const std::string& OptName) const;
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +0000368 /// FindSwitch - wrapper for FindOption that throws in case the option is not
369 /// a switch.
370 const OptionDescription& FindSwitch(const std::string& OptName) const;
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000371
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000372 /// insertDescription - Insert new OptionDescription into
373 /// OptionDescriptions list
374 void InsertDescription (const OptionDescription& o);
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000375
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000376 // Support for STL-style iteration
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000377 typedef container_type::const_iterator const_iterator;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000378 const_iterator begin() const { return Descriptions.begin(); }
379 const_iterator end() const { return Descriptions.end(); }
380};
381
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000382const OptionDescription&
383OptionDescriptions::FindOption(const std::string& OptName) const
384{
385 const_iterator I = Descriptions.find(OptName);
386 if (I != Descriptions.end())
387 return I->second;
388 else
389 throw OptName + ": no such option!";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000390}
391
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +0000392const OptionDescription&
393OptionDescriptions::FindSwitch(const std::string& OptName) const
394{
395 const OptionDescription& OptDesc = this->FindOption(OptName);
396 if (!OptDesc.isSwitch())
397 throw OptName + ": incorrect option type - should be a switch!";
398 return OptDesc;
399}
400
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000401void OptionDescriptions::InsertDescription (const OptionDescription& o)
402{
403 container_type::iterator I = Descriptions.find(o.Name);
404 if (I != Descriptions.end()) {
405 OptionDescription& D = I->second;
406 D.Merge(o);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000407 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000408 else {
409 Descriptions[o.Name] = o;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000410 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000411}
412
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000413/// HandlerTable - A base class for function objects implemented as
414/// 'tables of handlers'.
415template <class T>
416class HandlerTable {
417protected:
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000418 // Implementation details.
419
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000420 /// Handler -
421 typedef void (T::* Handler) (const DagInit*);
422 /// HandlerMap - A map from property names to property handlers
423 typedef StringMap<Handler> HandlerMap;
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000424
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000425 static HandlerMap Handlers_;
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000426 static bool staticMembersInitialized_;
427
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000428 T* childPtr;
429public:
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000430
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000431 HandlerTable(T* cp) : childPtr(cp)
432 {}
433
434 /// operator() - Just forwards to the corresponding property
435 /// handler.
436 void operator() (Init* i) {
437 const DagInit& property = InitPtrToDag(i);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000438 const std::string& property_name = GetOperatorName(property);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000439 typename HandlerMap::iterator method = Handlers_.find(property_name);
440
441 if (method != Handlers_.end()) {
442 Handler h = method->second;
443 (childPtr->*h)(&property);
444 }
445 else {
446 throw "No handler found for property " + property_name + "!";
447 }
448 }
449
450 void AddHandler(const char* Property, Handler Handl) {
451 Handlers_[Property] = Handl;
452 }
453};
454
455template <class T> typename HandlerTable<T>::HandlerMap
456HandlerTable<T>::Handlers_;
457template <class T> bool HandlerTable<T>::staticMembersInitialized_ = false;
458
459
460/// CollectOptionProperties - Function object for iterating over an
461/// option property list.
462class CollectOptionProperties : public HandlerTable<CollectOptionProperties> {
463private:
464
465 /// optDescs_ - OptionDescriptions table. This is where the
466 /// information is stored.
467 OptionDescription& optDesc_;
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000468
469public:
470
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000471 explicit CollectOptionProperties(OptionDescription& OD)
472 : HandlerTable<CollectOptionProperties>(this), optDesc_(OD)
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000473 {
474 if (!staticMembersInitialized_) {
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000475 AddHandler("extern", &CollectOptionProperties::onExtern);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000476 AddHandler("help", &CollectOptionProperties::onHelp);
477 AddHandler("hidden", &CollectOptionProperties::onHidden);
Mikhail Glushenkov8fe44472009-07-07 16:08:41 +0000478 AddHandler("init", &CollectOptionProperties::onInit);
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000479 AddHandler("multi_val", &CollectOptionProperties::onMultiVal);
480 AddHandler("one_or_more", &CollectOptionProperties::onOneOrMore);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000481 AddHandler("really_hidden", &CollectOptionProperties::onReallyHidden);
482 AddHandler("required", &CollectOptionProperties::onRequired);
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000483 AddHandler("zero_or_one", &CollectOptionProperties::onZeroOrOne);
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000484
485 staticMembersInitialized_ = true;
486 }
487 }
488
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000489private:
490
491 /// Option property handlers --
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000492 /// Methods that handle option properties such as (help) or (hidden).
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000493
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000494 void onExtern (const DagInit* d) {
495 checkNumberOfArguments(d, 0);
496 optDesc_.setExtern();
497 }
498
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000499 void onHelp (const DagInit* d) {
500 checkNumberOfArguments(d, 1);
Mikhail Glushenkovb4ced5a2008-12-07 16:47:12 +0000501 optDesc_.Help = InitPtrToString(d->getArg(0));
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000502 }
503
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000504 void onHidden (const DagInit* d) {
505 checkNumberOfArguments(d, 0);
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000506 optDesc_.setHidden();
507 }
508
509 void onReallyHidden (const DagInit* d) {
510 checkNumberOfArguments(d, 0);
Mikhail Glushenkov739c7202008-11-28 00:13:25 +0000511 optDesc_.setReallyHidden();
512 }
513
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000514 void onRequired (const DagInit* d) {
515 checkNumberOfArguments(d, 0);
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000516 if (optDesc_.isOneOrMore())
517 throw std::string("An option can't have both (required) "
518 "and (one_or_more) properties!");
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000519 optDesc_.setRequired();
520 }
521
Mikhail Glushenkov8fe44472009-07-07 16:08:41 +0000522 void onInit (const DagInit* d) {
523 checkNumberOfArguments(d, 1);
524 Init* i = d->getArg(0);
525 const std::string& str = i->getAsString();
526
527 bool correct = optDesc_.isParameter() && dynamic_cast<StringInit*>(i);
528 correct |= (optDesc_.isSwitch() && (str == "true" || str == "false"));
529
530 if (!correct)
531 throw std::string("Incorrect usage of the 'init' option property!");
532
533 optDesc_.InitVal = i;
534 }
535
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000536 void onOneOrMore (const DagInit* d) {
537 checkNumberOfArguments(d, 0);
538 if (optDesc_.isRequired() || optDesc_.isZeroOrOne())
539 throw std::string("Only one of (required), (zero_or_one) or "
540 "(one_or_more) properties is allowed!");
541 if (!OptionType::IsList(optDesc_.Type))
Daniel Dunbar1a551802009-07-03 00:10:29 +0000542 llvm::errs() << "Warning: specifying the 'one_or_more' property "
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000543 "on a non-list option will have no effect.\n";
544 optDesc_.setOneOrMore();
545 }
546
547 void onZeroOrOne (const DagInit* d) {
548 checkNumberOfArguments(d, 0);
549 if (optDesc_.isRequired() || optDesc_.isOneOrMore())
550 throw std::string("Only one of (required), (zero_or_one) or "
551 "(one_or_more) properties is allowed!");
552 if (!OptionType::IsList(optDesc_.Type))
Daniel Dunbar1a551802009-07-03 00:10:29 +0000553 llvm::errs() << "Warning: specifying the 'zero_or_one' property"
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +0000554 "on a non-list option will have no effect.\n";
555 optDesc_.setZeroOrOne();
556 }
557
558 void onMultiVal (const DagInit* d) {
559 checkNumberOfArguments(d, 1);
560 int val = InitPtrToInt(d->getArg(0));
561 if (val < 2)
562 throw std::string("Error in the 'multi_val' property: "
563 "the value must be greater than 1!");
564 if (!OptionType::IsList(optDesc_.Type))
565 throw std::string("The multi_val property is valid only "
566 "on list options!");
567 optDesc_.MultiVal = val;
568 }
569
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000570};
571
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000572/// AddOption - A function object that is applied to every option
573/// description. Used by CollectOptionDescriptions.
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000574class AddOption {
575private:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000576 OptionDescriptions& OptDescs_;
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000577
578public:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000579 explicit AddOption(OptionDescriptions& OD) : OptDescs_(OD)
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000580 {}
581
582 void operator()(const Init* i) {
583 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000584 checkNumberOfArguments(&d, 1);
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000585
586 const OptionType::OptionType Type =
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000587 stringToOptionType(GetOperatorName(d));
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000588 const std::string& Name = InitPtrToString(d.getArg(0));
589
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000590 OptionDescription OD(Type, Name);
591
592 if (!OD.isExtern())
593 checkNumberOfArguments(&d, 2);
594
595 if (OD.isAlias()) {
596 // Aliases store the aliased option name in the 'Help' field.
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000597 OD.Help = InitPtrToString(d.getArg(1));
598 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000599 else if (!OD.isExtern()) {
600 processOptionProperties(&d, OD);
601 }
602 OptDescs_.InsertDescription(OD);
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000603 }
604
605private:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000606 /// processOptionProperties - Go through the list of option
607 /// properties and call a corresponding handler for each.
608 static void processOptionProperties (const DagInit* d, OptionDescription& o) {
609 checkNumberOfArguments(d, 2);
610 DagInit::const_arg_iterator B = d->arg_begin();
611 // Skip the first argument: it's always the option name.
612 ++B;
613 std::for_each(B, d->arg_end(), CollectOptionProperties(o));
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000614 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000615
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000616};
617
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000618/// CollectOptionDescriptions - Collects option properties from all
619/// OptionLists.
620void CollectOptionDescriptions (RecordVector::const_iterator B,
621 RecordVector::const_iterator E,
622 OptionDescriptions& OptDescs)
623{
624 // For every OptionList:
625 for (; B!=E; ++B) {
626 RecordVector::value_type T = *B;
627 // Throws an exception if the value does not exist.
628 ListInit* PropList = T->getValueAsListInit("options");
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000629
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000630 // For every option description in this list:
631 // collect the information and
632 std::for_each(PropList->begin(), PropList->end(), AddOption(OptDescs));
633 }
634}
635
636// Tool information record
637
638namespace ToolFlags {
639 enum ToolFlags { Join = 0x1, Sink = 0x2 };
640}
641
642struct ToolDescription : public RefCountedBase<ToolDescription> {
643 std::string Name;
644 Init* CmdLine;
645 Init* Actions;
646 StrVector InLanguage;
647 std::string OutLanguage;
648 std::string OutputSuffix;
649 unsigned Flags;
650
651 // Various boolean properties
652 void setSink() { Flags |= ToolFlags::Sink; }
653 bool isSink() const { return Flags & ToolFlags::Sink; }
654 void setJoin() { Flags |= ToolFlags::Join; }
655 bool isJoin() const { return Flags & ToolFlags::Join; }
656
657 // Default ctor here is needed because StringMap can only store
658 // DefaultConstructible objects
659 ToolDescription() : CmdLine(0), Actions(0), Flags(0) {}
660 ToolDescription (const std::string& n)
661 : Name(n), CmdLine(0), Actions(0), Flags(0)
662 {}
663};
664
665/// ToolDescriptions - A list of Tool information records.
666typedef std::vector<IntrusiveRefCntPtr<ToolDescription> > ToolDescriptions;
667
668
669/// CollectToolProperties - Function object for iterating over a list of
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000670/// tool property records.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000671class CollectToolProperties : public HandlerTable<CollectToolProperties> {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000672private:
673
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000674 /// toolDesc_ - Properties of the current Tool. This is where the
675 /// information is stored.
676 ToolDescription& toolDesc_;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000677
678public:
679
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000680 explicit CollectToolProperties (ToolDescription& d)
681 : HandlerTable<CollectToolProperties>(this) , toolDesc_(d)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000682 {
683 if (!staticMembersInitialized_) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000684
685 AddHandler("actions", &CollectToolProperties::onActions);
686 AddHandler("cmd_line", &CollectToolProperties::onCmdLine);
687 AddHandler("in_language", &CollectToolProperties::onInLanguage);
688 AddHandler("join", &CollectToolProperties::onJoin);
689 AddHandler("out_language", &CollectToolProperties::onOutLanguage);
690 AddHandler("output_suffix", &CollectToolProperties::onOutputSuffix);
691 AddHandler("sink", &CollectToolProperties::onSink);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000692
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000693 staticMembersInitialized_ = true;
694 }
695 }
696
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000697private:
698
699 /// Property handlers --
700 /// Functions that extract information about tool properties from
701 /// DAG representation.
702
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000703 void onActions (const DagInit* d) {
704 checkNumberOfArguments(d, 1);
Mikhail Glushenkovad889a72008-12-07 16:45:12 +0000705 Init* Case = d->getArg(0);
706 if (typeid(*Case) != typeid(DagInit) ||
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000707 GetOperatorName(static_cast<DagInit*>(Case)) != "case")
Mikhail Glushenkovad889a72008-12-07 16:45:12 +0000708 throw
709 std::string("The argument to (actions) should be a 'case' construct!");
710 toolDesc_.Actions = Case;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000711 }
712
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000713 void onCmdLine (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000714 checkNumberOfArguments(d, 1);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000715 toolDesc_.CmdLine = d->getArg(0);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000716 }
717
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000718 void onInLanguage (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000719 checkNumberOfArguments(d, 1);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000720 Init* arg = d->getArg(0);
721
722 // Find out the argument's type.
723 if (typeid(*arg) == typeid(StringInit)) {
724 // It's a string.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000725 toolDesc_.InLanguage.push_back(InitPtrToString(arg));
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000726 }
727 else {
728 // It's a list.
729 const ListInit& lst = InitPtrToList(arg);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000730 StrVector& out = toolDesc_.InLanguage;
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000731
732 // Copy strings to the output vector.
733 for (ListInit::const_iterator B = lst.begin(), E = lst.end();
734 B != E; ++B) {
735 out.push_back(InitPtrToString(*B));
736 }
737
738 // Remove duplicates.
739 std::sort(out.begin(), out.end());
740 StrVector::iterator newE = std::unique(out.begin(), out.end());
741 out.erase(newE, out.end());
742 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000743 }
744
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000745 void onJoin (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000746 checkNumberOfArguments(d, 0);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000747 toolDesc_.setJoin();
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000748 }
749
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000750 void onOutLanguage (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000751 checkNumberOfArguments(d, 1);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000752 toolDesc_.OutLanguage = InitPtrToString(d->getArg(0));
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000753 }
754
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000755 void onOutputSuffix (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000756 checkNumberOfArguments(d, 1);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000757 toolDesc_.OutputSuffix = InitPtrToString(d->getArg(0));
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000758 }
759
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000760 void onSink (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000761 checkNumberOfArguments(d, 0);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000762 toolDesc_.setSink();
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000763 }
764
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000765};
766
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000767/// CollectToolDescriptions - Gather information about tool properties
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000768/// from the parsed TableGen data (basically a wrapper for the
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000769/// CollectToolProperties function object).
770void CollectToolDescriptions (RecordVector::const_iterator B,
771 RecordVector::const_iterator E,
772 ToolDescriptions& ToolDescs)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000773{
774 // Iterate over a properties list of every Tool definition
775 for (;B!=E;++B) {
Mikhail Glushenkovfa270772008-11-17 17:29:42 +0000776 const Record* T = *B;
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000777 // Throws an exception if the value does not exist.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000778 ListInit* PropList = T->getValueAsListInit("properties");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000779
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000780 IntrusiveRefCntPtr<ToolDescription>
781 ToolDesc(new ToolDescription(T->getName()));
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000782
783 std::for_each(PropList->begin(), PropList->end(),
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000784 CollectToolProperties(*ToolDesc));
785 ToolDescs.push_back(ToolDesc);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000786 }
787}
788
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000789/// FillInEdgeVector - Merge all compilation graph definitions into
790/// one single edge list.
791void FillInEdgeVector(RecordVector::const_iterator B,
792 RecordVector::const_iterator E, RecordVector& Out) {
793 for (; B != E; ++B) {
794 const ListInit* edges = (*B)->getValueAsListInit("edges");
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000795
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000796 for (unsigned i = 0; i < edges->size(); ++i)
797 Out.push_back(edges->getElementAsRecord(i));
798 }
799}
800
801/// CalculatePriority - Calculate the priority of this plugin.
802int CalculatePriority(RecordVector::const_iterator B,
803 RecordVector::const_iterator E) {
Mikhail Glushenkov2cea7bd2009-10-17 20:08:30 +0000804 int priority = 0;
805
806 if (B != E) {
807 priority = static_cast<int>((*B)->getValueAsInt("priority"));
808
809 if (++B != E)
810 throw std::string("More than one 'PluginPriority' instance found: "
811 "most probably an error!");
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000812 }
Mikhail Glushenkov2cea7bd2009-10-17 20:08:30 +0000813
814 return priority;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000815}
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000816
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000817/// NotInGraph - Helper function object for FilterNotInGraph.
818struct NotInGraph {
819private:
820 const llvm::StringSet<>& ToolsInGraph_;
821
822public:
823 NotInGraph(const llvm::StringSet<>& ToolsInGraph)
824 : ToolsInGraph_(ToolsInGraph)
825 {}
826
827 bool operator()(const IntrusiveRefCntPtr<ToolDescription>& x) {
828 return (ToolsInGraph_.count(x->Name) == 0);
829 }
830};
831
832/// FilterNotInGraph - Filter out from ToolDescs all Tools not
833/// mentioned in the compilation graph definition.
834void FilterNotInGraph (const RecordVector& EdgeVector,
835 ToolDescriptions& ToolDescs) {
836
837 // List all tools mentioned in the graph.
838 llvm::StringSet<> ToolsInGraph;
839
840 for (RecordVector::const_iterator B = EdgeVector.begin(),
841 E = EdgeVector.end(); B != E; ++B) {
842
843 const Record* Edge = *B;
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000844 const std::string& NodeA = Edge->getValueAsString("a");
845 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000846
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000847 if (NodeA != "root")
848 ToolsInGraph.insert(NodeA);
849 ToolsInGraph.insert(NodeB);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000850 }
851
852 // Filter ToolPropertiesList.
853 ToolDescriptions::iterator new_end =
854 std::remove_if(ToolDescs.begin(), ToolDescs.end(),
855 NotInGraph(ToolsInGraph));
856 ToolDescs.erase(new_end, ToolDescs.end());
857}
858
859/// FillInToolToLang - Fills in two tables that map tool names to
860/// (input, output) languages. Helper function used by TypecheckGraph().
861void FillInToolToLang (const ToolDescriptions& ToolDescs,
862 StringMap<StringSet<> >& ToolToInLang,
863 StringMap<std::string>& ToolToOutLang) {
864 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
865 E = ToolDescs.end(); B != E; ++B) {
866 const ToolDescription& D = *(*B);
867 for (StrVector::const_iterator B = D.InLanguage.begin(),
868 E = D.InLanguage.end(); B != E; ++B)
869 ToolToInLang[D.Name].insert(*B);
870 ToolToOutLang[D.Name] = D.OutLanguage;
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000871 }
872}
873
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000874/// TypecheckGraph - Check that names for output and input languages
875/// on all edges do match. This doesn't do much when the information
876/// about the whole graph is not available (i.e. when compiling most
877/// plugins).
878void TypecheckGraph (const RecordVector& EdgeVector,
879 const ToolDescriptions& ToolDescs) {
880 StringMap<StringSet<> > ToolToInLang;
881 StringMap<std::string> ToolToOutLang;
882
883 FillInToolToLang(ToolDescs, ToolToInLang, ToolToOutLang);
884 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
885 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
886
887 for (RecordVector::const_iterator B = EdgeVector.begin(),
888 E = EdgeVector.end(); B != E; ++B) {
889 const Record* Edge = *B;
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000890 const std::string& NodeA = Edge->getValueAsString("a");
891 const std::string& NodeB = Edge->getValueAsString("b");
892 StringMap<std::string>::iterator IA = ToolToOutLang.find(NodeA);
893 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(NodeB);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000894
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000895 if (NodeA != "root") {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000896 if (IA != IAE && IB != IBE && IB->second.count(IA->second) == 0)
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000897 throw "Edge " + NodeA + "->" + NodeB
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000898 + ": output->input language mismatch";
899 }
900
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +0000901 if (NodeB == "root")
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000902 throw std::string("Edges back to the root are not allowed!");
903 }
904}
905
906/// WalkCase - Walks the 'case' expression DAG and invokes
907/// TestCallback on every test, and StatementCallback on every
908/// statement. Handles 'case' nesting, but not the 'and' and 'or'
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000909/// combinators (that is, they are passed directly to TestCallback).
910/// TestCallback must have type 'void TestCallback(const DagInit*, unsigned
911/// IndentLevel, bool FirstTest)'.
912/// StatementCallback must have type 'void StatementCallback(const Init*,
913/// unsigned IndentLevel)'.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000914template <typename F1, typename F2>
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000915void WalkCase(const Init* Case, F1 TestCallback, F2 StatementCallback,
916 unsigned IndentLevel = 0)
917{
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000918 const DagInit& d = InitPtrToDag(Case);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000919
920 // Error checks.
921 if (GetOperatorName(d) != "case")
922 throw std::string("WalkCase should be invoked only on 'case' expressions!");
923
924 if (d.getNumArgs() < 2)
925 throw "There should be at least one clause in the 'case' expression:\n"
926 + d.getAsString();
927
928 // Main loop.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000929 bool even = false;
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000930 const unsigned numArgs = d.getNumArgs();
931 unsigned i = 1;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000932 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
933 B != E; ++B) {
934 Init* arg = *B;
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000935
936 if (!even)
937 {
938 // Handle test.
939 const DagInit& Test = InitPtrToDag(arg);
940
941 if (GetOperatorName(Test) == "default" && (i+1 != numArgs))
942 throw std::string("The 'default' clause should be the last in the"
943 "'case' construct!");
944 if (i == numArgs)
945 throw "Case construct handler: no corresponding action "
946 "found for the test " + Test.getAsString() + '!';
947
948 TestCallback(&Test, IndentLevel, (i == 1));
949 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000950 else
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000951 {
952 if (dynamic_cast<DagInit*>(arg)
953 && GetOperatorName(static_cast<DagInit*>(arg)) == "case") {
954 // Nested 'case'.
955 WalkCase(arg, TestCallback, StatementCallback, IndentLevel + Indent1);
956 }
957
958 // Handle statement.
959 StatementCallback(arg, IndentLevel);
960 }
961
962 ++i;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000963 even = !even;
964 }
965}
966
967/// ExtractOptionNames - A helper function object used by
968/// CheckForSuperfluousOptions() to walk the 'case' DAG.
969class ExtractOptionNames {
970 llvm::StringSet<>& OptionNames_;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000971
Mikhail Glushenkov08509492008-12-07 16:42:22 +0000972 void processDag(const Init* Statement) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000973 const DagInit& Stmt = InitPtrToDag(Statement);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +0000974 const std::string& ActionName = GetOperatorName(Stmt);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000975 if (ActionName == "forward" || ActionName == "forward_as" ||
976 ActionName == "unpack_values" || ActionName == "switch_on" ||
977 ActionName == "parameter_equals" || ActionName == "element_in_list" ||
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +0000978 ActionName == "not_empty" || ActionName == "empty") {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000979 checkNumberOfArguments(&Stmt, 1);
980 const std::string& Name = InitPtrToString(Stmt.getArg(0));
981 OptionNames_.insert(Name);
982 }
983 else if (ActionName == "and" || ActionName == "or") {
984 for (unsigned i = 0, NumArgs = Stmt.getNumArgs(); i < NumArgs; ++i) {
Mikhail Glushenkov08509492008-12-07 16:42:22 +0000985 this->processDag(Stmt.getArg(i));
Mikhail Glushenkovf9152532008-12-07 16:41:11 +0000986 }
987 }
988 }
Mikhail Glushenkov08509492008-12-07 16:42:22 +0000989
990public:
991 ExtractOptionNames(llvm::StringSet<>& OptionNames) : OptionNames_(OptionNames)
992 {}
993
994 void operator()(const Init* Statement) {
995 if (typeid(*Statement) == typeid(ListInit)) {
996 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
997 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
998 B != E; ++B)
999 this->processDag(*B);
1000 }
1001 else {
1002 this->processDag(Statement);
1003 }
1004 }
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001005
1006 void operator()(const DagInit* Test, unsigned, bool) {
1007 this->operator()(Test);
1008 }
1009 void operator()(const Init* Statement, unsigned) {
1010 this->operator()(Statement);
1011 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001012};
1013
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001014/// CheckForSuperfluousOptions - Check that there are no side
1015/// effect-free options (specified only in the OptionList). Otherwise,
1016/// output a warning.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001017void CheckForSuperfluousOptions (const RecordVector& Edges,
1018 const ToolDescriptions& ToolDescs,
1019 const OptionDescriptions& OptDescs) {
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001020 llvm::StringSet<> nonSuperfluousOptions;
1021
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001022 // Add all options mentioned in the ToolDesc.Actions to the set of
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001023 // non-superfluous options.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001024 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1025 E = ToolDescs.end(); B != E; ++B) {
1026 const ToolDescription& TD = *(*B);
1027 ExtractOptionNames Callback(nonSuperfluousOptions);
1028 if (TD.Actions)
1029 WalkCase(TD.Actions, Callback, Callback);
1030 }
1031
1032 // Add all options mentioned in the 'case' clauses of the
1033 // OptionalEdges of the compilation graph to the set of
1034 // non-superfluous options.
1035 for (RecordVector::const_iterator B = Edges.begin(), E = Edges.end();
1036 B != E; ++B) {
1037 const Record* Edge = *B;
1038 DagInit* Weight = Edge->getValueAsDag("weight");
1039
1040 if (!isDagEmpty(Weight))
1041 WalkCase(Weight, ExtractOptionNames(nonSuperfluousOptions), Id());
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001042 }
1043
1044 // Check that all options in OptDescs belong to the set of
1045 // non-superfluous options.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001046 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001047 E = OptDescs.end(); B != E; ++B) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001048 const OptionDescription& Val = B->second;
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001049 if (!nonSuperfluousOptions.count(Val.Name)
1050 && Val.Type != OptionType::Alias)
Daniel Dunbar1a551802009-07-03 00:10:29 +00001051 llvm::errs() << "Warning: option '-" << Val.Name << "' has no effect! "
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001052 "Probable cause: this option is specified only in the OptionList.\n";
1053 }
1054}
1055
Mikhail Glushenkovad981bf2009-09-28 01:16:42 +00001056/// EmitCaseTest0Args - Helper function used by EmitCaseConstructHandler().
1057bool EmitCaseTest0Args(const std::string& TestName, raw_ostream& O) {
1058 if (TestName == "single_input_file") {
1059 O << "InputFilenames.size() == 1";
1060 return true;
1061 }
1062 else if (TestName == "multiple_input_files") {
1063 O << "InputFilenames.size() > 1";
1064 return true;
1065 }
1066
1067 return false;
1068}
1069
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001070/// EmitCaseTest1ArgStr - Helper function used by EmitCaseTest1Arg();
1071bool EmitCaseTest1ArgStr(const std::string& TestName,
1072 const DagInit& d,
1073 const OptionDescriptions& OptDescs,
1074 raw_ostream& O) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001075 const std::string& OptName = InitPtrToString(d.getArg(0));
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001076
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001077 if (TestName == "switch_on") {
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001078 const OptionDescription& OptDesc = OptDescs.FindSwitch(OptName);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001079 O << OptDesc.GenVariableName();
1080 return true;
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001081 }
1082 else if (TestName == "input_languages_contain") {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001083 O << "InLangs.count(\"" << OptName << "\") != 0";
1084 return true;
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001085 }
1086 else if (TestName == "in_language") {
Mikhail Glushenkov07376512008-09-22 20:48:22 +00001087 // This works only for single-argument Tool::GenerateAction. Join
1088 // tools can process several files in different languages simultaneously.
1089
1090 // TODO: make this work with Edge::Weight (if possible).
Mikhail Glushenkov11a353a2008-09-22 20:47:46 +00001091 O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +00001092 return true;
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001093 }
1094 else if (TestName == "not_empty" || TestName == "empty") {
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001095 const char* Test = (TestName == "empty") ? "" : "!";
1096
Mikhail Glushenkov92b8da72008-05-30 06:24:07 +00001097 if (OptName == "o") {
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001098 O << Test << "OutputFilename.empty()";
Mikhail Glushenkov92b8da72008-05-30 06:24:07 +00001099 return true;
1100 }
1101 else {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001102 const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001103 if (OptDesc.isSwitch())
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001104 throw OptName
1105 + ": incorrect option type - should be a list or parameter!";
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001106 O << Test << OptDesc.GenVariableName() << ".empty()";
Mikhail Glushenkov92b8da72008-05-30 06:24:07 +00001107 return true;
1108 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001109 }
1110
1111 return false;
1112}
1113
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001114/// EmitCaseTest1ArgList - Helper function used by EmitCaseTest1Arg();
1115bool EmitCaseTest1ArgList(const std::string& TestName,
1116 const DagInit& d,
1117 const OptionDescriptions& OptDescs,
1118 raw_ostream& O) {
1119 const ListInit& L = *static_cast<ListInit*>(d.getArg(0));
1120
1121 if (TestName == "any_switch_on") {
1122 bool isFirst = true;
1123
1124 for (ListInit::const_iterator B = L.begin(), E = L.end(); B != E; ++B) {
1125 const std::string& OptName = InitPtrToString(*B);
1126 const OptionDescription& OptDesc = OptDescs.FindSwitch(OptName);
1127
1128 if (isFirst)
1129 isFirst = false;
1130 else
1131 O << " || ";
1132 O << OptDesc.GenVariableName();
1133 }
1134
1135 return true;
1136 }
1137
1138 // TODO: implement any_not_empty, any_empty, switch_on [..], empty [..]
1139
1140 return false;
1141}
1142
1143/// EmitCaseTest1Arg - Helper function used by EmitCaseConstructHandler();
1144bool EmitCaseTest1Arg(const std::string& TestName,
1145 const DagInit& d,
1146 const OptionDescriptions& OptDescs,
1147 raw_ostream& O) {
1148 checkNumberOfArguments(&d, 1);
1149 if (typeid(*d.getArg(0)) == typeid(ListInit))
1150 return EmitCaseTest1ArgList(TestName, d, OptDescs, O);
1151 else
1152 return EmitCaseTest1ArgStr(TestName, d, OptDescs, O);
1153}
1154
Mikhail Glushenkovad981bf2009-09-28 01:16:42 +00001155/// EmitCaseTest2Args - Helper function used by EmitCaseConstructHandler().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001156bool EmitCaseTest2Args(const std::string& TestName,
1157 const DagInit& d,
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001158 unsigned IndentLevel,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001159 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001160 raw_ostream& O) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001161 checkNumberOfArguments(&d, 2);
1162 const std::string& OptName = InitPtrToString(d.getArg(0));
1163 const std::string& OptArg = InitPtrToString(d.getArg(1));
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001164 const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001165
1166 if (TestName == "parameter_equals") {
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001167 if (!OptDesc.isParameter())
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001168 throw OptName + ": incorrect option type - should be a parameter!";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001169 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
1170 return true;
1171 }
1172 else if (TestName == "element_in_list") {
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001173 if (!OptDesc.isList())
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001174 throw OptName + ": incorrect option type - should be a list!";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001175 const std::string& VarName = OptDesc.GenVariableName();
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001176 O << "std::find(" << VarName << ".begin(),\n";
1177 O.indent(IndentLevel + Indent1)
1178 << VarName << ".end(), \""
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001179 << OptArg << "\") != " << VarName << ".end()";
1180 return true;
1181 }
1182
1183 return false;
1184}
1185
1186// Forward declaration.
1187// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001188void EmitCaseTest(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001189 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001190 raw_ostream& O);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001191
1192/// EmitLogicalOperationTest - Helper function used by
1193/// EmitCaseConstructHandler.
1194void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001195 unsigned IndentLevel,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001196 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001197 raw_ostream& O) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001198 O << '(';
1199 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001200 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001201 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001202 if (j != NumArgs - 1) {
1203 O << ")\n";
1204 O.indent(IndentLevel + Indent1) << ' ' << LogicOp << " (";
1205 }
1206 else {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001207 O << ')';
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001208 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001209 }
1210}
1211
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001212void EmitLogicalNot(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkov684a8b02009-09-10 16:21:38 +00001213 const OptionDescriptions& OptDescs, raw_ostream& O)
1214{
1215 checkNumberOfArguments(&d, 1);
1216 const DagInit& InnerTest = InitPtrToDag(d.getArg(0));
1217 O << "! (";
1218 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
1219 O << ")";
1220}
1221
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001222/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001223void EmitCaseTest(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001224 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001225 raw_ostream& O) {
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001226 const std::string& TestName = GetOperatorName(d);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001227
1228 if (TestName == "and")
1229 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
1230 else if (TestName == "or")
1231 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
Mikhail Glushenkov684a8b02009-09-10 16:21:38 +00001232 else if (TestName == "not")
1233 EmitLogicalNot(d, IndentLevel, OptDescs, O);
Mikhail Glushenkovad981bf2009-09-28 01:16:42 +00001234 else if (EmitCaseTest0Args(TestName, O))
1235 return;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001236 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
1237 return;
1238 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
1239 return;
1240 else
1241 throw TestName + ": unknown edge property!";
1242}
1243
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001244
1245/// EmitCaseTestCallback - Callback used by EmitCaseConstructHandler.
1246class EmitCaseTestCallback {
1247 bool EmitElseIf_;
1248 const OptionDescriptions& OptDescs_;
1249 raw_ostream& O_;
1250public:
1251
1252 EmitCaseTestCallback(bool EmitElseIf,
1253 const OptionDescriptions& OptDescs, raw_ostream& O)
1254 : EmitElseIf_(EmitElseIf), OptDescs_(OptDescs), O_(O)
1255 {}
1256
1257 void operator()(const DagInit* Test, unsigned IndentLevel, bool FirstTest)
1258 {
1259 if (GetOperatorName(Test) == "default") {
1260 O_.indent(IndentLevel) << "else {\n";
1261 }
1262 else {
1263 O_.indent(IndentLevel)
1264 << ((!FirstTest && EmitElseIf_) ? "else if (" : "if (");
1265 EmitCaseTest(*Test, IndentLevel, OptDescs_, O_);
1266 O_ << ") {\n";
1267 }
1268 }
1269};
1270
1271/// EmitCaseStatementCallback - Callback used by EmitCaseConstructHandler.
1272template <typename F>
1273class EmitCaseStatementCallback {
1274 F Callback_;
1275 raw_ostream& O_;
1276public:
1277
1278 EmitCaseStatementCallback(F Callback, raw_ostream& O)
1279 : Callback_(Callback), O_(O)
1280 {}
1281
1282 // TODO: Handle lists here.
1283 void operator() (const Init* Statement, unsigned IndentLevel) {
1284 // Ignore nested 'case' DAG.
1285 if (!(dynamic_cast<const DagInit*>(Statement) &&
1286 GetOperatorName(static_cast<const DagInit*>(Statement)) == "case"))
1287 Callback_(Statement, (IndentLevel + Indent1), O_);
1288 O_.indent(IndentLevel) << "}\n";
1289 }
1290
1291};
1292
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001293/// EmitCaseConstructHandler - Emit code that handles the 'case'
1294/// construct. Takes a function object that should emit code for every case
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001295/// clause. Implemented on top of WalkCase.
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00001296/// Callback's type is void F(Init* Statement, unsigned IndentLevel,
1297/// raw_ostream& O).
1298/// EmitElseIf parameter controls the type of condition that is emitted ('if
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001299/// (..) {..} else if (..) {} .. else {..}' vs. 'if (..) {..} if(..) {..}
1300/// .. else {..}').
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001301template <typename F>
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001302void EmitCaseConstructHandler(const Init* Case, unsigned IndentLevel,
Mikhail Glushenkov310d2eb2008-05-31 13:43:21 +00001303 F Callback, bool EmitElseIf,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001304 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001305 raw_ostream& O) {
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001306 WalkCase(Case, EmitCaseTestCallback(EmitElseIf, OptDescs, O),
1307 EmitCaseStatementCallback<F>(Callback, O), IndentLevel);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001308}
1309
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001310/// TokenizeCmdline - converts from "$CALL(HookName, 'Arg1', 'Arg2')/path" to
1311/// ["$CALL(", "HookName", "Arg1", "Arg2", ")/path"] .
1312/// Helper function used by EmitCmdLineVecFill and.
1313void TokenizeCmdline(const std::string& CmdLine, StrVector& Out) {
1314 const char* Delimiters = " \t\n\v\f\r";
1315 enum TokenizerState
1316 { Normal, SpecialCommand, InsideSpecialCommand, InsideQuotationMarks }
1317 cur_st = Normal;
Mikhail Glushenkov7bba2332009-06-25 18:21:34 +00001318
1319 if (CmdLine.empty())
1320 return;
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001321 Out.push_back("");
1322
1323 std::string::size_type B = CmdLine.find_first_not_of(Delimiters),
1324 E = CmdLine.size();
Mikhail Glushenkov7bba2332009-06-25 18:21:34 +00001325
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001326 for (; B != E; ++B) {
1327 char cur_ch = CmdLine[B];
1328
1329 switch (cur_st) {
1330 case Normal:
1331 if (cur_ch == '$') {
1332 cur_st = SpecialCommand;
1333 break;
1334 }
1335 if (oneOf(Delimiters, cur_ch)) {
1336 // Skip whitespace
1337 B = CmdLine.find_first_not_of(Delimiters, B);
1338 if (B == std::string::npos) {
1339 B = E-1;
1340 continue;
1341 }
1342 --B;
1343 Out.push_back("");
1344 continue;
1345 }
1346 break;
1347
1348
1349 case SpecialCommand:
1350 if (oneOf(Delimiters, cur_ch)) {
1351 cur_st = Normal;
1352 Out.push_back("");
1353 continue;
1354 }
1355 if (cur_ch == '(') {
1356 Out.push_back("");
1357 cur_st = InsideSpecialCommand;
1358 continue;
1359 }
1360 break;
1361
1362 case InsideSpecialCommand:
1363 if (oneOf(Delimiters, cur_ch)) {
1364 continue;
1365 }
1366 if (cur_ch == '\'') {
1367 cur_st = InsideQuotationMarks;
1368 Out.push_back("");
1369 continue;
1370 }
1371 if (cur_ch == ')') {
1372 cur_st = Normal;
1373 Out.push_back("");
1374 }
1375 if (cur_ch == ',') {
1376 continue;
1377 }
1378
1379 break;
1380
1381 case InsideQuotationMarks:
1382 if (cur_ch == '\'') {
1383 cur_st = InsideSpecialCommand;
1384 continue;
1385 }
1386 break;
1387 }
1388
1389 Out.back().push_back(cur_ch);
1390 }
1391}
1392
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001393/// SubstituteSpecialCommands - Perform string substitution for $CALL
1394/// and $ENV. Helper function used by EmitCmdLineVecFill().
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001395StrVector::const_iterator SubstituteSpecialCommands
Daniel Dunbar1a551802009-07-03 00:10:29 +00001396(StrVector::const_iterator Pos, StrVector::const_iterator End, raw_ostream& O)
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001397{
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001398
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001399 const std::string& cmd = *Pos;
1400
1401 if (cmd == "$CALL") {
1402 checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1403 const std::string& CmdName = *Pos;
1404
1405 if (CmdName == ")")
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001406 throw std::string("$CALL invocation: empty argument list!");
1407
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001408 O << "hooks::";
1409 O << CmdName << "(";
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001410
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001411
1412 bool firstIteration = true;
1413 while (true) {
1414 checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1415 const std::string& Arg = *Pos;
1416 assert(Arg.size() != 0);
1417
1418 if (Arg[0] == ')')
1419 break;
1420
1421 if (firstIteration)
1422 firstIteration = false;
1423 else
1424 O << ", ";
1425
1426 O << '"' << Arg << '"';
1427 }
1428
1429 O << ')';
1430
1431 }
1432 else if (cmd == "$ENV") {
1433 checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
1434 const std::string& EnvName = *Pos;
1435
1436 if (EnvName == ")")
1437 throw "$ENV invocation: empty argument list!";
1438
1439 O << "checkCString(std::getenv(\"";
1440 O << EnvName;
1441 O << "\"))";
1442
1443 checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001444 }
1445 else {
1446 throw "Unknown special command: " + cmd;
1447 }
1448
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001449 const std::string& Leftover = *Pos;
1450 assert(Leftover.at(0) == ')');
1451 if (Leftover.size() != 1)
1452 O << " + std::string(\"" << (Leftover.c_str() + 1) << "\")";
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001453
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001454 return Pos;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001455}
1456
1457/// EmitCmdLineVecFill - Emit code that fills in the command line
1458/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001459void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001460 bool IsJoin, unsigned IndentLevel,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001461 raw_ostream& O) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001462 StrVector StrVec;
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001463 TokenizeCmdline(InitPtrToString(CmdLine), StrVec);
1464
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001465 if (StrVec.empty())
Mikhail Glushenkov7bba2332009-06-25 18:21:34 +00001466 throw "Tool '" + ToolName + "' has empty command line!";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001467
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001468 StrVector::const_iterator I = StrVec.begin(), E = StrVec.end();
1469
1470 // If there is a hook invocation on the place of the first command, skip it.
Mikhail Glushenkov0941b0f2009-04-19 00:22:35 +00001471 assert(!StrVec[0].empty());
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001472 if (StrVec[0][0] == '$') {
1473 while (I != E && (*I)[0] != ')' )
1474 ++I;
1475
1476 // Skip the ')' symbol.
1477 ++I;
1478 }
1479 else {
1480 ++I;
1481 }
1482
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001483 bool hasINFILE = false;
1484
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001485 for (; I != E; ++I) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001486 const std::string& cmd = *I;
Mikhail Glushenkov0941b0f2009-04-19 00:22:35 +00001487 assert(!cmd.empty());
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001488 O.indent(IndentLevel);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001489 if (cmd.at(0) == '$') {
1490 if (cmd == "$INFILE") {
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001491 hasINFILE = true;
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001492 if (IsJoin) {
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001493 O << "for (PathVector::const_iterator B = inFiles.begin()"
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001494 << ", E = inFiles.end();\n";
1495 O.indent(IndentLevel) << "B != E; ++B)\n";
1496 O.indent(IndentLevel + Indent1) << "vec.push_back(B->str());\n";
1497 }
1498 else {
Chris Lattner74382b72009-08-23 22:45:37 +00001499 O << "vec.push_back(inFile.str());\n";
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001500 }
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001501 }
1502 else if (cmd == "$OUTFILE") {
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001503 O << "vec.push_back(\"\");\n";
1504 O.indent(IndentLevel) << "out_file_index = vec.size()-1;\n";
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001505 }
1506 else {
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001507 O << "vec.push_back(";
1508 I = SubstituteSpecialCommands(I, E, O);
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001509 O << ");\n";
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001510 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001511 }
1512 else {
1513 O << "vec.push_back(\"" << cmd << "\");\n";
1514 }
1515 }
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001516 if (!hasINFILE)
1517 throw "Tool '" + ToolName + "' doesn't take any input!";
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001518
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001519 O.indent(IndentLevel) << "cmd = ";
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00001520 if (StrVec[0][0] == '$')
1521 SubstituteSpecialCommands(StrVec.begin(), StrVec.end(), O);
1522 else
1523 O << '"' << StrVec[0] << '"';
1524 O << ";\n";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001525}
1526
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001527/// EmitCmdLineVecFillCallback - A function object wrapper around
1528/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1529/// argument to EmitCaseConstructHandler().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001530class EmitCmdLineVecFillCallback {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001531 bool IsJoin;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001532 const std::string& ToolName;
1533 public:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001534 EmitCmdLineVecFillCallback(bool J, const std::string& TN)
1535 : IsJoin(J), ToolName(TN) {}
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001536
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001537 void operator()(const Init* Statement, unsigned IndentLevel,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001538 raw_ostream& O) const
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001539 {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001540 EmitCmdLineVecFill(Statement, ToolName, IsJoin, IndentLevel, O);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001541 }
1542};
1543
1544/// EmitForwardOptionPropertyHandlingCode - Helper function used to
1545/// implement EmitActionHandler. Emits code for
1546/// handling the (forward) and (forward_as) option properties.
1547void EmitForwardOptionPropertyHandlingCode (const OptionDescription& D,
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001548 unsigned IndentLevel,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001549 const std::string& NewName,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001550 raw_ostream& O) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001551 const std::string& Name = NewName.empty()
1552 ? ("-" + D.Name)
1553 : NewName;
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001554 unsigned IndentLevel1 = IndentLevel + Indent1;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001555
1556 switch (D.Type) {
1557 case OptionType::Switch:
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001558 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001559 break;
1560 case OptionType::Parameter:
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001561 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\");\n";
1562 O.indent(IndentLevel) << "vec.push_back(" << D.GenVariableName() << ");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001563 break;
1564 case OptionType::Prefix:
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001565 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\" + "
1566 << D.GenVariableName() << ");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001567 break;
1568 case OptionType::PrefixList:
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001569 O.indent(IndentLevel)
1570 << "for (" << D.GenTypeDeclaration()
1571 << "::iterator B = " << D.GenVariableName() << ".begin(),\n";
1572 O.indent(IndentLevel)
1573 << "E = " << D.GenVariableName() << ".end(); B != E;) {\n";
1574 O.indent(IndentLevel1) << "vec.push_back(\"" << Name << "\" + " << "*B);\n";
1575 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001576
1577 for (int i = 1, j = D.MultiVal; i < j; ++i) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001578 O.indent(IndentLevel1) << "vec.push_back(*B);\n";
1579 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001580 }
1581
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001582 O.indent(IndentLevel) << "}\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001583 break;
1584 case OptionType::ParameterList:
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001585 O.indent(IndentLevel)
1586 << "for (" << D.GenTypeDeclaration() << "::iterator B = "
1587 << D.GenVariableName() << ".begin(),\n";
1588 O.indent(IndentLevel) << "E = " << D.GenVariableName()
1589 << ".end() ; B != E;) {\n";
1590 O.indent(IndentLevel1) << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001591
1592 for (int i = 0, j = D.MultiVal; i < j; ++i) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001593 O.indent(IndentLevel1) << "vec.push_back(*B);\n";
1594 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001595 }
1596
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001597 O.indent(IndentLevel) << "}\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001598 break;
1599 case OptionType::Alias:
1600 default:
1601 throw std::string("Aliases are not allowed in tool option descriptions!");
1602 }
1603}
1604
1605/// EmitActionHandler - Emit code that handles actions. Used by
1606/// EmitGenerateActionMethod() as an argument to
1607/// EmitCaseConstructHandler().
1608class EmitActionHandler {
1609 const OptionDescriptions& OptDescs;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001610
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001611 void processActionDag(const Init* Statement, unsigned IndentLevel,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001612 raw_ostream& O) const
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001613 {
1614 const DagInit& Dag = InitPtrToDag(Statement);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001615 const std::string& ActionName = GetOperatorName(Dag);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001616
1617 if (ActionName == "append_cmd") {
1618 checkNumberOfArguments(&Dag, 1);
1619 const std::string& Cmd = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkovc52551d2009-02-27 06:46:55 +00001620 StrVector Out;
1621 llvm::SplitString(Cmd, Out);
1622
1623 for (StrVector::const_iterator B = Out.begin(), E = Out.end();
1624 B != E; ++B)
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001625 O.indent(IndentLevel) << "vec.push_back(\"" << *B << "\");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001626 }
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001627 else if (ActionName == "error") {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001628 O.indent(IndentLevel) << "throw std::runtime_error(\"" <<
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00001629 (Dag.getNumArgs() >= 1 ? InitPtrToString(Dag.getArg(0))
1630 : "Unknown error!")
1631 << "\");\n";
1632 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001633 else if (ActionName == "forward") {
1634 checkNumberOfArguments(&Dag, 1);
1635 const std::string& Name = InitPtrToString(Dag.getArg(0));
1636 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1637 IndentLevel, "", O);
1638 }
1639 else if (ActionName == "forward_as") {
1640 checkNumberOfArguments(&Dag, 2);
1641 const std::string& Name = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkove89331b2009-05-06 01:41:19 +00001642 const std::string& NewName = InitPtrToString(Dag.getArg(1));
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001643 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1644 IndentLevel, NewName, O);
1645 }
1646 else if (ActionName == "output_suffix") {
1647 checkNumberOfArguments(&Dag, 1);
1648 const std::string& OutSuf = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001649 O.indent(IndentLevel) << "output_suffix = \"" << OutSuf << "\";\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001650 }
1651 else if (ActionName == "stop_compilation") {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001652 O.indent(IndentLevel) << "stop_compilation = true;\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001653 }
1654 else if (ActionName == "unpack_values") {
1655 checkNumberOfArguments(&Dag, 1);
1656 const std::string& Name = InitPtrToString(Dag.getArg(0));
1657 const OptionDescription& D = OptDescs.FindOption(Name);
1658
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001659 if (D.isMultiVal())
1660 throw std::string("Can't use unpack_values with multi-valued options!");
1661
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001662 if (D.isList()) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001663 O.indent(IndentLevel)
1664 << "for (" << D.GenTypeDeclaration()
1665 << "::iterator B = " << D.GenVariableName() << ".begin(),\n";
1666 O.indent(IndentLevel)
1667 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n";
1668 O.indent(IndentLevel + Indent1)
1669 << "llvm::SplitString(*B, vec, \",\");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001670 }
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001671 else if (D.isParameter()){
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001672 O.indent(IndentLevel) << "llvm::SplitString("
1673 << D.GenVariableName() << ", vec, \",\");\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001674 }
1675 else {
1676 throw "Option '" + D.Name +
1677 "': switches can't have the 'unpack_values' property!";
1678 }
1679 }
1680 else {
1681 throw "Unknown action name: " + ActionName + "!";
1682 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001683 }
Mikhail Glushenkov08509492008-12-07 16:42:22 +00001684 public:
1685 EmitActionHandler(const OptionDescriptions& OD)
1686 : OptDescs(OD) {}
1687
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001688 void operator()(const Init* Statement, unsigned IndentLevel,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001689 raw_ostream& O) const
Mikhail Glushenkov08509492008-12-07 16:42:22 +00001690 {
1691 if (typeid(*Statement) == typeid(ListInit)) {
1692 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
1693 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
1694 B != E; ++B)
1695 this->processActionDag(*B, IndentLevel, O);
1696 }
1697 else {
1698 this->processActionDag(Statement, IndentLevel, O);
1699 }
1700 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001701};
1702
Mikhail Glushenkov0b599392009-10-09 05:45:21 +00001703bool IsOutFileIndexCheckRequiredStr (const Init* CmdLine) {
1704 StrVector StrVec;
1705 TokenizeCmdline(InitPtrToString(CmdLine), StrVec);
1706
1707 for (StrVector::const_iterator I = StrVec.begin(), E = StrVec.end();
1708 I != E; ++I) {
1709 if (*I == "$OUTFILE")
1710 return false;
1711 }
1712
1713 return true;
1714}
1715
1716class IsOutFileIndexCheckRequiredStrCallback {
1717 bool* ret_;
1718
1719public:
1720 IsOutFileIndexCheckRequiredStrCallback(bool* ret) : ret_(ret)
1721 {}
1722
1723 void operator()(const Init* CmdLine) {
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001724 // Ignore nested 'case' DAG.
1725 if (typeid(*CmdLine) == typeid(DagInit))
1726 return;
1727
Mikhail Glushenkov0b599392009-10-09 05:45:21 +00001728 if (IsOutFileIndexCheckRequiredStr(CmdLine))
1729 *ret_ = true;
1730 }
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00001731
1732 void operator()(const DagInit* Test, unsigned, bool) {
1733 this->operator()(Test);
1734 }
1735 void operator()(const Init* Statement, unsigned) {
1736 this->operator()(Statement);
1737 }
Mikhail Glushenkov0b599392009-10-09 05:45:21 +00001738};
1739
1740bool IsOutFileIndexCheckRequiredCase (Init* CmdLine) {
1741 bool ret = false;
1742 WalkCase(CmdLine, Id(), IsOutFileIndexCheckRequiredStrCallback(&ret));
1743 return ret;
1744}
1745
1746/// IsOutFileIndexCheckRequired - Should we emit an "out_file_index != -1" check
1747/// in EmitGenerateActionMethod() ?
1748bool IsOutFileIndexCheckRequired (Init* CmdLine) {
1749 if (typeid(*CmdLine) == typeid(StringInit))
1750 return IsOutFileIndexCheckRequiredStr(CmdLine);
1751 else
1752 return IsOutFileIndexCheckRequiredCase(CmdLine);
1753}
1754
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001755// EmitGenerateActionMethod - Emit either a normal or a "join" version of the
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001756// Tool::GenerateAction() method.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001757void EmitGenerateActionMethod (const ToolDescription& D,
1758 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001759 bool IsJoin, raw_ostream& O) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001760 if (IsJoin)
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001761 O.indent(Indent1) << "Action GenerateAction(const PathVector& inFiles,\n";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001762 else
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001763 O.indent(Indent1) << "Action GenerateAction(const sys::Path& inFile,\n";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001764
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001765 O.indent(Indent2) << "bool HasChildren,\n";
1766 O.indent(Indent2) << "const llvm::sys::Path& TempDir,\n";
1767 O.indent(Indent2) << "const InputLanguagesSet& InLangs,\n";
1768 O.indent(Indent2) << "const LanguageMap& LangMap) const\n";
1769 O.indent(Indent1) << "{\n";
1770 O.indent(Indent2) << "std::string cmd;\n";
1771 O.indent(Indent2) << "std::vector<std::string> vec;\n";
1772 O.indent(Indent2) << "bool stop_compilation = !HasChildren;\n";
1773 O.indent(Indent2) << "const char* output_suffix = \""
1774 << D.OutputSuffix << "\";\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001775
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001776 if (!D.CmdLine)
1777 throw "Tool " + D.Name + " has no cmd_line property!";
Mikhail Glushenkov0b599392009-10-09 05:45:21 +00001778
1779 bool IndexCheckRequired = IsOutFileIndexCheckRequired(D.CmdLine);
1780 O.indent(Indent2) << "int out_file_index"
1781 << (IndexCheckRequired ? " = -1" : "")
1782 << ";\n\n";
1783
1784 // Process the cmd_line property.
1785 if (typeid(*D.CmdLine) == typeid(StringInit))
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001786 EmitCmdLineVecFill(D.CmdLine, D.Name, IsJoin, Indent2, O);
1787 else
1788 EmitCaseConstructHandler(D.CmdLine, Indent2,
1789 EmitCmdLineVecFillCallback(IsJoin, D.Name),
1790 true, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001791
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001792 // For every understood option, emit handling code.
1793 if (D.Actions)
1794 EmitCaseConstructHandler(D.Actions, Indent2, EmitActionHandler(OptDescs),
1795 false, OptDescs, O);
1796
1797 O << '\n';
1798 O.indent(Indent2)
1799 << "std::string out_file = OutFilename("
1800 << (IsJoin ? "sys::Path(),\n" : "inFile,\n");
1801 O.indent(Indent3) << "TempDir, stop_compilation, output_suffix).str();\n\n";
Mikhail Glushenkov0b599392009-10-09 05:45:21 +00001802
1803 if (IndexCheckRequired)
1804 O.indent(Indent2) << "if (out_file_index != -1)\n";
1805 O.indent(IndexCheckRequired ? Indent3 : Indent2)
1806 << "vec[out_file_index] = out_file;\n";
Mikhail Glushenkov39482dd2009-10-08 04:40:08 +00001807
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001808 // Handle the Sink property.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001809 if (D.isSink()) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001810 O.indent(Indent2) << "if (!" << SinkOptionName << ".empty()) {\n";
1811 O.indent(Indent3) << "vec.insert(vec.end(), "
1812 << SinkOptionName << ".begin(), " << SinkOptionName
1813 << ".end());\n";
1814 O.indent(Indent2) << "}\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001815 }
1816
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001817 O.indent(Indent2) << "return Action(cmd, vec, stop_compilation, out_file);\n";
1818 O.indent(Indent1) << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001819}
1820
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001821/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1822/// a given Tool class.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001823void EmitGenerateActionMethods (const ToolDescription& ToolDesc,
1824 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001825 raw_ostream& O) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001826 if (!ToolDesc.isJoin()) {
1827 O.indent(Indent1) << "Action GenerateAction(const PathVector& inFiles,\n";
1828 O.indent(Indent2) << "bool HasChildren,\n";
1829 O.indent(Indent2) << "const llvm::sys::Path& TempDir,\n";
1830 O.indent(Indent2) << "const InputLanguagesSet& InLangs,\n";
1831 O.indent(Indent2) << "const LanguageMap& LangMap) const\n";
1832 O.indent(Indent1) << "{\n";
1833 O.indent(Indent2) << "throw std::runtime_error(\"" << ToolDesc.Name
1834 << " is not a Join tool!\");\n";
1835 O.indent(Indent1) << "}\n\n";
1836 }
1837 else {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001838 EmitGenerateActionMethod(ToolDesc, OptDescs, true, O);
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001839 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001840
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001841 EmitGenerateActionMethod(ToolDesc, OptDescs, false, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001842}
1843
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001844/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1845/// methods for a given Tool class.
Daniel Dunbar1a551802009-07-03 00:10:29 +00001846void EmitInOutLanguageMethods (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001847 O.indent(Indent1) << "const char** InputLanguages() const {\n";
1848 O.indent(Indent2) << "return InputLanguages_;\n";
1849 O.indent(Indent1) << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001850
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001851 if (D.OutLanguage.empty())
1852 throw "Tool " + D.Name + " has no 'out_language' property!";
1853
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001854 O.indent(Indent1) << "const char* OutputLanguage() const {\n";
1855 O.indent(Indent2) << "return \"" << D.OutLanguage << "\";\n";
1856 O.indent(Indent1) << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001857}
1858
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001859/// EmitNameMethod - Emit the Name() method for a given Tool class.
Daniel Dunbar1a551802009-07-03 00:10:29 +00001860void EmitNameMethod (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001861 O.indent(Indent1) << "const char* Name() const {\n";
1862 O.indent(Indent2) << "return \"" << D.Name << "\";\n";
1863 O.indent(Indent1) << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001864}
1865
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001866/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1867/// class.
Daniel Dunbar1a551802009-07-03 00:10:29 +00001868void EmitIsJoinMethod (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001869 O.indent(Indent1) << "bool IsJoin() const {\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001870 if (D.isJoin())
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001871 O.indent(Indent2) << "return true;\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001872 else
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001873 O.indent(Indent2) << "return false;\n";
1874 O.indent(Indent1) << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001875}
1876
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001877/// EmitStaticMemberDefinitions - Emit static member definitions for a
1878/// given Tool class.
Daniel Dunbar1a551802009-07-03 00:10:29 +00001879void EmitStaticMemberDefinitions(const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001880 if (D.InLanguage.empty())
1881 throw "Tool " + D.Name + " has no 'in_language' property!";
1882
1883 O << "const char* " << D.Name << "::InputLanguages_[] = {";
1884 for (StrVector::const_iterator B = D.InLanguage.begin(),
1885 E = D.InLanguage.end(); B != E; ++B)
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001886 O << '\"' << *B << "\", ";
1887 O << "0};\n\n";
1888}
1889
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001890/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001891void EmitToolClassDefinition (const ToolDescription& D,
1892 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001893 raw_ostream& O) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001894 if (D.Name == "root")
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001895 return;
1896
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001897 // Header
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001898 O << "class " << D.Name << " : public ";
1899 if (D.isJoin())
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +00001900 O << "JoinTool";
1901 else
1902 O << "Tool";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001903
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00001904 O << "{\nprivate:\n";
1905 O.indent(Indent1) << "static const char* InputLanguages_[];\n\n";
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001906
1907 O << "public:\n";
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001908 EmitNameMethod(D, O);
1909 EmitInOutLanguageMethods(D, O);
1910 EmitIsJoinMethod(D, O);
1911 EmitGenerateActionMethods(D, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001912
1913 // Close class definition
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001914 O << "};\n";
1915
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001916 EmitStaticMemberDefinitions(D, O);
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001917
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001918}
1919
Mikhail Glushenkov7c8deb32009-06-23 20:45:07 +00001920/// EmitOptionDefinitions - Iterate over a list of option descriptions
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001921/// and emit registration code.
Mikhail Glushenkov7c8deb32009-06-23 20:45:07 +00001922void EmitOptionDefinitions (const OptionDescriptions& descs,
1923 bool HasSink, bool HasExterns,
Daniel Dunbar1a551802009-07-03 00:10:29 +00001924 raw_ostream& O)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001925{
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001926 std::vector<OptionDescription> Aliases;
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001927
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001928 // Emit static cl::Option variables.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001929 for (OptionDescriptions::const_iterator B = descs.begin(),
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001930 E = descs.end(); B!=E; ++B) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001931 const OptionDescription& val = B->second;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001932
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001933 if (val.Type == OptionType::Alias) {
1934 Aliases.push_back(val);
1935 continue;
1936 }
1937
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001938 if (val.isExtern())
1939 O << "extern ";
1940
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001941 O << val.GenTypeDeclaration() << ' '
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001942 << val.GenVariableName();
1943
1944 if (val.isExtern()) {
1945 O << ";\n";
1946 continue;
1947 }
1948
Mikhail Glushenkov0cbb5902009-06-23 20:45:31 +00001949 O << "(\"" << val.Name << "\"\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001950
1951 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1952 O << ", cl::Prefix";
1953
1954 if (val.isRequired()) {
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001955 if (val.isList() && !val.isMultiVal())
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001956 O << ", cl::OneOrMore";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001957 else
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001958 O << ", cl::Required";
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001959 }
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001960 else if (val.isOneOrMore() && val.isList()) {
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001961 O << ", cl::OneOrMore";
1962 }
Mikhail Glushenkovcbc360d2009-07-07 16:08:11 +00001963 else if (val.isZeroOrOne() && val.isList()) {
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001964 O << ", cl::ZeroOrOne";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001965 }
1966
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001967 if (val.isReallyHidden()) {
1968 O << ", cl::ReallyHidden";
Mikhail Glushenkov739c7202008-11-28 00:13:25 +00001969 }
Mikhail Glushenkov19d3e822009-01-28 03:47:20 +00001970 else if (val.isHidden()) {
1971 O << ", cl::Hidden";
1972 }
1973
1974 if (val.MultiVal > 1)
Mikhail Glushenkov8fe44472009-07-07 16:08:41 +00001975 O << ", cl::multi_val(" << val.MultiVal << ')';
1976
1977 if (val.InitVal) {
1978 const std::string& str = val.InitVal->getAsString();
1979 O << ", cl::init(" << str << ')';
1980 }
Mikhail Glushenkov739c7202008-11-28 00:13:25 +00001981
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001982 if (!val.Help.empty())
1983 O << ", cl::desc(\"" << val.Help << "\")";
1984
Mikhail Glushenkov0cbb5902009-06-23 20:45:31 +00001985 O << ");\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001986 }
1987
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001988 // Emit the aliases (they should go after all the 'proper' options).
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001989 for (std::vector<OptionDescription>::const_iterator
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001990 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001991 const OptionDescription& val = *B;
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001992
1993 O << val.GenTypeDeclaration() << ' '
1994 << val.GenVariableName()
1995 << "(\"" << val.Name << '\"';
1996
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00001997 const OptionDescription& D = descs.FindOption(val.Help);
1998 O << ", cl::aliasopt(" << D.GenVariableName() << ")";
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001999
2000 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
2001 }
2002
2003 // Emit the sink option.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002004 if (HasSink)
Mikhail Glushenkovb59dbad2008-12-07 16:42:47 +00002005 O << (HasExterns ? "extern cl" : "cl")
2006 << "::list<std::string> " << SinkOptionName
2007 << (HasExterns ? ";\n" : "(cl::Sink);\n");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002008
2009 O << '\n';
2010}
2011
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002012/// PreprocessOptionsCallback - Helper function passed to
2013/// EmitCaseConstructHandler() by EmitPreprocessOptions().
2014class PreprocessOptionsCallback {
2015 const OptionDescriptions& OptDescs_;
2016
2017 void onUnsetOption(Init* i, unsigned IndentLevel, raw_ostream& O) {
2018 const std::string& OptName = InitPtrToString(i);
2019 const OptionDescription& OptDesc = OptDescs_.FindOption(OptName);
2020 const OptionType::OptionType OptType = OptDesc.Type;
2021
2022 if (OptType == OptionType::Switch) {
2023 O.indent(IndentLevel) << OptDesc.GenVariableName() << " = false;\n";
2024 }
2025 else if (OptType == OptionType::Parameter
2026 || OptType == OptionType::Prefix) {
2027 O.indent(IndentLevel) << OptDesc.GenVariableName() << " = \"\";\n";
2028 }
2029 else {
2030 throw std::string("'unset_option' can only be applied to "
2031 "switches or parameter/prefix options.");
2032 }
2033 }
2034
2035 void processDag(const Init* I, unsigned IndentLevel, raw_ostream& O)
2036 {
2037 const DagInit& d = InitPtrToDag(I);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00002038 const std::string& OpName = GetOperatorName(d);
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002039
2040 // TOFIX: there is some duplication between this function and
2041 // EmitActionHandler.
2042 if (OpName == "warning") {
2043 checkNumberOfArguments(&d, 1);
2044 O.indent(IndentLevel) << "llvm::errs() << \""
2045 << InitPtrToString(d.getArg(0)) << "\";\n";
2046 }
2047 else if (OpName == "error") {
2048 checkNumberOfArguments(&d, 1);
2049 O.indent(IndentLevel) << "throw std::runtime_error(\""
2050 << InitPtrToString(d.getArg(0))
2051 << "\");\n";
2052 }
2053 else if (OpName == "unset_option") {
2054 checkNumberOfArguments(&d, 1);
2055 Init* I = d.getArg(0);
2056 if (typeid(*I) == typeid(ListInit)) {
2057 const ListInit& DagList = *static_cast<const ListInit*>(I);
2058 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
2059 B != E; ++B)
2060 this->onUnsetOption(*B, IndentLevel, O);
2061 }
2062 else {
2063 this->onUnsetOption(I, IndentLevel, O);
2064 }
2065 }
2066 else {
2067 throw "Unknown operator in the option preprocessor: '" + OpName + "'!"
2068 "\nOnly 'warning', 'error' and 'unset_option' are allowed.";
2069 }
2070 }
2071
2072public:
2073
2074 // TODO: Remove duplication.
2075 void operator()(const Init* I, unsigned IndentLevel, raw_ostream& O) {
2076 if (typeid(*I) == typeid(ListInit)) {
2077 const ListInit& DagList = *static_cast<const ListInit*>(I);
2078 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
2079 B != E; ++B)
2080 this->processDag(*B, IndentLevel, O);
2081 }
2082 else {
2083 this->processDag(I, IndentLevel, O);
2084 }
2085 }
2086
2087 PreprocessOptionsCallback(const OptionDescriptions& OptDescs)
2088 : OptDescs_(OptDescs)
2089 {}
2090};
2091
2092/// EmitPreprocessOptions - Emit the PreprocessOptionsLocal() function.
2093void EmitPreprocessOptions (const RecordKeeper& Records,
2094 const OptionDescriptions& OptDecs, raw_ostream& O)
2095{
2096 O << "void PreprocessOptionsLocal() {\n";
2097
2098 const RecordVector& OptionPreprocessors =
2099 Records.getAllDerivedDefinitions("OptionPreprocessor");
2100
2101 for (RecordVector::const_iterator B = OptionPreprocessors.begin(),
2102 E = OptionPreprocessors.end(); B!=E; ++B) {
2103 DagInit* Case = (*B)->getValueAsDag("preprocessor");
2104 EmitCaseConstructHandler(Case, Indent1, PreprocessOptionsCallback(OptDecs),
2105 false, OptDecs, O);
2106 }
2107
2108 O << "}\n\n";
2109}
2110
2111/// EmitPopulateLanguageMap - Emit the PopulateLanguageMapLocal() function.
Daniel Dunbar1a551802009-07-03 00:10:29 +00002112void EmitPopulateLanguageMap (const RecordKeeper& Records, raw_ostream& O)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002113{
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002114 O << "void PopulateLanguageMapLocal(LanguageMap& langMap) {\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002115
Mikhail Glushenkov01088772008-11-17 17:29:18 +00002116 // Get the relevant field out of RecordKeeper
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002117 const Record* LangMapRecord = Records.getDef("LanguageMap");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002118
Mikhail Glushenkov01088772008-11-17 17:29:18 +00002119 // It is allowed for a plugin to have no language map.
2120 if (LangMapRecord) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002121
Mikhail Glushenkov01088772008-11-17 17:29:18 +00002122 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
2123 if (!LangsToSuffixesList)
2124 throw std::string("Error in the language map definition!");
2125
2126 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002127 const Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
Mikhail Glushenkov01088772008-11-17 17:29:18 +00002128
2129 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
2130 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
2131
2132 for (unsigned i = 0; i < Suffixes->size(); ++i)
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002133 O.indent(Indent1) << "langMap[\""
2134 << InitPtrToString(Suffixes->getElement(i))
2135 << "\"] = \"" << Lang << "\";\n";
Mikhail Glushenkov01088772008-11-17 17:29:18 +00002136 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002137 }
2138
Mikhail Glushenkove1d44b52008-12-11 10:34:18 +00002139 O << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002140}
2141
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002142/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
2143/// by EmitEdgeClass().
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002144void IncDecWeight (const Init* i, unsigned IndentLevel,
Daniel Dunbar1a551802009-07-03 00:10:29 +00002145 raw_ostream& O) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00002146 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00002147 const std::string& OpName = GetOperatorName(d);
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002148
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00002149 if (OpName == "inc_weight") {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002150 O.indent(IndentLevel) << "ret += ";
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00002151 }
2152 else if (OpName == "dec_weight") {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002153 O.indent(IndentLevel) << "ret -= ";
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00002154 }
2155 else if (OpName == "error") {
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002156 checkNumberOfArguments(&d, 1);
2157 O.indent(IndentLevel) << "throw std::runtime_error(\""
2158 << InitPtrToString(d.getArg(0))
2159 << "\");\n";
Mikhail Glushenkov5c2b6b22008-12-17 02:47:01 +00002160 return;
2161 }
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002162 else {
2163 throw "Unknown operator in edge properties list: '" + OpName + "'!"
Mikhail Glushenkov65ee1e62008-12-18 04:06:58 +00002164 "\nOnly 'inc_weight', 'dec_weight' and 'error' are allowed.";
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002165 }
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002166
2167 if (d.getNumArgs() > 0)
2168 O << InitPtrToInt(d.getArg(0)) << ";\n";
2169 else
2170 O << "2;\n";
2171
Mikhail Glushenkov29063552008-05-06 18:18:20 +00002172}
2173
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00002174/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00002175void EmitEdgeClass (unsigned N, const std::string& Target,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002176 DagInit* Case, const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00002177 raw_ostream& O) {
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00002178
2179 // Class constructor.
2180 O << "class Edge" << N << ": public Edge {\n"
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002181 << "public:\n";
2182 O.indent(Indent1) << "Edge" << N << "() : Edge(\"" << Target
2183 << "\") {}\n\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00002184
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00002185 // Function Weight().
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002186 O.indent(Indent1)
2187 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n";
2188 O.indent(Indent2) << "unsigned ret = 0;\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00002189
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002190 // Handle the 'case' construct.
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00002191 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00002192
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002193 O.indent(Indent2) << "return ret;\n";
2194 O.indent(Indent1) << "};\n\n};\n\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00002195}
2196
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002197/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002198void EmitEdgeClasses (const RecordVector& EdgeVector,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002199 const OptionDescriptions& OptDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00002200 raw_ostream& O) {
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002201 int i = 0;
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +00002202 for (RecordVector::const_iterator B = EdgeVector.begin(),
2203 E = EdgeVector.end(); B != E; ++B) {
2204 const Record* Edge = *B;
2205 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002206 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00002207
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002208 if (!isDagEmpty(Weight))
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +00002209 EmitEdgeClass(i, NodeB, Weight, OptDescs, O);
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002210 ++i;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00002211 }
2212}
2213
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002214/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraphLocal()
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00002215/// function.
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002216void EmitPopulateCompilationGraph (const RecordVector& EdgeVector,
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002217 const ToolDescriptions& ToolDescs,
Daniel Dunbar1a551802009-07-03 00:10:29 +00002218 raw_ostream& O)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002219{
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002220 O << "void PopulateCompilationGraphLocal(CompilationGraph& G) {\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002221
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002222 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2223 E = ToolDescs.end(); B != E; ++B)
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002224 O.indent(Indent1) << "G.insertNode(new " << (*B)->Name << "());\n";
Mikhail Glushenkov262d2482008-11-12 00:05:17 +00002225
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00002226 O << '\n';
2227
Mikhail Glushenkov262d2482008-11-12 00:05:17 +00002228 // Insert edges.
2229
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002230 int i = 0;
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +00002231 for (RecordVector::const_iterator B = EdgeVector.begin(),
2232 E = EdgeVector.end(); B != E; ++B) {
2233 const Record* Edge = *B;
2234 const std::string& NodeA = Edge->getValueAsString("a");
2235 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002236 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00002237
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002238 O.indent(Indent1) << "G.insertEdge(\"" << NodeA << "\", ";
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00002239
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00002240 if (isDagEmpty(Weight))
Mikhail Glushenkov15b71ba2008-12-07 16:44:47 +00002241 O << "new SimpleEdge(\"" << NodeB << "\")";
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00002242 else
2243 O << "new Edge" << i << "()";
2244
2245 O << ");\n";
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002246 ++i;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002247 }
2248
Mikhail Glushenkove1d44b52008-12-11 10:34:18 +00002249 O << "}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002250}
2251
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002252/// ExtractHookNames - Extract the hook names from all instances of
2253/// $CALL(HookName) in the provided command line string. Helper
2254/// function used by FillInHookNames().
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002255class ExtractHookNames {
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002256 llvm::StringMap<unsigned>& HookNames_;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002257public:
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002258 ExtractHookNames(llvm::StringMap<unsigned>& HookNames)
2259 : HookNames_(HookNames) {}
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002260
2261 void operator()(const Init* CmdLine) {
2262 StrVector cmds;
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00002263
2264 // Ignore nested 'case' DAG.
2265 if (typeid(*CmdLine) == typeid(DagInit))
2266 return;
2267
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002268 TokenizeCmdline(InitPtrToString(CmdLine), cmds);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002269 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
2270 B != E; ++B) {
2271 const std::string& cmd = *B;
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002272
2273 if (cmd == "$CALL") {
2274 unsigned NumArgs = 0;
2275 checkedIncrement(B, E, "Syntax error in $CALL invocation!");
2276 const std::string& HookName = *B;
2277
2278
2279 if (HookName.at(0) == ')')
2280 throw "$CALL invoked with no arguments!";
2281
2282 while (++B != E && B->at(0) != ')') {
2283 ++NumArgs;
2284 }
2285
2286 StringMap<unsigned>::const_iterator H = HookNames_.find(HookName);
2287
2288 if (H != HookNames_.end() && H->second != NumArgs)
2289 throw "Overloading of hooks is not allowed. Overloaded hook: "
2290 + HookName;
2291 else
2292 HookNames_[HookName] = NumArgs;
2293
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002294 }
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002295 }
2296 }
Mikhail Glushenkov4d21ae72009-10-18 22:51:30 +00002297
2298 void operator()(const DagInit* Test, unsigned, bool) {
2299 this->operator()(Test);
2300 }
2301 void operator()(const Init* Statement, unsigned) {
2302 this->operator()(Statement);
2303 }
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002304};
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00002305
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002306/// FillInHookNames - Actually extract the hook names from all command
2307/// line strings. Helper function used by EmitHookDeclarations().
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002308void FillInHookNames(const ToolDescriptions& ToolDescs,
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002309 llvm::StringMap<unsigned>& HookNames)
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002310{
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00002311 // For all command lines:
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002312 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2313 E = ToolDescs.end(); B != E; ++B) {
2314 const ToolDescription& D = *(*B);
2315 if (!D.CmdLine)
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002316 continue;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002317 if (dynamic_cast<StringInit*>(D.CmdLine))
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002318 // This is a string.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002319 ExtractHookNames(HookNames).operator()(D.CmdLine);
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00002320 else
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002321 // This is a 'case' construct.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002322 WalkCase(D.CmdLine, Id(), ExtractHookNames(HookNames));
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002323 }
2324}
2325
2326/// EmitHookDeclarations - Parse CmdLine fields of all the tool
2327/// property records and emit hook function declaration for each
2328/// instance of $CALL(HookName).
Daniel Dunbar1a551802009-07-03 00:10:29 +00002329void EmitHookDeclarations(const ToolDescriptions& ToolDescs, raw_ostream& O) {
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002330 llvm::StringMap<unsigned> HookNames;
2331
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002332 FillInHookNames(ToolDescs, HookNames);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002333 if (HookNames.empty())
2334 return;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002335
2336 O << "namespace hooks {\n";
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002337 for (StringMap<unsigned>::const_iterator B = HookNames.begin(),
2338 E = HookNames.end(); B != E; ++B) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002339 O.indent(Indent1) << "std::string " << B->first() << "(";
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002340
Mikhail Glushenkova298bb72009-01-21 13:04:00 +00002341 for (unsigned i = 0, j = B->second; i < j; ++i) {
2342 O << "const char* Arg" << i << (i+1 == j ? "" : ", ");
2343 }
2344
2345 O <<");\n";
2346 }
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00002347 O << "}\n\n";
2348}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002349
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002350/// EmitRegisterPlugin - Emit code to register this plugin.
Daniel Dunbar1a551802009-07-03 00:10:29 +00002351void EmitRegisterPlugin(int Priority, raw_ostream& O) {
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002352 O << "struct Plugin : public llvmc::BasePlugin {\n\n";
2353 O.indent(Indent1) << "int Priority() const { return "
2354 << Priority << "; }\n\n";
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002355 O.indent(Indent1) << "void PreprocessOptions() const\n";
2356 O.indent(Indent1) << "{ PreprocessOptionsLocal(); }\n\n";
Mikhail Glushenkovf8349ac2009-09-21 15:53:44 +00002357 O.indent(Indent1) << "void PopulateLanguageMap(LanguageMap& langMap) const\n";
2358 O.indent(Indent1) << "{ PopulateLanguageMapLocal(langMap); }\n\n";
2359 O.indent(Indent1)
2360 << "void PopulateCompilationGraph(CompilationGraph& graph) const\n";
2361 O.indent(Indent1) << "{ PopulateCompilationGraphLocal(graph); }\n"
2362 << "};\n\n"
2363 << "static llvmc::RegisterPlugin<Plugin> RP;\n\n";
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002364}
2365
Mikhail Glushenkov67665722008-11-12 12:41:18 +00002366/// EmitIncludes - Emit necessary #include directives and some
2367/// additional declarations.
Daniel Dunbar1a551802009-07-03 00:10:29 +00002368void EmitIncludes(raw_ostream& O) {
Mikhail Glushenkovad981bf2009-09-28 01:16:42 +00002369 O << "#include \"llvm/CompilerDriver/BuiltinOptions.h\"\n"
2370 << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n"
Mikhail Glushenkovd80d8692009-06-23 20:46:48 +00002371 << "#include \"llvm/CompilerDriver/ForceLinkageMacros.h\"\n"
Mikhail Glushenkov4a1a77c2008-09-22 20:50:40 +00002372 << "#include \"llvm/CompilerDriver/Plugin.h\"\n"
2373 << "#include \"llvm/CompilerDriver/Tool.h\"\n\n"
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002374
2375 << "#include \"llvm/ADT/StringExtras.h\"\n"
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002376 << "#include \"llvm/Support/CommandLine.h\"\n"
2377 << "#include \"llvm/Support/raw_ostream.h\"\n\n"
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002378
2379 << "#include <cstdlib>\n"
2380 << "#include <stdexcept>\n\n"
2381
2382 << "using namespace llvm;\n"
2383 << "using namespace llvmc;\n\n"
2384
Mikhail Glushenkov67665722008-11-12 12:41:18 +00002385 << "extern cl::opt<std::string> OutputFilename;\n\n"
2386
2387 << "inline const char* checkCString(const char* s)\n"
2388 << "{ return s == NULL ? \"\" : s; }\n\n";
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00002389}
2390
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002391
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002392/// PluginData - Holds all information about a plugin.
2393struct PluginData {
2394 OptionDescriptions OptDescs;
2395 bool HasSink;
Mikhail Glushenkovb59dbad2008-12-07 16:42:47 +00002396 bool HasExterns;
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002397 ToolDescriptions ToolDescs;
2398 RecordVector Edges;
2399 int Priority;
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002400};
2401
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002402/// HasSink - Go through the list of tool descriptions and check if
Mikhail Glushenkovb59dbad2008-12-07 16:42:47 +00002403/// there are any with the 'sink' property set.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002404bool HasSink(const ToolDescriptions& ToolDescs) {
2405 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2406 E = ToolDescs.end(); B != E; ++B)
2407 if ((*B)->isSink())
2408 return true;
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002409
Mikhail Glushenkovb59dbad2008-12-07 16:42:47 +00002410 return false;
2411}
2412
2413/// HasExterns - Go through the list of option descriptions and check
2414/// if there are any external options.
2415bool HasExterns(const OptionDescriptions& OptDescs) {
2416 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
2417 E = OptDescs.end(); B != E; ++B)
2418 if (B->second.isExtern())
2419 return true;
2420
2421 return false;
Mikhail Glushenkovfa270772008-11-17 17:29:42 +00002422}
2423
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002424/// CollectPluginData - Collect tool and option properties,
2425/// compilation graph edges and plugin priority from the parse tree.
2426void CollectPluginData (const RecordKeeper& Records, PluginData& Data) {
2427 // Collect option properties.
2428 const RecordVector& OptionLists =
2429 Records.getAllDerivedDefinitions("OptionList");
2430 CollectOptionDescriptions(OptionLists.begin(), OptionLists.end(),
2431 Data.OptDescs);
2432
2433 // Collect tool properties.
2434 const RecordVector& Tools = Records.getAllDerivedDefinitions("Tool");
2435 CollectToolDescriptions(Tools.begin(), Tools.end(), Data.ToolDescs);
2436 Data.HasSink = HasSink(Data.ToolDescs);
Mikhail Glushenkovb59dbad2008-12-07 16:42:47 +00002437 Data.HasExterns = HasExterns(Data.OptDescs);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002438
2439 // Collect compilation graph edges.
2440 const RecordVector& CompilationGraphs =
2441 Records.getAllDerivedDefinitions("CompilationGraph");
2442 FillInEdgeVector(CompilationGraphs.begin(), CompilationGraphs.end(),
2443 Data.Edges);
2444
2445 // Calculate the priority of this plugin.
2446 const RecordVector& Priorities =
2447 Records.getAllDerivedDefinitions("PluginPriority");
2448 Data.Priority = CalculatePriority(Priorities.begin(), Priorities.end());
Mikhail Glushenkov35fde152008-11-17 17:30:25 +00002449}
2450
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002451/// CheckPluginData - Perform some sanity checks on the collected data.
2452void CheckPluginData(PluginData& Data) {
2453 // Filter out all tools not mentioned in the compilation graph.
2454 FilterNotInGraph(Data.Edges, Data.ToolDescs);
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002455
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002456 // Typecheck the compilation graph.
2457 TypecheckGraph(Data.Edges, Data.ToolDescs);
2458
2459 // Check that there are no options without side effects (specified
2460 // only in the OptionList).
2461 CheckForSuperfluousOptions(Data.Edges, Data.ToolDescs, Data.OptDescs);
2462
Mikhail Glushenkovad746be2008-11-28 00:13:47 +00002463}
2464
Daniel Dunbar1a551802009-07-03 00:10:29 +00002465void EmitPluginCode(const PluginData& Data, raw_ostream& O) {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002466 // Emit file header.
2467 EmitIncludes(O);
2468
2469 // Emit global option registration code.
Mikhail Glushenkov7c8deb32009-06-23 20:45:07 +00002470 EmitOptionDefinitions(Data.OptDescs, Data.HasSink, Data.HasExterns, O);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002471
2472 // Emit hook declarations.
2473 EmitHookDeclarations(Data.ToolDescs, O);
2474
Mikhail Glushenkove1d44b52008-12-11 10:34:18 +00002475 O << "namespace {\n\n";
2476
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002477 // Emit PreprocessOptionsLocal() function.
2478 EmitPreprocessOptions(Records, Data.OptDescs, O);
2479
2480 // Emit PopulateLanguageMapLocal() function
2481 // (language map maps from file extensions to language names).
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002482 EmitPopulateLanguageMap(Records, O);
2483
2484 // Emit Tool classes.
2485 for (ToolDescriptions::const_iterator B = Data.ToolDescs.begin(),
2486 E = Data.ToolDescs.end(); B!=E; ++B)
2487 EmitToolClassDefinition(*(*B), Data.OptDescs, O);
2488
2489 // Emit Edge# classes.
2490 EmitEdgeClasses(Data.Edges, Data.OptDescs, O);
2491
Mikhail Glushenkov0a22fb62009-10-17 20:09:29 +00002492 // Emit PopulateCompilationGraphLocal() function.
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002493 EmitPopulateCompilationGraph(Data.Edges, Data.ToolDescs, O);
2494
2495 // Emit code for plugin registration.
2496 EmitRegisterPlugin(Data.Priority, O);
2497
Mikhail Glushenkovd80d8692009-06-23 20:46:48 +00002498 O << "} // End anonymous namespace.\n\n";
2499
2500 // Force linkage magic.
2501 O << "namespace llvmc {\n";
2502 O << "LLVMC_FORCE_LINKAGE_DECL(LLVMC_PLUGIN_NAME) {}\n";
2503 O << "}\n";
2504
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002505 // EOF
2506}
2507
2508
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002509// End of anonymous namespace
Mikhail Glushenkov895820d2008-05-06 18:12:03 +00002510}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002511
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00002512/// run - The back-end entry point.
Daniel Dunbar1a551802009-07-03 00:10:29 +00002513void LLVMCConfigurationEmitter::run (raw_ostream &O) {
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00002514 try {
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002515 PluginData Data;
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00002516
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002517 CollectPluginData(Records, Data);
2518 CheckPluginData(Data);
2519
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +00002520 EmitSourceFileHeader("LLVMC Configuration Library", O);
Mikhail Glushenkovf9152532008-12-07 16:41:11 +00002521 EmitPluginCode(Data, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002522
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00002523 } catch (std::exception& Error) {
2524 throw Error.what() + std::string(" - usually this means a syntax error.");
2525 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002526}