blob: 546988a10e4d1cf9d027130e772789d743854809 [file] [log] [blame]
Mikhail Glushenkov2d3327f2008-05-30 06:20:54 +00001//===- LLVMCConfigurationEmitter.cpp - Generate LLVMC config ----*- C++ -*-===//
Anton Korobeynikove9ffb5b2008-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 Glushenkov34307a92008-05-06 18:08:59 +000010// This tablegen backend is responsible for emitting LLVMC configuration code.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
Mikhail Glushenkov41405722008-05-06 18:09:29 +000014#include "LLVMCConfigurationEmitter.h"
Anton Korobeynikove9ffb5b2008-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 Glushenkov0e92d2f2008-05-30 06:18:16 +000021#include "llvm/ADT/StringSet.h"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000022#include <algorithm>
23#include <cassert>
24#include <functional>
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +000025#include <stdexcept>
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000026#include <string>
Chris Lattner52aa6862008-06-04 04:46:14 +000027#include <typeinfo>
Mikhail Glushenkovb08aafd2008-11-12 00:04:46 +000028
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000029using namespace llvm;
30
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000031
32//===----------------------------------------------------------------------===//
33/// Typedefs
34
35typedef std::vector<Record*> RecordVector;
36typedef std::vector<std::string> StrVector;
37
38//===----------------------------------------------------------------------===//
39/// Constants
40
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +000041// Indentation.
Chris Lattnerf982ca62009-11-03 18:30:31 +000042static const unsigned TabWidth = 4;
43static const unsigned Indent1 = TabWidth*1;
44static const unsigned Indent2 = TabWidth*2;
45static const unsigned Indent3 = TabWidth*3;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000046
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000047// Default help string.
Chris Lattnerf982ca62009-11-03 18:30:31 +000048static const char * const DefaultHelpString = "NO HELP MESSAGE PROVIDED";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000049
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000050// Name for the "sink" option.
Chris Lattnerf982ca62009-11-03 18:30:31 +000051static const char * const SinkOptionName = "AutoGeneratedSinkOption";
52
53namespace {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000054
55//===----------------------------------------------------------------------===//
56/// Helper functions
57
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +000058/// Id - An 'identity' function object.
59struct Id {
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +000060 template<typename T0>
61 void operator()(const T0&) const {
62 }
63 template<typename T0, typename T1>
64 void operator()(const T0&, const T1&) const {
65 }
66 template<typename T0, typename T1, typename T2>
67 void operator()(const T0&, const T1&, const T2&) const {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +000068 }
69};
70
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000071int InitPtrToInt(const Init* ptr) {
72 const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000073 return val.getValue();
74}
75
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +000076const std::string& InitPtrToString(const Init* ptr) {
77 const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
78 return val.getValue();
79}
80
81const ListInit& InitPtrToList(const Init* ptr) {
82 const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
83 return val;
84}
85
86const DagInit& InitPtrToDag(const Init* ptr) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000087 const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000088 return val;
89}
90
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +000091const std::string GetOperatorName(const DagInit* D) {
92 return D->getOperator()->getAsString();
93}
94
95const std::string GetOperatorName(const DagInit& D) {
96 return GetOperatorName(&D);
97}
98
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000099// checkNumberOfArguments - Ensure that the number of args in d is
Mikhail Glushenkova964b032009-07-07 16:07:36 +0000100// greater than or equal to min_arguments, otherwise throw an exception.
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000101void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000102 if (!d || d->getNumArgs() < min_arguments)
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000103 throw GetOperatorName(d) + ": too few arguments!";
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000104}
105
Mikhail Glushenkovdedba642008-05-30 06:08:50 +0000106// isDagEmpty - is this DAG marked with an empty marker?
107bool isDagEmpty (const DagInit* d) {
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000108 return GetOperatorName(d) == "empty_dag_marker";
Mikhail Glushenkovdedba642008-05-30 06:08:50 +0000109}
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000110
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000111// EscapeVariableName - Escape commas and other symbols not allowed
112// in the C++ variable names. Makes it possible to use options named
113// like "Wa," (useful for prefix options).
114std::string EscapeVariableName(const std::string& Var) {
115 std::string ret;
116 for (unsigned i = 0; i != Var.size(); ++i) {
117 char cur_char = Var[i];
118 if (cur_char == ',') {
119 ret += "_comma_";
120 }
121 else if (cur_char == '+') {
122 ret += "_plus_";
123 }
124 else if (cur_char == '-') {
125 ret += "_dash_";
126 }
127 else {
128 ret.push_back(cur_char);
129 }
130 }
131 return ret;
132}
133
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +0000134/// oneOf - Does the input string contain this character?
135bool oneOf(const char* lst, char c) {
136 while (*lst) {
137 if (*lst++ == c)
138 return true;
139 }
140 return false;
141}
142
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000143template <class I, class S>
144void checkedIncrement(I& P, I E, S ErrorString) {
145 ++P;
146 if (P == E)
147 throw ErrorString;
148}
149
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000150// apply is needed because C++'s syntax doesn't let us construct a function
151// object and call it in the same statement.
152template<typename F, typename T0>
153void apply(F Fun, T0& Arg0) {
154 return Fun(Arg0);
155}
156
157template<typename F, typename T0, typename T1>
158void apply(F Fun, T0& Arg0, T1& Arg1) {
159 return Fun(Arg0, Arg1);
160}
161
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000162//===----------------------------------------------------------------------===//
163/// Back-end specific code
164
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000165
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000166/// OptionType - One of six different option types. See the
167/// documentation for detailed description of differences.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000168namespace OptionType {
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000169
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000170 enum OptionType { Alias, Switch, Parameter, ParameterList,
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000171 Prefix, PrefixList};
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000172
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000173 bool IsAlias(OptionType t) {
174 return (t == Alias);
175 }
176
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000177 bool IsList (OptionType t) {
178 return (t == ParameterList || t == PrefixList);
179 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000180
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000181 bool IsSwitch (OptionType t) {
182 return (t == Switch);
183 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000184
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000185 bool IsParameter (OptionType t) {
186 return (t == Parameter || t == Prefix);
187 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000188
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000189}
190
191OptionType::OptionType stringToOptionType(const std::string& T) {
192 if (T == "alias_option")
193 return OptionType::Alias;
194 else if (T == "switch_option")
195 return OptionType::Switch;
196 else if (T == "parameter_option")
197 return OptionType::Parameter;
198 else if (T == "parameter_list_option")
199 return OptionType::ParameterList;
200 else if (T == "prefix_option")
201 return OptionType::Prefix;
202 else if (T == "prefix_list_option")
203 return OptionType::PrefixList;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000204 else
205 throw "Unknown option type: " + T + '!';
206}
207
208namespace OptionDescriptionFlags {
209 enum OptionDescriptionFlags { Required = 0x1, Hidden = 0x2,
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000210 ReallyHidden = 0x4, Extern = 0x8,
211 OneOrMore = 0x10, ZeroOrOne = 0x20 };
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000212}
213
214/// OptionDescription - Represents data contained in a single
215/// OptionList entry.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000216struct OptionDescription {
217 OptionType::OptionType Type;
218 std::string Name;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000219 unsigned Flags;
220 std::string Help;
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000221 unsigned MultiVal;
Mikhail Glushenkovdef9c572009-07-07 16:08:41 +0000222 Init* InitVal;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000223
224 OptionDescription(OptionType::OptionType t = OptionType::Switch,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000225 const std::string& n = "",
226 const std::string& h = DefaultHelpString)
Mikhail Glushenkovdef9c572009-07-07 16:08:41 +0000227 : Type(t), Name(n), Flags(0x0), Help(h), MultiVal(1), InitVal(0)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000228 {}
229
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000230 /// GenTypeDeclaration - Returns the C++ variable type of this
231 /// option.
232 const char* GenTypeDeclaration() const;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000233
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000234 /// GenVariableName - Returns the variable name used in the
235 /// generated C++ code.
236 std::string GenVariableName() const;
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000237
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000238 /// Merge - Merge two option descriptions.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000239 void Merge (const OptionDescription& other);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000240
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000241 // Misc convenient getters/setters.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000242
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000243 bool isAlias() const;
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000244
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000245 bool isMultiVal() const;
246
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000247 bool isExtern() const;
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000248 void setExtern();
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000249
250 bool isRequired() const;
251 void setRequired();
252
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000253 bool isOneOrMore() const;
254 void setOneOrMore();
255
256 bool isZeroOrOne() const;
257 void setZeroOrOne();
258
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000259 bool isHidden() const;
260 void setHidden();
261
262 bool isReallyHidden() const;
263 void setReallyHidden();
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000264
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000265 bool isSwitch() const
266 { return OptionType::IsSwitch(this->Type); }
267
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000268 bool isParameter() const
269 { return OptionType::IsParameter(this->Type); }
270
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +0000271 bool isList() const
272 { return OptionType::IsList(this->Type); }
273
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000274};
275
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000276void OptionDescription::Merge (const OptionDescription& other)
277{
278 if (other.Type != Type)
279 throw "Conflicting definitions for the option " + Name + "!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000280
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000281 if (Help == other.Help || Help == DefaultHelpString)
282 Help = other.Help;
283 else if (other.Help != DefaultHelpString) {
Daniel Dunbard4287062009-07-03 00:10:29 +0000284 llvm::errs() << "Warning: several different help strings"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000285 " defined for option " + Name + "\n";
286 }
287
288 Flags |= other.Flags;
289}
290
291bool OptionDescription::isAlias() const {
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000292 return OptionType::IsAlias(this->Type);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000293}
294
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000295bool OptionDescription::isMultiVal() const {
Mikhail Glushenkove3649982009-01-28 03:47:58 +0000296 return MultiVal > 1;
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000297}
298
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000299bool OptionDescription::isExtern() const {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000300 return Flags & OptionDescriptionFlags::Extern;
301}
302void OptionDescription::setExtern() {
303 Flags |= OptionDescriptionFlags::Extern;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000304}
305
306bool OptionDescription::isRequired() const {
307 return Flags & OptionDescriptionFlags::Required;
308}
309void OptionDescription::setRequired() {
310 Flags |= OptionDescriptionFlags::Required;
311}
312
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000313bool OptionDescription::isOneOrMore() const {
314 return Flags & OptionDescriptionFlags::OneOrMore;
315}
316void OptionDescription::setOneOrMore() {
317 Flags |= OptionDescriptionFlags::OneOrMore;
318}
319
320bool OptionDescription::isZeroOrOne() const {
321 return Flags & OptionDescriptionFlags::ZeroOrOne;
322}
323void OptionDescription::setZeroOrOne() {
324 Flags |= OptionDescriptionFlags::ZeroOrOne;
325}
326
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000327bool OptionDescription::isHidden() const {
328 return Flags & OptionDescriptionFlags::Hidden;
329}
330void OptionDescription::setHidden() {
331 Flags |= OptionDescriptionFlags::Hidden;
332}
333
334bool OptionDescription::isReallyHidden() const {
335 return Flags & OptionDescriptionFlags::ReallyHidden;
336}
337void OptionDescription::setReallyHidden() {
338 Flags |= OptionDescriptionFlags::ReallyHidden;
339}
340
341const char* OptionDescription::GenTypeDeclaration() const {
342 switch (Type) {
343 case OptionType::Alias:
344 return "cl::alias";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000345 case OptionType::PrefixList:
346 case OptionType::ParameterList:
347 return "cl::list<std::string>";
348 case OptionType::Switch:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000349 return "cl::opt<bool>";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000350 case OptionType::Parameter:
351 case OptionType::Prefix:
352 default:
353 return "cl::opt<std::string>";
354 }
355}
356
357std::string OptionDescription::GenVariableName() const {
358 const std::string& EscapedName = EscapeVariableName(Name);
359 switch (Type) {
360 case OptionType::Alias:
361 return "AutoGeneratedAlias_" + EscapedName;
362 case OptionType::PrefixList:
363 case OptionType::ParameterList:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000364 return "AutoGeneratedList_" + EscapedName;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000365 case OptionType::Switch:
366 return "AutoGeneratedSwitch_" + EscapedName;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000367 case OptionType::Prefix:
368 case OptionType::Parameter:
369 default:
370 return "AutoGeneratedParameter_" + EscapedName;
371 }
372}
373
374/// OptionDescriptions - An OptionDescription array plus some helper
375/// functions.
376class OptionDescriptions {
377 typedef StringMap<OptionDescription> container_type;
378
379 /// Descriptions - A list of OptionDescriptions.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000380 container_type Descriptions;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000381
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000382public:
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000383 /// FindOption - exception-throwing wrapper for find().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000384 const OptionDescription& FindOption(const std::string& OptName) const;
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000385
386 // Wrappers for FindOption that throw an exception in case the option has a
387 // wrong type.
Mikhail Glushenkov6d435392009-10-17 20:09:29 +0000388 const OptionDescription& FindSwitch(const std::string& OptName) const;
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000389 const OptionDescription& FindParameter(const std::string& OptName) const;
390 const OptionDescription& FindList(const std::string& OptName) const;
391 const OptionDescription&
392 FindListOrParameter(const std::string& OptName) const;
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000393
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000394 /// insertDescription - Insert new OptionDescription into
395 /// OptionDescriptions list
396 void InsertDescription (const OptionDescription& o);
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000397
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000398 // Support for STL-style iteration
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000399 typedef container_type::const_iterator const_iterator;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000400 const_iterator begin() const { return Descriptions.begin(); }
401 const_iterator end() const { return Descriptions.end(); }
402};
403
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000404const OptionDescription&
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000405OptionDescriptions::FindOption(const std::string& OptName) const {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000406 const_iterator I = Descriptions.find(OptName);
407 if (I != Descriptions.end())
408 return I->second;
409 else
410 throw OptName + ": no such option!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000411}
412
Mikhail Glushenkov6d435392009-10-17 20:09:29 +0000413const OptionDescription&
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000414OptionDescriptions::FindSwitch(const std::string& OptName) const {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +0000415 const OptionDescription& OptDesc = this->FindOption(OptName);
416 if (!OptDesc.isSwitch())
417 throw OptName + ": incorrect option type - should be a switch!";
418 return OptDesc;
419}
420
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +0000421const OptionDescription&
422OptionDescriptions::FindList(const std::string& OptName) const {
423 const OptionDescription& OptDesc = this->FindOption(OptName);
424 if (!OptDesc.isList())
425 throw OptName + ": incorrect option type - should be a list!";
426 return OptDesc;
427}
428
429const OptionDescription&
430OptionDescriptions::FindParameter(const std::string& OptName) const {
431 const OptionDescription& OptDesc = this->FindOption(OptName);
432 if (!OptDesc.isParameter())
433 throw OptName + ": incorrect option type - should be a parameter!";
434 return OptDesc;
435}
436
437const OptionDescription&
438OptionDescriptions::FindListOrParameter(const std::string& OptName) const {
439 const OptionDescription& OptDesc = this->FindOption(OptName);
440 if (!OptDesc.isList() && !OptDesc.isParameter())
441 throw OptName
442 + ": incorrect option type - should be a list or parameter!";
443 return OptDesc;
444}
445
446void OptionDescriptions::InsertDescription (const OptionDescription& o) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000447 container_type::iterator I = Descriptions.find(o.Name);
448 if (I != Descriptions.end()) {
449 OptionDescription& D = I->second;
450 D.Merge(o);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000451 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000452 else {
453 Descriptions[o.Name] = o;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000454 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000455}
456
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000457/// HandlerTable - A base class for function objects implemented as
458/// 'tables of handlers'.
459template <class T>
460class HandlerTable {
461protected:
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000462 // Implementation details.
463
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000464 /// Handler -
465 typedef void (T::* Handler) (const DagInit*);
466 /// HandlerMap - A map from property names to property handlers
467 typedef StringMap<Handler> HandlerMap;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000468
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000469 static HandlerMap Handlers_;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000470 static bool staticMembersInitialized_;
471
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000472 T* childPtr;
473public:
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000474
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000475 HandlerTable(T* cp) : childPtr(cp)
476 {}
477
478 /// operator() - Just forwards to the corresponding property
479 /// handler.
480 void operator() (Init* i) {
481 const DagInit& property = InitPtrToDag(i);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000482 const std::string& property_name = GetOperatorName(property);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000483 typename HandlerMap::iterator method = Handlers_.find(property_name);
484
485 if (method != Handlers_.end()) {
486 Handler h = method->second;
487 (childPtr->*h)(&property);
488 }
489 else {
490 throw "No handler found for property " + property_name + "!";
491 }
492 }
493
494 void AddHandler(const char* Property, Handler Handl) {
495 Handlers_[Property] = Handl;
496 }
497};
498
499template <class T> typename HandlerTable<T>::HandlerMap
500HandlerTable<T>::Handlers_;
501template <class T> bool HandlerTable<T>::staticMembersInitialized_ = false;
502
503
504/// CollectOptionProperties - Function object for iterating over an
505/// option property list.
506class CollectOptionProperties : public HandlerTable<CollectOptionProperties> {
507private:
508
509 /// optDescs_ - OptionDescriptions table. This is where the
510 /// information is stored.
511 OptionDescription& optDesc_;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000512
513public:
514
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000515 explicit CollectOptionProperties(OptionDescription& OD)
516 : HandlerTable<CollectOptionProperties>(this), optDesc_(OD)
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000517 {
518 if (!staticMembersInitialized_) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000519 AddHandler("extern", &CollectOptionProperties::onExtern);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000520 AddHandler("help", &CollectOptionProperties::onHelp);
521 AddHandler("hidden", &CollectOptionProperties::onHidden);
Mikhail Glushenkovdef9c572009-07-07 16:08:41 +0000522 AddHandler("init", &CollectOptionProperties::onInit);
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000523 AddHandler("multi_val", &CollectOptionProperties::onMultiVal);
524 AddHandler("one_or_more", &CollectOptionProperties::onOneOrMore);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000525 AddHandler("really_hidden", &CollectOptionProperties::onReallyHidden);
526 AddHandler("required", &CollectOptionProperties::onRequired);
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000527 AddHandler("zero_or_one", &CollectOptionProperties::onZeroOrOne);
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000528
529 staticMembersInitialized_ = true;
530 }
531 }
532
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000533private:
534
535 /// Option property handlers --
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000536 /// Methods that handle option properties such as (help) or (hidden).
Mikhail Glushenkov50084e82008-09-22 20:46:19 +0000537
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000538 void onExtern (const DagInit* d) {
539 checkNumberOfArguments(d, 0);
540 optDesc_.setExtern();
541 }
542
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000543 void onHelp (const DagInit* d) {
544 checkNumberOfArguments(d, 1);
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000545 optDesc_.Help = InitPtrToString(d->getArg(0));
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000546 }
547
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000548 void onHidden (const DagInit* d) {
549 checkNumberOfArguments(d, 0);
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000550 optDesc_.setHidden();
551 }
552
553 void onReallyHidden (const DagInit* d) {
554 checkNumberOfArguments(d, 0);
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000555 optDesc_.setReallyHidden();
556 }
557
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000558 void onRequired (const DagInit* d) {
559 checkNumberOfArguments(d, 0);
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000560 if (optDesc_.isOneOrMore())
561 throw std::string("An option can't have both (required) "
562 "and (one_or_more) properties!");
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000563 optDesc_.setRequired();
564 }
565
Mikhail Glushenkovdef9c572009-07-07 16:08:41 +0000566 void onInit (const DagInit* d) {
567 checkNumberOfArguments(d, 1);
568 Init* i = d->getArg(0);
569 const std::string& str = i->getAsString();
570
571 bool correct = optDesc_.isParameter() && dynamic_cast<StringInit*>(i);
572 correct |= (optDesc_.isSwitch() && (str == "true" || str == "false"));
573
574 if (!correct)
575 throw std::string("Incorrect usage of the 'init' option property!");
576
577 optDesc_.InitVal = i;
578 }
579
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000580 void onOneOrMore (const DagInit* d) {
581 checkNumberOfArguments(d, 0);
582 if (optDesc_.isRequired() || optDesc_.isZeroOrOne())
583 throw std::string("Only one of (required), (zero_or_one) or "
584 "(one_or_more) properties is allowed!");
585 if (!OptionType::IsList(optDesc_.Type))
Daniel Dunbard4287062009-07-03 00:10:29 +0000586 llvm::errs() << "Warning: specifying the 'one_or_more' property "
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000587 "on a non-list option will have no effect.\n";
588 optDesc_.setOneOrMore();
589 }
590
591 void onZeroOrOne (const DagInit* d) {
592 checkNumberOfArguments(d, 0);
593 if (optDesc_.isRequired() || optDesc_.isOneOrMore())
594 throw std::string("Only one of (required), (zero_or_one) or "
595 "(one_or_more) properties is allowed!");
596 if (!OptionType::IsList(optDesc_.Type))
Daniel Dunbard4287062009-07-03 00:10:29 +0000597 llvm::errs() << "Warning: specifying the 'zero_or_one' property"
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +0000598 "on a non-list option will have no effect.\n";
599 optDesc_.setZeroOrOne();
600 }
601
602 void onMultiVal (const DagInit* d) {
603 checkNumberOfArguments(d, 1);
604 int val = InitPtrToInt(d->getArg(0));
605 if (val < 2)
606 throw std::string("Error in the 'multi_val' property: "
607 "the value must be greater than 1!");
608 if (!OptionType::IsList(optDesc_.Type))
609 throw std::string("The multi_val property is valid only "
610 "on list options!");
611 optDesc_.MultiVal = val;
612 }
613
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000614};
615
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000616/// AddOption - A function object that is applied to every option
617/// description. Used by CollectOptionDescriptions.
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000618class AddOption {
619private:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000620 OptionDescriptions& OptDescs_;
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000621
622public:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000623 explicit AddOption(OptionDescriptions& OD) : OptDescs_(OD)
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000624 {}
625
626 void operator()(const Init* i) {
627 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000628 checkNumberOfArguments(&d, 1);
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000629
630 const OptionType::OptionType Type =
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000631 stringToOptionType(GetOperatorName(d));
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000632 const std::string& Name = InitPtrToString(d.getArg(0));
633
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000634 OptionDescription OD(Type, Name);
635
636 if (!OD.isExtern())
637 checkNumberOfArguments(&d, 2);
638
639 if (OD.isAlias()) {
640 // Aliases store the aliased option name in the 'Help' field.
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000641 OD.Help = InitPtrToString(d.getArg(1));
642 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000643 else if (!OD.isExtern()) {
644 processOptionProperties(&d, OD);
645 }
646 OptDescs_.InsertDescription(OD);
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000647 }
648
649private:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000650 /// processOptionProperties - Go through the list of option
651 /// properties and call a corresponding handler for each.
652 static void processOptionProperties (const DagInit* d, OptionDescription& o) {
653 checkNumberOfArguments(d, 2);
654 DagInit::const_arg_iterator B = d->arg_begin();
655 // Skip the first argument: it's always the option name.
656 ++B;
657 std::for_each(B, d->arg_end(), CollectOptionProperties(o));
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000658 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000659
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000660};
661
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000662/// CollectOptionDescriptions - Collects option properties from all
663/// OptionLists.
664void CollectOptionDescriptions (RecordVector::const_iterator B,
665 RecordVector::const_iterator E,
666 OptionDescriptions& OptDescs)
667{
668 // For every OptionList:
669 for (; B!=E; ++B) {
670 RecordVector::value_type T = *B;
671 // Throws an exception if the value does not exist.
672 ListInit* PropList = T->getValueAsListInit("options");
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000673
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000674 // For every option description in this list:
675 // collect the information and
676 std::for_each(PropList->begin(), PropList->end(), AddOption(OptDescs));
677 }
678}
679
680// Tool information record
681
682namespace ToolFlags {
683 enum ToolFlags { Join = 0x1, Sink = 0x2 };
684}
685
686struct ToolDescription : public RefCountedBase<ToolDescription> {
687 std::string Name;
688 Init* CmdLine;
689 Init* Actions;
690 StrVector InLanguage;
691 std::string OutLanguage;
692 std::string OutputSuffix;
693 unsigned Flags;
694
695 // Various boolean properties
696 void setSink() { Flags |= ToolFlags::Sink; }
697 bool isSink() const { return Flags & ToolFlags::Sink; }
698 void setJoin() { Flags |= ToolFlags::Join; }
699 bool isJoin() const { return Flags & ToolFlags::Join; }
700
701 // Default ctor here is needed because StringMap can only store
702 // DefaultConstructible objects
703 ToolDescription() : CmdLine(0), Actions(0), Flags(0) {}
704 ToolDescription (const std::string& n)
705 : Name(n), CmdLine(0), Actions(0), Flags(0)
706 {}
707};
708
709/// ToolDescriptions - A list of Tool information records.
710typedef std::vector<IntrusiveRefCntPtr<ToolDescription> > ToolDescriptions;
711
712
713/// CollectToolProperties - Function object for iterating over a list of
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000714/// tool property records.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000715class CollectToolProperties : public HandlerTable<CollectToolProperties> {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000716private:
717
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000718 /// toolDesc_ - Properties of the current Tool. This is where the
719 /// information is stored.
720 ToolDescription& toolDesc_;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000721
722public:
723
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000724 explicit CollectToolProperties (ToolDescription& d)
725 : HandlerTable<CollectToolProperties>(this) , toolDesc_(d)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000726 {
727 if (!staticMembersInitialized_) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000728
729 AddHandler("actions", &CollectToolProperties::onActions);
730 AddHandler("cmd_line", &CollectToolProperties::onCmdLine);
731 AddHandler("in_language", &CollectToolProperties::onInLanguage);
732 AddHandler("join", &CollectToolProperties::onJoin);
733 AddHandler("out_language", &CollectToolProperties::onOutLanguage);
734 AddHandler("output_suffix", &CollectToolProperties::onOutputSuffix);
735 AddHandler("sink", &CollectToolProperties::onSink);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000736
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000737 staticMembersInitialized_ = true;
738 }
739 }
740
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000741private:
742
743 /// Property handlers --
744 /// Functions that extract information about tool properties from
745 /// DAG representation.
746
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000747 void onActions (const DagInit* d) {
748 checkNumberOfArguments(d, 1);
Mikhail Glushenkov8d489a82008-12-07 16:45:12 +0000749 Init* Case = d->getArg(0);
750 if (typeid(*Case) != typeid(DagInit) ||
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000751 GetOperatorName(static_cast<DagInit*>(Case)) != "case")
Mikhail Glushenkov8d489a82008-12-07 16:45:12 +0000752 throw
753 std::string("The argument to (actions) should be a 'case' construct!");
754 toolDesc_.Actions = Case;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000755 }
756
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000757 void onCmdLine (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000758 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000759 toolDesc_.CmdLine = d->getArg(0);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000760 }
761
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000762 void onInLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000763 checkNumberOfArguments(d, 1);
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000764 Init* arg = d->getArg(0);
765
766 // Find out the argument's type.
767 if (typeid(*arg) == typeid(StringInit)) {
768 // It's a string.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000769 toolDesc_.InLanguage.push_back(InitPtrToString(arg));
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000770 }
771 else {
772 // It's a list.
773 const ListInit& lst = InitPtrToList(arg);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000774 StrVector& out = toolDesc_.InLanguage;
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000775
776 // Copy strings to the output vector.
777 for (ListInit::const_iterator B = lst.begin(), E = lst.end();
778 B != E; ++B) {
779 out.push_back(InitPtrToString(*B));
780 }
781
782 // Remove duplicates.
783 std::sort(out.begin(), out.end());
784 StrVector::iterator newE = std::unique(out.begin(), out.end());
785 out.erase(newE, out.end());
786 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000787 }
788
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000789 void onJoin (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000790 checkNumberOfArguments(d, 0);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000791 toolDesc_.setJoin();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000792 }
793
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000794 void onOutLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000795 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000796 toolDesc_.OutLanguage = InitPtrToString(d->getArg(0));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000797 }
798
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000799 void onOutputSuffix (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000800 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000801 toolDesc_.OutputSuffix = InitPtrToString(d->getArg(0));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000802 }
803
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000804 void onSink (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000805 checkNumberOfArguments(d, 0);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000806 toolDesc_.setSink();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000807 }
808
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000809};
810
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000811/// CollectToolDescriptions - Gather information about tool properties
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000812/// from the parsed TableGen data (basically a wrapper for the
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000813/// CollectToolProperties function object).
814void CollectToolDescriptions (RecordVector::const_iterator B,
815 RecordVector::const_iterator E,
816 ToolDescriptions& ToolDescs)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000817{
818 // Iterate over a properties list of every Tool definition
819 for (;B!=E;++B) {
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +0000820 const Record* T = *B;
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000821 // Throws an exception if the value does not exist.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000822 ListInit* PropList = T->getValueAsListInit("properties");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000823
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000824 IntrusiveRefCntPtr<ToolDescription>
825 ToolDesc(new ToolDescription(T->getName()));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000826
827 std::for_each(PropList->begin(), PropList->end(),
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000828 CollectToolProperties(*ToolDesc));
829 ToolDescs.push_back(ToolDesc);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000830 }
831}
832
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000833/// FillInEdgeVector - Merge all compilation graph definitions into
834/// one single edge list.
835void FillInEdgeVector(RecordVector::const_iterator B,
836 RecordVector::const_iterator E, RecordVector& Out) {
837 for (; B != E; ++B) {
838 const ListInit* edges = (*B)->getValueAsListInit("edges");
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000839
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000840 for (unsigned i = 0; i < edges->size(); ++i)
841 Out.push_back(edges->getElementAsRecord(i));
842 }
843}
844
845/// CalculatePriority - Calculate the priority of this plugin.
846int CalculatePriority(RecordVector::const_iterator B,
847 RecordVector::const_iterator E) {
Mikhail Glushenkov95b99ca2009-10-17 20:08:30 +0000848 int priority = 0;
849
850 if (B != E) {
851 priority = static_cast<int>((*B)->getValueAsInt("priority"));
852
853 if (++B != E)
854 throw std::string("More than one 'PluginPriority' instance found: "
855 "most probably an error!");
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000856 }
Mikhail Glushenkov95b99ca2009-10-17 20:08:30 +0000857
858 return priority;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000859}
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000860
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000861/// NotInGraph - Helper function object for FilterNotInGraph.
862struct NotInGraph {
863private:
864 const llvm::StringSet<>& ToolsInGraph_;
865
866public:
867 NotInGraph(const llvm::StringSet<>& ToolsInGraph)
868 : ToolsInGraph_(ToolsInGraph)
869 {}
870
871 bool operator()(const IntrusiveRefCntPtr<ToolDescription>& x) {
872 return (ToolsInGraph_.count(x->Name) == 0);
873 }
874};
875
876/// FilterNotInGraph - Filter out from ToolDescs all Tools not
877/// mentioned in the compilation graph definition.
878void FilterNotInGraph (const RecordVector& EdgeVector,
879 ToolDescriptions& ToolDescs) {
880
881 // List all tools mentioned in the graph.
882 llvm::StringSet<> ToolsInGraph;
883
884 for (RecordVector::const_iterator B = EdgeVector.begin(),
885 E = EdgeVector.end(); B != E; ++B) {
886
887 const Record* Edge = *B;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000888 const std::string& NodeA = Edge->getValueAsString("a");
889 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000890
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000891 if (NodeA != "root")
892 ToolsInGraph.insert(NodeA);
893 ToolsInGraph.insert(NodeB);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000894 }
895
896 // Filter ToolPropertiesList.
897 ToolDescriptions::iterator new_end =
898 std::remove_if(ToolDescs.begin(), ToolDescs.end(),
899 NotInGraph(ToolsInGraph));
900 ToolDescs.erase(new_end, ToolDescs.end());
901}
902
903/// FillInToolToLang - Fills in two tables that map tool names to
904/// (input, output) languages. Helper function used by TypecheckGraph().
905void FillInToolToLang (const ToolDescriptions& ToolDescs,
906 StringMap<StringSet<> >& ToolToInLang,
907 StringMap<std::string>& ToolToOutLang) {
908 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
909 E = ToolDescs.end(); B != E; ++B) {
910 const ToolDescription& D = *(*B);
911 for (StrVector::const_iterator B = D.InLanguage.begin(),
912 E = D.InLanguage.end(); B != E; ++B)
913 ToolToInLang[D.Name].insert(*B);
914 ToolToOutLang[D.Name] = D.OutLanguage;
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000915 }
916}
917
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000918/// TypecheckGraph - Check that names for output and input languages
919/// on all edges do match. This doesn't do much when the information
920/// about the whole graph is not available (i.e. when compiling most
921/// plugins).
922void TypecheckGraph (const RecordVector& EdgeVector,
923 const ToolDescriptions& ToolDescs) {
924 StringMap<StringSet<> > ToolToInLang;
925 StringMap<std::string> ToolToOutLang;
926
927 FillInToolToLang(ToolDescs, ToolToInLang, ToolToOutLang);
928 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
929 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
930
931 for (RecordVector::const_iterator B = EdgeVector.begin(),
932 E = EdgeVector.end(); B != E; ++B) {
933 const Record* Edge = *B;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000934 const std::string& NodeA = Edge->getValueAsString("a");
935 const std::string& NodeB = Edge->getValueAsString("b");
936 StringMap<std::string>::iterator IA = ToolToOutLang.find(NodeA);
937 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(NodeB);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000938
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000939 if (NodeA != "root") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000940 if (IA != IAE && IB != IBE && IB->second.count(IA->second) == 0)
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000941 throw "Edge " + NodeA + "->" + NodeB
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000942 + ": output->input language mismatch";
943 }
944
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000945 if (NodeB == "root")
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000946 throw std::string("Edges back to the root are not allowed!");
947 }
948}
949
950/// WalkCase - Walks the 'case' expression DAG and invokes
951/// TestCallback on every test, and StatementCallback on every
952/// statement. Handles 'case' nesting, but not the 'and' and 'or'
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000953/// combinators (that is, they are passed directly to TestCallback).
954/// TestCallback must have type 'void TestCallback(const DagInit*, unsigned
955/// IndentLevel, bool FirstTest)'.
956/// StatementCallback must have type 'void StatementCallback(const Init*,
957/// unsigned IndentLevel)'.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000958template <typename F1, typename F2>
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000959void WalkCase(const Init* Case, F1 TestCallback, F2 StatementCallback,
960 unsigned IndentLevel = 0)
961{
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000962 const DagInit& d = InitPtrToDag(Case);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000963
964 // Error checks.
965 if (GetOperatorName(d) != "case")
966 throw std::string("WalkCase should be invoked only on 'case' expressions!");
967
968 if (d.getNumArgs() < 2)
969 throw "There should be at least one clause in the 'case' expression:\n"
970 + d.getAsString();
971
972 // Main loop.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000973 bool even = false;
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000974 const unsigned numArgs = d.getNumArgs();
975 unsigned i = 1;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000976 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
977 B != E; ++B) {
978 Init* arg = *B;
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000979
980 if (!even)
981 {
982 // Handle test.
983 const DagInit& Test = InitPtrToDag(arg);
984
985 if (GetOperatorName(Test) == "default" && (i+1 != numArgs))
986 throw std::string("The 'default' clause should be the last in the"
987 "'case' construct!");
988 if (i == numArgs)
989 throw "Case construct handler: no corresponding action "
990 "found for the test " + Test.getAsString() + '!';
991
992 TestCallback(&Test, IndentLevel, (i == 1));
993 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000994 else
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +0000995 {
996 if (dynamic_cast<DagInit*>(arg)
997 && GetOperatorName(static_cast<DagInit*>(arg)) == "case") {
998 // Nested 'case'.
999 WalkCase(arg, TestCallback, StatementCallback, IndentLevel + Indent1);
1000 }
1001
1002 // Handle statement.
1003 StatementCallback(arg, IndentLevel);
1004 }
1005
1006 ++i;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001007 even = !even;
1008 }
1009}
1010
1011/// ExtractOptionNames - A helper function object used by
1012/// CheckForSuperfluousOptions() to walk the 'case' DAG.
1013class ExtractOptionNames {
1014 llvm::StringSet<>& OptionNames_;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001015
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001016 void processDag(const Init* Statement) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001017 const DagInit& Stmt = InitPtrToDag(Statement);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001018 const std::string& ActionName = GetOperatorName(Stmt);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001019 if (ActionName == "forward" || ActionName == "forward_as" ||
1020 ActionName == "unpack_values" || ActionName == "switch_on" ||
1021 ActionName == "parameter_equals" || ActionName == "element_in_list" ||
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00001022 ActionName == "not_empty" || ActionName == "empty") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001023 checkNumberOfArguments(&Stmt, 1);
1024 const std::string& Name = InitPtrToString(Stmt.getArg(0));
1025 OptionNames_.insert(Name);
1026 }
1027 else if (ActionName == "and" || ActionName == "or") {
1028 for (unsigned i = 0, NumArgs = Stmt.getNumArgs(); i < NumArgs; ++i) {
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001029 this->processDag(Stmt.getArg(i));
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001030 }
1031 }
1032 }
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001033
1034public:
1035 ExtractOptionNames(llvm::StringSet<>& OptionNames) : OptionNames_(OptionNames)
1036 {}
1037
1038 void operator()(const Init* Statement) {
1039 if (typeid(*Statement) == typeid(ListInit)) {
1040 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
1041 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
1042 B != E; ++B)
1043 this->processDag(*B);
1044 }
1045 else {
1046 this->processDag(Statement);
1047 }
1048 }
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001049
1050 void operator()(const DagInit* Test, unsigned, bool) {
1051 this->operator()(Test);
1052 }
1053 void operator()(const Init* Statement, unsigned) {
1054 this->operator()(Statement);
1055 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001056};
1057
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001058/// CheckForSuperfluousOptions - Check that there are no side
1059/// effect-free options (specified only in the OptionList). Otherwise,
1060/// output a warning.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001061void CheckForSuperfluousOptions (const RecordVector& Edges,
1062 const ToolDescriptions& ToolDescs,
1063 const OptionDescriptions& OptDescs) {
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001064 llvm::StringSet<> nonSuperfluousOptions;
1065
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001066 // Add all options mentioned in the ToolDesc.Actions to the set of
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001067 // non-superfluous options.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001068 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1069 E = ToolDescs.end(); B != E; ++B) {
1070 const ToolDescription& TD = *(*B);
1071 ExtractOptionNames Callback(nonSuperfluousOptions);
1072 if (TD.Actions)
1073 WalkCase(TD.Actions, Callback, Callback);
1074 }
1075
1076 // Add all options mentioned in the 'case' clauses of the
1077 // OptionalEdges of the compilation graph to the set of
1078 // non-superfluous options.
1079 for (RecordVector::const_iterator B = Edges.begin(), E = Edges.end();
1080 B != E; ++B) {
1081 const Record* Edge = *B;
1082 DagInit* Weight = Edge->getValueAsDag("weight");
1083
1084 if (!isDagEmpty(Weight))
1085 WalkCase(Weight, ExtractOptionNames(nonSuperfluousOptions), Id());
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001086 }
1087
1088 // Check that all options in OptDescs belong to the set of
1089 // non-superfluous options.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001090 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001091 E = OptDescs.end(); B != E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001092 const OptionDescription& Val = B->second;
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001093 if (!nonSuperfluousOptions.count(Val.Name)
1094 && Val.Type != OptionType::Alias)
Daniel Dunbard4287062009-07-03 00:10:29 +00001095 llvm::errs() << "Warning: option '-" << Val.Name << "' has no effect! "
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +00001096 "Probable cause: this option is specified only in the OptionList.\n";
1097 }
1098}
1099
Mikhail Glushenkovd42557f2009-09-28 01:16:42 +00001100/// EmitCaseTest0Args - Helper function used by EmitCaseConstructHandler().
1101bool EmitCaseTest0Args(const std::string& TestName, raw_ostream& O) {
1102 if (TestName == "single_input_file") {
1103 O << "InputFilenames.size() == 1";
1104 return true;
1105 }
1106 else if (TestName == "multiple_input_files") {
1107 O << "InputFilenames.size() > 1";
1108 return true;
1109 }
1110
1111 return false;
1112}
1113
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +00001114/// EmitListTest - Helper function used by EmitCaseTest1ArgList().
1115template <typename F>
1116void EmitListTest(const ListInit& L, const char* LogicOp,
1117 F Callback, raw_ostream& O)
1118{
1119 // This is a lot like EmitLogicalOperationTest, but works on ListInits instead
1120 // of Dags...
1121 bool isFirst = true;
1122 for (ListInit::const_iterator B = L.begin(), E = L.end(); B != E; ++B) {
1123 if (isFirst)
1124 isFirst = false;
1125 else
1126 O << " || ";
1127 Callback(InitPtrToString(*B), O);
1128 }
1129}
1130
1131// Callbacks for use with EmitListTest.
1132
1133class EmitSwitchOn {
1134 const OptionDescriptions& OptDescs_;
1135public:
1136 EmitSwitchOn(const OptionDescriptions& OptDescs) : OptDescs_(OptDescs)
1137 {}
1138
1139 void operator()(const std::string& OptName, raw_ostream& O) const {
1140 const OptionDescription& OptDesc = OptDescs_.FindSwitch(OptName);
1141 O << OptDesc.GenVariableName();
1142 }
1143};
1144
1145class EmitEmptyTest {
1146 bool EmitNegate_;
1147 const OptionDescriptions& OptDescs_;
1148public:
1149 EmitEmptyTest(bool EmitNegate, const OptionDescriptions& OptDescs)
1150 : EmitNegate_(EmitNegate), OptDescs_(OptDescs)
1151 {}
1152
1153 void operator()(const std::string& OptName, raw_ostream& O) const {
1154 const char* Neg = (EmitNegate_ ? "!" : "");
1155 if (OptName == "o") {
1156 O << Neg << "OutputFilename.empty()";
1157 }
1158 else {
1159 const OptionDescription& OptDesc = OptDescs_.FindListOrParameter(OptName);
1160 O << Neg << OptDesc.GenVariableName() << ".empty()";
1161 }
1162 }
1163};
1164
1165
1166/// EmitCaseTest1ArgList - Helper function used by EmitCaseTest1Arg();
1167bool EmitCaseTest1ArgList(const std::string& TestName,
1168 const DagInit& d,
1169 const OptionDescriptions& OptDescs,
1170 raw_ostream& O) {
1171 const ListInit& L = *static_cast<ListInit*>(d.getArg(0));
1172
1173 if (TestName == "any_switch_on") {
1174 EmitListTest(L, "||", EmitSwitchOn(OptDescs), O);
1175 return true;
1176 }
1177 else if (TestName == "switch_on") {
1178 EmitListTest(L, "&&", EmitSwitchOn(OptDescs), O);
1179 return true;
1180 }
1181 else if (TestName == "any_not_empty") {
1182 EmitListTest(L, "||", EmitEmptyTest(true, OptDescs), O);
1183 return true;
1184 }
1185 else if (TestName == "any_empty") {
1186 EmitListTest(L, "||", EmitEmptyTest(false, OptDescs), O);
1187 return true;
1188 }
1189 else if (TestName == "not_empty") {
1190 EmitListTest(L, "&&", EmitEmptyTest(true, OptDescs), O);
1191 return true;
1192 }
1193 else if (TestName == "empty") {
1194 EmitListTest(L, "&&", EmitEmptyTest(false, OptDescs), O);
1195 return true;
1196 }
1197
1198 return false;
1199}
1200
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001201/// EmitCaseTest1ArgStr - Helper function used by EmitCaseTest1Arg();
1202bool EmitCaseTest1ArgStr(const std::string& TestName,
1203 const DagInit& d,
1204 const OptionDescriptions& OptDescs,
1205 raw_ostream& O) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001206 const std::string& OptName = InitPtrToString(d.getArg(0));
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00001207
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001208 if (TestName == "switch_on") {
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +00001209 apply(EmitSwitchOn(OptDescs), OptName, O);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001210 return true;
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001211 }
1212 else if (TestName == "input_languages_contain") {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001213 O << "InLangs.count(\"" << OptName << "\") != 0";
1214 return true;
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001215 }
1216 else if (TestName == "in_language") {
Mikhail Glushenkov56a625a2008-09-22 20:48:22 +00001217 // This works only for single-argument Tool::GenerateAction. Join
1218 // tools can process several files in different languages simultaneously.
1219
1220 // TODO: make this work with Edge::Weight (if possible).
Mikhail Glushenkovcdbfa1a2008-09-22 20:47:46 +00001221 O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +00001222 return true;
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001223 }
1224 else if (TestName == "not_empty" || TestName == "empty") {
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +00001225 bool EmitNegate = (TestName == "not_empty");
1226 apply(EmitEmptyTest(EmitNegate, OptDescs), OptName, O);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001227 return true;
1228 }
1229
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001230 return false;
1231}
1232
1233/// EmitCaseTest1Arg - Helper function used by EmitCaseConstructHandler();
1234bool EmitCaseTest1Arg(const std::string& TestName,
1235 const DagInit& d,
1236 const OptionDescriptions& OptDescs,
1237 raw_ostream& O) {
1238 checkNumberOfArguments(&d, 1);
1239 if (typeid(*d.getArg(0)) == typeid(ListInit))
1240 return EmitCaseTest1ArgList(TestName, d, OptDescs, O);
1241 else
1242 return EmitCaseTest1ArgStr(TestName, d, OptDescs, O);
1243}
1244
Mikhail Glushenkovd42557f2009-09-28 01:16:42 +00001245/// EmitCaseTest2Args - Helper function used by EmitCaseConstructHandler().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001246bool EmitCaseTest2Args(const std::string& TestName,
1247 const DagInit& d,
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001248 unsigned IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001249 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001250 raw_ostream& O) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001251 checkNumberOfArguments(&d, 2);
1252 const std::string& OptName = InitPtrToString(d.getArg(0));
1253 const std::string& OptArg = InitPtrToString(d.getArg(1));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001254
1255 if (TestName == "parameter_equals") {
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +00001256 const OptionDescription& OptDesc = OptDescs.FindParameter(OptName);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001257 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
1258 return true;
1259 }
1260 else if (TestName == "element_in_list") {
Mikhail Glushenkov2155c0a2009-10-21 02:13:13 +00001261 const OptionDescription& OptDesc = OptDescs.FindList(OptName);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001262 const std::string& VarName = OptDesc.GenVariableName();
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001263 O << "std::find(" << VarName << ".begin(),\n";
1264 O.indent(IndentLevel + Indent1)
1265 << VarName << ".end(), \""
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001266 << OptArg << "\") != " << VarName << ".end()";
1267 return true;
1268 }
1269
1270 return false;
1271}
1272
1273// Forward declaration.
1274// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001275void EmitCaseTest(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001276 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001277 raw_ostream& O);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001278
1279/// EmitLogicalOperationTest - Helper function used by
1280/// EmitCaseConstructHandler.
1281void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001282 unsigned IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001283 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001284 raw_ostream& O) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001285 O << '(';
1286 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001287 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001288 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001289 if (j != NumArgs - 1) {
1290 O << ")\n";
1291 O.indent(IndentLevel + Indent1) << ' ' << LogicOp << " (";
1292 }
1293 else {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001294 O << ')';
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001295 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001296 }
1297}
1298
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001299void EmitLogicalNot(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkova1256932009-09-10 16:21:38 +00001300 const OptionDescriptions& OptDescs, raw_ostream& O)
1301{
1302 checkNumberOfArguments(&d, 1);
1303 const DagInit& InnerTest = InitPtrToDag(d.getArg(0));
1304 O << "! (";
1305 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
1306 O << ")";
1307}
1308
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001309/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001310void EmitCaseTest(const DagInit& d, unsigned IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001311 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001312 raw_ostream& O) {
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001313 const std::string& TestName = GetOperatorName(d);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001314
1315 if (TestName == "and")
1316 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
1317 else if (TestName == "or")
1318 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
Mikhail Glushenkova1256932009-09-10 16:21:38 +00001319 else if (TestName == "not")
1320 EmitLogicalNot(d, IndentLevel, OptDescs, O);
Mikhail Glushenkovd42557f2009-09-28 01:16:42 +00001321 else if (EmitCaseTest0Args(TestName, O))
1322 return;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001323 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
1324 return;
1325 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
1326 return;
1327 else
1328 throw TestName + ": unknown edge property!";
1329}
1330
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001331
1332/// EmitCaseTestCallback - Callback used by EmitCaseConstructHandler.
1333class EmitCaseTestCallback {
1334 bool EmitElseIf_;
1335 const OptionDescriptions& OptDescs_;
1336 raw_ostream& O_;
1337public:
1338
1339 EmitCaseTestCallback(bool EmitElseIf,
1340 const OptionDescriptions& OptDescs, raw_ostream& O)
1341 : EmitElseIf_(EmitElseIf), OptDescs_(OptDescs), O_(O)
1342 {}
1343
1344 void operator()(const DagInit* Test, unsigned IndentLevel, bool FirstTest)
1345 {
1346 if (GetOperatorName(Test) == "default") {
1347 O_.indent(IndentLevel) << "else {\n";
1348 }
1349 else {
1350 O_.indent(IndentLevel)
1351 << ((!FirstTest && EmitElseIf_) ? "else if (" : "if (");
1352 EmitCaseTest(*Test, IndentLevel, OptDescs_, O_);
1353 O_ << ") {\n";
1354 }
1355 }
1356};
1357
1358/// EmitCaseStatementCallback - Callback used by EmitCaseConstructHandler.
1359template <typename F>
1360class EmitCaseStatementCallback {
1361 F Callback_;
1362 raw_ostream& O_;
1363public:
1364
1365 EmitCaseStatementCallback(F Callback, raw_ostream& O)
1366 : Callback_(Callback), O_(O)
1367 {}
1368
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001369 void operator() (const Init* Statement, unsigned IndentLevel) {
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001370
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001371 // Ignore nested 'case' DAG.
1372 if (!(dynamic_cast<const DagInit*>(Statement) &&
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001373 GetOperatorName(static_cast<const DagInit*>(Statement)) == "case")) {
1374 if (typeid(*Statement) == typeid(ListInit)) {
1375 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
1376 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
1377 B != E; ++B)
1378 Callback_(*B, (IndentLevel + Indent1), O_);
1379 }
1380 else {
1381 Callback_(Statement, (IndentLevel + Indent1), O_);
1382 }
1383 }
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001384 O_.indent(IndentLevel) << "}\n";
1385 }
1386
1387};
1388
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001389/// EmitCaseConstructHandler - Emit code that handles the 'case'
1390/// construct. Takes a function object that should emit code for every case
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001391/// clause. Implemented on top of WalkCase.
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00001392/// Callback's type is void F(Init* Statement, unsigned IndentLevel,
1393/// raw_ostream& O).
1394/// EmitElseIf parameter controls the type of condition that is emitted ('if
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001395/// (..) {..} else if (..) {} .. else {..}' vs. 'if (..) {..} if(..) {..}
1396/// .. else {..}').
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001397template <typename F>
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001398void EmitCaseConstructHandler(const Init* Case, unsigned IndentLevel,
Mikhail Glushenkov1d95e9f2008-05-31 13:43:21 +00001399 F Callback, bool EmitElseIf,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001400 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001401 raw_ostream& O) {
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001402 WalkCase(Case, EmitCaseTestCallback(EmitElseIf, OptDescs, O),
1403 EmitCaseStatementCallback<F>(Callback, O), IndentLevel);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001404}
1405
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001406/// TokenizeCmdline - converts from "$CALL(HookName, 'Arg1', 'Arg2')/path" to
1407/// ["$CALL(", "HookName", "Arg1", "Arg2", ")/path"] .
1408/// Helper function used by EmitCmdLineVecFill and.
1409void TokenizeCmdline(const std::string& CmdLine, StrVector& Out) {
1410 const char* Delimiters = " \t\n\v\f\r";
1411 enum TokenizerState
1412 { Normal, SpecialCommand, InsideSpecialCommand, InsideQuotationMarks }
1413 cur_st = Normal;
Mikhail Glushenkov688fbb62009-06-25 18:21:34 +00001414
1415 if (CmdLine.empty())
1416 return;
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001417 Out.push_back("");
1418
1419 std::string::size_type B = CmdLine.find_first_not_of(Delimiters),
1420 E = CmdLine.size();
Mikhail Glushenkov688fbb62009-06-25 18:21:34 +00001421
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001422 for (; B != E; ++B) {
1423 char cur_ch = CmdLine[B];
1424
1425 switch (cur_st) {
1426 case Normal:
1427 if (cur_ch == '$') {
1428 cur_st = SpecialCommand;
1429 break;
1430 }
1431 if (oneOf(Delimiters, cur_ch)) {
1432 // Skip whitespace
1433 B = CmdLine.find_first_not_of(Delimiters, B);
1434 if (B == std::string::npos) {
1435 B = E-1;
1436 continue;
1437 }
1438 --B;
1439 Out.push_back("");
1440 continue;
1441 }
1442 break;
1443
1444
1445 case SpecialCommand:
1446 if (oneOf(Delimiters, cur_ch)) {
1447 cur_st = Normal;
1448 Out.push_back("");
1449 continue;
1450 }
1451 if (cur_ch == '(') {
1452 Out.push_back("");
1453 cur_st = InsideSpecialCommand;
1454 continue;
1455 }
1456 break;
1457
1458 case InsideSpecialCommand:
1459 if (oneOf(Delimiters, cur_ch)) {
1460 continue;
1461 }
1462 if (cur_ch == '\'') {
1463 cur_st = InsideQuotationMarks;
1464 Out.push_back("");
1465 continue;
1466 }
1467 if (cur_ch == ')') {
1468 cur_st = Normal;
1469 Out.push_back("");
1470 }
1471 if (cur_ch == ',') {
1472 continue;
1473 }
1474
1475 break;
1476
1477 case InsideQuotationMarks:
1478 if (cur_ch == '\'') {
1479 cur_st = InsideSpecialCommand;
1480 continue;
1481 }
1482 break;
1483 }
1484
1485 Out.back().push_back(cur_ch);
1486 }
1487}
1488
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001489/// SubstituteSpecialCommands - Perform string substitution for $CALL
1490/// and $ENV. Helper function used by EmitCmdLineVecFill().
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001491StrVector::const_iterator SubstituteSpecialCommands
Daniel Dunbard4287062009-07-03 00:10:29 +00001492(StrVector::const_iterator Pos, StrVector::const_iterator End, raw_ostream& O)
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001493{
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001494
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001495 const std::string& cmd = *Pos;
1496
1497 if (cmd == "$CALL") {
1498 checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1499 const std::string& CmdName = *Pos;
1500
1501 if (CmdName == ")")
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001502 throw std::string("$CALL invocation: empty argument list!");
1503
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001504 O << "hooks::";
1505 O << CmdName << "(";
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001506
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001507
1508 bool firstIteration = true;
1509 while (true) {
1510 checkedIncrement(Pos, End, "Syntax error in $CALL invocation!");
1511 const std::string& Arg = *Pos;
1512 assert(Arg.size() != 0);
1513
1514 if (Arg[0] == ')')
1515 break;
1516
1517 if (firstIteration)
1518 firstIteration = false;
1519 else
1520 O << ", ";
1521
1522 O << '"' << Arg << '"';
1523 }
1524
1525 O << ')';
1526
1527 }
1528 else if (cmd == "$ENV") {
1529 checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
1530 const std::string& EnvName = *Pos;
1531
1532 if (EnvName == ")")
1533 throw "$ENV invocation: empty argument list!";
1534
1535 O << "checkCString(std::getenv(\"";
1536 O << EnvName;
1537 O << "\"))";
1538
1539 checkedIncrement(Pos, End, "Syntax error in $ENV invocation!");
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001540 }
1541 else {
1542 throw "Unknown special command: " + cmd;
1543 }
1544
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001545 const std::string& Leftover = *Pos;
1546 assert(Leftover.at(0) == ')');
1547 if (Leftover.size() != 1)
1548 O << " + std::string(\"" << (Leftover.c_str() + 1) << "\")";
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001549
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001550 return Pos;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001551}
1552
1553/// EmitCmdLineVecFill - Emit code that fills in the command line
1554/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001555void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001556 bool IsJoin, unsigned IndentLevel,
Daniel Dunbard4287062009-07-03 00:10:29 +00001557 raw_ostream& O) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001558 StrVector StrVec;
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001559 TokenizeCmdline(InitPtrToString(CmdLine), StrVec);
1560
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001561 if (StrVec.empty())
Mikhail Glushenkov688fbb62009-06-25 18:21:34 +00001562 throw "Tool '" + ToolName + "' has empty command line!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001563
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001564 StrVector::const_iterator I = StrVec.begin(), E = StrVec.end();
1565
1566 // If there is a hook invocation on the place of the first command, skip it.
Mikhail Glushenkov72b128f2009-04-19 00:22:35 +00001567 assert(!StrVec[0].empty());
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001568 if (StrVec[0][0] == '$') {
1569 while (I != E && (*I)[0] != ')' )
1570 ++I;
1571
1572 // Skip the ')' symbol.
1573 ++I;
1574 }
1575 else {
1576 ++I;
1577 }
1578
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001579 bool hasINFILE = false;
1580
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001581 for (; I != E; ++I) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001582 const std::string& cmd = *I;
Mikhail Glushenkov72b128f2009-04-19 00:22:35 +00001583 assert(!cmd.empty());
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001584 O.indent(IndentLevel);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001585 if (cmd.at(0) == '$') {
1586 if (cmd == "$INFILE") {
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001587 hasINFILE = true;
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001588 if (IsJoin) {
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001589 O << "for (PathVector::const_iterator B = inFiles.begin()"
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001590 << ", E = inFiles.end();\n";
1591 O.indent(IndentLevel) << "B != E; ++B)\n";
1592 O.indent(IndentLevel + Indent1) << "vec.push_back(B->str());\n";
1593 }
1594 else {
Chris Lattnerb1aa85b2009-08-23 22:45:37 +00001595 O << "vec.push_back(inFile.str());\n";
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001596 }
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001597 }
1598 else if (cmd == "$OUTFILE") {
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001599 O << "vec.push_back(\"\");\n";
1600 O.indent(IndentLevel) << "out_file_index = vec.size()-1;\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001601 }
1602 else {
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001603 O << "vec.push_back(";
1604 I = SubstituteSpecialCommands(I, E, O);
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001605 O << ");\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001606 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001607 }
1608 else {
1609 O << "vec.push_back(\"" << cmd << "\");\n";
1610 }
1611 }
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001612 if (!hasINFILE)
1613 throw "Tool '" + ToolName + "' doesn't take any input!";
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001614
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001615 O.indent(IndentLevel) << "cmd = ";
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00001616 if (StrVec[0][0] == '$')
1617 SubstituteSpecialCommands(StrVec.begin(), StrVec.end(), O);
1618 else
1619 O << '"' << StrVec[0] << '"';
1620 O << ";\n";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001621}
1622
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001623/// EmitCmdLineVecFillCallback - A function object wrapper around
1624/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1625/// argument to EmitCaseConstructHandler().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001626class EmitCmdLineVecFillCallback {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001627 bool IsJoin;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001628 const std::string& ToolName;
1629 public:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001630 EmitCmdLineVecFillCallback(bool J, const std::string& TN)
1631 : IsJoin(J), ToolName(TN) {}
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001632
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001633 void operator()(const Init* Statement, unsigned IndentLevel,
Daniel Dunbard4287062009-07-03 00:10:29 +00001634 raw_ostream& O) const
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001635 {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001636 EmitCmdLineVecFill(Statement, ToolName, IsJoin, IndentLevel, O);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001637 }
1638};
1639
1640/// EmitForwardOptionPropertyHandlingCode - Helper function used to
1641/// implement EmitActionHandler. Emits code for
1642/// handling the (forward) and (forward_as) option properties.
1643void EmitForwardOptionPropertyHandlingCode (const OptionDescription& D,
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001644 unsigned IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001645 const std::string& NewName,
Daniel Dunbard4287062009-07-03 00:10:29 +00001646 raw_ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001647 const std::string& Name = NewName.empty()
1648 ? ("-" + D.Name)
1649 : NewName;
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001650 unsigned IndentLevel1 = IndentLevel + Indent1;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001651
1652 switch (D.Type) {
1653 case OptionType::Switch:
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001654 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001655 break;
1656 case OptionType::Parameter:
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001657 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\");\n";
1658 O.indent(IndentLevel) << "vec.push_back(" << D.GenVariableName() << ");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001659 break;
1660 case OptionType::Prefix:
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001661 O.indent(IndentLevel) << "vec.push_back(\"" << Name << "\" + "
1662 << D.GenVariableName() << ");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001663 break;
1664 case OptionType::PrefixList:
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001665 O.indent(IndentLevel)
1666 << "for (" << D.GenTypeDeclaration()
1667 << "::iterator B = " << D.GenVariableName() << ".begin(),\n";
1668 O.indent(IndentLevel)
1669 << "E = " << D.GenVariableName() << ".end(); B != E;) {\n";
1670 O.indent(IndentLevel1) << "vec.push_back(\"" << Name << "\" + " << "*B);\n";
1671 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00001672
1673 for (int i = 1, j = D.MultiVal; i < j; ++i) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001674 O.indent(IndentLevel1) << "vec.push_back(*B);\n";
1675 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00001676 }
1677
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001678 O.indent(IndentLevel) << "}\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001679 break;
1680 case OptionType::ParameterList:
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001681 O.indent(IndentLevel)
1682 << "for (" << D.GenTypeDeclaration() << "::iterator B = "
1683 << D.GenVariableName() << ".begin(),\n";
1684 O.indent(IndentLevel) << "E = " << D.GenVariableName()
1685 << ".end() ; B != E;) {\n";
1686 O.indent(IndentLevel1) << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00001687
1688 for (int i = 0, j = D.MultiVal; i < j; ++i) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001689 O.indent(IndentLevel1) << "vec.push_back(*B);\n";
1690 O.indent(IndentLevel1) << "++B;\n";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00001691 }
1692
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001693 O.indent(IndentLevel) << "}\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001694 break;
1695 case OptionType::Alias:
1696 default:
1697 throw std::string("Aliases are not allowed in tool option descriptions!");
1698 }
1699}
1700
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001701/// ActionHandlingCallbackBase - Base class of EmitActionHandlersCallback and
1702/// EmitPreprocessOptionsCallback.
1703struct ActionHandlingCallbackBase {
1704
1705 void onErrorDag(const DagInit& d,
1706 unsigned IndentLevel, raw_ostream& O) const
1707 {
1708 O.indent(IndentLevel)
1709 << "throw std::runtime_error(\"" <<
1710 (d.getNumArgs() >= 1 ? InitPtrToString(d.getArg(0))
1711 : "Unknown error!")
1712 << "\");\n";
1713 }
1714
1715 void onWarningDag(const DagInit& d,
1716 unsigned IndentLevel, raw_ostream& O) const
1717 {
1718 checkNumberOfArguments(&d, 1);
1719 O.indent(IndentLevel) << "llvm::errs() << \""
1720 << InitPtrToString(d.getArg(0)) << "\";\n";
1721 }
1722
1723};
1724
1725/// EmitActionHandlersCallback - Emit code that handles actions. Used by
1726/// EmitGenerateActionMethod() as an argument to EmitCaseConstructHandler().
1727class EmitActionHandlersCallback : ActionHandlingCallbackBase {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001728 const OptionDescriptions& OptDescs;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001729
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001730 void processActionDag(const Init* Statement, unsigned IndentLevel,
Daniel Dunbard4287062009-07-03 00:10:29 +00001731 raw_ostream& O) const
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001732 {
1733 const DagInit& Dag = InitPtrToDag(Statement);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001734 const std::string& ActionName = GetOperatorName(Dag);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001735
1736 if (ActionName == "append_cmd") {
1737 checkNumberOfArguments(&Dag, 1);
1738 const std::string& Cmd = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkovfa8787d2009-02-27 06:46:55 +00001739 StrVector Out;
1740 llvm::SplitString(Cmd, Out);
1741
1742 for (StrVector::const_iterator B = Out.begin(), E = Out.end();
1743 B != E; ++B)
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001744 O.indent(IndentLevel) << "vec.push_back(\"" << *B << "\");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001745 }
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00001746 else if (ActionName == "error") {
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001747 this->onErrorDag(Dag, IndentLevel, O);
1748 }
1749 else if (ActionName == "warning") {
1750 this->onWarningDag(Dag, IndentLevel, O);
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00001751 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001752 else if (ActionName == "forward") {
1753 checkNumberOfArguments(&Dag, 1);
1754 const std::string& Name = InitPtrToString(Dag.getArg(0));
1755 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1756 IndentLevel, "", O);
1757 }
1758 else if (ActionName == "forward_as") {
1759 checkNumberOfArguments(&Dag, 2);
1760 const std::string& Name = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkov09699552009-05-06 01:41:19 +00001761 const std::string& NewName = InitPtrToString(Dag.getArg(1));
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001762 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1763 IndentLevel, NewName, O);
1764 }
1765 else if (ActionName == "output_suffix") {
1766 checkNumberOfArguments(&Dag, 1);
1767 const std::string& OutSuf = InitPtrToString(Dag.getArg(0));
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001768 O.indent(IndentLevel) << "output_suffix = \"" << OutSuf << "\";\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001769 }
1770 else if (ActionName == "stop_compilation") {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001771 O.indent(IndentLevel) << "stop_compilation = true;\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001772 }
1773 else if (ActionName == "unpack_values") {
1774 checkNumberOfArguments(&Dag, 1);
1775 const std::string& Name = InitPtrToString(Dag.getArg(0));
1776 const OptionDescription& D = OptDescs.FindOption(Name);
1777
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00001778 if (D.isMultiVal())
1779 throw std::string("Can't use unpack_values with multi-valued options!");
1780
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +00001781 if (D.isList()) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001782 O.indent(IndentLevel)
1783 << "for (" << D.GenTypeDeclaration()
1784 << "::iterator B = " << D.GenVariableName() << ".begin(),\n";
1785 O.indent(IndentLevel)
1786 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n";
1787 O.indent(IndentLevel + Indent1)
1788 << "llvm::SplitString(*B, vec, \",\");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001789 }
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +00001790 else if (D.isParameter()){
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001791 O.indent(IndentLevel) << "llvm::SplitString("
1792 << D.GenVariableName() << ", vec, \",\");\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001793 }
1794 else {
1795 throw "Option '" + D.Name +
1796 "': switches can't have the 'unpack_values' property!";
1797 }
1798 }
1799 else {
1800 throw "Unknown action name: " + ActionName + "!";
1801 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001802 }
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001803 public:
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001804 EmitActionHandlersCallback(const OptionDescriptions& OD)
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001805 : OptDescs(OD) {}
1806
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001807 void operator()(const Init* Statement,
1808 unsigned IndentLevel, raw_ostream& O) const
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001809 {
Mikhail Glushenkov33576322009-10-19 21:24:28 +00001810 this->processActionDag(Statement, IndentLevel, O);
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001811 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001812};
1813
Mikhail Glushenkov731bacf2009-10-09 05:45:21 +00001814bool IsOutFileIndexCheckRequiredStr (const Init* CmdLine) {
1815 StrVector StrVec;
1816 TokenizeCmdline(InitPtrToString(CmdLine), StrVec);
1817
1818 for (StrVector::const_iterator I = StrVec.begin(), E = StrVec.end();
1819 I != E; ++I) {
1820 if (*I == "$OUTFILE")
1821 return false;
1822 }
1823
1824 return true;
1825}
1826
1827class IsOutFileIndexCheckRequiredStrCallback {
1828 bool* ret_;
1829
1830public:
1831 IsOutFileIndexCheckRequiredStrCallback(bool* ret) : ret_(ret)
1832 {}
1833
1834 void operator()(const Init* CmdLine) {
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001835 // Ignore nested 'case' DAG.
1836 if (typeid(*CmdLine) == typeid(DagInit))
1837 return;
1838
Mikhail Glushenkov731bacf2009-10-09 05:45:21 +00001839 if (IsOutFileIndexCheckRequiredStr(CmdLine))
1840 *ret_ = true;
1841 }
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00001842
1843 void operator()(const DagInit* Test, unsigned, bool) {
1844 this->operator()(Test);
1845 }
1846 void operator()(const Init* Statement, unsigned) {
1847 this->operator()(Statement);
1848 }
Mikhail Glushenkov731bacf2009-10-09 05:45:21 +00001849};
1850
1851bool IsOutFileIndexCheckRequiredCase (Init* CmdLine) {
1852 bool ret = false;
1853 WalkCase(CmdLine, Id(), IsOutFileIndexCheckRequiredStrCallback(&ret));
1854 return ret;
1855}
1856
1857/// IsOutFileIndexCheckRequired - Should we emit an "out_file_index != -1" check
1858/// in EmitGenerateActionMethod() ?
1859bool IsOutFileIndexCheckRequired (Init* CmdLine) {
1860 if (typeid(*CmdLine) == typeid(StringInit))
1861 return IsOutFileIndexCheckRequiredStr(CmdLine);
1862 else
1863 return IsOutFileIndexCheckRequiredCase(CmdLine);
1864}
1865
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001866// EmitGenerateActionMethod - Emit either a normal or a "join" version of the
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001867// Tool::GenerateAction() method.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001868void EmitGenerateActionMethod (const ToolDescription& D,
1869 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001870 bool IsJoin, raw_ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001871 if (IsJoin)
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001872 O.indent(Indent1) << "Action GenerateAction(const PathVector& inFiles,\n";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001873 else
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001874 O.indent(Indent1) << "Action GenerateAction(const sys::Path& inFile,\n";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001875
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001876 O.indent(Indent2) << "bool HasChildren,\n";
1877 O.indent(Indent2) << "const llvm::sys::Path& TempDir,\n";
1878 O.indent(Indent2) << "const InputLanguagesSet& InLangs,\n";
1879 O.indent(Indent2) << "const LanguageMap& LangMap) const\n";
1880 O.indent(Indent1) << "{\n";
1881 O.indent(Indent2) << "std::string cmd;\n";
1882 O.indent(Indent2) << "std::vector<std::string> vec;\n";
1883 O.indent(Indent2) << "bool stop_compilation = !HasChildren;\n";
1884 O.indent(Indent2) << "const char* output_suffix = \""
1885 << D.OutputSuffix << "\";\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001886
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001887 if (!D.CmdLine)
1888 throw "Tool " + D.Name + " has no cmd_line property!";
Mikhail Glushenkov731bacf2009-10-09 05:45:21 +00001889
1890 bool IndexCheckRequired = IsOutFileIndexCheckRequired(D.CmdLine);
1891 O.indent(Indent2) << "int out_file_index"
1892 << (IndexCheckRequired ? " = -1" : "")
1893 << ";\n\n";
1894
1895 // Process the cmd_line property.
1896 if (typeid(*D.CmdLine) == typeid(StringInit))
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001897 EmitCmdLineVecFill(D.CmdLine, D.Name, IsJoin, Indent2, O);
1898 else
1899 EmitCaseConstructHandler(D.CmdLine, Indent2,
1900 EmitCmdLineVecFillCallback(IsJoin, D.Name),
1901 true, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001902
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001903 // For every understood option, emit handling code.
1904 if (D.Actions)
Mikhail Glushenkov7d91e272009-10-27 09:02:49 +00001905 EmitCaseConstructHandler(D.Actions, Indent2,
1906 EmitActionHandlersCallback(OptDescs),
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001907 false, OptDescs, O);
1908
1909 O << '\n';
1910 O.indent(Indent2)
1911 << "std::string out_file = OutFilename("
1912 << (IsJoin ? "sys::Path(),\n" : "inFile,\n");
1913 O.indent(Indent3) << "TempDir, stop_compilation, output_suffix).str();\n\n";
Mikhail Glushenkov731bacf2009-10-09 05:45:21 +00001914
1915 if (IndexCheckRequired)
1916 O.indent(Indent2) << "if (out_file_index != -1)\n";
1917 O.indent(IndexCheckRequired ? Indent3 : Indent2)
1918 << "vec[out_file_index] = out_file;\n";
Mikhail Glushenkov1c7d7662009-10-08 04:40:08 +00001919
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001920 // Handle the Sink property.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001921 if (D.isSink()) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001922 O.indent(Indent2) << "if (!" << SinkOptionName << ".empty()) {\n";
1923 O.indent(Indent3) << "vec.insert(vec.end(), "
1924 << SinkOptionName << ".begin(), " << SinkOptionName
1925 << ".end());\n";
1926 O.indent(Indent2) << "}\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001927 }
1928
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001929 O.indent(Indent2) << "return Action(cmd, vec, stop_compilation, out_file);\n";
1930 O.indent(Indent1) << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001931}
1932
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001933/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1934/// a given Tool class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001935void EmitGenerateActionMethods (const ToolDescription& ToolDesc,
1936 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00001937 raw_ostream& O) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001938 if (!ToolDesc.isJoin()) {
1939 O.indent(Indent1) << "Action GenerateAction(const PathVector& inFiles,\n";
1940 O.indent(Indent2) << "bool HasChildren,\n";
1941 O.indent(Indent2) << "const llvm::sys::Path& TempDir,\n";
1942 O.indent(Indent2) << "const InputLanguagesSet& InLangs,\n";
1943 O.indent(Indent2) << "const LanguageMap& LangMap) const\n";
1944 O.indent(Indent1) << "{\n";
1945 O.indent(Indent2) << "throw std::runtime_error(\"" << ToolDesc.Name
1946 << " is not a Join tool!\");\n";
1947 O.indent(Indent1) << "}\n\n";
1948 }
1949 else {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001950 EmitGenerateActionMethod(ToolDesc, OptDescs, true, O);
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001951 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001952
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001953 EmitGenerateActionMethod(ToolDesc, OptDescs, false, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001954}
1955
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001956/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1957/// methods for a given Tool class.
Daniel Dunbard4287062009-07-03 00:10:29 +00001958void EmitInOutLanguageMethods (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001959 O.indent(Indent1) << "const char** InputLanguages() const {\n";
1960 O.indent(Indent2) << "return InputLanguages_;\n";
1961 O.indent(Indent1) << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001962
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001963 if (D.OutLanguage.empty())
1964 throw "Tool " + D.Name + " has no 'out_language' property!";
1965
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001966 O.indent(Indent1) << "const char* OutputLanguage() const {\n";
1967 O.indent(Indent2) << "return \"" << D.OutLanguage << "\";\n";
1968 O.indent(Indent1) << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001969}
1970
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001971/// EmitNameMethod - Emit the Name() method for a given Tool class.
Daniel Dunbard4287062009-07-03 00:10:29 +00001972void EmitNameMethod (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001973 O.indent(Indent1) << "const char* Name() const {\n";
1974 O.indent(Indent2) << "return \"" << D.Name << "\";\n";
1975 O.indent(Indent1) << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001976}
1977
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001978/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1979/// class.
Daniel Dunbard4287062009-07-03 00:10:29 +00001980void EmitIsJoinMethod (const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001981 O.indent(Indent1) << "bool IsJoin() const {\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001982 if (D.isJoin())
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001983 O.indent(Indent2) << "return true;\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001984 else
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00001985 O.indent(Indent2) << "return false;\n";
1986 O.indent(Indent1) << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001987}
1988
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001989/// EmitStaticMemberDefinitions - Emit static member definitions for a
1990/// given Tool class.
Daniel Dunbard4287062009-07-03 00:10:29 +00001991void EmitStaticMemberDefinitions(const ToolDescription& D, raw_ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001992 if (D.InLanguage.empty())
1993 throw "Tool " + D.Name + " has no 'in_language' property!";
1994
1995 O << "const char* " << D.Name << "::InputLanguages_[] = {";
1996 for (StrVector::const_iterator B = D.InLanguage.begin(),
1997 E = D.InLanguage.end(); B != E; ++B)
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001998 O << '\"' << *B << "\", ";
1999 O << "0};\n\n";
2000}
2001
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00002002/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002003void EmitToolClassDefinition (const ToolDescription& D,
2004 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00002005 raw_ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002006 if (D.Name == "root")
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00002007 return;
2008
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002009 // Header
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002010 O << "class " << D.Name << " : public ";
2011 if (D.isJoin())
Mikhail Glushenkov121889c2008-05-06 17:26:53 +00002012 O << "JoinTool";
2013 else
2014 O << "Tool";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002015
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002016 O << "{\nprivate:\n";
2017 O.indent(Indent1) << "static const char* InputLanguages_[];\n\n";
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00002018
2019 O << "public:\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002020 EmitNameMethod(D, O);
2021 EmitInOutLanguageMethods(D, O);
2022 EmitIsJoinMethod(D, O);
2023 EmitGenerateActionMethods(D, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002024
2025 // Close class definition
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00002026 O << "};\n";
2027
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002028 EmitStaticMemberDefinitions(D, O);
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00002029
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002030}
2031
Mikhail Glushenkov087aebe2009-06-23 20:45:07 +00002032/// EmitOptionDefinitions - Iterate over a list of option descriptions
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002033/// and emit registration code.
Mikhail Glushenkov087aebe2009-06-23 20:45:07 +00002034void EmitOptionDefinitions (const OptionDescriptions& descs,
2035 bool HasSink, bool HasExterns,
Daniel Dunbard4287062009-07-03 00:10:29 +00002036 raw_ostream& O)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002037{
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002038 std::vector<OptionDescription> Aliases;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002039
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00002040 // Emit static cl::Option variables.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002041 for (OptionDescriptions::const_iterator B = descs.begin(),
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002042 E = descs.end(); B!=E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002043 const OptionDescription& val = B->second;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002044
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002045 if (val.Type == OptionType::Alias) {
2046 Aliases.push_back(val);
2047 continue;
2048 }
2049
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002050 if (val.isExtern())
2051 O << "extern ";
2052
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002053 O << val.GenTypeDeclaration() << ' '
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002054 << val.GenVariableName();
2055
2056 if (val.isExtern()) {
2057 O << ";\n";
2058 continue;
2059 }
2060
Mikhail Glushenkovacaf35f2009-06-23 20:45:31 +00002061 O << "(\"" << val.Name << "\"\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002062
2063 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
2064 O << ", cl::Prefix";
2065
2066 if (val.isRequired()) {
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +00002067 if (val.isList() && !val.isMultiVal())
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002068 O << ", cl::OneOrMore";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002069 else
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002070 O << ", cl::Required";
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002071 }
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +00002072 else if (val.isOneOrMore() && val.isList()) {
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002073 O << ", cl::OneOrMore";
2074 }
Mikhail Glushenkov753e8c52009-07-07 16:08:11 +00002075 else if (val.isZeroOrOne() && val.isList()) {
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002076 O << ", cl::ZeroOrOne";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002077 }
2078
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002079 if (val.isReallyHidden()) {
2080 O << ", cl::ReallyHidden";
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +00002081 }
Mikhail Glushenkov8139ba32009-01-28 03:47:20 +00002082 else if (val.isHidden()) {
2083 O << ", cl::Hidden";
2084 }
2085
2086 if (val.MultiVal > 1)
Mikhail Glushenkovdef9c572009-07-07 16:08:41 +00002087 O << ", cl::multi_val(" << val.MultiVal << ')';
2088
2089 if (val.InitVal) {
2090 const std::string& str = val.InitVal->getAsString();
2091 O << ", cl::init(" << str << ')';
2092 }
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +00002093
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002094 if (!val.Help.empty())
2095 O << ", cl::desc(\"" << val.Help << "\")";
2096
Mikhail Glushenkovacaf35f2009-06-23 20:45:31 +00002097 O << ");\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002098 }
2099
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002100 // Emit the aliases (they should go after all the 'proper' options).
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002101 for (std::vector<OptionDescription>::const_iterator
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002102 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002103 const OptionDescription& val = *B;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002104
2105 O << val.GenTypeDeclaration() << ' '
2106 << val.GenVariableName()
2107 << "(\"" << val.Name << '\"';
2108
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002109 const OptionDescription& D = descs.FindOption(val.Help);
2110 O << ", cl::aliasopt(" << D.GenVariableName() << ")";
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00002111
2112 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
2113 }
2114
2115 // Emit the sink option.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002116 if (HasSink)
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00002117 O << (HasExterns ? "extern cl" : "cl")
2118 << "::list<std::string> " << SinkOptionName
2119 << (HasExterns ? ";\n" : "(cl::Sink);\n");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002120
2121 O << '\n';
2122}
2123
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002124/// EmitPreprocessOptionsCallback - Helper function passed to
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002125/// EmitCaseConstructHandler() by EmitPreprocessOptions().
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002126class EmitPreprocessOptionsCallback : ActionHandlingCallbackBase {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002127 const OptionDescriptions& OptDescs_;
2128
2129 void onUnsetOption(Init* i, unsigned IndentLevel, raw_ostream& O) {
2130 const std::string& OptName = InitPtrToString(i);
2131 const OptionDescription& OptDesc = OptDescs_.FindOption(OptName);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002132
Mikhail Glushenkov1bb5da02009-10-22 04:15:07 +00002133 if (OptDesc.isSwitch()) {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002134 O.indent(IndentLevel) << OptDesc.GenVariableName() << " = false;\n";
2135 }
Mikhail Glushenkov1bb5da02009-10-22 04:15:07 +00002136 else if (OptDesc.isParameter()) {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002137 O.indent(IndentLevel) << OptDesc.GenVariableName() << " = \"\";\n";
2138 }
Mikhail Glushenkov1bb5da02009-10-22 04:15:07 +00002139 else if (OptDesc.isList()) {
2140 O.indent(IndentLevel) << OptDesc.GenVariableName() << ".clear();\n";
2141 }
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002142 else {
Mikhail Glushenkov1bb5da02009-10-22 04:15:07 +00002143 throw "Can't apply 'unset_option' to alias option '" + OptName + "'";
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002144 }
2145 }
2146
2147 void processDag(const Init* I, unsigned IndentLevel, raw_ostream& O)
2148 {
2149 const DagInit& d = InitPtrToDag(I);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00002150 const std::string& OpName = GetOperatorName(d);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002151
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002152 if (OpName == "warning") {
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002153 this->onWarningDag(d, IndentLevel, O);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002154 }
2155 else if (OpName == "error") {
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002156 this->onWarningDag(d, IndentLevel, O);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002157 }
2158 else if (OpName == "unset_option") {
2159 checkNumberOfArguments(&d, 1);
2160 Init* I = d.getArg(0);
2161 if (typeid(*I) == typeid(ListInit)) {
2162 const ListInit& DagList = *static_cast<const ListInit*>(I);
2163 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
2164 B != E; ++B)
2165 this->onUnsetOption(*B, IndentLevel, O);
2166 }
2167 else {
2168 this->onUnsetOption(I, IndentLevel, O);
2169 }
2170 }
2171 else {
2172 throw "Unknown operator in the option preprocessor: '" + OpName + "'!"
2173 "\nOnly 'warning', 'error' and 'unset_option' are allowed.";
2174 }
2175 }
2176
2177public:
2178
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002179 void operator()(const Init* I, unsigned IndentLevel, raw_ostream& O) {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002180 this->processDag(I, IndentLevel, O);
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002181 }
2182
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002183 EmitPreprocessOptionsCallback(const OptionDescriptions& OptDescs)
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002184 : OptDescs_(OptDescs)
2185 {}
2186};
2187
2188/// EmitPreprocessOptions - Emit the PreprocessOptionsLocal() function.
2189void EmitPreprocessOptions (const RecordKeeper& Records,
2190 const OptionDescriptions& OptDecs, raw_ostream& O)
2191{
2192 O << "void PreprocessOptionsLocal() {\n";
2193
2194 const RecordVector& OptionPreprocessors =
2195 Records.getAllDerivedDefinitions("OptionPreprocessor");
2196
2197 for (RecordVector::const_iterator B = OptionPreprocessors.begin(),
2198 E = OptionPreprocessors.end(); B!=E; ++B) {
2199 DagInit* Case = (*B)->getValueAsDag("preprocessor");
Mikhail Glushenkov33576322009-10-19 21:24:28 +00002200 EmitCaseConstructHandler(Case, Indent1,
2201 EmitPreprocessOptionsCallback(OptDecs),
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002202 false, OptDecs, O);
2203 }
2204
2205 O << "}\n\n";
2206}
2207
2208/// EmitPopulateLanguageMap - Emit the PopulateLanguageMapLocal() function.
Daniel Dunbard4287062009-07-03 00:10:29 +00002209void EmitPopulateLanguageMap (const RecordKeeper& Records, raw_ostream& O)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002210{
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002211 O << "void PopulateLanguageMapLocal(LanguageMap& langMap) {\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002212
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00002213 // Get the relevant field out of RecordKeeper
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002214 const Record* LangMapRecord = Records.getDef("LanguageMap");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002215
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00002216 // It is allowed for a plugin to have no language map.
2217 if (LangMapRecord) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002218
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00002219 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
2220 if (!LangsToSuffixesList)
2221 throw std::string("Error in the language map definition!");
2222
2223 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002224 const Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00002225
2226 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
2227 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
2228
2229 for (unsigned i = 0; i < Suffixes->size(); ++i)
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002230 O.indent(Indent1) << "langMap[\""
2231 << InitPtrToString(Suffixes->getElement(i))
2232 << "\"] = \"" << Lang << "\";\n";
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00002233 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002234 }
2235
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00002236 O << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002237}
2238
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002239/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
2240/// by EmitEdgeClass().
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002241void IncDecWeight (const Init* i, unsigned IndentLevel,
Daniel Dunbard4287062009-07-03 00:10:29 +00002242 raw_ostream& O) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00002243 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00002244 const std::string& OpName = GetOperatorName(d);
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002245
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00002246 if (OpName == "inc_weight") {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002247 O.indent(IndentLevel) << "ret += ";
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00002248 }
2249 else if (OpName == "dec_weight") {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002250 O.indent(IndentLevel) << "ret -= ";
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00002251 }
2252 else if (OpName == "error") {
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002253 checkNumberOfArguments(&d, 1);
2254 O.indent(IndentLevel) << "throw std::runtime_error(\""
2255 << InitPtrToString(d.getArg(0))
2256 << "\");\n";
Mikhail Glushenkov43dc4ca2008-12-17 02:47:01 +00002257 return;
2258 }
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002259 else {
2260 throw "Unknown operator in edge properties list: '" + OpName + "'!"
Mikhail Glushenkov55c6bdf2008-12-18 04:06:58 +00002261 "\nOnly 'inc_weight', 'dec_weight' and 'error' are allowed.";
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002262 }
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002263
2264 if (d.getNumArgs() > 0)
2265 O << InitPtrToInt(d.getArg(0)) << ";\n";
2266 else
2267 O << "2;\n";
2268
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +00002269}
2270
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00002271/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00002272void EmitEdgeClass (unsigned N, const std::string& Target,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002273 DagInit* Case, const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00002274 raw_ostream& O) {
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00002275
2276 // Class constructor.
2277 O << "class Edge" << N << ": public Edge {\n"
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002278 << "public:\n";
2279 O.indent(Indent1) << "Edge" << N << "() : Edge(\"" << Target
2280 << "\") {}\n\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00002281
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00002282 // Function Weight().
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002283 O.indent(Indent1)
2284 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n";
2285 O.indent(Indent2) << "unsigned ret = 0;\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00002286
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002287 // Handle the 'case' construct.
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00002288 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00002289
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002290 O.indent(Indent2) << "return ret;\n";
2291 O.indent(Indent1) << "};\n\n};\n\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00002292}
2293
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002294/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002295void EmitEdgeClasses (const RecordVector& EdgeVector,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002296 const OptionDescriptions& OptDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00002297 raw_ostream& O) {
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002298 int i = 0;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00002299 for (RecordVector::const_iterator B = EdgeVector.begin(),
2300 E = EdgeVector.end(); B != E; ++B) {
2301 const Record* Edge = *B;
2302 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002303 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00002304
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002305 if (!isDagEmpty(Weight))
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00002306 EmitEdgeClass(i, NodeB, Weight, OptDescs, O);
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002307 ++i;
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00002308 }
2309}
2310
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002311/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraphLocal()
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00002312/// function.
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002313void EmitPopulateCompilationGraph (const RecordVector& EdgeVector,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002314 const ToolDescriptions& ToolDescs,
Daniel Dunbard4287062009-07-03 00:10:29 +00002315 raw_ostream& O)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002316{
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002317 O << "void PopulateCompilationGraphLocal(CompilationGraph& G) {\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002318
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002319 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2320 E = ToolDescs.end(); B != E; ++B)
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002321 O.indent(Indent1) << "G.insertNode(new " << (*B)->Name << "());\n";
Mikhail Glushenkov719c25812008-11-12 00:05:17 +00002322
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00002323 O << '\n';
2324
Mikhail Glushenkov719c25812008-11-12 00:05:17 +00002325 // Insert edges.
2326
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002327 int i = 0;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00002328 for (RecordVector::const_iterator B = EdgeVector.begin(),
2329 E = EdgeVector.end(); B != E; ++B) {
2330 const Record* Edge = *B;
2331 const std::string& NodeA = Edge->getValueAsString("a");
2332 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002333 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00002334
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002335 O.indent(Indent1) << "G.insertEdge(\"" << NodeA << "\", ";
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00002336
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00002337 if (isDagEmpty(Weight))
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00002338 O << "new SimpleEdge(\"" << NodeB << "\")";
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00002339 else
2340 O << "new Edge" << i << "()";
2341
2342 O << ");\n";
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002343 ++i;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002344 }
2345
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00002346 O << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002347}
2348
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002349/// ExtractHookNames - Extract the hook names from all instances of
2350/// $CALL(HookName) in the provided command line string. Helper
2351/// function used by FillInHookNames().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002352class ExtractHookNames {
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002353 llvm::StringMap<unsigned>& HookNames_;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002354public:
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002355 ExtractHookNames(llvm::StringMap<unsigned>& HookNames)
2356 : HookNames_(HookNames) {}
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002357
2358 void operator()(const Init* CmdLine) {
2359 StrVector cmds;
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00002360
2361 // Ignore nested 'case' DAG.
2362 if (typeid(*CmdLine) == typeid(DagInit))
2363 return;
2364
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002365 TokenizeCmdline(InitPtrToString(CmdLine), cmds);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002366 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
2367 B != E; ++B) {
2368 const std::string& cmd = *B;
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002369
2370 if (cmd == "$CALL") {
2371 unsigned NumArgs = 0;
2372 checkedIncrement(B, E, "Syntax error in $CALL invocation!");
2373 const std::string& HookName = *B;
2374
2375
2376 if (HookName.at(0) == ')')
2377 throw "$CALL invoked with no arguments!";
2378
2379 while (++B != E && B->at(0) != ')') {
2380 ++NumArgs;
2381 }
2382
2383 StringMap<unsigned>::const_iterator H = HookNames_.find(HookName);
2384
2385 if (H != HookNames_.end() && H->second != NumArgs)
2386 throw "Overloading of hooks is not allowed. Overloaded hook: "
2387 + HookName;
2388 else
2389 HookNames_[HookName] = NumArgs;
2390
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002391 }
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002392 }
2393 }
Mikhail Glushenkovaf4fb5a2009-10-18 22:51:30 +00002394
2395 void operator()(const DagInit* Test, unsigned, bool) {
2396 this->operator()(Test);
2397 }
2398 void operator()(const Init* Statement, unsigned) {
2399 this->operator()(Statement);
2400 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002401};
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00002402
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002403/// FillInHookNames - Actually extract the hook names from all command
2404/// line strings. Helper function used by EmitHookDeclarations().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002405void FillInHookNames(const ToolDescriptions& ToolDescs,
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002406 llvm::StringMap<unsigned>& HookNames)
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002407{
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00002408 // For all command lines:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002409 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2410 E = ToolDescs.end(); B != E; ++B) {
2411 const ToolDescription& D = *(*B);
2412 if (!D.CmdLine)
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002413 continue;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002414 if (dynamic_cast<StringInit*>(D.CmdLine))
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002415 // This is a string.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002416 ExtractHookNames(HookNames).operator()(D.CmdLine);
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00002417 else
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002418 // This is a 'case' construct.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002419 WalkCase(D.CmdLine, Id(), ExtractHookNames(HookNames));
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002420 }
2421}
2422
2423/// EmitHookDeclarations - Parse CmdLine fields of all the tool
2424/// property records and emit hook function declaration for each
2425/// instance of $CALL(HookName).
Daniel Dunbard4287062009-07-03 00:10:29 +00002426void EmitHookDeclarations(const ToolDescriptions& ToolDescs, raw_ostream& O) {
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002427 llvm::StringMap<unsigned> HookNames;
2428
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002429 FillInHookNames(ToolDescs, HookNames);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002430 if (HookNames.empty())
2431 return;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002432
2433 O << "namespace hooks {\n";
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002434 for (StringMap<unsigned>::const_iterator B = HookNames.begin(),
2435 E = HookNames.end(); B != E; ++B) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002436 O.indent(Indent1) << "std::string " << B->first() << "(";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002437
Mikhail Glushenkovab0f3cb2009-01-21 13:04:00 +00002438 for (unsigned i = 0, j = B->second; i < j; ++i) {
2439 O << "const char* Arg" << i << (i+1 == j ? "" : ", ");
2440 }
2441
2442 O <<");\n";
2443 }
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00002444 O << "}\n\n";
2445}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002446
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002447/// EmitRegisterPlugin - Emit code to register this plugin.
Daniel Dunbard4287062009-07-03 00:10:29 +00002448void EmitRegisterPlugin(int Priority, raw_ostream& O) {
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002449 O << "struct Plugin : public llvmc::BasePlugin {\n\n";
2450 O.indent(Indent1) << "int Priority() const { return "
2451 << Priority << "; }\n\n";
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002452 O.indent(Indent1) << "void PreprocessOptions() const\n";
2453 O.indent(Indent1) << "{ PreprocessOptionsLocal(); }\n\n";
Mikhail Glushenkov8435ab12009-09-21 15:53:44 +00002454 O.indent(Indent1) << "void PopulateLanguageMap(LanguageMap& langMap) const\n";
2455 O.indent(Indent1) << "{ PopulateLanguageMapLocal(langMap); }\n\n";
2456 O.indent(Indent1)
2457 << "void PopulateCompilationGraph(CompilationGraph& graph) const\n";
2458 O.indent(Indent1) << "{ PopulateCompilationGraphLocal(graph); }\n"
2459 << "};\n\n"
2460 << "static llvmc::RegisterPlugin<Plugin> RP;\n\n";
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002461}
2462
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00002463/// EmitIncludes - Emit necessary #include directives and some
2464/// additional declarations.
Daniel Dunbard4287062009-07-03 00:10:29 +00002465void EmitIncludes(raw_ostream& O) {
Mikhail Glushenkovd42557f2009-09-28 01:16:42 +00002466 O << "#include \"llvm/CompilerDriver/BuiltinOptions.h\"\n"
2467 << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n"
Mikhail Glushenkovd500a272009-06-23 20:46:48 +00002468 << "#include \"llvm/CompilerDriver/ForceLinkageMacros.h\"\n"
Mikhail Glushenkov62ab3112008-09-22 20:50:40 +00002469 << "#include \"llvm/CompilerDriver/Plugin.h\"\n"
2470 << "#include \"llvm/CompilerDriver/Tool.h\"\n\n"
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002471
2472 << "#include \"llvm/ADT/StringExtras.h\"\n"
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002473 << "#include \"llvm/Support/CommandLine.h\"\n"
2474 << "#include \"llvm/Support/raw_ostream.h\"\n\n"
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002475
2476 << "#include <cstdlib>\n"
2477 << "#include <stdexcept>\n\n"
2478
2479 << "using namespace llvm;\n"
2480 << "using namespace llvmc;\n\n"
2481
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00002482 << "extern cl::opt<std::string> OutputFilename;\n\n"
2483
2484 << "inline const char* checkCString(const char* s)\n"
2485 << "{ return s == NULL ? \"\" : s; }\n\n";
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00002486}
2487
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002488
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002489/// PluginData - Holds all information about a plugin.
2490struct PluginData {
2491 OptionDescriptions OptDescs;
2492 bool HasSink;
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00002493 bool HasExterns;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002494 ToolDescriptions ToolDescs;
2495 RecordVector Edges;
2496 int Priority;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002497};
2498
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002499/// HasSink - Go through the list of tool descriptions and check if
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00002500/// there are any with the 'sink' property set.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002501bool HasSink(const ToolDescriptions& ToolDescs) {
2502 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
2503 E = ToolDescs.end(); B != E; ++B)
2504 if ((*B)->isSink())
2505 return true;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002506
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00002507 return false;
2508}
2509
2510/// HasExterns - Go through the list of option descriptions and check
2511/// if there are any external options.
2512bool HasExterns(const OptionDescriptions& OptDescs) {
2513 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
2514 E = OptDescs.end(); B != E; ++B)
2515 if (B->second.isExtern())
2516 return true;
2517
2518 return false;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00002519}
2520
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002521/// CollectPluginData - Collect tool and option properties,
2522/// compilation graph edges and plugin priority from the parse tree.
2523void CollectPluginData (const RecordKeeper& Records, PluginData& Data) {
2524 // Collect option properties.
2525 const RecordVector& OptionLists =
2526 Records.getAllDerivedDefinitions("OptionList");
2527 CollectOptionDescriptions(OptionLists.begin(), OptionLists.end(),
2528 Data.OptDescs);
2529
2530 // Collect tool properties.
2531 const RecordVector& Tools = Records.getAllDerivedDefinitions("Tool");
2532 CollectToolDescriptions(Tools.begin(), Tools.end(), Data.ToolDescs);
2533 Data.HasSink = HasSink(Data.ToolDescs);
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00002534 Data.HasExterns = HasExterns(Data.OptDescs);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002535
2536 // Collect compilation graph edges.
2537 const RecordVector& CompilationGraphs =
2538 Records.getAllDerivedDefinitions("CompilationGraph");
2539 FillInEdgeVector(CompilationGraphs.begin(), CompilationGraphs.end(),
2540 Data.Edges);
2541
2542 // Calculate the priority of this plugin.
2543 const RecordVector& Priorities =
2544 Records.getAllDerivedDefinitions("PluginPriority");
2545 Data.Priority = CalculatePriority(Priorities.begin(), Priorities.end());
Mikhail Glushenkoveb71ecf2008-11-17 17:30:25 +00002546}
2547
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002548/// CheckPluginData - Perform some sanity checks on the collected data.
2549void CheckPluginData(PluginData& Data) {
2550 // Filter out all tools not mentioned in the compilation graph.
2551 FilterNotInGraph(Data.Edges, Data.ToolDescs);
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002552
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002553 // Typecheck the compilation graph.
2554 TypecheckGraph(Data.Edges, Data.ToolDescs);
2555
2556 // Check that there are no options without side effects (specified
2557 // only in the OptionList).
2558 CheckForSuperfluousOptions(Data.Edges, Data.ToolDescs, Data.OptDescs);
2559
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00002560}
2561
Daniel Dunbard4287062009-07-03 00:10:29 +00002562void EmitPluginCode(const PluginData& Data, raw_ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002563 // Emit file header.
2564 EmitIncludes(O);
2565
2566 // Emit global option registration code.
Mikhail Glushenkov087aebe2009-06-23 20:45:07 +00002567 EmitOptionDefinitions(Data.OptDescs, Data.HasSink, Data.HasExterns, O);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002568
2569 // Emit hook declarations.
2570 EmitHookDeclarations(Data.ToolDescs, O);
2571
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00002572 O << "namespace {\n\n";
2573
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002574 // Emit PreprocessOptionsLocal() function.
2575 EmitPreprocessOptions(Records, Data.OptDescs, O);
2576
2577 // Emit PopulateLanguageMapLocal() function
2578 // (language map maps from file extensions to language names).
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002579 EmitPopulateLanguageMap(Records, O);
2580
2581 // Emit Tool classes.
2582 for (ToolDescriptions::const_iterator B = Data.ToolDescs.begin(),
2583 E = Data.ToolDescs.end(); B!=E; ++B)
2584 EmitToolClassDefinition(*(*B), Data.OptDescs, O);
2585
2586 // Emit Edge# classes.
2587 EmitEdgeClasses(Data.Edges, Data.OptDescs, O);
2588
Mikhail Glushenkov6d435392009-10-17 20:09:29 +00002589 // Emit PopulateCompilationGraphLocal() function.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002590 EmitPopulateCompilationGraph(Data.Edges, Data.ToolDescs, O);
2591
2592 // Emit code for plugin registration.
2593 EmitRegisterPlugin(Data.Priority, O);
2594
Mikhail Glushenkovd500a272009-06-23 20:46:48 +00002595 O << "} // End anonymous namespace.\n\n";
2596
2597 // Force linkage magic.
2598 O << "namespace llvmc {\n";
2599 O << "LLVMC_FORCE_LINKAGE_DECL(LLVMC_PLUGIN_NAME) {}\n";
2600 O << "}\n";
2601
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002602 // EOF
2603}
2604
2605
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002606// End of anonymous namespace
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +00002607}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002608
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00002609/// run - The back-end entry point.
Daniel Dunbard4287062009-07-03 00:10:29 +00002610void LLVMCConfigurationEmitter::run (raw_ostream &O) {
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00002611 try {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002612 PluginData Data;
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00002613
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002614 CollectPluginData(Records, Data);
2615 CheckPluginData(Data);
2616
Mikhail Glushenkov34307a92008-05-06 18:08:59 +00002617 EmitSourceFileHeader("LLVMC Configuration Library", O);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00002618 EmitPluginCode(Data, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002619
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00002620 } catch (std::exception& Error) {
2621 throw Error.what() + std::string(" - usually this means a syntax error.");
2622 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002623}