blob: 9bb3be3747e08684a2992f80705ab737b31c1a96 [file] [log] [blame]
Mikhail Glushenkovfb37f392008-05-30 06:20:54 +00001//===- LLVMCConfigurationEmitter.cpp - Generate LLVMC config ----*- C++ -*-===//
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open
6// Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +000010// This tablegen backend is responsible for emitting LLVMC configuration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
Mikhail Glushenkovecbdcf22008-05-06 18:09:29 +000014#include "LLVMCConfigurationEmitter.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000015#include "Record.h"
16
17#include "llvm/ADT/IntrusiveRefCntPtr.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/StringExtras.h"
20#include "llvm/ADT/StringMap.h"
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +000021#include "llvm/ADT/StringSet.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000022#include "llvm/Support/Streams.h"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000023#include <algorithm>
24#include <cassert>
25#include <functional>
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +000026#include <stdexcept>
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000027#include <string>
Chris Lattner32a9e7a2008-06-04 04:46:14 +000028#include <typeinfo>
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000029using namespace llvm;
30
Mikhail Glushenkov895820d2008-05-06 18:12:03 +000031namespace {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000032
33//===----------------------------------------------------------------------===//
34/// Typedefs
35
36typedef std::vector<Record*> RecordVector;
37typedef std::vector<std::string> StrVector;
38
39//===----------------------------------------------------------------------===//
40/// Constants
41
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000042// Indentation strings.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000043const char * Indent1 = " ";
44const char * Indent2 = " ";
45const char * Indent3 = " ";
46const char * Indent4 = " ";
47
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000048// Default help string.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000049const char * DefaultHelpString = "NO HELP MESSAGE PROVIDED";
50
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000051// Name for the "sink" option.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000052const char * SinkOptionName = "AutoGeneratedSinkOption";
53
54//===----------------------------------------------------------------------===//
55/// Helper functions
56
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +000057int InitPtrToInt(const Init* ptr) {
58 const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
Mikhail Glushenkov29063552008-05-06 18:18:20 +000059 return val.getValue();
60}
61
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +000062const std::string& InitPtrToString(const Init* ptr) {
63 const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
64 return val.getValue();
65}
66
67const ListInit& InitPtrToList(const Init* ptr) {
68 const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
69 return val;
70}
71
72const DagInit& InitPtrToDag(const Init* ptr) {
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +000073 const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
Mikhail Glushenkov29063552008-05-06 18:18:20 +000074 return val;
75}
76
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +000077// checkNumberOfArguments - Ensure that the number of args in d is
Mikhail Glushenkove5557f42008-05-30 06:08:50 +000078// less than or equal to min_arguments, otherwise throw an exception.
Mikhail Glushenkov581936a2008-05-06 17:22:03 +000079void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
80 if (d->getNumArgs() < min_arguments)
81 throw "Property " + d->getOperator()->getAsString()
82 + " has too few arguments!";
83}
84
Mikhail Glushenkove5557f42008-05-30 06:08:50 +000085// isDagEmpty - is this DAG marked with an empty marker?
86bool isDagEmpty (const DagInit* d) {
87 return d->getOperator()->getAsString() == "empty";
88}
Mikhail Glushenkov581936a2008-05-06 17:22:03 +000089
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000090//===----------------------------------------------------------------------===//
91/// Back-end specific code
92
93// A command-line option can have one of the following types:
94//
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +000095// Alias - an alias for another option.
96//
97// Switch - a simple switch without arguments, e.g. -O2
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +000098//
99// Parameter - an option that takes one(and only one) argument, e.g. -o file,
100// --output=file
101//
102// ParameterList - same as Parameter, but more than one occurence
103// of the option is allowed, e.g. -lm -lpthread
104//
105// Prefix - argument is everything after the prefix,
106// e.g. -Wa,-foo,-bar, -DNAME=VALUE
107//
108// PrefixList - same as Prefix, but more than one option occurence is
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000109// allowed.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000110
111namespace OptionType {
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000112 enum OptionType { Alias, Switch,
113 Parameter, ParameterList, Prefix, PrefixList};
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000114}
115
116bool IsListOptionType (OptionType::OptionType t) {
117 return (t == OptionType::ParameterList || t == OptionType::PrefixList);
118}
119
120// Code duplication here is necessary because one option can affect
121// several tools and those tools may have different actions associated
122// with this option. GlobalOptionDescriptions are used to generate
123// the option registration code, while ToolOptionDescriptions are used
124// to generate tool-specific code.
125
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000126/// OptionDescription - Base class for option descriptions.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000127struct OptionDescription {
128 OptionType::OptionType Type;
129 std::string Name;
130
131 OptionDescription(OptionType::OptionType t = OptionType::Switch,
132 const std::string& n = "")
133 : Type(t), Name(n)
134 {}
135
136 const char* GenTypeDeclaration() const {
137 switch (Type) {
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000138 case OptionType::Alias:
139 return "cl::alias";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000140 case OptionType::PrefixList:
141 case OptionType::ParameterList:
142 return "cl::list<std::string>";
143 case OptionType::Switch:
144 return "cl::opt<bool>";
145 case OptionType::Parameter:
146 case OptionType::Prefix:
147 default:
148 return "cl::opt<std::string>";
149 }
150 }
151
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +0000152 // Escape commas and other symbols not allowed in the C++ variable
153 // names. Makes it possible to use options with names like "Wa,"
154 // (useful for prefix options).
155 std::string EscapeVariableName(const std::string& Var) const {
156 std::string ret;
157 for (unsigned i = 0; i != Var.size(); ++i) {
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000158 char cur_char = Var[i];
159 if (cur_char == ',') {
160 ret += "_comma_";
161 }
162 else if (cur_char == '+') {
163 ret += "_plus_";
164 }
165 else if (cur_char == ',') {
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +0000166 ret += "_comma_";
167 }
168 else {
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000169 ret.push_back(cur_char);
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +0000170 }
171 }
172 return ret;
173 }
174
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000175 std::string GenVariableName() const {
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +0000176 const std::string& EscapedName = EscapeVariableName(Name);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000177 switch (Type) {
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000178 case OptionType::Alias:
179 return "AutoGeneratedAlias" + EscapedName;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000180 case OptionType::Switch:
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000181 return "AutoGeneratedSwitch" + EscapedName;
182 case OptionType::Prefix:
183 return "AutoGeneratedPrefix" + EscapedName;
184 case OptionType::PrefixList:
185 return "AutoGeneratedPrefixList" + EscapedName;
186 case OptionType::Parameter:
187 return "AutoGeneratedParameter" + EscapedName;
188 case OptionType::ParameterList:
189 default:
190 return "AutoGeneratedParameterList" + EscapedName;
191 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000192 }
193
194};
195
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000196// Global option description.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000197
198namespace GlobalOptionDescriptionFlags {
199 enum GlobalOptionDescriptionFlags { Required = 0x1 };
200}
201
202struct GlobalOptionDescription : public OptionDescription {
203 std::string Help;
204 unsigned Flags;
205
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000206 // We need to provide a default constructor because
207 // StringMap can only store DefaultConstructible objects.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000208 GlobalOptionDescription() : OptionDescription(), Flags(0)
209 {}
210
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000211 GlobalOptionDescription (OptionType::OptionType t, const std::string& n,
212 const std::string& h = DefaultHelpString)
213 : OptionDescription(t, n), Help(h), Flags(0)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000214 {}
215
216 bool isRequired() const {
217 return Flags & GlobalOptionDescriptionFlags::Required;
218 }
219 void setRequired() {
220 Flags |= GlobalOptionDescriptionFlags::Required;
221 }
222
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000223 /// Merge - Merge two option descriptions.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000224 void Merge (const GlobalOptionDescription& other)
225 {
226 if (other.Type != Type)
227 throw "Conflicting definitions for the option " + Name + "!";
228
Mikhail Glushenkov978d4982008-05-06 18:13:00 +0000229 if (Help == DefaultHelpString)
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000230 Help = other.Help;
Mikhail Glushenkov978d4982008-05-06 18:13:00 +0000231 else if (other.Help != DefaultHelpString) {
232 llvm::cerr << "Warning: more than one help string defined for option "
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000233 + Name + "\n";
Mikhail Glushenkov978d4982008-05-06 18:13:00 +0000234 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000235
236 Flags |= other.Flags;
237 }
238};
239
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000240/// GlobalOptionDescriptions - A GlobalOptionDescription array
241/// together with some flags affecting generation of option
242/// declarations.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000243struct GlobalOptionDescriptions {
244 typedef StringMap<GlobalOptionDescription> container_type;
245 typedef container_type::const_iterator const_iterator;
246
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000247 /// Descriptions - A list of GlobalOptionDescriptions.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000248 container_type Descriptions;
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000249 /// HasSink - Should the emitter generate a "cl::sink" option?
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000250 bool HasSink;
251
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +0000252 /// FindOption - exception-throwing wrapper for find().
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000253 const GlobalOptionDescription& FindOption(const std::string& OptName) const {
254 const_iterator I = Descriptions.find(OptName);
255 if (I != Descriptions.end())
256 return I->second;
257 else
258 throw OptName + ": no such option!";
259 }
260
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +0000261 /// insertDescription - Insert new GlobalOptionDescription into
262 /// GlobalOptionDescriptions list
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000263 void insertDescription (const GlobalOptionDescription& o)
264 {
265 container_type::iterator I = Descriptions.find(o.Name);
266 if (I != Descriptions.end()) {
267 GlobalOptionDescription& D = I->second;
268 D.Merge(o);
269 }
270 else {
271 Descriptions[o.Name] = o;
272 }
273 }
274
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000275 // Support for STL-style iteration
276 const_iterator begin() const { return Descriptions.begin(); }
277 const_iterator end() const { return Descriptions.end(); }
278};
279
280
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000281// Tool-local option description.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000282
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000283// Properties without arguments are implemented as flags.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000284namespace ToolOptionDescriptionFlags {
285 enum ToolOptionDescriptionFlags { StopCompilation = 0x1,
286 Forward = 0x2, UnpackValues = 0x4};
287}
288namespace OptionPropertyType {
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000289 enum OptionPropertyType { AppendCmd, ForwardAs, OutputSuffix };
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000290}
291
292typedef std::pair<OptionPropertyType::OptionPropertyType, std::string>
293OptionProperty;
294typedef SmallVector<OptionProperty, 4> OptionPropertyList;
295
296struct ToolOptionDescription : public OptionDescription {
297 unsigned Flags;
298 OptionPropertyList Props;
299
300 // StringMap can only store DefaultConstructible objects
Mikhail Glushenkov3ee84022008-03-27 09:53:47 +0000301 ToolOptionDescription() : OptionDescription(), Flags(0) {}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000302
303 ToolOptionDescription (OptionType::OptionType t, const std::string& n)
304 : OptionDescription(t, n)
305 {}
306
307 // Various boolean properties
308 bool isStopCompilation() const {
309 return Flags & ToolOptionDescriptionFlags::StopCompilation;
310 }
311 void setStopCompilation() {
312 Flags |= ToolOptionDescriptionFlags::StopCompilation;
313 }
314
315 bool isForward() const {
316 return Flags & ToolOptionDescriptionFlags::Forward;
317 }
318 void setForward() {
319 Flags |= ToolOptionDescriptionFlags::Forward;
320 }
321
322 bool isUnpackValues() const {
323 return Flags & ToolOptionDescriptionFlags::UnpackValues;
324 }
325 void setUnpackValues() {
326 Flags |= ToolOptionDescriptionFlags::UnpackValues;
327 }
328
329 void AddProperty (OptionPropertyType::OptionPropertyType t,
330 const std::string& val)
331 {
332 Props.push_back(std::make_pair(t, val));
333 }
334};
335
336typedef StringMap<ToolOptionDescription> ToolOptionDescriptions;
337
338// Tool information record
339
340namespace ToolFlags {
341 enum ToolFlags { Join = 0x1, Sink = 0x2 };
342}
343
344struct ToolProperties : public RefCountedBase<ToolProperties> {
345 std::string Name;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000346 Init* CmdLine;
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000347 StrVector InLanguage;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000348 std::string OutLanguage;
349 std::string OutputSuffix;
350 unsigned Flags;
351 ToolOptionDescriptions OptDescs;
352
353 // Various boolean properties
354 void setSink() { Flags |= ToolFlags::Sink; }
355 bool isSink() const { return Flags & ToolFlags::Sink; }
356 void setJoin() { Flags |= ToolFlags::Join; }
357 bool isJoin() const { return Flags & ToolFlags::Join; }
358
359 // Default ctor here is needed because StringMap can only store
360 // DefaultConstructible objects
Anton Korobeynikov12a3f832008-06-01 16:22:49 +0000361 ToolProperties() : CmdLine(0), Flags(0) {}
362 ToolProperties (const std::string& n) : Name(n), CmdLine(0), Flags(0) {}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000363};
364
365
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000366/// ToolPropertiesList - A list of Tool information records
367/// IntrusiveRefCntPtrs are used here because StringMap has no copy
368/// constructor (and we want to avoid copying ToolProperties anyway).
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000369typedef std::vector<IntrusiveRefCntPtr<ToolProperties> > ToolPropertiesList;
370
371
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000372/// CollectOptionProperties - Function object for iterating over a
373/// list (usually, a DAG) of option property records.
374class CollectOptionProperties {
375private:
376 // Implementation details.
377
378 /// OptionPropertyHandler - a function that extracts information
379 /// about a given option property from its DAG representation.
380 typedef void (CollectOptionProperties::* OptionPropertyHandler)
381 (const DagInit*);
382
383 /// OptionPropertyHandlerMap - A map from option property names to
384 /// option property handlers
385 typedef StringMap<OptionPropertyHandler> OptionPropertyHandlerMap;
386
387 static OptionPropertyHandlerMap optionPropertyHandlers_;
388 static bool staticMembersInitialized_;
389
390 /// This is where the information is stored
391
392 /// toolProps_ - Properties of the current Tool.
393 ToolProperties* toolProps_;
394 /// optDescs_ - OptionDescriptions table (used to register options
395 /// globally).
396 GlobalOptionDescription& optDesc_;
397
398public:
399
400 explicit CollectOptionProperties(ToolProperties* TP,
401 GlobalOptionDescription& OD)
402 : toolProps_(TP), optDesc_(OD)
403 {
404 if (!staticMembersInitialized_) {
405 optionPropertyHandlers_["append_cmd"] =
406 &CollectOptionProperties::onAppendCmd;
407 optionPropertyHandlers_["forward"] =
408 &CollectOptionProperties::onForward;
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000409 optionPropertyHandlers_["forward_as"] =
410 &CollectOptionProperties::onForwardAs;
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000411 optionPropertyHandlers_["help"] =
412 &CollectOptionProperties::onHelp;
413 optionPropertyHandlers_["output_suffix"] =
414 &CollectOptionProperties::onOutputSuffix;
415 optionPropertyHandlers_["required"] =
416 &CollectOptionProperties::onRequired;
417 optionPropertyHandlers_["stop_compilation"] =
418 &CollectOptionProperties::onStopCompilation;
419 optionPropertyHandlers_["unpack_values"] =
420 &CollectOptionProperties::onUnpackValues;
421
422 staticMembersInitialized_ = true;
423 }
424 }
425
426 /// operator() - Gets called for every option property; Just forwards
427 /// to the corresponding property handler.
428 void operator() (Init* i) {
429 const DagInit& option_property = InitPtrToDag(i);
430 const std::string& option_property_name
431 = option_property.getOperator()->getAsString();
432 OptionPropertyHandlerMap::iterator method
433 = optionPropertyHandlers_.find(option_property_name);
434
435 if (method != optionPropertyHandlers_.end()) {
436 OptionPropertyHandler h = method->second;
437 (this->*h)(&option_property);
438 }
439 else {
440 throw "Unknown option property: " + option_property_name + "!";
441 }
442 }
443
444private:
445
446 /// Option property handlers --
447 /// Methods that handle properties that are common for all types of
448 /// options (like append_cmd, stop_compilation)
449
450 void onAppendCmd (const DagInit* d) {
451 checkNumberOfArguments(d, 1);
452 checkToolProps(d);
453 const std::string& cmd = InitPtrToString(d->getArg(0));
454
455 toolProps_->OptDescs[optDesc_.Name].
456 AddProperty(OptionPropertyType::AppendCmd, cmd);
457 }
458
459 void onOutputSuffix (const DagInit* d) {
460 checkNumberOfArguments(d, 1);
461 checkToolProps(d);
462 const std::string& suf = InitPtrToString(d->getArg(0));
463
464 if (toolProps_->OptDescs[optDesc_.Name].Type != OptionType::Switch)
465 throw "Option " + optDesc_.Name
466 + " can't have 'output_suffix' property since it isn't a switch!";
467
468 toolProps_->OptDescs[optDesc_.Name].AddProperty
469 (OptionPropertyType::OutputSuffix, suf);
470 }
471
472 void onForward (const DagInit* d) {
473 checkNumberOfArguments(d, 0);
474 checkToolProps(d);
475 toolProps_->OptDescs[optDesc_.Name].setForward();
476 }
477
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000478 void onForwardAs (const DagInit* d) {
479 checkNumberOfArguments(d, 1);
480 checkToolProps(d);
481 const std::string& cmd = InitPtrToString(d->getArg(0));
482
483 toolProps_->OptDescs[optDesc_.Name].
484 AddProperty(OptionPropertyType::ForwardAs, cmd);
485 }
486
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000487 void onHelp (const DagInit* d) {
488 checkNumberOfArguments(d, 1);
489 const std::string& help_message = InitPtrToString(d->getArg(0));
490
491 optDesc_.Help = help_message;
492 }
493
494 void onRequired (const DagInit* d) {
495 checkNumberOfArguments(d, 0);
496 checkToolProps(d);
497 optDesc_.setRequired();
498 }
499
500 void onStopCompilation (const DagInit* d) {
501 checkNumberOfArguments(d, 0);
502 checkToolProps(d);
503 if (optDesc_.Type != OptionType::Switch)
504 throw std::string("Only options of type Switch can stop compilation!");
505 toolProps_->OptDescs[optDesc_.Name].setStopCompilation();
506 }
507
508 void onUnpackValues (const DagInit* d) {
509 checkNumberOfArguments(d, 0);
510 checkToolProps(d);
511 toolProps_->OptDescs[optDesc_.Name].setUnpackValues();
512 }
513
514 // Helper functions
515
516 /// checkToolProps - Throw an error if toolProps_ == 0.
517 void checkToolProps(const DagInit* d) {
518 if (!d)
519 throw "Option property " + d->getOperator()->getAsString()
520 + " can't be used in this context";
521 }
522
523};
524
525CollectOptionProperties::OptionPropertyHandlerMap
526CollectOptionProperties::optionPropertyHandlers_;
527
528bool CollectOptionProperties::staticMembersInitialized_ = false;
529
530
531/// processOptionProperties - Go through the list of option
532/// properties and call a corresponding handler for each.
533void processOptionProperties (const DagInit* d, ToolProperties* t,
534 GlobalOptionDescription& o) {
535 checkNumberOfArguments(d, 2);
536 DagInit::const_arg_iterator B = d->arg_begin();
537 // Skip the first argument: it's always the option name.
538 ++B;
539 std::for_each(B, d->arg_end(), CollectOptionProperties(t, o));
540}
541
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000542/// AddOption - A function object wrapper for
543/// processOptionProperties. Used by CollectProperties and
544/// CollectPropertiesFromOptionList.
545class AddOption {
546private:
547 GlobalOptionDescriptions& OptDescs_;
548 ToolProperties* ToolProps_;
549
550public:
551 explicit AddOption(GlobalOptionDescriptions& OD, ToolProperties* TP = 0)
552 : OptDescs_(OD), ToolProps_(TP)
553 {}
554
555 void operator()(const Init* i) {
556 const DagInit& d = InitPtrToDag(i);
557 checkNumberOfArguments(&d, 2);
558
559 const OptionType::OptionType Type =
560 getOptionType(d.getOperator()->getAsString());
561 const std::string& Name = InitPtrToString(d.getArg(0));
562
563 GlobalOptionDescription OD(Type, Name);
564 if (Type != OptionType::Alias) {
565 processOptionProperties(&d, ToolProps_, OD);
566 if (ToolProps_) {
567 ToolProps_->OptDescs[Name].Type = Type;
568 ToolProps_->OptDescs[Name].Name = Name;
569 }
570 }
571 else {
572 OD.Help = InitPtrToString(d.getArg(1));
573 }
574 OptDescs_.insertDescription(OD);
575 }
576
577private:
578 OptionType::OptionType getOptionType(const std::string& T) const {
579 if (T == "alias_option")
580 return OptionType::Alias;
581 else if (T == "switch_option")
582 return OptionType::Switch;
583 else if (T == "parameter_option")
584 return OptionType::Parameter;
585 else if (T == "parameter_list_option")
586 return OptionType::ParameterList;
587 else if (T == "prefix_option")
588 return OptionType::Prefix;
589 else if (T == "prefix_list_option")
590 return OptionType::PrefixList;
591 else
592 throw "Unknown option type: " + T + '!';
593 }
594};
595
596
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000597/// CollectProperties - Function object for iterating over a list of
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000598/// tool property records.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000599class CollectProperties {
600private:
601
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000602 // Implementation details
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000603
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000604 /// PropertyHandler - a function that extracts information
605 /// about a given tool property from its DAG representation
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000606 typedef void (CollectProperties::*PropertyHandler)(const DagInit*);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000607
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000608 /// PropertyHandlerMap - A map from property names to property
609 /// handlers.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000610 typedef StringMap<PropertyHandler> PropertyHandlerMap;
611
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000612 // Static maps from strings to CollectProperties methods("handlers")
613 static PropertyHandlerMap propertyHandlers_;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000614 static bool staticMembersInitialized_;
615
616
617 /// This is where the information is stored
618
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000619 /// toolProps_ - Properties of the current Tool.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000620 ToolProperties& toolProps_;
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000621 /// optDescs_ - OptionDescriptions table (used to register options
622 /// globally).
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000623 GlobalOptionDescriptions& optDescs_;
624
625public:
626
627 explicit CollectProperties (ToolProperties& p, GlobalOptionDescriptions& d)
628 : toolProps_(p), optDescs_(d)
629 {
630 if (!staticMembersInitialized_) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000631 propertyHandlers_["cmd_line"] = &CollectProperties::onCmdLine;
632 propertyHandlers_["in_language"] = &CollectProperties::onInLanguage;
633 propertyHandlers_["join"] = &CollectProperties::onJoin;
634 propertyHandlers_["out_language"] = &CollectProperties::onOutLanguage;
635 propertyHandlers_["output_suffix"] = &CollectProperties::onOutputSuffix;
636 propertyHandlers_["parameter_option"]
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000637 = &CollectProperties::addOption;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000638 propertyHandlers_["parameter_list_option"] =
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000639 &CollectProperties::addOption;
640 propertyHandlers_["prefix_option"] = &CollectProperties::addOption;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000641 propertyHandlers_["prefix_list_option"] =
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000642 &CollectProperties::addOption;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000643 propertyHandlers_["sink"] = &CollectProperties::onSink;
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000644 propertyHandlers_["switch_option"] = &CollectProperties::addOption;
645 propertyHandlers_["alias_option"] = &CollectProperties::addOption;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000646
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000647 staticMembersInitialized_ = true;
648 }
649 }
650
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +0000651 /// operator() - Gets called for every tool property; Just forwards
652 /// to the corresponding property handler.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000653 void operator() (Init* i) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000654 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkov581936a2008-05-06 17:22:03 +0000655 const std::string& property_name = d.getOperator()->getAsString();
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000656 PropertyHandlerMap::iterator method
657 = propertyHandlers_.find(property_name);
658
659 if (method != propertyHandlers_.end()) {
660 PropertyHandler h = method->second;
661 (this->*h)(&d);
662 }
663 else {
664 throw "Unknown tool property: " + property_name + "!";
665 }
666 }
667
668private:
669
670 /// Property handlers --
671 /// Functions that extract information about tool properties from
672 /// DAG representation.
673
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000674 void onCmdLine (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000675 checkNumberOfArguments(d, 1);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000676 toolProps_.CmdLine = d->getArg(0);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000677 }
678
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000679 void onInLanguage (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000680 checkNumberOfArguments(d, 1);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000681 Init* arg = d->getArg(0);
682
683 // Find out the argument's type.
684 if (typeid(*arg) == typeid(StringInit)) {
685 // It's a string.
686 toolProps_.InLanguage.push_back(InitPtrToString(arg));
687 }
688 else {
689 // It's a list.
690 const ListInit& lst = InitPtrToList(arg);
691 StrVector& out = toolProps_.InLanguage;
692
693 // Copy strings to the output vector.
694 for (ListInit::const_iterator B = lst.begin(), E = lst.end();
695 B != E; ++B) {
696 out.push_back(InitPtrToString(*B));
697 }
698
699 // Remove duplicates.
700 std::sort(out.begin(), out.end());
701 StrVector::iterator newE = std::unique(out.begin(), out.end());
702 out.erase(newE, out.end());
703 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000704 }
705
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000706 void onJoin (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000707 checkNumberOfArguments(d, 0);
708 toolProps_.setJoin();
709 }
710
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000711 void onOutLanguage (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000712 checkNumberOfArguments(d, 1);
713 toolProps_.OutLanguage = InitPtrToString(d->getArg(0));
714 }
715
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000716 void onOutputSuffix (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000717 checkNumberOfArguments(d, 1);
718 toolProps_.OutputSuffix = InitPtrToString(d->getArg(0));
719 }
720
Mikhail Glushenkov29063552008-05-06 18:18:20 +0000721 void onSink (const DagInit* d) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000722 checkNumberOfArguments(d, 0);
723 optDescs_.HasSink = true;
724 toolProps_.setSink();
725 }
726
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000727 // Just forwards to the AddOption function object. Somewhat
728 // non-optimal, but avoids code duplication.
729 void addOption (const DagInit* d) {
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +0000730 checkNumberOfArguments(d, 2);
Mikhail Glushenkov2b7bcb42008-05-30 06:27:29 +0000731 AddOption(optDescs_, &toolProps_)(d);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000732 }
733
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000734};
735
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000736// Defintions of static members of CollectProperties.
737CollectProperties::PropertyHandlerMap CollectProperties::propertyHandlers_;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000738bool CollectProperties::staticMembersInitialized_ = false;
739
740
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000741/// CollectToolProperties - Gather information about tool properties
742/// from the parsed TableGen data (basically a wrapper for the
743/// CollectProperties function object).
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000744void CollectToolProperties (RecordVector::const_iterator B,
745 RecordVector::const_iterator E,
746 ToolPropertiesList& TPList,
747 GlobalOptionDescriptions& OptDescs)
748{
749 // Iterate over a properties list of every Tool definition
750 for (;B!=E;++B) {
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000751 Record* T = *B;
752 // Throws an exception if the value does not exist.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000753 ListInit* PropList = T->getValueAsListInit("properties");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +0000754
755 IntrusiveRefCntPtr<ToolProperties>
756 ToolProps(new ToolProperties(T->getName()));
757
758 std::for_each(PropList->begin(), PropList->end(),
759 CollectProperties(*ToolProps, OptDescs));
760 TPList.push_back(ToolProps);
761 }
762}
763
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000764
765/// CollectPropertiesFromOptionList - Gather information about
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000766/// *global* option properties from the OptionList.
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000767void CollectPropertiesFromOptionList (RecordVector::const_iterator B,
768 RecordVector::const_iterator E,
769 GlobalOptionDescriptions& OptDescs)
770{
771 // Iterate over a properties list of every Tool definition
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000772 for (;B!=E;++B) {
773 RecordVector::value_type T = *B;
774 // Throws an exception if the value does not exist.
775 ListInit* PropList = T->getValueAsListInit("options");
776
Mikhail Glushenkov09b51c32008-05-30 06:27:02 +0000777 std::for_each(PropList->begin(), PropList->end(), AddOption(OptDescs));
Mikhail Glushenkove43228952008-05-30 06:26:08 +0000778 }
779}
780
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +0000781/// CheckForSuperfluousOptions - Check that there are no side
782/// effect-free options (specified only in the OptionList). Otherwise,
783/// output a warning.
784void CheckForSuperfluousOptions (const ToolPropertiesList& TPList,
785 const GlobalOptionDescriptions& OptDescs) {
786 llvm::StringSet<> nonSuperfluousOptions;
787
788 // Add all options mentioned in the TPList to the set of
789 // non-superfluous options.
790 for (ToolPropertiesList::const_iterator B = TPList.begin(),
791 E = TPList.end(); B != E; ++B) {
792 const ToolProperties& TP = *(*B);
793 for (ToolOptionDescriptions::const_iterator B = TP.OptDescs.begin(),
794 E = TP.OptDescs.end(); B != E; ++B) {
795 nonSuperfluousOptions.insert(B->first());
796 }
797 }
798
799 // Check that all options in OptDescs belong to the set of
800 // non-superfluous options.
801 for (GlobalOptionDescriptions::const_iterator B = OptDescs.begin(),
802 E = OptDescs.end(); B != E; ++B) {
803 const GlobalOptionDescription& Val = B->second;
804 if (!nonSuperfluousOptions.count(Val.Name)
805 && Val.Type != OptionType::Alias)
806 cerr << "Warning: option '-" << Val.Name << "' has no effect! "
807 "Probable cause: this option is specified only in the OptionList.\n";
808 }
809}
810
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000811/// EmitCaseTest1Arg - Helper function used by
812/// EmitCaseConstructHandler.
813bool EmitCaseTest1Arg(const std::string& TestName,
814 const DagInit& d,
815 const GlobalOptionDescriptions& OptDescs,
816 std::ostream& O) {
817 checkNumberOfArguments(&d, 1);
818 const std::string& OptName = InitPtrToString(d.getArg(0));
819 if (TestName == "switch_on") {
820 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
821 if (OptDesc.Type != OptionType::Switch)
822 throw OptName + ": incorrect option type!";
823 O << OptDesc.GenVariableName();
824 return true;
825 } else if (TestName == "input_languages_contain") {
826 O << "InLangs.count(\"" << OptName << "\") != 0";
827 return true;
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +0000828 } else if (TestName == "in_language") {
Mikhail Glushenkov07376512008-09-22 20:48:22 +0000829 // This works only for single-argument Tool::GenerateAction. Join
830 // tools can process several files in different languages simultaneously.
831
832 // TODO: make this work with Edge::Weight (if possible).
Mikhail Glushenkov11a353a2008-09-22 20:47:46 +0000833 O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +0000834 return true;
835 } else if (TestName == "not_empty") {
Mikhail Glushenkov92b8da72008-05-30 06:24:07 +0000836 if (OptName == "o") {
837 O << "!OutputFilename.empty()";
838 return true;
839 }
840 else {
841 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
842 if (OptDesc.Type == OptionType::Switch)
843 throw OptName + ": incorrect option type!";
844 O << '!' << OptDesc.GenVariableName() << ".empty()";
845 return true;
846 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000847 }
848
849 return false;
850}
851
852/// EmitCaseTest2Args - Helper function used by
853/// EmitCaseConstructHandler.
854bool EmitCaseTest2Args(const std::string& TestName,
855 const DagInit& d,
856 const char* IndentLevel,
857 const GlobalOptionDescriptions& OptDescs,
858 std::ostream& O) {
859 checkNumberOfArguments(&d, 2);
860 const std::string& OptName = InitPtrToString(d.getArg(0));
861 const std::string& OptArg = InitPtrToString(d.getArg(1));
862 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
863
864 if (TestName == "parameter_equals") {
865 if (OptDesc.Type != OptionType::Parameter
866 && OptDesc.Type != OptionType::Prefix)
867 throw OptName + ": incorrect option type!";
868 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
869 return true;
870 }
871 else if (TestName == "element_in_list") {
872 if (OptDesc.Type != OptionType::ParameterList
873 && OptDesc.Type != OptionType::PrefixList)
874 throw OptName + ": incorrect option type!";
875 const std::string& VarName = OptDesc.GenVariableName();
876 O << "std::find(" << VarName << ".begin(),\n"
877 << IndentLevel << Indent1 << VarName << ".end(), \""
878 << OptArg << "\") != " << VarName << ".end()";
879 return true;
880 }
881
882 return false;
883}
884
885// Forward declaration.
886// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
887void EmitCaseTest(const DagInit& d, const char* IndentLevel,
888 const GlobalOptionDescriptions& OptDescs,
889 std::ostream& O);
890
891/// EmitLogicalOperationTest - Helper function used by
892/// EmitCaseConstructHandler.
893void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
894 const char* IndentLevel,
895 const GlobalOptionDescriptions& OptDescs,
896 std::ostream& O) {
897 O << '(';
898 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000899 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000900 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
901 if (j != NumArgs - 1)
902 O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
903 else
904 O << ')';
905 }
906}
907
908/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
909void EmitCaseTest(const DagInit& d, const char* IndentLevel,
910 const GlobalOptionDescriptions& OptDescs,
911 std::ostream& O) {
912 const std::string& TestName = d.getOperator()->getAsString();
913
914 if (TestName == "and")
915 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
916 else if (TestName == "or")
917 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
918 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
919 return;
920 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
921 return;
922 else
923 throw TestName + ": unknown edge property!";
924}
925
926// Emit code that handles the 'case' construct.
927// Takes a function object that should emit code for every case clause.
928// Callback's type is
929// void F(Init* Statement, const char* IndentLevel, std::ostream& O).
930template <typename F>
931void EmitCaseConstructHandler(const DagInit* d, const char* IndentLevel,
Mikhail Glushenkov310d2eb2008-05-31 13:43:21 +0000932 F Callback, bool EmitElseIf,
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000933 const GlobalOptionDescriptions& OptDescs,
934 std::ostream& O) {
935 assert(d->getOperator()->getAsString() == "case");
936
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000937 unsigned numArgs = d->getNumArgs();
938 if (d->getNumArgs() < 2)
939 throw "There should be at least one clause in the 'case' expression:\n"
940 + d->getAsString();
941
942 for (unsigned i = 0; i != numArgs; ++i) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000943 const DagInit& Test = InitPtrToDag(d->getArg(i));
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000944
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000945 // Emit the test.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000946 if (Test.getOperator()->getAsString() == "default") {
947 if (i+2 != numArgs)
948 throw std::string("The 'default' clause should be the last in the"
949 "'case' construct!");
950 O << IndentLevel << "else {\n";
951 }
952 else {
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +0000953 O << IndentLevel << ((i != 0 && EmitElseIf) ? "else if (" : "if (");
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000954 EmitCaseTest(Test, IndentLevel, OptDescs, O);
955 O << ") {\n";
956 }
957
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000958 // Emit the corresponding statement.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000959 ++i;
960 if (i == numArgs)
961 throw "Case construct handler: no corresponding action "
962 "found for the test " + Test.getAsString() + '!';
963
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +0000964 Init* arg = d->getArg(i);
965 if (dynamic_cast<DagInit*>(arg)
966 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case") {
967 EmitCaseConstructHandler(static_cast<DagInit*>(arg),
968 (std::string(IndentLevel) + Indent1).c_str(),
969 Callback, EmitElseIf, OptDescs, O);
970 }
971 else {
972 Callback(arg, IndentLevel, O);
973 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000974 O << IndentLevel << "}\n";
975 }
976}
977
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000978/// EmitForwardOptionPropertyHandlingCode - Helper function used to
979/// implement EmitOptionPropertyHandlingCode(). Emits code for
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000980/// handling the (forward) and (forward_as) option properties.
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000981void EmitForwardOptionPropertyHandlingCode (const ToolOptionDescription& D,
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000982 const std::string& NewName,
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000983 std::ostream& O) {
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000984 const std::string& Name = NewName.empty()
985 ? ("-" + D.Name)
986 : NewName;
987
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000988 switch (D.Type) {
989 case OptionType::Switch:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000990 O << Indent3 << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000991 break;
992 case OptionType::Parameter:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000993 O << Indent3 << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000994 O << Indent3 << "vec.push_back(" << D.GenVariableName() << ");\n";
995 break;
996 case OptionType::Prefix:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000997 O << Indent3 << "vec.push_back(\"" << Name << "\" + "
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000998 << D.GenVariableName() << ");\n";
999 break;
1000 case OptionType::PrefixList:
1001 O << Indent3 << "for (" << D.GenTypeDeclaration()
1002 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1003 << Indent3 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n"
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001004 << Indent4 << "vec.push_back(\"" << Name << "\" + "
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001005 << "*B);\n";
1006 break;
1007 case OptionType::ParameterList:
1008 O << Indent3 << "for (" << D.GenTypeDeclaration()
1009 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1010 << Indent3 << "E = " << D.GenVariableName()
1011 << ".end() ; B != E; ++B) {\n"
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001012 << Indent4 << "vec.push_back(\"" << Name << "\");\n"
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001013 << Indent4 << "vec.push_back(*B);\n"
1014 << Indent3 << "}\n";
1015 break;
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001016 case OptionType::Alias:
1017 default:
1018 throw std::string("Aliases are not allowed in tool option descriptions!");
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001019 }
1020}
1021
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001022// ToolOptionHasInterestingProperties - A helper function used by
1023// EmitOptionPropertyHandlingCode() that tells us whether we should
1024// emit any property handling code at all.
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001025bool ToolOptionHasInterestingProperties(const ToolOptionDescription& D) {
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001026 bool ret = false;
1027 for (OptionPropertyList::const_iterator B = D.Props.begin(),
1028 E = D.Props.end(); B != E; ++B) {
1029 const OptionProperty& OptProp = *B;
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001030 if (OptProp.first == OptionPropertyType::AppendCmd
1031 || OptProp.first == OptionPropertyType::ForwardAs)
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001032 ret = true;
1033 }
1034 if (D.isForward() || D.isUnpackValues())
1035 ret = true;
1036 return ret;
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001037}
1038
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001039/// EmitOptionPropertyHandlingCode - Helper function used by
1040/// EmitGenerateActionMethod(). Emits code that handles option
1041/// properties.
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001042void EmitOptionPropertyHandlingCode (const ToolOptionDescription& D,
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001043 std::ostream& O)
1044{
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001045 if (!ToolOptionHasInterestingProperties(D))
1046 return;
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001047 // Start of the if-clause.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001048 O << Indent2 << "if (";
1049 if (D.Type == OptionType::Switch)
1050 O << D.GenVariableName();
1051 else
1052 O << '!' << D.GenVariableName() << ".empty()";
1053
1054 O <<") {\n";
1055
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001056 // Handle option properties that take an argument.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001057 for (OptionPropertyList::const_iterator B = D.Props.begin(),
1058 E = D.Props.end(); B!=E; ++B) {
1059 const OptionProperty& val = *B;
1060
1061 switch (val.first) {
1062 // (append_cmd cmd) property
1063 case OptionPropertyType::AppendCmd:
1064 O << Indent3 << "vec.push_back(\"" << val.second << "\");\n";
1065 break;
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001066 // (forward_as) property
1067 case OptionPropertyType::ForwardAs:
1068 EmitForwardOptionPropertyHandlingCode(D, val.second, O);
1069 break;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001070 // Other properties with argument
1071 default:
1072 break;
1073 }
1074 }
1075
1076 // Handle flags
1077
1078 // (forward) property
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001079 if (D.isForward())
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001080 EmitForwardOptionPropertyHandlingCode(D, "", O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001081
1082 // (unpack_values) property
1083 if (D.isUnpackValues()) {
1084 if (IsListOptionType(D.Type)) {
1085 O << Indent3 << "for (" << D.GenTypeDeclaration()
1086 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1087 << Indent3 << "E = " << D.GenVariableName()
1088 << ".end(); B != E; ++B)\n"
Mikhail Glushenkovd83038c2008-05-06 18:13:45 +00001089 << Indent4 << "llvm::SplitString(*B, vec, \",\");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001090 }
1091 else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
Mikhail Glushenkovd83038c2008-05-06 18:13:45 +00001092 O << Indent3 << "llvm::SplitString("
1093 << D.GenVariableName() << ", vec, \",\");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001094 }
1095 else {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001096 throw std::string("Switches can't have unpack_values property!");
1097 }
1098 }
1099
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001100 // End of the if-clause.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001101 O << Indent2 << "}\n";
1102}
1103
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001104/// SubstituteSpecialCommands - Perform string substitution for $CALL
1105/// and $ENV. Helper function used by EmitCmdLineVecFill().
1106std::string SubstituteSpecialCommands(const std::string& cmd) {
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001107 size_t cparen = cmd.find(")");
1108 std::string ret;
1109
1110 if (cmd.find("$CALL(") == 0) {
1111 if (cmd.size() == 6)
1112 throw std::string("$CALL invocation: empty argument list!");
1113
1114 ret += "hooks::";
1115 ret += std::string(cmd.begin() + 6, cmd.begin() + cparen);
1116 ret += "()";
1117 }
1118 else if (cmd.find("$ENV(") == 0) {
1119 if (cmd.size() == 5)
1120 throw std::string("$ENV invocation: empty argument list!");
1121
1122 ret += "std::getenv(\"";
1123 ret += std::string(cmd.begin() + 5, cmd.begin() + cparen);
1124 ret += "\")";
1125 }
1126 else {
1127 throw "Unknown special command: " + cmd;
1128 }
1129
1130 if (cmd.begin() + cparen + 1 != cmd.end()) {
1131 ret += " + std::string(\"";
1132 ret += (cmd.c_str() + cparen + 1);
1133 ret += "\")";
1134 }
1135
1136 return ret;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001137}
1138
1139/// EmitCmdLineVecFill - Emit code that fills in the command line
1140/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001141void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
1142 bool Version, const char* IndentLevel,
1143 std::ostream& O) {
1144 StrVector StrVec;
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001145 SplitString(InitPtrToString(CmdLine), StrVec);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001146 if (StrVec.empty())
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001147 throw "Tool " + ToolName + " has empty command line!";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001148
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001149 StrVector::const_iterator I = StrVec.begin();
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001150 ++I;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001151 for (StrVector::const_iterator E = StrVec.end(); I != E; ++I) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001152 const std::string& cmd = *I;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001153 O << IndentLevel;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001154 if (cmd.at(0) == '$') {
1155 if (cmd == "$INFILE") {
1156 if (Version)
1157 O << "for (PathVector::const_iterator B = inFiles.begin()"
1158 << ", E = inFiles.end();\n"
1159 << IndentLevel << "B != E; ++B)\n"
1160 << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
1161 else
1162 O << "vec.push_back(inFile.toString());\n";
1163 }
1164 else if (cmd == "$OUTFILE") {
1165 O << "vec.push_back(outFile.toString());\n";
1166 }
1167 else {
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001168 O << "vec.push_back(" << SubstituteSpecialCommands(cmd);
1169 O << ");\n";
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001170 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001171 }
1172 else {
1173 O << "vec.push_back(\"" << cmd << "\");\n";
1174 }
1175 }
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001176 O << IndentLevel << "cmd = "
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001177 << ((StrVec[0][0] == '$') ? SubstituteSpecialCommands(StrVec[0])
1178 : "\"" + StrVec[0] + "\"")
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001179 << ";\n";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001180}
1181
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001182/// EmitCmdLineVecFillCallback - A function object wrapper around
1183/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1184/// argument to EmitCaseConstructHandler().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001185class EmitCmdLineVecFillCallback {
1186 bool Version;
1187 const std::string& ToolName;
1188 public:
1189 EmitCmdLineVecFillCallback(bool Ver, const std::string& TN)
1190 : Version(Ver), ToolName(TN) {}
1191
1192 void operator()(const Init* Statement, const char* IndentLevel,
1193 std::ostream& O) const
1194 {
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001195 EmitCmdLineVecFill(Statement, ToolName, Version,
1196 (std::string(IndentLevel) + Indent1).c_str(), O);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001197 }
1198};
1199
1200// EmitGenerateActionMethod - Emit one of two versions of the
1201// Tool::GenerateAction() method.
1202void EmitGenerateActionMethod (const ToolProperties& P,
1203 const GlobalOptionDescriptions& OptDescs,
1204 bool Version, std::ostream& O) {
1205 if (Version)
1206 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1207 else
1208 O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1209
1210 O << Indent2 << "const sys::Path& outFile,\n"
Mikhail Glushenkov11a353a2008-09-22 20:47:46 +00001211 << Indent2 << "const InputLanguagesSet& InLangs,\n"
1212 << Indent2 << "const LanguageMap& LangMap) const\n"
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001213 << Indent1 << "{\n"
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001214 << Indent2 << "const char* cmd;\n"
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001215 << Indent2 << "std::vector<std::string> vec;\n";
1216
1217 // cmd_line is either a string or a 'case' construct.
1218 if (typeid(*P.CmdLine) == typeid(StringInit))
1219 EmitCmdLineVecFill(P.CmdLine, P.Name, Version, Indent2, O);
1220 else
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001221 EmitCaseConstructHandler(&InitPtrToDag(P.CmdLine), Indent2,
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001222 EmitCmdLineVecFillCallback(Version, P.Name),
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001223 true, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001224
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001225 // For every understood option, emit handling code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001226 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1227 E = P.OptDescs.end(); B != E; ++B) {
1228 const ToolOptionDescription& val = B->second;
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001229 EmitOptionPropertyHandlingCode(val, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001230 }
1231
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001232 // Handle the Sink property.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001233 if (P.isSink()) {
1234 O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1235 << Indent3 << "vec.insert(vec.end(), "
1236 << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1237 << Indent2 << "}\n";
1238 }
1239
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001240 O << Indent2 << "return Action(cmd, vec);\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001241 << Indent1 << "}\n\n";
1242}
1243
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001244/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1245/// a given Tool class.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001246void EmitGenerateActionMethods (const ToolProperties& P,
1247 const GlobalOptionDescriptions& OptDescs,
1248 std::ostream& O) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001249 if (!P.isJoin())
1250 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001251 << Indent2 << "const llvm::sys::Path& outFile,\n"
Mikhail Glushenkov11a353a2008-09-22 20:47:46 +00001252 << Indent2 << "const InputLanguagesSet& InLangs,\n"
1253 << Indent2 << "const LanguageMap& LangMap) const\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001254 << Indent1 << "{\n"
1255 << Indent2 << "throw std::runtime_error(\"" << P.Name
1256 << " is not a Join tool!\");\n"
1257 << Indent1 << "}\n\n";
1258 else
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001259 EmitGenerateActionMethod(P, OptDescs, true, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001260
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001261 EmitGenerateActionMethod(P, OptDescs, false, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001262}
1263
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001264/// EmitIsLastMethod - Emit the IsLast() method for a given Tool
1265/// class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001266void EmitIsLastMethod (const ToolProperties& P, std::ostream& O) {
1267 O << Indent1 << "bool IsLast() const {\n"
1268 << Indent2 << "bool last = false;\n";
1269
1270 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1271 E = P.OptDescs.end(); B != E; ++B) {
1272 const ToolOptionDescription& val = B->second;
1273
1274 if (val.isStopCompilation())
1275 O << Indent2
1276 << "if (" << val.GenVariableName()
1277 << ")\n" << Indent3 << "last = true;\n";
1278 }
1279
1280 O << Indent2 << "return last;\n"
1281 << Indent1 << "}\n\n";
1282}
1283
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001284/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1285/// methods for a given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001286void EmitInOutLanguageMethods (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001287 O << Indent1 << "const char** InputLanguages() const {\n"
1288 << Indent2 << "return InputLanguages_;\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001289 << Indent1 << "}\n\n";
1290
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001291 O << Indent1 << "const char* OutputLanguage() const {\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001292 << Indent2 << "return \"" << P.OutLanguage << "\";\n"
1293 << Indent1 << "}\n\n";
1294}
1295
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001296/// EmitOutputSuffixMethod - Emit the OutputSuffix() method for a
1297/// given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001298void EmitOutputSuffixMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001299 O << Indent1 << "const char* OutputSuffix() const {\n"
Mikhail Glushenkov5c7578d2008-05-30 06:13:02 +00001300 << Indent2 << "const char* ret = \"" << P.OutputSuffix << "\";\n";
1301
1302 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1303 E = P.OptDescs.end(); B != E; ++B) {
1304 const ToolOptionDescription& OptDesc = B->second;
1305 for (OptionPropertyList::const_iterator B = OptDesc.Props.begin(),
1306 E = OptDesc.Props.end(); B != E; ++B) {
1307 const OptionProperty& OptProp = *B;
1308 if (OptProp.first == OptionPropertyType::OutputSuffix) {
1309 O << Indent2 << "if (" << OptDesc.GenVariableName() << ")\n"
1310 << Indent3 << "ret = \"" << OptProp.second << "\";\n";
1311 }
1312 }
1313 }
1314
1315 O << Indent2 << "return ret;\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001316 << Indent1 << "}\n\n";
1317}
1318
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001319/// EmitNameMethod - Emit the Name() method for a given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001320void EmitNameMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001321 O << Indent1 << "const char* Name() const {\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001322 << Indent2 << "return \"" << P.Name << "\";\n"
1323 << Indent1 << "}\n\n";
1324}
1325
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001326/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1327/// class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001328void EmitIsJoinMethod (const ToolProperties& P, std::ostream& O) {
1329 O << Indent1 << "bool IsJoin() const {\n";
1330 if (P.isJoin())
1331 O << Indent2 << "return true;\n";
1332 else
1333 O << Indent2 << "return false;\n";
1334 O << Indent1 << "}\n\n";
1335}
1336
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001337/// EmitStaticMemberDefinitions - Emit static member definitions for a
1338/// given Tool class.
1339void EmitStaticMemberDefinitions(const ToolProperties& P, std::ostream& O) {
1340 O << "const char* " << P.Name << "::InputLanguages_[] = {";
1341 for (StrVector::const_iterator B = P.InLanguage.begin(),
1342 E = P.InLanguage.end(); B != E; ++B)
1343 O << '\"' << *B << "\", ";
1344 O << "0};\n\n";
1345}
1346
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001347/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001348void EmitToolClassDefinition (const ToolProperties& P,
1349 const GlobalOptionDescriptions& OptDescs,
1350 std::ostream& O) {
1351 if (P.Name == "root")
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001352 return;
1353
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001354 // Header
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +00001355 O << "class " << P.Name << " : public ";
1356 if (P.isJoin())
1357 O << "JoinTool";
1358 else
1359 O << "Tool";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001360
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001361 O << "{\nprivate:\n"
1362 << Indent1 << "static const char* InputLanguages_[];\n\n";
1363
1364 O << "public:\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001365 EmitNameMethod(P, O);
1366 EmitInOutLanguageMethods(P, O);
1367 EmitOutputSuffixMethod(P, O);
1368 EmitIsJoinMethod(P, O);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001369 EmitGenerateActionMethods(P, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001370 EmitIsLastMethod(P, O);
1371
1372 // Close class definition
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001373 O << "};\n";
1374
1375 EmitStaticMemberDefinitions(P, O);
1376
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001377}
1378
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001379/// EmitOptionDescriptions - Iterate over a list of option
1380/// descriptions and emit registration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001381void EmitOptionDescriptions (const GlobalOptionDescriptions& descs,
1382 std::ostream& O)
1383{
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001384 std::vector<GlobalOptionDescription> Aliases;
1385
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001386 // Emit static cl::Option variables.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001387 for (GlobalOptionDescriptions::const_iterator B = descs.begin(),
1388 E = descs.end(); B!=E; ++B) {
1389 const GlobalOptionDescription& val = B->second;
1390
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001391 if (val.Type == OptionType::Alias) {
1392 Aliases.push_back(val);
1393 continue;
1394 }
1395
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001396 O << val.GenTypeDeclaration() << ' '
1397 << val.GenVariableName()
1398 << "(\"" << val.Name << '\"';
1399
1400 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1401 O << ", cl::Prefix";
1402
1403 if (val.isRequired()) {
1404 switch (val.Type) {
1405 case OptionType::PrefixList:
1406 case OptionType::ParameterList:
1407 O << ", cl::OneOrMore";
1408 break;
1409 default:
1410 O << ", cl::Required";
1411 }
1412 }
1413
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001414 if (!val.Help.empty())
1415 O << ", cl::desc(\"" << val.Help << "\")";
1416
1417 O << ");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001418 }
1419
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001420 // Emit the aliases (they should go after all the 'proper' options).
1421 for (std::vector<GlobalOptionDescription>::const_iterator
1422 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
1423 const GlobalOptionDescription& val = *B;
1424
1425 O << val.GenTypeDeclaration() << ' '
1426 << val.GenVariableName()
1427 << "(\"" << val.Name << '\"';
1428
1429 GlobalOptionDescriptions::container_type
1430 ::const_iterator F = descs.Descriptions.find(val.Help);
1431 if (F != descs.Descriptions.end())
1432 O << ", cl::aliasopt(" << F->second.GenVariableName() << ")";
1433 else
1434 throw val.Name + ": alias to an unknown option!";
1435
1436 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
1437 }
1438
1439 // Emit the sink option.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001440 if (descs.HasSink)
1441 O << "cl::list<std::string> " << SinkOptionName << "(cl::Sink);\n";
1442
1443 O << '\n';
1444}
1445
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001446/// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001447void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1448{
1449 // Get the relevant field out of RecordKeeper
1450 Record* LangMapRecord = Records.getDef("LanguageMap");
1451 if (!LangMapRecord)
1452 throw std::string("Language map definition not found!");
1453
1454 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1455 if (!LangsToSuffixesList)
1456 throw std::string("Error in the language map definition!");
1457
1458 // Generate code
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001459 O << "namespace {\n\n";
1460 O << "void PopulateLanguageMapLocal(LanguageMap& langMap) {\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001461
1462 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
1463 Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
1464
1465 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1466 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1467
1468 for (unsigned i = 0; i < Suffixes->size(); ++i)
Mikhail Glushenkov11a353a2008-09-22 20:47:46 +00001469 O << Indent1 << "langMap[\""
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001470 << InitPtrToString(Suffixes->getElement(i))
1471 << "\"] = \"" << Lang << "\";\n";
1472 }
1473
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001474 O << "}\n\n}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001475}
1476
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001477/// FillInToolToLang - Fills in two tables that map tool names to
1478/// (input, output) languages. Used by the typechecker.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001479void FillInToolToLang (const ToolPropertiesList& TPList,
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001480 StringMap<StringSet<> >& ToolToInLang,
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001481 StringMap<std::string>& ToolToOutLang) {
1482 for (ToolPropertiesList::const_iterator B = TPList.begin(), E = TPList.end();
1483 B != E; ++B) {
1484 const ToolProperties& P = *(*B);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001485 for (StrVector::const_iterator B = P.InLanguage.begin(),
1486 E = P.InLanguage.end(); B != E; ++B)
1487 ToolToInLang[P.Name].insert(*B);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001488 ToolToOutLang[P.Name] = P.OutLanguage;
1489 }
1490}
1491
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001492/// TypecheckGraph - Check that names for output and input languages
1493/// on all edges do match.
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001494// TOFIX: It would be nice if this function also checked for cycles
1495// and multiple default edges in the graph (better error
1496// reporting). Unfortunately, it is awkward to do right now because
1497// our intermediate representation is not sufficiently
Mikhail Glushenkov5ccf28f2008-09-22 20:45:17 +00001498// sophisticated. Algorithms like these require a real graph instead of
1499// an AST.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001500void TypecheckGraph (Record* CompilationGraph,
1501 const ToolPropertiesList& TPList) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001502 StringMap<StringSet<> > ToolToInLang;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001503 StringMap<std::string> ToolToOutLang;
1504
1505 FillInToolToLang(TPList, ToolToInLang, ToolToOutLang);
1506 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001507 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
1508 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001509
1510 for (unsigned i = 0; i < edges->size(); ++i) {
1511 Record* Edge = edges->getElementAsRecord(i);
1512 Record* A = Edge->getValueAsDef("a");
1513 Record* B = Edge->getValueAsDef("b");
1514 StringMap<std::string>::iterator IA = ToolToOutLang.find(A->getName());
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001515 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(B->getName());
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001516 if (IA == IAE)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001517 throw A->getName() + ": no such tool!";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001518 if (IB == IBE)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001519 throw B->getName() + ": no such tool!";
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001520 if (A->getName() != "root" && IB->second.count(IA->second) == 0)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001521 throw "Edge " + A->getName() + "->" + B->getName()
1522 + ": output->input language mismatch";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001523 if (B->getName() == "root")
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001524 throw std::string("Edges back to the root are not allowed!");
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001525 }
1526}
1527
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001528/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1529/// by EmitEdgeClass().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001530void IncDecWeight (const Init* i, const char* IndentLevel,
1531 std::ostream& O) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001532 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001533 const std::string& OpName = d.getOperator()->getAsString();
1534
1535 if (OpName == "inc_weight")
1536 O << IndentLevel << Indent1 << "ret += ";
1537 else if (OpName == "dec_weight")
1538 O << IndentLevel << Indent1 << "ret -= ";
1539 else
1540 throw "Unknown operator in edge properties list: " + OpName + '!';
1541
1542 if (d.getNumArgs() > 0)
1543 O << InitPtrToInt(d.getArg(0)) << ";\n";
1544 else
1545 O << "2;\n";
1546
Mikhail Glushenkov29063552008-05-06 18:18:20 +00001547}
1548
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001549/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001550void EmitEdgeClass (unsigned N, const std::string& Target,
1551 DagInit* Case, const GlobalOptionDescriptions& OptDescs,
1552 std::ostream& O) {
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001553
1554 // Class constructor.
1555 O << "class Edge" << N << ": public Edge {\n"
1556 << "public:\n"
1557 << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1558 << "\") {}\n\n"
1559
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001560 // Function Weight().
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +00001561 << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001562 << Indent2 << "unsigned ret = 0;\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001563
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001564 // Handle the 'case' construct.
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001565 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001566
1567 O << Indent2 << "return ret;\n"
1568 << Indent1 << "};\n\n};\n\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001569}
1570
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001571/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001572void EmitEdgeClasses (Record* CompilationGraph,
1573 const GlobalOptionDescriptions& OptDescs,
1574 std::ostream& O) {
1575 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1576
1577 for (unsigned i = 0; i < edges->size(); ++i) {
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001578 Record* Edge = edges->getElementAsRecord(i);
1579 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001580 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001581
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001582 if (isDagEmpty(Weight))
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001583 continue;
1584
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001585 EmitEdgeClass(i, B->getName(), Weight, OptDescs, O);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001586 }
1587}
1588
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001589/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1590/// function.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001591void EmitPopulateCompilationGraph (Record* CompilationGraph,
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001592 std::ostream& O)
1593{
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001594 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001595
1596 // Generate code
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001597 O << "namespace {\n\n";
1598 O << "void PopulateCompilationGraphLocal(CompilationGraph& G) {\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001599
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001600 // Insert vertices
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001601
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001602 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1603 if (Tools.empty())
1604 throw std::string("No tool definitions found!");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001605
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001606 for (RecordVector::iterator B = Tools.begin(), E = Tools.end(); B != E; ++B) {
1607 const std::string& Name = (*B)->getName();
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001608 if (Name != "root")
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001609 O << Indent1 << "G.insertNode(new "
1610 << Name << "());\n";
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001611 }
1612
1613 O << '\n';
1614
1615 // Insert edges
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001616 for (unsigned i = 0; i < edges->size(); ++i) {
1617 Record* Edge = edges->getElementAsRecord(i);
1618 Record* A = Edge->getValueAsDef("a");
1619 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001620 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001621
1622 O << Indent1 << "G.insertEdge(\"" << A->getName() << "\", ";
1623
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001624 if (isDagEmpty(Weight))
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001625 O << "new SimpleEdge(\"" << B->getName() << "\")";
1626 else
1627 O << "new Edge" << i << "()";
1628
1629 O << ");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001630 }
1631
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001632 O << "}\n\n}\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001633}
1634
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001635/// ExtractHookNames - Extract the hook names from all instances of
1636/// $CALL(HookName) in the provided command line string. Helper
1637/// function used by FillInHookNames().
1638void ExtractHookNames(const Init* CmdLine, StrVector& HookNames) {
1639 StrVector cmds;
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001640 llvm::SplitString(InitPtrToString(CmdLine), cmds);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001641 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1642 B != E; ++B) {
1643 const std::string& cmd = *B;
1644 if (cmd.find("$CALL(") == 0) {
1645 if (cmd.size() == 6)
1646 throw std::string("$CALL invocation: empty argument list!");
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001647 HookNames.push_back(std::string(cmd.begin() + 6,
1648 cmd.begin() + cmd.find(")")));
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001649 }
1650 }
1651}
1652
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001653/// ExtractHookNamesFromCaseConstruct - Extract hook names from the
1654/// 'case' expression, handle nesting. Helper function used by
1655/// FillInHookNames().
1656void ExtractHookNamesFromCaseConstruct(Init* Case, StrVector& HookNames) {
1657 const DagInit& d = InitPtrToDag(Case);
1658 bool even = false;
1659 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
1660 B != E; ++B) {
1661 Init* arg = *B;
1662 if (even && dynamic_cast<DagInit*>(arg)
1663 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case")
1664 ExtractHookNamesFromCaseConstruct(arg, HookNames);
1665 else if (even)
1666 ExtractHookNames(arg, HookNames);
1667 even = !even;
1668 }
1669}
1670
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001671/// FillInHookNames - Actually extract the hook names from all command
1672/// line strings. Helper function used by EmitHookDeclarations().
1673void FillInHookNames(const ToolPropertiesList& TPList,
1674 StrVector& HookNames) {
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001675 // For all command lines:
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001676 for (ToolPropertiesList::const_iterator B = TPList.begin(),
1677 E = TPList.end(); B != E; ++B) {
1678 const ToolProperties& P = *(*B);
1679 if (!P.CmdLine)
1680 continue;
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001681 if (dynamic_cast<StringInit*>(P.CmdLine))
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001682 // This is a string.
1683 ExtractHookNames(P.CmdLine, HookNames);
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001684 else
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001685 // This is a 'case' construct.
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001686 ExtractHookNamesFromCaseConstruct(P.CmdLine, HookNames);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001687 }
1688}
1689
1690/// EmitHookDeclarations - Parse CmdLine fields of all the tool
1691/// property records and emit hook function declaration for each
1692/// instance of $CALL(HookName).
1693void EmitHookDeclarations(const ToolPropertiesList& ToolProps,
1694 std::ostream& O) {
1695 StrVector HookNames;
1696 FillInHookNames(ToolProps, HookNames);
1697 if (HookNames.empty())
1698 return;
1699 std::sort(HookNames.begin(), HookNames.end());
1700 StrVector::const_iterator E = std::unique(HookNames.begin(), HookNames.end());
1701
1702 O << "namespace hooks {\n";
1703 for (StrVector::const_iterator B = HookNames.begin(); B != E; ++B)
1704 O << Indent1 << "std::string " << *B << "();\n";
1705
1706 O << "}\n\n";
1707}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001708
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001709/// EmitRegisterPlugin - Emit code to register this plugin.
1710void EmitRegisterPlugin(std::ostream& O) {
1711 O << "namespace {\n\n"
1712 << "struct Plugin : public llvmc::BasePlugin {\n"
1713 << Indent1 << "void PopulateLanguageMap(LanguageMap& langMap) const\n"
1714 << Indent1 << "{ PopulateLanguageMapLocal(langMap); }\n\n"
1715 << Indent1
1716 << "void PopulateCompilationGraph(CompilationGraph& graph) const\n"
1717 << Indent1 << "{ PopulateCompilationGraphLocal(graph); }\n"
1718 << "};\n\n"
1719
1720 << "static llvmc::RegisterPlugin<Plugin> RP;\n\n}\n\n";
1721}
1722
1723/// EmitInclude - Emit necessary #include directives.
1724void EmitIncludes(std::ostream& O) {
1725 O << "#include \"CompilationGraph.h\"\n"
1726 << "#include \"Plugin.h\"\n"
1727 << "#include \"Tool.h\"\n\n"
1728
1729 << "#include \"llvm/ADT/StringExtras.h\"\n"
1730 << "#include \"llvm/Support/CommandLine.h\"\n\n"
1731
1732 << "#include <cstdlib>\n"
1733 << "#include <stdexcept>\n\n"
1734
1735 << "using namespace llvm;\n"
1736 << "using namespace llvmc;\n\n"
1737
1738 << "extern cl::opt<std::string> OutputFilename;\n\n";
1739}
1740
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001741// End of anonymous namespace
Mikhail Glushenkov895820d2008-05-06 18:12:03 +00001742}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001743
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001744/// run - The back-end entry point.
Mikhail Glushenkov895820d2008-05-06 18:12:03 +00001745void LLVMCConfigurationEmitter::run (std::ostream &O) {
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00001746 try {
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001747
1748 // Emit file header.
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +00001749 EmitSourceFileHeader("LLVMC Configuration Library", O);
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001750 EmitIncludes(O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001751
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001752 // Get a list of all defined Tools.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001753 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1754 if (Tools.empty())
1755 throw std::string("No tool definitions found!");
1756
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001757 // Gather information from the Tool description dags.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001758 ToolPropertiesList tool_props;
1759 GlobalOptionDescriptions opt_descs;
1760 CollectToolProperties(Tools.begin(), Tools.end(), tool_props, opt_descs);
1761
Mikhail Glushenkove43228952008-05-30 06:26:08 +00001762 RecordVector OptionLists = Records.getAllDerivedDefinitions("OptionList");
1763 CollectPropertiesFromOptionList(OptionLists.begin(), OptionLists.end(),
1764 opt_descs);
1765
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001766 // Check that there are no options without side effects (specified
1767 // only in the OptionList).
1768 CheckForSuperfluousOptions(tool_props, opt_descs);
1769
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001770 // Emit global option registration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001771 EmitOptionDescriptions(opt_descs, O);
1772
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001773 // Emit hook declarations.
1774 EmitHookDeclarations(tool_props, O);
1775
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001776 // Emit PopulateLanguageMap() function
1777 // (a language map maps from file extensions to language names).
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001778 EmitPopulateLanguageMap(Records, O);
1779
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001780 // Emit Tool classes.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001781 for (ToolPropertiesList::const_iterator B = tool_props.begin(),
1782 E = tool_props.end(); B!=E; ++B)
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001783 EmitToolClassDefinition(*(*B), opt_descs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001784
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001785 Record* CompilationGraphRecord = Records.getDef("CompilationGraph");
1786 if (!CompilationGraphRecord)
1787 throw std::string("Compilation graph description not found!");
1788
1789 // Typecheck the compilation graph.
1790 TypecheckGraph(CompilationGraphRecord, tool_props);
1791
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001792 // Emit Edge# classes.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001793 EmitEdgeClasses(CompilationGraphRecord, opt_descs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001794
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001795 // Emit PopulateCompilationGraph() function.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001796 EmitPopulateCompilationGraph(CompilationGraphRecord, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001797
Mikhail Glushenkovc82ce4a2008-09-22 20:49:34 +00001798 // Emit code for plugin registration.
1799 EmitRegisterPlugin(O);
1800
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001801 // EOF
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00001802 } catch (std::exception& Error) {
1803 throw Error.what() + std::string(" - usually this means a syntax error.");
1804 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001805}