blob: bc742998bd818ba167f6b7241d21468b4165edfd [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") {
829 // Works only for cmd_line!
830 O << "GetLanguage(inFile) == \"" << OptName << '\"';
831 return true;
832 } else if (TestName == "not_empty") {
Mikhail Glushenkov92b8da72008-05-30 06:24:07 +0000833 if (OptName == "o") {
834 O << "!OutputFilename.empty()";
835 return true;
836 }
837 else {
838 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
839 if (OptDesc.Type == OptionType::Switch)
840 throw OptName + ": incorrect option type!";
841 O << '!' << OptDesc.GenVariableName() << ".empty()";
842 return true;
843 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000844 }
845
846 return false;
847}
848
849/// EmitCaseTest2Args - Helper function used by
850/// EmitCaseConstructHandler.
851bool EmitCaseTest2Args(const std::string& TestName,
852 const DagInit& d,
853 const char* IndentLevel,
854 const GlobalOptionDescriptions& OptDescs,
855 std::ostream& O) {
856 checkNumberOfArguments(&d, 2);
857 const std::string& OptName = InitPtrToString(d.getArg(0));
858 const std::string& OptArg = InitPtrToString(d.getArg(1));
859 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
860
861 if (TestName == "parameter_equals") {
862 if (OptDesc.Type != OptionType::Parameter
863 && OptDesc.Type != OptionType::Prefix)
864 throw OptName + ": incorrect option type!";
865 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
866 return true;
867 }
868 else if (TestName == "element_in_list") {
869 if (OptDesc.Type != OptionType::ParameterList
870 && OptDesc.Type != OptionType::PrefixList)
871 throw OptName + ": incorrect option type!";
872 const std::string& VarName = OptDesc.GenVariableName();
873 O << "std::find(" << VarName << ".begin(),\n"
874 << IndentLevel << Indent1 << VarName << ".end(), \""
875 << OptArg << "\") != " << VarName << ".end()";
876 return true;
877 }
878
879 return false;
880}
881
882// Forward declaration.
883// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
884void EmitCaseTest(const DagInit& d, const char* IndentLevel,
885 const GlobalOptionDescriptions& OptDescs,
886 std::ostream& O);
887
888/// EmitLogicalOperationTest - Helper function used by
889/// EmitCaseConstructHandler.
890void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
891 const char* IndentLevel,
892 const GlobalOptionDescriptions& OptDescs,
893 std::ostream& O) {
894 O << '(';
895 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000896 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000897 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
898 if (j != NumArgs - 1)
899 O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
900 else
901 O << ')';
902 }
903}
904
905/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
906void EmitCaseTest(const DagInit& d, const char* IndentLevel,
907 const GlobalOptionDescriptions& OptDescs,
908 std::ostream& O) {
909 const std::string& TestName = d.getOperator()->getAsString();
910
911 if (TestName == "and")
912 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
913 else if (TestName == "or")
914 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
915 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
916 return;
917 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
918 return;
919 else
920 throw TestName + ": unknown edge property!";
921}
922
923// Emit code that handles the 'case' construct.
924// Takes a function object that should emit code for every case clause.
925// Callback's type is
926// void F(Init* Statement, const char* IndentLevel, std::ostream& O).
927template <typename F>
928void EmitCaseConstructHandler(const DagInit* d, const char* IndentLevel,
Mikhail Glushenkov310d2eb2008-05-31 13:43:21 +0000929 F Callback, bool EmitElseIf,
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000930 const GlobalOptionDescriptions& OptDescs,
931 std::ostream& O) {
932 assert(d->getOperator()->getAsString() == "case");
933
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000934 unsigned numArgs = d->getNumArgs();
935 if (d->getNumArgs() < 2)
936 throw "There should be at least one clause in the 'case' expression:\n"
937 + d->getAsString();
938
939 for (unsigned i = 0; i != numArgs; ++i) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +0000940 const DagInit& Test = InitPtrToDag(d->getArg(i));
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000941
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000942 // Emit the test.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000943 if (Test.getOperator()->getAsString() == "default") {
944 if (i+2 != numArgs)
945 throw std::string("The 'default' clause should be the last in the"
946 "'case' construct!");
947 O << IndentLevel << "else {\n";
948 }
949 else {
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +0000950 O << IndentLevel << ((i != 0 && EmitElseIf) ? "else if (" : "if (");
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000951 EmitCaseTest(Test, IndentLevel, OptDescs, O);
952 O << ") {\n";
953 }
954
Mikhail Glushenkovcb64f4b2008-05-30 06:15:47 +0000955 // Emit the corresponding statement.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000956 ++i;
957 if (i == numArgs)
958 throw "Case construct handler: no corresponding action "
959 "found for the test " + Test.getAsString() + '!';
960
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +0000961 Init* arg = d->getArg(i);
962 if (dynamic_cast<DagInit*>(arg)
963 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case") {
964 EmitCaseConstructHandler(static_cast<DagInit*>(arg),
965 (std::string(IndentLevel) + Indent1).c_str(),
966 Callback, EmitElseIf, OptDescs, O);
967 }
968 else {
969 Callback(arg, IndentLevel, O);
970 }
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +0000971 O << IndentLevel << "}\n";
972 }
973}
974
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000975/// EmitForwardOptionPropertyHandlingCode - Helper function used to
976/// implement EmitOptionPropertyHandlingCode(). Emits code for
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000977/// handling the (forward) and (forward_as) option properties.
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000978void EmitForwardOptionPropertyHandlingCode (const ToolOptionDescription& D,
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000979 const std::string& NewName,
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000980 std::ostream& O) {
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000981 const std::string& Name = NewName.empty()
982 ? ("-" + D.Name)
983 : NewName;
984
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000985 switch (D.Type) {
986 case OptionType::Switch:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000987 O << Indent3 << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000988 break;
989 case OptionType::Parameter:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000990 O << Indent3 << "vec.push_back(\"" << Name << "\");\n";
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000991 O << Indent3 << "vec.push_back(" << D.GenVariableName() << ");\n";
992 break;
993 case OptionType::Prefix:
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +0000994 O << Indent3 << "vec.push_back(\"" << Name << "\" + "
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +0000995 << D.GenVariableName() << ");\n";
996 break;
997 case OptionType::PrefixList:
998 O << Indent3 << "for (" << D.GenTypeDeclaration()
999 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1000 << Indent3 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n"
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001001 << Indent4 << "vec.push_back(\"" << Name << "\" + "
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001002 << "*B);\n";
1003 break;
1004 case OptionType::ParameterList:
1005 O << Indent3 << "for (" << D.GenTypeDeclaration()
1006 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1007 << Indent3 << "E = " << D.GenVariableName()
1008 << ".end() ; B != E; ++B) {\n"
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001009 << Indent4 << "vec.push_back(\"" << Name << "\");\n"
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001010 << Indent4 << "vec.push_back(*B);\n"
1011 << Indent3 << "}\n";
1012 break;
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001013 case OptionType::Alias:
1014 default:
1015 throw std::string("Aliases are not allowed in tool option descriptions!");
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001016 }
1017}
1018
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001019// ToolOptionHasInterestingProperties - A helper function used by
1020// EmitOptionPropertyHandlingCode() that tells us whether we should
1021// emit any property handling code at all.
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001022bool ToolOptionHasInterestingProperties(const ToolOptionDescription& D) {
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001023 bool ret = false;
1024 for (OptionPropertyList::const_iterator B = D.Props.begin(),
1025 E = D.Props.end(); B != E; ++B) {
1026 const OptionProperty& OptProp = *B;
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001027 if (OptProp.first == OptionPropertyType::AppendCmd
1028 || OptProp.first == OptionPropertyType::ForwardAs)
Mikhail Glushenkov37f509a2008-05-30 06:15:20 +00001029 ret = true;
1030 }
1031 if (D.isForward() || D.isUnpackValues())
1032 ret = true;
1033 return ret;
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001034}
1035
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001036/// EmitOptionPropertyHandlingCode - Helper function used by
1037/// EmitGenerateActionMethod(). Emits code that handles option
1038/// properties.
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001039void EmitOptionPropertyHandlingCode (const ToolOptionDescription& D,
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001040 std::ostream& O)
1041{
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001042 if (!ToolOptionHasInterestingProperties(D))
1043 return;
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001044 // Start of the if-clause.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001045 O << Indent2 << "if (";
1046 if (D.Type == OptionType::Switch)
1047 O << D.GenVariableName();
1048 else
1049 O << '!' << D.GenVariableName() << ".empty()";
1050
1051 O <<") {\n";
1052
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001053 // Handle option properties that take an argument.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001054 for (OptionPropertyList::const_iterator B = D.Props.begin(),
1055 E = D.Props.end(); B!=E; ++B) {
1056 const OptionProperty& val = *B;
1057
1058 switch (val.first) {
1059 // (append_cmd cmd) property
1060 case OptionPropertyType::AppendCmd:
1061 O << Indent3 << "vec.push_back(\"" << val.second << "\");\n";
1062 break;
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001063 // (forward_as) property
1064 case OptionPropertyType::ForwardAs:
1065 EmitForwardOptionPropertyHandlingCode(D, val.second, O);
1066 break;
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001067 // Other properties with argument
1068 default:
1069 break;
1070 }
1071 }
1072
1073 // Handle flags
1074
1075 // (forward) property
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001076 if (D.isForward())
Mikhail Glushenkovfdee9542008-09-22 20:46:19 +00001077 EmitForwardOptionPropertyHandlingCode(D, "", O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001078
1079 // (unpack_values) property
1080 if (D.isUnpackValues()) {
1081 if (IsListOptionType(D.Type)) {
1082 O << Indent3 << "for (" << D.GenTypeDeclaration()
1083 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1084 << Indent3 << "E = " << D.GenVariableName()
1085 << ".end(); B != E; ++B)\n"
Mikhail Glushenkovd83038c2008-05-06 18:13:45 +00001086 << Indent4 << "llvm::SplitString(*B, vec, \",\");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001087 }
1088 else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
Mikhail Glushenkovd83038c2008-05-06 18:13:45 +00001089 O << Indent3 << "llvm::SplitString("
1090 << D.GenVariableName() << ", vec, \",\");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001091 }
1092 else {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001093 throw std::string("Switches can't have unpack_values property!");
1094 }
1095 }
1096
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001097 // End of the if-clause.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001098 O << Indent2 << "}\n";
1099}
1100
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001101/// SubstituteSpecialCommands - Perform string substitution for $CALL
1102/// and $ENV. Helper function used by EmitCmdLineVecFill().
1103std::string SubstituteSpecialCommands(const std::string& cmd) {
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001104 size_t cparen = cmd.find(")");
1105 std::string ret;
1106
1107 if (cmd.find("$CALL(") == 0) {
1108 if (cmd.size() == 6)
1109 throw std::string("$CALL invocation: empty argument list!");
1110
1111 ret += "hooks::";
1112 ret += std::string(cmd.begin() + 6, cmd.begin() + cparen);
1113 ret += "()";
1114 }
1115 else if (cmd.find("$ENV(") == 0) {
1116 if (cmd.size() == 5)
1117 throw std::string("$ENV invocation: empty argument list!");
1118
1119 ret += "std::getenv(\"";
1120 ret += std::string(cmd.begin() + 5, cmd.begin() + cparen);
1121 ret += "\")";
1122 }
1123 else {
1124 throw "Unknown special command: " + cmd;
1125 }
1126
1127 if (cmd.begin() + cparen + 1 != cmd.end()) {
1128 ret += " + std::string(\"";
1129 ret += (cmd.c_str() + cparen + 1);
1130 ret += "\")";
1131 }
1132
1133 return ret;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001134}
1135
1136/// EmitCmdLineVecFill - Emit code that fills in the command line
1137/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001138void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
1139 bool Version, const char* IndentLevel,
1140 std::ostream& O) {
1141 StrVector StrVec;
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001142 SplitString(InitPtrToString(CmdLine), StrVec);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001143 if (StrVec.empty())
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001144 throw "Tool " + ToolName + " has empty command line!";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001145
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001146 StrVector::const_iterator I = StrVec.begin();
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001147 ++I;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001148 for (StrVector::const_iterator E = StrVec.end(); I != E; ++I) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001149 const std::string& cmd = *I;
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001150 O << IndentLevel;
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001151 if (cmd.at(0) == '$') {
1152 if (cmd == "$INFILE") {
1153 if (Version)
1154 O << "for (PathVector::const_iterator B = inFiles.begin()"
1155 << ", E = inFiles.end();\n"
1156 << IndentLevel << "B != E; ++B)\n"
1157 << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
1158 else
1159 O << "vec.push_back(inFile.toString());\n";
1160 }
1161 else if (cmd == "$OUTFILE") {
1162 O << "vec.push_back(outFile.toString());\n";
1163 }
1164 else {
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001165 O << "vec.push_back(" << SubstituteSpecialCommands(cmd);
1166 O << ");\n";
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001167 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001168 }
1169 else {
1170 O << "vec.push_back(\"" << cmd << "\");\n";
1171 }
1172 }
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001173 O << IndentLevel << "cmd = "
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001174 << ((StrVec[0][0] == '$') ? SubstituteSpecialCommands(StrVec[0])
1175 : "\"" + StrVec[0] + "\"")
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001176 << ";\n";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001177}
1178
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001179/// EmitCmdLineVecFillCallback - A function object wrapper around
1180/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1181/// argument to EmitCaseConstructHandler().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001182class EmitCmdLineVecFillCallback {
1183 bool Version;
1184 const std::string& ToolName;
1185 public:
1186 EmitCmdLineVecFillCallback(bool Ver, const std::string& TN)
1187 : Version(Ver), ToolName(TN) {}
1188
1189 void operator()(const Init* Statement, const char* IndentLevel,
1190 std::ostream& O) const
1191 {
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001192 EmitCmdLineVecFill(Statement, ToolName, Version,
1193 (std::string(IndentLevel) + Indent1).c_str(), O);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001194 }
1195};
1196
1197// EmitGenerateActionMethod - Emit one of two versions of the
1198// Tool::GenerateAction() method.
1199void EmitGenerateActionMethod (const ToolProperties& P,
1200 const GlobalOptionDescriptions& OptDescs,
1201 bool Version, std::ostream& O) {
1202 if (Version)
1203 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1204 else
1205 O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1206
1207 O << Indent2 << "const sys::Path& outFile,\n"
1208 << Indent2 << "const InputLanguagesSet& InLangs) const\n"
1209 << Indent1 << "{\n"
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001210 << Indent2 << "const char* cmd;\n"
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001211 << Indent2 << "std::vector<std::string> vec;\n";
1212
1213 // cmd_line is either a string or a 'case' construct.
1214 if (typeid(*P.CmdLine) == typeid(StringInit))
1215 EmitCmdLineVecFill(P.CmdLine, P.Name, Version, Indent2, O);
1216 else
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001217 EmitCaseConstructHandler(&InitPtrToDag(P.CmdLine), Indent2,
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001218 EmitCmdLineVecFillCallback(Version, P.Name),
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001219 true, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001220
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001221 // For every understood option, emit handling code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001222 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1223 E = P.OptDescs.end(); B != E; ++B) {
1224 const ToolOptionDescription& val = B->second;
Mikhail Glushenkov14ec27f2008-05-30 06:10:47 +00001225 EmitOptionPropertyHandlingCode(val, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001226 }
1227
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001228 // Handle the Sink property.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001229 if (P.isSink()) {
1230 O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1231 << Indent3 << "vec.insert(vec.end(), "
1232 << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1233 << Indent2 << "}\n";
1234 }
1235
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001236 O << Indent2 << "return Action(cmd, vec);\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001237 << Indent1 << "}\n\n";
1238}
1239
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001240/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1241/// a given Tool class.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001242void EmitGenerateActionMethods (const ToolProperties& P,
1243 const GlobalOptionDescriptions& OptDescs,
1244 std::ostream& O) {
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001245 if (!P.isJoin())
1246 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001247 << Indent2 << "const llvm::sys::Path& outFile,\n"
1248 << Indent2 << "const InputLanguagesSet& InLangs) const\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001249 << Indent1 << "{\n"
1250 << Indent2 << "throw std::runtime_error(\"" << P.Name
1251 << " is not a Join tool!\");\n"
1252 << Indent1 << "}\n\n";
1253 else
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001254 EmitGenerateActionMethod(P, OptDescs, true, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001255
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001256 EmitGenerateActionMethod(P, OptDescs, false, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001257}
1258
Mikhail Glushenkov8e7254c2008-05-09 08:27:26 +00001259/// EmitIsLastMethod - Emit the IsLast() method for a given Tool
1260/// class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001261void EmitIsLastMethod (const ToolProperties& P, std::ostream& O) {
1262 O << Indent1 << "bool IsLast() const {\n"
1263 << Indent2 << "bool last = false;\n";
1264
1265 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1266 E = P.OptDescs.end(); B != E; ++B) {
1267 const ToolOptionDescription& val = B->second;
1268
1269 if (val.isStopCompilation())
1270 O << Indent2
1271 << "if (" << val.GenVariableName()
1272 << ")\n" << Indent3 << "last = true;\n";
1273 }
1274
1275 O << Indent2 << "return last;\n"
1276 << Indent1 << "}\n\n";
1277}
1278
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001279/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1280/// methods for a given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001281void EmitInOutLanguageMethods (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001282 O << Indent1 << "const char** InputLanguages() const {\n"
1283 << Indent2 << "return InputLanguages_;\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001284 << Indent1 << "}\n\n";
1285
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001286 O << Indent1 << "const char* OutputLanguage() const {\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001287 << Indent2 << "return \"" << P.OutLanguage << "\";\n"
1288 << Indent1 << "}\n\n";
1289}
1290
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001291/// EmitOutputSuffixMethod - Emit the OutputSuffix() method for a
1292/// given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001293void EmitOutputSuffixMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001294 O << Indent1 << "const char* OutputSuffix() const {\n"
Mikhail Glushenkov5c7578d2008-05-30 06:13:02 +00001295 << Indent2 << "const char* ret = \"" << P.OutputSuffix << "\";\n";
1296
1297 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1298 E = P.OptDescs.end(); B != E; ++B) {
1299 const ToolOptionDescription& OptDesc = B->second;
1300 for (OptionPropertyList::const_iterator B = OptDesc.Props.begin(),
1301 E = OptDesc.Props.end(); B != E; ++B) {
1302 const OptionProperty& OptProp = *B;
1303 if (OptProp.first == OptionPropertyType::OutputSuffix) {
1304 O << Indent2 << "if (" << OptDesc.GenVariableName() << ")\n"
1305 << Indent3 << "ret = \"" << OptProp.second << "\";\n";
1306 }
1307 }
1308 }
1309
1310 O << Indent2 << "return ret;\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001311 << Indent1 << "}\n\n";
1312}
1313
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001314/// EmitNameMethod - Emit the Name() method for a given Tool class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001315void EmitNameMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovb96cb602008-05-06 17:24:26 +00001316 O << Indent1 << "const char* Name() const {\n"
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001317 << Indent2 << "return \"" << P.Name << "\";\n"
1318 << Indent1 << "}\n\n";
1319}
1320
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001321/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1322/// class.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001323void EmitIsJoinMethod (const ToolProperties& P, std::ostream& O) {
1324 O << Indent1 << "bool IsJoin() const {\n";
1325 if (P.isJoin())
1326 O << Indent2 << "return true;\n";
1327 else
1328 O << Indent2 << "return false;\n";
1329 O << Indent1 << "}\n\n";
1330}
1331
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001332/// EmitStaticMemberDefinitions - Emit static member definitions for a
1333/// given Tool class.
1334void EmitStaticMemberDefinitions(const ToolProperties& P, std::ostream& O) {
1335 O << "const char* " << P.Name << "::InputLanguages_[] = {";
1336 for (StrVector::const_iterator B = P.InLanguage.begin(),
1337 E = P.InLanguage.end(); B != E; ++B)
1338 O << '\"' << *B << "\", ";
1339 O << "0};\n\n";
1340}
1341
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001342/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001343void EmitToolClassDefinition (const ToolProperties& P,
1344 const GlobalOptionDescriptions& OptDescs,
1345 std::ostream& O) {
1346 if (P.Name == "root")
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001347 return;
1348
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001349 // Header
Mikhail Glushenkovc74bfc92008-05-06 17:26:53 +00001350 O << "class " << P.Name << " : public ";
1351 if (P.isJoin())
1352 O << "JoinTool";
1353 else
1354 O << "Tool";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001355
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001356 O << "{\nprivate:\n"
1357 << Indent1 << "static const char* InputLanguages_[];\n\n";
1358
1359 O << "public:\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001360 EmitNameMethod(P, O);
1361 EmitInOutLanguageMethods(P, O);
1362 EmitOutputSuffixMethod(P, O);
1363 EmitIsJoinMethod(P, O);
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001364 EmitGenerateActionMethods(P, OptDescs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001365 EmitIsLastMethod(P, O);
1366
1367 // Close class definition
Mikhail Glushenkov5fe84752008-05-30 06:24:49 +00001368 O << "};\n";
1369
1370 EmitStaticMemberDefinitions(P, O);
1371
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001372}
1373
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001374/// EmitOptionDescriptions - Iterate over a list of option
1375/// descriptions and emit registration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001376void EmitOptionDescriptions (const GlobalOptionDescriptions& descs,
1377 std::ostream& O)
1378{
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001379 std::vector<GlobalOptionDescription> Aliases;
1380
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001381 // Emit static cl::Option variables.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001382 for (GlobalOptionDescriptions::const_iterator B = descs.begin(),
1383 E = descs.end(); B!=E; ++B) {
1384 const GlobalOptionDescription& val = B->second;
1385
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001386 if (val.Type == OptionType::Alias) {
1387 Aliases.push_back(val);
1388 continue;
1389 }
1390
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001391 O << val.GenTypeDeclaration() << ' '
1392 << val.GenVariableName()
1393 << "(\"" << val.Name << '\"';
1394
1395 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1396 O << ", cl::Prefix";
1397
1398 if (val.isRequired()) {
1399 switch (val.Type) {
1400 case OptionType::PrefixList:
1401 case OptionType::ParameterList:
1402 O << ", cl::OneOrMore";
1403 break;
1404 default:
1405 O << ", cl::Required";
1406 }
1407 }
1408
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001409 if (!val.Help.empty())
1410 O << ", cl::desc(\"" << val.Help << "\")";
1411
1412 O << ");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001413 }
1414
Mikhail Glushenkov6be4ffc2008-05-30 06:22:52 +00001415 // Emit the aliases (they should go after all the 'proper' options).
1416 for (std::vector<GlobalOptionDescription>::const_iterator
1417 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
1418 const GlobalOptionDescription& val = *B;
1419
1420 O << val.GenTypeDeclaration() << ' '
1421 << val.GenVariableName()
1422 << "(\"" << val.Name << '\"';
1423
1424 GlobalOptionDescriptions::container_type
1425 ::const_iterator F = descs.Descriptions.find(val.Help);
1426 if (F != descs.Descriptions.end())
1427 O << ", cl::aliasopt(" << F->second.GenVariableName() << ")";
1428 else
1429 throw val.Name + ": alias to an unknown option!";
1430
1431 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
1432 }
1433
1434 // Emit the sink option.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001435 if (descs.HasSink)
1436 O << "cl::list<std::string> " << SinkOptionName << "(cl::Sink);\n";
1437
1438 O << '\n';
1439}
1440
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001441/// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001442void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1443{
1444 // Get the relevant field out of RecordKeeper
1445 Record* LangMapRecord = Records.getDef("LanguageMap");
1446 if (!LangMapRecord)
1447 throw std::string("Language map definition not found!");
1448
1449 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1450 if (!LangsToSuffixesList)
1451 throw std::string("Error in the language map definition!");
1452
1453 // Generate code
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +00001454 O << "void llvmc::PopulateLanguageMap() {\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001455
1456 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
1457 Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
1458
1459 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1460 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1461
1462 for (unsigned i = 0; i < Suffixes->size(); ++i)
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +00001463 O << Indent1 << "GlobalLanguageMap[\""
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001464 << InitPtrToString(Suffixes->getElement(i))
1465 << "\"] = \"" << Lang << "\";\n";
1466 }
1467
1468 O << "}\n\n";
1469}
1470
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001471/// FillInToolToLang - Fills in two tables that map tool names to
1472/// (input, output) languages. Used by the typechecker.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001473void FillInToolToLang (const ToolPropertiesList& TPList,
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001474 StringMap<StringSet<> >& ToolToInLang,
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001475 StringMap<std::string>& ToolToOutLang) {
1476 for (ToolPropertiesList::const_iterator B = TPList.begin(), E = TPList.end();
1477 B != E; ++B) {
1478 const ToolProperties& P = *(*B);
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001479 for (StrVector::const_iterator B = P.InLanguage.begin(),
1480 E = P.InLanguage.end(); B != E; ++B)
1481 ToolToInLang[P.Name].insert(*B);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001482 ToolToOutLang[P.Name] = P.OutLanguage;
1483 }
1484}
1485
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001486/// TypecheckGraph - Check that names for output and input languages
1487/// on all edges do match.
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001488// TOFIX: It would be nice if this function also checked for cycles
1489// and multiple default edges in the graph (better error
1490// reporting). Unfortunately, it is awkward to do right now because
1491// our intermediate representation is not sufficiently
Mikhail Glushenkov5ccf28f2008-09-22 20:45:17 +00001492// sophisticated. Algorithms like these require a real graph instead of
1493// an AST.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001494void TypecheckGraph (Record* CompilationGraph,
1495 const ToolPropertiesList& TPList) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001496 StringMap<StringSet<> > ToolToInLang;
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001497 StringMap<std::string> ToolToOutLang;
1498
1499 FillInToolToLang(TPList, ToolToInLang, ToolToOutLang);
1500 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001501 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
1502 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001503
1504 for (unsigned i = 0; i < edges->size(); ++i) {
1505 Record* Edge = edges->getElementAsRecord(i);
1506 Record* A = Edge->getValueAsDef("a");
1507 Record* B = Edge->getValueAsDef("b");
1508 StringMap<std::string>::iterator IA = ToolToOutLang.find(A->getName());
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001509 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(B->getName());
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001510 if (IA == IAE)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001511 throw A->getName() + ": no such tool!";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001512 if (IB == IBE)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001513 throw B->getName() + ": no such tool!";
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001514 if (A->getName() != "root" && IB->second.count(IA->second) == 0)
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001515 throw "Edge " + A->getName() + "->" + B->getName()
1516 + ": output->input language mismatch";
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001517 if (B->getName() == "root")
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001518 throw std::string("Edges back to the root are not allowed!");
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001519 }
1520}
1521
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001522/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1523/// by EmitEdgeClass().
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001524void IncDecWeight (const Init* i, const char* IndentLevel,
1525 std::ostream& O) {
Mikhail Glushenkovffcf3a12008-05-30 06:18:16 +00001526 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001527 const std::string& OpName = d.getOperator()->getAsString();
1528
1529 if (OpName == "inc_weight")
1530 O << IndentLevel << Indent1 << "ret += ";
1531 else if (OpName == "dec_weight")
1532 O << IndentLevel << Indent1 << "ret -= ";
1533 else
1534 throw "Unknown operator in edge properties list: " + OpName + '!';
1535
1536 if (d.getNumArgs() > 0)
1537 O << InitPtrToInt(d.getArg(0)) << ";\n";
1538 else
1539 O << "2;\n";
1540
Mikhail Glushenkov29063552008-05-06 18:18:20 +00001541}
1542
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001543/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001544void EmitEdgeClass (unsigned N, const std::string& Target,
1545 DagInit* Case, const GlobalOptionDescriptions& OptDescs,
1546 std::ostream& O) {
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001547
1548 // Class constructor.
1549 O << "class Edge" << N << ": public Edge {\n"
1550 << "public:\n"
1551 << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1552 << "\") {}\n\n"
1553
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001554 // Function Weight().
Mikhail Glushenkov76b1b242008-05-06 18:15:12 +00001555 << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001556 << Indent2 << "unsigned ret = 0;\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001557
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001558 // Handle the 'case' construct.
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001559 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkovbb8b58d2008-05-06 18:14:24 +00001560
1561 O << Indent2 << "return ret;\n"
1562 << Indent1 << "};\n\n};\n\n";
Mikhail Glushenkov9ef501b2008-05-06 17:23:14 +00001563}
1564
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001565/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001566void EmitEdgeClasses (Record* CompilationGraph,
1567 const GlobalOptionDescriptions& OptDescs,
1568 std::ostream& O) {
1569 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1570
1571 for (unsigned i = 0; i < edges->size(); ++i) {
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001572 Record* Edge = edges->getElementAsRecord(i);
1573 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001574 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001575
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001576 if (isDagEmpty(Weight))
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001577 continue;
1578
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001579 EmitEdgeClass(i, B->getName(), Weight, OptDescs, O);
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001580 }
1581}
1582
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001583/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1584/// function.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001585void EmitPopulateCompilationGraph (Record* CompilationGraph,
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001586 std::ostream& O)
1587{
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001588 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001589
1590 // Generate code
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +00001591 O << "void llvmc::PopulateCompilationGraph(CompilationGraph& G) {\n"
Mikhail Glushenkov2e73e852008-05-30 06:19:52 +00001592 << Indent1 << "PopulateLanguageMap();\n\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001593
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001594 // Insert vertices
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001595
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001596 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1597 if (Tools.empty())
1598 throw std::string("No tool definitions found!");
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001599
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001600 for (RecordVector::iterator B = Tools.begin(), E = Tools.end(); B != E; ++B) {
1601 const std::string& Name = (*B)->getName();
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001602 if (Name != "root")
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001603 O << Indent1 << "G.insertNode(new "
1604 << Name << "());\n";
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001605 }
1606
1607 O << '\n';
1608
1609 // Insert edges
Mikhail Glushenkov0d08db02008-05-06 16:35:25 +00001610 for (unsigned i = 0; i < edges->size(); ++i) {
1611 Record* Edge = edges->getElementAsRecord(i);
1612 Record* A = Edge->getValueAsDef("a");
1613 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001614 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001615
1616 O << Indent1 << "G.insertEdge(\"" << A->getName() << "\", ";
1617
Mikhail Glushenkove5557f42008-05-30 06:08:50 +00001618 if (isDagEmpty(Weight))
Mikhail Glushenkovd752c3f2008-05-06 16:36:50 +00001619 O << "new SimpleEdge(\"" << B->getName() << "\")";
1620 else
1621 O << "new Edge" << i << "()";
1622
1623 O << ");\n";
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001624 }
1625
1626 O << "}\n\n";
1627}
1628
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001629/// ExtractHookNames - Extract the hook names from all instances of
1630/// $CALL(HookName) in the provided command line string. Helper
1631/// function used by FillInHookNames().
1632void ExtractHookNames(const Init* CmdLine, StrVector& HookNames) {
1633 StrVector cmds;
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001634 llvm::SplitString(InitPtrToString(CmdLine), cmds);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001635 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1636 B != E; ++B) {
1637 const std::string& cmd = *B;
1638 if (cmd.find("$CALL(") == 0) {
1639 if (cmd.size() == 6)
1640 throw std::string("$CALL invocation: empty argument list!");
Mikhail Glushenkov22424562008-05-30 06:13:29 +00001641 HookNames.push_back(std::string(cmd.begin() + 6,
1642 cmd.begin() + cmd.find(")")));
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001643 }
1644 }
1645}
1646
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001647/// ExtractHookNamesFromCaseConstruct - Extract hook names from the
1648/// 'case' expression, handle nesting. Helper function used by
1649/// FillInHookNames().
1650void ExtractHookNamesFromCaseConstruct(Init* Case, StrVector& HookNames) {
1651 const DagInit& d = InitPtrToDag(Case);
1652 bool even = false;
1653 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
1654 B != E; ++B) {
1655 Init* arg = *B;
1656 if (even && dynamic_cast<DagInit*>(arg)
1657 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case")
1658 ExtractHookNamesFromCaseConstruct(arg, HookNames);
1659 else if (even)
1660 ExtractHookNames(arg, HookNames);
1661 even = !even;
1662 }
1663}
1664
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001665/// FillInHookNames - Actually extract the hook names from all command
1666/// line strings. Helper function used by EmitHookDeclarations().
1667void FillInHookNames(const ToolPropertiesList& TPList,
1668 StrVector& HookNames) {
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001669 // For all command lines:
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001670 for (ToolPropertiesList::const_iterator B = TPList.begin(),
1671 E = TPList.end(); B != E; ++B) {
1672 const ToolProperties& P = *(*B);
1673 if (!P.CmdLine)
1674 continue;
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001675 if (dynamic_cast<StringInit*>(P.CmdLine))
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001676 // This is a string.
1677 ExtractHookNames(P.CmdLine, HookNames);
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001678 else
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001679 // This is a 'case' construct.
Mikhail Glushenkov2d0dc9a2008-05-30 06:22:15 +00001680 ExtractHookNamesFromCaseConstruct(P.CmdLine, HookNames);
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001681 }
1682}
1683
1684/// EmitHookDeclarations - Parse CmdLine fields of all the tool
1685/// property records and emit hook function declaration for each
1686/// instance of $CALL(HookName).
1687void EmitHookDeclarations(const ToolPropertiesList& ToolProps,
1688 std::ostream& O) {
1689 StrVector HookNames;
1690 FillInHookNames(ToolProps, HookNames);
1691 if (HookNames.empty())
1692 return;
1693 std::sort(HookNames.begin(), HookNames.end());
1694 StrVector::const_iterator E = std::unique(HookNames.begin(), HookNames.end());
1695
1696 O << "namespace hooks {\n";
1697 for (StrVector::const_iterator B = HookNames.begin(); B != E; ++B)
1698 O << Indent1 << "std::string " << *B << "();\n";
1699
1700 O << "}\n\n";
1701}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001702
1703// End of anonymous namespace
Mikhail Glushenkov895820d2008-05-06 18:12:03 +00001704}
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001705
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001706/// run - The back-end entry point.
Mikhail Glushenkov895820d2008-05-06 18:12:03 +00001707void LLVMCConfigurationEmitter::run (std::ostream &O) {
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00001708 try {
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001709
1710 // Emit file header.
Mikhail Glushenkovbe9d9a12008-05-06 18:08:59 +00001711 EmitSourceFileHeader("LLVMC Configuration Library", O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001712
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001713 // Get a list of all defined Tools.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001714 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1715 if (Tools.empty())
1716 throw std::string("No tool definitions found!");
1717
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001718 // Gather information from the Tool description dags.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001719 ToolPropertiesList tool_props;
1720 GlobalOptionDescriptions opt_descs;
1721 CollectToolProperties(Tools.begin(), Tools.end(), tool_props, opt_descs);
1722
Mikhail Glushenkove43228952008-05-30 06:26:08 +00001723 RecordVector OptionLists = Records.getAllDerivedDefinitions("OptionList");
1724 CollectPropertiesFromOptionList(OptionLists.begin(), OptionLists.end(),
1725 opt_descs);
1726
Mikhail Glushenkova7d0ae32008-05-30 06:28:37 +00001727 // Check that there are no options without side effects (specified
1728 // only in the OptionList).
1729 CheckForSuperfluousOptions(tool_props, opt_descs);
1730
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001731 // Emit global option registration code.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001732 EmitOptionDescriptions(opt_descs, O);
1733
Mikhail Glushenkov08bd2e72008-05-30 06:12:24 +00001734 // Emit hook declarations.
1735 EmitHookDeclarations(tool_props, O);
1736
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001737 // Emit PopulateLanguageMap() function
1738 // (a language map maps from file extensions to language names).
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001739 EmitPopulateLanguageMap(Records, O);
1740
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001741 // Emit Tool classes.
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001742 for (ToolPropertiesList::const_iterator B = tool_props.begin(),
1743 E = tool_props.end(); B!=E; ++B)
Mikhail Glushenkovb5ccfbf2008-05-30 06:10:19 +00001744 EmitToolClassDefinition(*(*B), opt_descs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001745
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001746 Record* CompilationGraphRecord = Records.getDef("CompilationGraph");
1747 if (!CompilationGraphRecord)
1748 throw std::string("Compilation graph description not found!");
1749
1750 // Typecheck the compilation graph.
1751 TypecheckGraph(CompilationGraphRecord, tool_props);
1752
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001753 // Emit Edge# classes.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001754 EmitEdgeClasses(CompilationGraphRecord, opt_descs, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001755
Mikhail Glushenkov4561ab52008-05-07 21:50:19 +00001756 // Emit PopulateCompilationGraph() function.
Mikhail Glushenkov0a174932008-05-06 16:36:06 +00001757 EmitPopulateCompilationGraph(CompilationGraphRecord, O);
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001758
1759 // EOF
Mikhail Glushenkov4fb71ea2008-05-30 06:21:48 +00001760 } catch (std::exception& Error) {
1761 throw Error.what() + std::string(" - usually this means a syntax error.");
1762 }
Anton Korobeynikovac67b7e2008-03-23 08:57:20 +00001763}