blob: 9be9cfc98b0a6ef7082698977a35a894d67d39b5 [file] [log] [blame]
Mikhail Glushenkov2d3327f2008-05-30 06:20:54 +00001//===- LLVMCConfigurationEmitter.cpp - Generate LLVMC config ----*- C++ -*-===//
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open
6// Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Mikhail Glushenkov34307a92008-05-06 18:08:59 +000010// This tablegen backend is responsible for emitting LLVMC configuration code.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
Mikhail Glushenkov41405722008-05-06 18:09:29 +000014#include "LLVMCConfigurationEmitter.h"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000015#include "Record.h"
16
17#include "llvm/ADT/IntrusiveRefCntPtr.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/StringExtras.h"
20#include "llvm/ADT/StringMap.h"
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +000021#include "llvm/ADT/StringSet.h"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000022#include "llvm/Support/Streams.h"
23
24#include <algorithm>
25#include <cassert>
26#include <functional>
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +000027#include <stdexcept>
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000028#include <string>
29
30using namespace llvm;
31
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +000032namespace {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000033
34//===----------------------------------------------------------------------===//
35/// Typedefs
36
37typedef std::vector<Record*> RecordVector;
38typedef std::vector<std::string> StrVector;
39
40//===----------------------------------------------------------------------===//
41/// Constants
42
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000043// Indentation strings.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000044const char * Indent1 = " ";
45const char * Indent2 = " ";
46const char * Indent3 = " ";
47const char * Indent4 = " ";
48
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000049// Default help string.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000050const char * DefaultHelpString = "NO HELP MESSAGE PROVIDED";
51
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000052// Name for the "sink" option.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000053const char * SinkOptionName = "AutoGeneratedSinkOption";
54
55//===----------------------------------------------------------------------===//
56/// Helper functions
57
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000058int InitPtrToInt(const Init* ptr) {
59 const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000060 return val.getValue();
61}
62
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +000063const std::string& InitPtrToString(const Init* ptr) {
64 const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
65 return val.getValue();
66}
67
68const ListInit& InitPtrToList(const Init* ptr) {
69 const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
70 return val;
71}
72
73const DagInit& InitPtrToDag(const Init* ptr) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000074 const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000075 return val;
76}
77
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000078// checkNumberOfArguments - Ensure that the number of args in d is
Mikhail Glushenkovdedba642008-05-30 06:08:50 +000079// less than or equal to min_arguments, otherwise throw an exception.
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +000080void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
81 if (d->getNumArgs() < min_arguments)
82 throw "Property " + d->getOperator()->getAsString()
83 + " has too few arguments!";
84}
85
Mikhail Glushenkovdedba642008-05-30 06:08:50 +000086// isDagEmpty - is this DAG marked with an empty marker?
87bool isDagEmpty (const DagInit* d) {
88 return d->getOperator()->getAsString() == "empty";
89}
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +000090
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000091//===----------------------------------------------------------------------===//
92/// Back-end specific code
93
94// A command-line option can have one of the following types:
95//
Mikhail Glushenkovb623c322008-05-30 06:22:52 +000096// Alias - an alias for another option.
97//
98// Switch - a simple switch without arguments, e.g. -O2
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000099//
100// Parameter - an option that takes one(and only one) argument, e.g. -o file,
101// --output=file
102//
103// ParameterList - same as Parameter, but more than one occurence
104// of the option is allowed, e.g. -lm -lpthread
105//
106// Prefix - argument is everything after the prefix,
107// e.g. -Wa,-foo,-bar, -DNAME=VALUE
108//
109// PrefixList - same as Prefix, but more than one option occurence is
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000110// allowed.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000111
112namespace OptionType {
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000113 enum OptionType { Alias, Switch,
114 Parameter, ParameterList, Prefix, PrefixList};
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000115}
116
117bool IsListOptionType (OptionType::OptionType t) {
118 return (t == OptionType::ParameterList || t == OptionType::PrefixList);
119}
120
121// Code duplication here is necessary because one option can affect
122// several tools and those tools may have different actions associated
123// with this option. GlobalOptionDescriptions are used to generate
124// the option registration code, while ToolOptionDescriptions are used
125// to generate tool-specific code.
126
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000127/// OptionDescription - Base class for option descriptions.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000128struct OptionDescription {
129 OptionType::OptionType Type;
130 std::string Name;
131
132 OptionDescription(OptionType::OptionType t = OptionType::Switch,
133 const std::string& n = "")
134 : Type(t), Name(n)
135 {}
136
137 const char* GenTypeDeclaration() const {
138 switch (Type) {
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000139 case OptionType::Alias:
140 return "cl::alias";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000141 case OptionType::PrefixList:
142 case OptionType::ParameterList:
143 return "cl::list<std::string>";
144 case OptionType::Switch:
145 return "cl::opt<bool>";
146 case OptionType::Parameter:
147 case OptionType::Prefix:
148 default:
149 return "cl::opt<std::string>";
150 }
151 }
152
Mikhail Glushenkov4019e952008-05-12 16:33:06 +0000153 // Escape commas and other symbols not allowed in the C++ variable
154 // names. Makes it possible to use options with names like "Wa,"
155 // (useful for prefix options).
156 std::string EscapeVariableName(const std::string& Var) const {
157 std::string ret;
158 for (unsigned i = 0; i != Var.size(); ++i) {
159 if (Var[i] == ',') {
160 ret += "_comma_";
161 }
162 else {
163 ret.push_back(Var[i]);
164 }
165 }
166 return ret;
167 }
168
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000169 std::string GenVariableName() const {
Mikhail Glushenkov4019e952008-05-12 16:33:06 +0000170 const std::string& EscapedName = EscapeVariableName(Name);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000171 switch (Type) {
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000172 case OptionType::Alias:
173 return "AutoGeneratedAlias" + EscapedName;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000174 case OptionType::Switch:
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000175 return "AutoGeneratedSwitch" + EscapedName;
176 case OptionType::Prefix:
177 return "AutoGeneratedPrefix" + EscapedName;
178 case OptionType::PrefixList:
179 return "AutoGeneratedPrefixList" + EscapedName;
180 case OptionType::Parameter:
181 return "AutoGeneratedParameter" + EscapedName;
182 case OptionType::ParameterList:
183 default:
184 return "AutoGeneratedParameterList" + EscapedName;
185 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000186 }
187
188};
189
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000190// Global option description.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000191
192namespace GlobalOptionDescriptionFlags {
193 enum GlobalOptionDescriptionFlags { Required = 0x1 };
194}
195
196struct GlobalOptionDescription : public OptionDescription {
197 std::string Help;
198 unsigned Flags;
199
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000200 // We need to provide a default constructor because
201 // StringMap can only store DefaultConstructible objects.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000202 GlobalOptionDescription() : OptionDescription(), Flags(0)
203 {}
204
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000205 GlobalOptionDescription (OptionType::OptionType t, const std::string& n,
206 const std::string& h = DefaultHelpString)
207 : OptionDescription(t, n), Help(h), Flags(0)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000208 {}
209
210 bool isRequired() const {
211 return Flags & GlobalOptionDescriptionFlags::Required;
212 }
213 void setRequired() {
214 Flags |= GlobalOptionDescriptionFlags::Required;
215 }
216
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000217 /// Merge - Merge two option descriptions.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000218 void Merge (const GlobalOptionDescription& other)
219 {
220 if (other.Type != Type)
221 throw "Conflicting definitions for the option " + Name + "!";
222
Mikhail Glushenkov434816d2008-05-06 18:13:00 +0000223 if (Help == DefaultHelpString)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000224 Help = other.Help;
Mikhail Glushenkov434816d2008-05-06 18:13:00 +0000225 else if (other.Help != DefaultHelpString) {
226 llvm::cerr << "Warning: more than one help string defined for option "
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000227 + Name + "\n";
Mikhail Glushenkov434816d2008-05-06 18:13:00 +0000228 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000229
230 Flags |= other.Flags;
231 }
232};
233
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000234/// GlobalOptionDescriptions - A GlobalOptionDescription array
235/// together with some flags affecting generation of option
236/// declarations.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000237struct GlobalOptionDescriptions {
238 typedef StringMap<GlobalOptionDescription> container_type;
239 typedef container_type::const_iterator const_iterator;
240
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000241 /// Descriptions - A list of GlobalOptionDescriptions.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000242 container_type Descriptions;
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000243 /// HasSink - Should the emitter generate a "cl::sink" option?
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000244 bool HasSink;
245
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000246 const GlobalOptionDescription& FindOption(const std::string& OptName) const {
247 const_iterator I = Descriptions.find(OptName);
248 if (I != Descriptions.end())
249 return I->second;
250 else
251 throw OptName + ": no such option!";
252 }
253
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000254 // Support for STL-style iteration
255 const_iterator begin() const { return Descriptions.begin(); }
256 const_iterator end() const { return Descriptions.end(); }
257};
258
259
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000260// Tool-local option description.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000261
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000262// Properties without arguments are implemented as flags.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000263namespace ToolOptionDescriptionFlags {
264 enum ToolOptionDescriptionFlags { StopCompilation = 0x1,
265 Forward = 0x2, UnpackValues = 0x4};
266}
267namespace OptionPropertyType {
Mikhail Glushenkovabab33b2008-05-30 06:13:02 +0000268 enum OptionPropertyType { AppendCmd, OutputSuffix };
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000269}
270
271typedef std::pair<OptionPropertyType::OptionPropertyType, std::string>
272OptionProperty;
273typedef SmallVector<OptionProperty, 4> OptionPropertyList;
274
275struct ToolOptionDescription : public OptionDescription {
276 unsigned Flags;
277 OptionPropertyList Props;
278
279 // StringMap can only store DefaultConstructible objects
Mikhail Glushenkov18cbe892008-03-27 09:53:47 +0000280 ToolOptionDescription() : OptionDescription(), Flags(0) {}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000281
282 ToolOptionDescription (OptionType::OptionType t, const std::string& n)
283 : OptionDescription(t, n)
284 {}
285
286 // Various boolean properties
287 bool isStopCompilation() const {
288 return Flags & ToolOptionDescriptionFlags::StopCompilation;
289 }
290 void setStopCompilation() {
291 Flags |= ToolOptionDescriptionFlags::StopCompilation;
292 }
293
294 bool isForward() const {
295 return Flags & ToolOptionDescriptionFlags::Forward;
296 }
297 void setForward() {
298 Flags |= ToolOptionDescriptionFlags::Forward;
299 }
300
301 bool isUnpackValues() const {
302 return Flags & ToolOptionDescriptionFlags::UnpackValues;
303 }
304 void setUnpackValues() {
305 Flags |= ToolOptionDescriptionFlags::UnpackValues;
306 }
307
308 void AddProperty (OptionPropertyType::OptionPropertyType t,
309 const std::string& val)
310 {
311 Props.push_back(std::make_pair(t, val));
312 }
313};
314
315typedef StringMap<ToolOptionDescription> ToolOptionDescriptions;
316
317// Tool information record
318
319namespace ToolFlags {
320 enum ToolFlags { Join = 0x1, Sink = 0x2 };
321}
322
323struct ToolProperties : public RefCountedBase<ToolProperties> {
324 std::string Name;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000325 Init* CmdLine;
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000326 StrVector InLanguage;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000327 std::string OutLanguage;
328 std::string OutputSuffix;
329 unsigned Flags;
330 ToolOptionDescriptions OptDescs;
331
332 // Various boolean properties
333 void setSink() { Flags |= ToolFlags::Sink; }
334 bool isSink() const { return Flags & ToolFlags::Sink; }
335 void setJoin() { Flags |= ToolFlags::Join; }
336 bool isJoin() const { return Flags & ToolFlags::Join; }
337
338 // Default ctor here is needed because StringMap can only store
339 // DefaultConstructible objects
Mikhail Glushenkov434816d2008-05-06 18:13:00 +0000340 ToolProperties() : Flags(0) {}
341 ToolProperties (const std::string& n) : Name(n), Flags(0) {}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000342};
343
344
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000345/// ToolPropertiesList - A list of Tool information records
346/// IntrusiveRefCntPtrs are used here because StringMap has no copy
347/// constructor (and we want to avoid copying ToolProperties anyway).
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000348typedef std::vector<IntrusiveRefCntPtr<ToolProperties> > ToolPropertiesList;
349
350
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000351/// CollectProperties - Function object for iterating over a list of
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000352/// tool property records.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000353class CollectProperties {
354private:
355
356 /// Implementation details
357
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000358 /// PropertyHandler - a function that extracts information
359 /// about a given tool property from its DAG representation
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000360 typedef void (CollectProperties::*PropertyHandler)(const DagInit*);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000361
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000362 /// PropertyHandlerMap - A map from property names to property
363 /// handlers.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000364 typedef StringMap<PropertyHandler> PropertyHandlerMap;
365
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000366 /// OptionPropertyHandler - a function that extracts information
367 /// about a given option property from its DAG representation.
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000368 typedef void (CollectProperties::* OptionPropertyHandler)
369 (const DagInit*, GlobalOptionDescription &);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000370
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000371 /// OptionPropertyHandlerMap - A map from option property names to
372 /// option property handlers
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000373 typedef StringMap<OptionPropertyHandler> OptionPropertyHandlerMap;
374
375 // Static maps from strings to CollectProperties methods("handlers")
376 static PropertyHandlerMap propertyHandlers_;
377 static OptionPropertyHandlerMap optionPropertyHandlers_;
378 static bool staticMembersInitialized_;
379
380
381 /// This is where the information is stored
382
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000383 /// toolProps_ - Properties of the current Tool.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000384 ToolProperties& toolProps_;
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000385 /// optDescs_ - OptionDescriptions table (used to register options
386 /// globally).
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000387 GlobalOptionDescriptions& optDescs_;
388
389public:
390
391 explicit CollectProperties (ToolProperties& p, GlobalOptionDescriptions& d)
392 : toolProps_(p), optDescs_(d)
393 {
394 if (!staticMembersInitialized_) {
395 // Init tool property handlers
396 propertyHandlers_["cmd_line"] = &CollectProperties::onCmdLine;
397 propertyHandlers_["in_language"] = &CollectProperties::onInLanguage;
398 propertyHandlers_["join"] = &CollectProperties::onJoin;
399 propertyHandlers_["out_language"] = &CollectProperties::onOutLanguage;
400 propertyHandlers_["output_suffix"] = &CollectProperties::onOutputSuffix;
401 propertyHandlers_["parameter_option"]
402 = &CollectProperties::onParameter;
403 propertyHandlers_["parameter_list_option"] =
404 &CollectProperties::onParameterList;
405 propertyHandlers_["prefix_option"] = &CollectProperties::onPrefix;
406 propertyHandlers_["prefix_list_option"] =
407 &CollectProperties::onPrefixList;
408 propertyHandlers_["sink"] = &CollectProperties::onSink;
409 propertyHandlers_["switch_option"] = &CollectProperties::onSwitch;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000410 propertyHandlers_["alias_option"] = &CollectProperties::onAlias;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000411
412 // Init option property handlers
413 optionPropertyHandlers_["append_cmd"] = &CollectProperties::onAppendCmd;
414 optionPropertyHandlers_["forward"] = &CollectProperties::onForward;
415 optionPropertyHandlers_["help"] = &CollectProperties::onHelp;
Mikhail Glushenkovabab33b2008-05-30 06:13:02 +0000416 optionPropertyHandlers_["output_suffix"] =
417 &CollectProperties::onOutputSuffixOptionProp;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000418 optionPropertyHandlers_["required"] = &CollectProperties::onRequired;
419 optionPropertyHandlers_["stop_compilation"] =
420 &CollectProperties::onStopCompilation;
421 optionPropertyHandlers_["unpack_values"] =
422 &CollectProperties::onUnpackValues;
423
424 staticMembersInitialized_ = true;
425 }
426 }
427
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000428 /// operator() - Gets called for every tool property; Just forwards
429 /// to the corresponding property handler.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000430 void operator() (Init* i) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000431 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000432 const std::string& property_name = d.getOperator()->getAsString();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000433 PropertyHandlerMap::iterator method
434 = propertyHandlers_.find(property_name);
435
436 if (method != propertyHandlers_.end()) {
437 PropertyHandler h = method->second;
438 (this->*h)(&d);
439 }
440 else {
441 throw "Unknown tool property: " + property_name + "!";
442 }
443 }
444
445private:
446
447 /// Property handlers --
448 /// Functions that extract information about tool properties from
449 /// DAG representation.
450
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000451 void onCmdLine (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000452 checkNumberOfArguments(d, 1);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000453 toolProps_.CmdLine = d->getArg(0);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000454 }
455
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000456 void onInLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000457 checkNumberOfArguments(d, 1);
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000458 Init* arg = d->getArg(0);
459
460 // Find out the argument's type.
461 if (typeid(*arg) == typeid(StringInit)) {
462 // It's a string.
463 toolProps_.InLanguage.push_back(InitPtrToString(arg));
464 }
465 else {
466 // It's a list.
467 const ListInit& lst = InitPtrToList(arg);
468 StrVector& out = toolProps_.InLanguage;
469
470 // Copy strings to the output vector.
471 for (ListInit::const_iterator B = lst.begin(), E = lst.end();
472 B != E; ++B) {
473 out.push_back(InitPtrToString(*B));
474 }
475
476 // Remove duplicates.
477 std::sort(out.begin(), out.end());
478 StrVector::iterator newE = std::unique(out.begin(), out.end());
479 out.erase(newE, out.end());
480 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000481 }
482
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000483 void onJoin (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000484 checkNumberOfArguments(d, 0);
485 toolProps_.setJoin();
486 }
487
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000488 void onOutLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000489 checkNumberOfArguments(d, 1);
490 toolProps_.OutLanguage = InitPtrToString(d->getArg(0));
491 }
492
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000493 void onOutputSuffix (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000494 checkNumberOfArguments(d, 1);
495 toolProps_.OutputSuffix = InitPtrToString(d->getArg(0));
496 }
497
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000498 void onSink (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000499 checkNumberOfArguments(d, 0);
500 optDescs_.HasSink = true;
501 toolProps_.setSink();
502 }
503
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000504 void onAlias (const DagInit* d) {
505 checkNumberOfArguments(d, 2);
506 // We just need a GlobalOptionDescription for the aliases.
507 insertDescription
508 (GlobalOptionDescription(OptionType::Alias,
509 InitPtrToString(d->getArg(0)),
510 InitPtrToString(d->getArg(1))));
511 }
512
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000513 void onSwitch (const DagInit* d) {
514 addOption(d, OptionType::Switch);
515 }
516
517 void onParameter (const DagInit* d) {
518 addOption(d, OptionType::Parameter);
519 }
520
521 void onParameterList (const DagInit* d) {
522 addOption(d, OptionType::ParameterList);
523 }
524
525 void onPrefix (const DagInit* d) {
526 addOption(d, OptionType::Prefix);
527 }
528
529 void onPrefixList (const DagInit* d) {
530 addOption(d, OptionType::PrefixList);
531 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000532
533 /// Option property handlers --
534 /// Methods that handle properties that are common for all types of
535 /// options (like append_cmd, stop_compilation)
536
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000537 void onAppendCmd (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000538 checkNumberOfArguments(d, 1);
Mikhail Glushenkovabab33b2008-05-30 06:13:02 +0000539 const std::string& cmd = InitPtrToString(d->getArg(0));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000540
541 toolProps_.OptDescs[o.Name].AddProperty(OptionPropertyType::AppendCmd, cmd);
542 }
543
Mikhail Glushenkovabab33b2008-05-30 06:13:02 +0000544 void onOutputSuffixOptionProp (const DagInit* d, GlobalOptionDescription& o) {
545 checkNumberOfArguments(d, 1);
546 const std::string& suf = InitPtrToString(d->getArg(0));
547
548 if (toolProps_.OptDescs[o.Name].Type != OptionType::Switch)
549 throw "Option " + o.Name
550 + " can't have 'output_suffix' property since it isn't a switch!";
551
552 toolProps_.OptDescs[o.Name].AddProperty
553 (OptionPropertyType::OutputSuffix, suf);
554 }
555
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000556 void onForward (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000557 checkNumberOfArguments(d, 0);
558 toolProps_.OptDescs[o.Name].setForward();
559 }
560
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000561 void onHelp (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000562 checkNumberOfArguments(d, 1);
563 const std::string& help_message = InitPtrToString(d->getArg(0));
564
565 o.Help = help_message;
566 }
567
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000568 void onRequired (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000569 checkNumberOfArguments(d, 0);
570 o.setRequired();
571 }
572
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000573 void onStopCompilation (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000574 checkNumberOfArguments(d, 0);
575 if (o.Type != OptionType::Switch)
576 throw std::string("Only options of type Switch can stop compilation!");
577 toolProps_.OptDescs[o.Name].setStopCompilation();
578 }
579
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000580 void onUnpackValues (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000581 checkNumberOfArguments(d, 0);
582 toolProps_.OptDescs[o.Name].setUnpackValues();
583 }
584
585 /// Helper functions
586
587 // Add an option of type t
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000588 void addOption (const DagInit* d, OptionType::OptionType t) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000589 checkNumberOfArguments(d, 2);
590 const std::string& name = InitPtrToString(d->getArg(0));
591
592 GlobalOptionDescription o(t, name);
593 toolProps_.OptDescs[name].Type = t;
594 toolProps_.OptDescs[name].Name = name;
595 processOptionProperties(d, o);
596 insertDescription(o);
597 }
598
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000599 // Insert new GlobalOptionDescription into GlobalOptionDescriptions list
600 void insertDescription (const GlobalOptionDescription& o)
601 {
602 if (optDescs_.Descriptions.count(o.Name)) {
603 GlobalOptionDescription& D = optDescs_.Descriptions[o.Name];
604 D.Merge(o);
605 }
606 else {
607 optDescs_.Descriptions[o.Name] = o;
608 }
609 }
610
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000611 /// processOptionProperties - Go through the list of option
612 /// properties and call a corresponding handler for each.
613 ///
614 /// Parameters:
615 /// name - option name
616 /// d - option property list
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000617 void processOptionProperties (const DagInit* d, GlobalOptionDescription& o) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000618 // First argument is option name
619 checkNumberOfArguments(d, 2);
620
621 for (unsigned B = 1, E = d->getNumArgs(); B!=E; ++B) {
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000622 const DagInit& option_property
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000623 = InitPtrToDag(d->getArg(B));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000624 const std::string& option_property_name
625 = option_property.getOperator()->getAsString();
626 OptionPropertyHandlerMap::iterator method
627 = optionPropertyHandlers_.find(option_property_name);
628
629 if (method != optionPropertyHandlers_.end()) {
630 OptionPropertyHandler h = method->second;
631 (this->*h)(&option_property, o);
632 }
633 else {
634 throw "Unknown option property: " + option_property_name + "!";
635 }
636 }
637 }
638};
639
640// Static members of CollectProperties
641CollectProperties::PropertyHandlerMap
642CollectProperties::propertyHandlers_;
643
644CollectProperties::OptionPropertyHandlerMap
645CollectProperties::optionPropertyHandlers_;
646
647bool CollectProperties::staticMembersInitialized_ = false;
648
649
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000650/// CollectToolProperties - Gather information from the parsed
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000651/// TableGen data (basically a wrapper for the CollectProperties
652/// function object).
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000653void CollectToolProperties (RecordVector::const_iterator B,
654 RecordVector::const_iterator E,
655 ToolPropertiesList& TPList,
656 GlobalOptionDescriptions& OptDescs)
657{
658 // Iterate over a properties list of every Tool definition
659 for (;B!=E;++B) {
660 RecordVector::value_type T = *B;
661 ListInit* PropList = T->getValueAsListInit("properties");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000662
663 IntrusiveRefCntPtr<ToolProperties>
664 ToolProps(new ToolProperties(T->getName()));
665
666 std::for_each(PropList->begin(), PropList->end(),
667 CollectProperties(*ToolProps, OptDescs));
668 TPList.push_back(ToolProps);
669 }
670}
671
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000672/// EmitCaseTest1Arg - Helper function used by
673/// EmitCaseConstructHandler.
674bool EmitCaseTest1Arg(const std::string& TestName,
675 const DagInit& d,
676 const GlobalOptionDescriptions& OptDescs,
677 std::ostream& O) {
678 checkNumberOfArguments(&d, 1);
679 const std::string& OptName = InitPtrToString(d.getArg(0));
680 if (TestName == "switch_on") {
681 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
682 if (OptDesc.Type != OptionType::Switch)
683 throw OptName + ": incorrect option type!";
684 O << OptDesc.GenVariableName();
685 return true;
686 } else if (TestName == "input_languages_contain") {
687 O << "InLangs.count(\"" << OptName << "\") != 0";
688 return true;
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +0000689 } else if (TestName == "in_language") {
690 // Works only for cmd_line!
691 O << "GetLanguage(inFile) == \"" << OptName << '\"';
692 return true;
693 } else if (TestName == "not_empty") {
Mikhail Glushenkovb4833872008-05-30 06:24:07 +0000694 if (OptName == "o") {
695 O << "!OutputFilename.empty()";
696 return true;
697 }
698 else {
699 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
700 if (OptDesc.Type == OptionType::Switch)
701 throw OptName + ": incorrect option type!";
702 O << '!' << OptDesc.GenVariableName() << ".empty()";
703 return true;
704 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000705 }
706
707 return false;
708}
709
710/// EmitCaseTest2Args - Helper function used by
711/// EmitCaseConstructHandler.
712bool EmitCaseTest2Args(const std::string& TestName,
713 const DagInit& d,
714 const char* IndentLevel,
715 const GlobalOptionDescriptions& OptDescs,
716 std::ostream& O) {
717 checkNumberOfArguments(&d, 2);
718 const std::string& OptName = InitPtrToString(d.getArg(0));
719 const std::string& OptArg = InitPtrToString(d.getArg(1));
720 const GlobalOptionDescription& OptDesc = OptDescs.FindOption(OptName);
721
722 if (TestName == "parameter_equals") {
723 if (OptDesc.Type != OptionType::Parameter
724 && OptDesc.Type != OptionType::Prefix)
725 throw OptName + ": incorrect option type!";
726 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
727 return true;
728 }
729 else if (TestName == "element_in_list") {
730 if (OptDesc.Type != OptionType::ParameterList
731 && OptDesc.Type != OptionType::PrefixList)
732 throw OptName + ": incorrect option type!";
733 const std::string& VarName = OptDesc.GenVariableName();
734 O << "std::find(" << VarName << ".begin(),\n"
735 << IndentLevel << Indent1 << VarName << ".end(), \""
736 << OptArg << "\") != " << VarName << ".end()";
737 return true;
738 }
739
740 return false;
741}
742
743// Forward declaration.
744// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
745void EmitCaseTest(const DagInit& d, const char* IndentLevel,
746 const GlobalOptionDescriptions& OptDescs,
747 std::ostream& O);
748
749/// EmitLogicalOperationTest - Helper function used by
750/// EmitCaseConstructHandler.
751void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
752 const char* IndentLevel,
753 const GlobalOptionDescriptions& OptDescs,
754 std::ostream& O) {
755 O << '(';
756 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000757 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000758 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
759 if (j != NumArgs - 1)
760 O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
761 else
762 O << ')';
763 }
764}
765
766/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
767void EmitCaseTest(const DagInit& d, const char* IndentLevel,
768 const GlobalOptionDescriptions& OptDescs,
769 std::ostream& O) {
770 const std::string& TestName = d.getOperator()->getAsString();
771
772 if (TestName == "and")
773 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
774 else if (TestName == "or")
775 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
776 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
777 return;
778 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
779 return;
780 else
781 throw TestName + ": unknown edge property!";
782}
783
784// Emit code that handles the 'case' construct.
785// Takes a function object that should emit code for every case clause.
786// Callback's type is
787// void F(Init* Statement, const char* IndentLevel, std::ostream& O).
788template <typename F>
789void EmitCaseConstructHandler(const DagInit* d, const char* IndentLevel,
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +0000790 const F& Callback, bool EmitElseIf,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000791 const GlobalOptionDescriptions& OptDescs,
792 std::ostream& O) {
793 assert(d->getOperator()->getAsString() == "case");
794
Mikhail Glushenkov31681512008-05-30 06:15:47 +0000795 unsigned numArgs = d->getNumArgs();
796 if (d->getNumArgs() < 2)
797 throw "There should be at least one clause in the 'case' expression:\n"
798 + d->getAsString();
799
800 for (unsigned i = 0; i != numArgs; ++i) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000801 const DagInit& Test = InitPtrToDag(d->getArg(i));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000802
Mikhail Glushenkov31681512008-05-30 06:15:47 +0000803 // Emit the test.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000804 if (Test.getOperator()->getAsString() == "default") {
805 if (i+2 != numArgs)
806 throw std::string("The 'default' clause should be the last in the"
807 "'case' construct!");
808 O << IndentLevel << "else {\n";
809 }
810 else {
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +0000811 O << IndentLevel << ((i != 0 && EmitElseIf) ? "else if (" : "if (");
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000812 EmitCaseTest(Test, IndentLevel, OptDescs, O);
813 O << ") {\n";
814 }
815
Mikhail Glushenkov31681512008-05-30 06:15:47 +0000816 // Emit the corresponding statement.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000817 ++i;
818 if (i == numArgs)
819 throw "Case construct handler: no corresponding action "
820 "found for the test " + Test.getAsString() + '!';
821
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +0000822 Init* arg = d->getArg(i);
823 if (dynamic_cast<DagInit*>(arg)
824 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case") {
825 EmitCaseConstructHandler(static_cast<DagInit*>(arg),
826 (std::string(IndentLevel) + Indent1).c_str(),
827 Callback, EmitElseIf, OptDescs, O);
828 }
829 else {
830 Callback(arg, IndentLevel, O);
831 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000832 O << IndentLevel << "}\n";
833 }
834}
835
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000836/// EmitForwardOptionPropertyHandlingCode - Helper function used to
837/// implement EmitOptionPropertyHandlingCode(). Emits code for
838/// handling the (forward) option property.
839void EmitForwardOptionPropertyHandlingCode (const ToolOptionDescription& D,
840 std::ostream& O) {
841 switch (D.Type) {
842 case OptionType::Switch:
843 O << Indent3 << "vec.push_back(\"-" << D.Name << "\");\n";
844 break;
845 case OptionType::Parameter:
846 O << Indent3 << "vec.push_back(\"-" << D.Name << "\");\n";
847 O << Indent3 << "vec.push_back(" << D.GenVariableName() << ");\n";
848 break;
849 case OptionType::Prefix:
850 O << Indent3 << "vec.push_back(\"-" << D.Name << "\" + "
851 << D.GenVariableName() << ");\n";
852 break;
853 case OptionType::PrefixList:
854 O << Indent3 << "for (" << D.GenTypeDeclaration()
855 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
856 << Indent3 << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n"
857 << Indent4 << "vec.push_back(\"-" << D.Name << "\" + "
858 << "*B);\n";
859 break;
860 case OptionType::ParameterList:
861 O << Indent3 << "for (" << D.GenTypeDeclaration()
862 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
863 << Indent3 << "E = " << D.GenVariableName()
864 << ".end() ; B != E; ++B) {\n"
865 << Indent4 << "vec.push_back(\"-" << D.Name << "\");\n"
866 << Indent4 << "vec.push_back(*B);\n"
867 << Indent3 << "}\n";
868 break;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +0000869 case OptionType::Alias:
870 default:
871 throw std::string("Aliases are not allowed in tool option descriptions!");
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000872 }
873}
874
Mikhail Glushenkovea6ce492008-05-30 06:15:20 +0000875// ToolOptionHasInterestingProperties - A helper function used by
876// EmitOptionPropertyHandlingCode() that tells us whether we should
877// emit any property handling code at all.
Mikhail Glushenkov31f52152008-05-30 06:10:47 +0000878bool ToolOptionHasInterestingProperties(const ToolOptionDescription& D) {
Mikhail Glushenkovea6ce492008-05-30 06:15:20 +0000879 bool ret = false;
880 for (OptionPropertyList::const_iterator B = D.Props.begin(),
881 E = D.Props.end(); B != E; ++B) {
882 const OptionProperty& OptProp = *B;
883 if (OptProp.first == OptionPropertyType::AppendCmd)
884 ret = true;
885 }
886 if (D.isForward() || D.isUnpackValues())
887 ret = true;
888 return ret;
Mikhail Glushenkov31f52152008-05-30 06:10:47 +0000889}
890
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000891/// EmitOptionPropertyHandlingCode - Helper function used by
892/// EmitGenerateActionMethod(). Emits code that handles option
893/// properties.
Mikhail Glushenkov31f52152008-05-30 06:10:47 +0000894void EmitOptionPropertyHandlingCode (const ToolOptionDescription& D,
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000895 std::ostream& O)
896{
Mikhail Glushenkov31f52152008-05-30 06:10:47 +0000897 if (!ToolOptionHasInterestingProperties(D))
898 return;
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000899 // Start of the if-clause.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000900 O << Indent2 << "if (";
901 if (D.Type == OptionType::Switch)
902 O << D.GenVariableName();
903 else
904 O << '!' << D.GenVariableName() << ".empty()";
905
906 O <<") {\n";
907
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000908 // Handle option properties that take an argument.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000909 for (OptionPropertyList::const_iterator B = D.Props.begin(),
910 E = D.Props.end(); B!=E; ++B) {
911 const OptionProperty& val = *B;
912
913 switch (val.first) {
914 // (append_cmd cmd) property
915 case OptionPropertyType::AppendCmd:
916 O << Indent3 << "vec.push_back(\"" << val.second << "\");\n";
917 break;
918 // Other properties with argument
919 default:
920 break;
921 }
922 }
923
924 // Handle flags
925
926 // (forward) property
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000927 if (D.isForward())
928 EmitForwardOptionPropertyHandlingCode(D, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000929
930 // (unpack_values) property
931 if (D.isUnpackValues()) {
932 if (IsListOptionType(D.Type)) {
933 O << Indent3 << "for (" << D.GenTypeDeclaration()
934 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
935 << Indent3 << "E = " << D.GenVariableName()
936 << ".end(); B != E; ++B)\n"
Mikhail Glushenkov028f18e2008-05-06 18:13:45 +0000937 << Indent4 << "llvm::SplitString(*B, vec, \",\");\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000938 }
939 else if (D.Type == OptionType::Prefix || D.Type == OptionType::Parameter){
Mikhail Glushenkov028f18e2008-05-06 18:13:45 +0000940 O << Indent3 << "llvm::SplitString("
941 << D.GenVariableName() << ", vec, \",\");\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000942 }
943 else {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000944 throw std::string("Switches can't have unpack_values property!");
945 }
946 }
947
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000948 // End of the if-clause.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000949 O << Indent2 << "}\n";
950}
951
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +0000952/// SubstituteSpecialCommands - Perform string substitution for $CALL
953/// and $ENV. Helper function used by EmitCmdLineVecFill().
954std::string SubstituteSpecialCommands(const std::string& cmd) {
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +0000955 size_t cparen = cmd.find(")");
956 std::string ret;
957
958 if (cmd.find("$CALL(") == 0) {
959 if (cmd.size() == 6)
960 throw std::string("$CALL invocation: empty argument list!");
961
962 ret += "hooks::";
963 ret += std::string(cmd.begin() + 6, cmd.begin() + cparen);
964 ret += "()";
965 }
966 else if (cmd.find("$ENV(") == 0) {
967 if (cmd.size() == 5)
968 throw std::string("$ENV invocation: empty argument list!");
969
970 ret += "std::getenv(\"";
971 ret += std::string(cmd.begin() + 5, cmd.begin() + cparen);
972 ret += "\")";
973 }
974 else {
975 throw "Unknown special command: " + cmd;
976 }
977
978 if (cmd.begin() + cparen + 1 != cmd.end()) {
979 ret += " + std::string(\"";
980 ret += (cmd.c_str() + cparen + 1);
981 ret += "\")";
982 }
983
984 return ret;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +0000985}
986
987/// EmitCmdLineVecFill - Emit code that fills in the command line
988/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000989void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
990 bool Version, const char* IndentLevel,
991 std::ostream& O) {
992 StrVector StrVec;
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +0000993 SplitString(InitPtrToString(CmdLine), StrVec);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +0000994 if (StrVec.empty())
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000995 throw "Tool " + ToolName + " has empty command line!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000996
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000997 StrVector::const_iterator I = StrVec.begin();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000998 ++I;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000999 for (StrVector::const_iterator E = StrVec.end(); I != E; ++I) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001000 const std::string& cmd = *I;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001001 O << IndentLevel;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001002 if (cmd.at(0) == '$') {
1003 if (cmd == "$INFILE") {
1004 if (Version)
1005 O << "for (PathVector::const_iterator B = inFiles.begin()"
1006 << ", E = inFiles.end();\n"
1007 << IndentLevel << "B != E; ++B)\n"
1008 << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
1009 else
1010 O << "vec.push_back(inFile.toString());\n";
1011 }
1012 else if (cmd == "$OUTFILE") {
1013 O << "vec.push_back(outFile.toString());\n";
1014 }
1015 else {
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001016 O << "vec.push_back(" << SubstituteSpecialCommands(cmd);
1017 O << ");\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001018 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001019 }
1020 else {
1021 O << "vec.push_back(\"" << cmd << "\");\n";
1022 }
1023 }
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001024 O << IndentLevel << "cmd = "
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001025 << ((StrVec[0][0] == '$') ? SubstituteSpecialCommands(StrVec[0])
1026 : "\"" + StrVec[0] + "\"")
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001027 << ";\n";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001028}
1029
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001030/// EmitCmdLineVecFillCallback - A function object wrapper around
1031/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1032/// argument to EmitCaseConstructHandler().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001033class EmitCmdLineVecFillCallback {
1034 bool Version;
1035 const std::string& ToolName;
1036 public:
1037 EmitCmdLineVecFillCallback(bool Ver, const std::string& TN)
1038 : Version(Ver), ToolName(TN) {}
1039
1040 void operator()(const Init* Statement, const char* IndentLevel,
1041 std::ostream& O) const
1042 {
Mikhail Glushenkov31f52152008-05-30 06:10:47 +00001043 EmitCmdLineVecFill(Statement, ToolName, Version,
1044 (std::string(IndentLevel) + Indent1).c_str(), O);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001045 }
1046};
1047
1048// EmitGenerateActionMethod - Emit one of two versions of the
1049// Tool::GenerateAction() method.
1050void EmitGenerateActionMethod (const ToolProperties& P,
1051 const GlobalOptionDescriptions& OptDescs,
1052 bool Version, std::ostream& O) {
1053 if (Version)
1054 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1055 else
1056 O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1057
1058 O << Indent2 << "const sys::Path& outFile,\n"
1059 << Indent2 << "const InputLanguagesSet& InLangs) const\n"
1060 << Indent1 << "{\n"
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001061 << Indent2 << "std::string cmd;\n"
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001062 << Indent2 << "std::vector<std::string> vec;\n";
1063
1064 // cmd_line is either a string or a 'case' construct.
1065 if (typeid(*P.CmdLine) == typeid(StringInit))
1066 EmitCmdLineVecFill(P.CmdLine, P.Name, Version, Indent2, O);
1067 else
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001068 EmitCaseConstructHandler(&InitPtrToDag(P.CmdLine), Indent2,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001069 EmitCmdLineVecFillCallback(Version, P.Name),
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001070 true, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001071
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001072 // For every understood option, emit handling code.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001073 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1074 E = P.OptDescs.end(); B != E; ++B) {
1075 const ToolOptionDescription& val = B->second;
Mikhail Glushenkov31f52152008-05-30 06:10:47 +00001076 EmitOptionPropertyHandlingCode(val, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001077 }
1078
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001079 // Handle the Sink property.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001080 if (P.isSink()) {
1081 O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1082 << Indent3 << "vec.insert(vec.end(), "
1083 << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1084 << Indent2 << "}\n";
1085 }
1086
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001087 O << Indent2 << "return Action(cmd, vec);\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001088 << Indent1 << "}\n\n";
1089}
1090
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001091/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1092/// a given Tool class.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001093void EmitGenerateActionMethods (const ToolProperties& P,
1094 const GlobalOptionDescriptions& OptDescs,
1095 std::ostream& O) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001096 if (!P.isJoin())
1097 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001098 << Indent2 << "const llvm::sys::Path& outFile,\n"
1099 << Indent2 << "const InputLanguagesSet& InLangs) const\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001100 << Indent1 << "{\n"
1101 << Indent2 << "throw std::runtime_error(\"" << P.Name
1102 << " is not a Join tool!\");\n"
1103 << Indent1 << "}\n\n";
1104 else
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001105 EmitGenerateActionMethod(P, OptDescs, true, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001106
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001107 EmitGenerateActionMethod(P, OptDescs, false, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001108}
1109
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001110/// EmitIsLastMethod - Emit the IsLast() method for a given Tool
1111/// class.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001112void EmitIsLastMethod (const ToolProperties& P, std::ostream& O) {
1113 O << Indent1 << "bool IsLast() const {\n"
1114 << Indent2 << "bool last = false;\n";
1115
1116 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1117 E = P.OptDescs.end(); B != E; ++B) {
1118 const ToolOptionDescription& val = B->second;
1119
1120 if (val.isStopCompilation())
1121 O << Indent2
1122 << "if (" << val.GenVariableName()
1123 << ")\n" << Indent3 << "last = true;\n";
1124 }
1125
1126 O << Indent2 << "return last;\n"
1127 << Indent1 << "}\n\n";
1128}
1129
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001130/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1131/// methods for a given Tool class.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001132void EmitInOutLanguageMethods (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001133 O << Indent1 << "StrVector InputLanguages() const {\n"
1134 << Indent2 << "StrVector ret;\n";
1135
1136 for (StrVector::const_iterator B = P.InLanguage.begin(),
1137 E = P.InLanguage.end(); B != E; ++B) {
1138 O << Indent2 << "ret.push_back(\"" << *B << "\");\n";
1139 }
1140
1141 O << Indent2 << "return ret;\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001142 << Indent1 << "}\n\n";
1143
Mikhail Glushenkovd379d162008-05-06 17:24:26 +00001144 O << Indent1 << "const char* OutputLanguage() const {\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001145 << Indent2 << "return \"" << P.OutLanguage << "\";\n"
1146 << Indent1 << "}\n\n";
1147}
1148
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001149/// EmitOutputSuffixMethod - Emit the OutputSuffix() method for a
1150/// given Tool class.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001151void EmitOutputSuffixMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovd379d162008-05-06 17:24:26 +00001152 O << Indent1 << "const char* OutputSuffix() const {\n"
Mikhail Glushenkovabab33b2008-05-30 06:13:02 +00001153 << Indent2 << "const char* ret = \"" << P.OutputSuffix << "\";\n";
1154
1155 for (ToolOptionDescriptions::const_iterator B = P.OptDescs.begin(),
1156 E = P.OptDescs.end(); B != E; ++B) {
1157 const ToolOptionDescription& OptDesc = B->second;
1158 for (OptionPropertyList::const_iterator B = OptDesc.Props.begin(),
1159 E = OptDesc.Props.end(); B != E; ++B) {
1160 const OptionProperty& OptProp = *B;
1161 if (OptProp.first == OptionPropertyType::OutputSuffix) {
1162 O << Indent2 << "if (" << OptDesc.GenVariableName() << ")\n"
1163 << Indent3 << "ret = \"" << OptProp.second << "\";\n";
1164 }
1165 }
1166 }
1167
1168 O << Indent2 << "return ret;\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001169 << Indent1 << "}\n\n";
1170}
1171
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001172/// EmitNameMethod - Emit the Name() method for a given Tool class.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001173void EmitNameMethod (const ToolProperties& P, std::ostream& O) {
Mikhail Glushenkovd379d162008-05-06 17:24:26 +00001174 O << Indent1 << "const char* Name() const {\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001175 << Indent2 << "return \"" << P.Name << "\";\n"
1176 << Indent1 << "}\n\n";
1177}
1178
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001179/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1180/// class.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001181void EmitIsJoinMethod (const ToolProperties& P, std::ostream& O) {
1182 O << Indent1 << "bool IsJoin() const {\n";
1183 if (P.isJoin())
1184 O << Indent2 << "return true;\n";
1185 else
1186 O << Indent2 << "return false;\n";
1187 O << Indent1 << "}\n\n";
1188}
1189
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001190/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001191void EmitToolClassDefinition (const ToolProperties& P,
1192 const GlobalOptionDescriptions& OptDescs,
1193 std::ostream& O) {
1194 if (P.Name == "root")
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001195 return;
1196
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001197 // Header
Mikhail Glushenkov121889c2008-05-06 17:26:53 +00001198 O << "class " << P.Name << " : public ";
1199 if (P.isJoin())
1200 O << "JoinTool";
1201 else
1202 O << "Tool";
Mikhail Glushenkovd14857f2008-05-06 17:27:15 +00001203 O << " {\npublic:\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001204
1205 EmitNameMethod(P, O);
1206 EmitInOutLanguageMethods(P, O);
1207 EmitOutputSuffixMethod(P, O);
1208 EmitIsJoinMethod(P, O);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001209 EmitGenerateActionMethods(P, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001210 EmitIsLastMethod(P, O);
1211
1212 // Close class definition
1213 O << "};\n\n";
1214}
1215
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001216/// EmitOptionDescriptions - Iterate over a list of option
1217/// descriptions and emit registration code.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001218void EmitOptionDescriptions (const GlobalOptionDescriptions& descs,
1219 std::ostream& O)
1220{
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001221 std::vector<GlobalOptionDescription> Aliases;
1222
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001223 // Emit static cl::Option variables.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001224 for (GlobalOptionDescriptions::const_iterator B = descs.begin(),
1225 E = descs.end(); B!=E; ++B) {
1226 const GlobalOptionDescription& val = B->second;
1227
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001228 if (val.Type == OptionType::Alias) {
1229 Aliases.push_back(val);
1230 continue;
1231 }
1232
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001233 O << val.GenTypeDeclaration() << ' '
1234 << val.GenVariableName()
1235 << "(\"" << val.Name << '\"';
1236
1237 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1238 O << ", cl::Prefix";
1239
1240 if (val.isRequired()) {
1241 switch (val.Type) {
1242 case OptionType::PrefixList:
1243 case OptionType::ParameterList:
1244 O << ", cl::OneOrMore";
1245 break;
1246 default:
1247 O << ", cl::Required";
1248 }
1249 }
1250
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001251 if (!val.Help.empty())
1252 O << ", cl::desc(\"" << val.Help << "\")";
1253
1254 O << ");\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001255 }
1256
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001257 // Emit the aliases (they should go after all the 'proper' options).
1258 for (std::vector<GlobalOptionDescription>::const_iterator
1259 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
1260 const GlobalOptionDescription& val = *B;
1261
1262 O << val.GenTypeDeclaration() << ' '
1263 << val.GenVariableName()
1264 << "(\"" << val.Name << '\"';
1265
1266 GlobalOptionDescriptions::container_type
1267 ::const_iterator F = descs.Descriptions.find(val.Help);
1268 if (F != descs.Descriptions.end())
1269 O << ", cl::aliasopt(" << F->second.GenVariableName() << ")";
1270 else
1271 throw val.Name + ": alias to an unknown option!";
1272
1273 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
1274 }
1275
1276 // Emit the sink option.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001277 if (descs.HasSink)
1278 O << "cl::list<std::string> " << SinkOptionName << "(cl::Sink);\n";
1279
1280 O << '\n';
1281}
1282
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001283/// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001284void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1285{
1286 // Get the relevant field out of RecordKeeper
1287 Record* LangMapRecord = Records.getDef("LanguageMap");
1288 if (!LangMapRecord)
1289 throw std::string("Language map definition not found!");
1290
1291 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1292 if (!LangsToSuffixesList)
1293 throw std::string("Error in the language map definition!");
1294
1295 // Generate code
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +00001296 O << "void llvmc::PopulateLanguageMap() {\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001297
1298 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
1299 Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
1300
1301 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1302 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1303
1304 for (unsigned i = 0; i < Suffixes->size(); ++i)
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +00001305 O << Indent1 << "GlobalLanguageMap[\""
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001306 << InitPtrToString(Suffixes->getElement(i))
1307 << "\"] = \"" << Lang << "\";\n";
1308 }
1309
1310 O << "}\n\n";
1311}
1312
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001313/// FillInToolToLang - Fills in two tables that map tool names to
1314/// (input, output) languages. Used by the typechecker.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001315void FillInToolToLang (const ToolPropertiesList& TPList,
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001316 StringMap<StringSet<> >& ToolToInLang,
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001317 StringMap<std::string>& ToolToOutLang) {
1318 for (ToolPropertiesList::const_iterator B = TPList.begin(), E = TPList.end();
1319 B != E; ++B) {
1320 const ToolProperties& P = *(*B);
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001321 for (StrVector::const_iterator B = P.InLanguage.begin(),
1322 E = P.InLanguage.end(); B != E; ++B)
1323 ToolToInLang[P.Name].insert(*B);
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001324 ToolToOutLang[P.Name] = P.OutLanguage;
1325 }
1326}
1327
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001328/// TypecheckGraph - Check that names for output and input languages
1329/// on all edges do match.
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001330// TOFIX: It would be nice if this function also checked for cycles
1331// and multiple default edges in the graph (better error
1332// reporting). Unfortunately, it is awkward to do right now because
1333// our intermediate representation is not sufficiently
1334// sofisticated. Algorithms like these should be run on a real graph
1335// instead of AST.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001336void TypecheckGraph (Record* CompilationGraph,
1337 const ToolPropertiesList& TPList) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001338 StringMap<StringSet<> > ToolToInLang;
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001339 StringMap<std::string> ToolToOutLang;
1340
1341 FillInToolToLang(TPList, ToolToInLang, ToolToOutLang);
1342 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001343 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
1344 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001345
1346 for (unsigned i = 0; i < edges->size(); ++i) {
1347 Record* Edge = edges->getElementAsRecord(i);
1348 Record* A = Edge->getValueAsDef("a");
1349 Record* B = Edge->getValueAsDef("b");
1350 StringMap<std::string>::iterator IA = ToolToOutLang.find(A->getName());
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001351 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(B->getName());
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001352 if (IA == IAE)
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001353 throw A->getName() + ": no such tool!";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001354 if (IB == IBE)
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001355 throw B->getName() + ": no such tool!";
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001356 if (A->getName() != "root" && IB->second.count(IA->second) == 0)
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001357 throw "Edge " + A->getName() + "->" + B->getName()
1358 + ": output->input language mismatch";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001359 if (B->getName() == "root")
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001360 throw std::string("Edges back to the root are not allowed!");
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001361 }
1362}
1363
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001364/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1365/// by EmitEdgeClass().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001366void IncDecWeight (const Init* i, const char* IndentLevel,
1367 std::ostream& O) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001368 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001369 const std::string& OpName = d.getOperator()->getAsString();
1370
1371 if (OpName == "inc_weight")
1372 O << IndentLevel << Indent1 << "ret += ";
1373 else if (OpName == "dec_weight")
1374 O << IndentLevel << Indent1 << "ret -= ";
1375 else
1376 throw "Unknown operator in edge properties list: " + OpName + '!';
1377
1378 if (d.getNumArgs() > 0)
1379 O << InitPtrToInt(d.getArg(0)) << ";\n";
1380 else
1381 O << "2;\n";
1382
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +00001383}
1384
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001385/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001386void EmitEdgeClass (unsigned N, const std::string& Target,
1387 DagInit* Case, const GlobalOptionDescriptions& OptDescs,
1388 std::ostream& O) {
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001389
1390 // Class constructor.
1391 O << "class Edge" << N << ": public Edge {\n"
1392 << "public:\n"
1393 << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1394 << "\") {}\n\n"
1395
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001396 // Function Weight().
Mikhail Glushenkovd6228882008-05-06 18:15:12 +00001397 << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001398 << Indent2 << "unsigned ret = 0;\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001399
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001400 // Handle the 'case' construct.
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001401 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001402
1403 O << Indent2 << "return ret;\n"
1404 << Indent1 << "};\n\n};\n\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001405}
1406
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001407/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001408void EmitEdgeClasses (Record* CompilationGraph,
1409 const GlobalOptionDescriptions& OptDescs,
1410 std::ostream& O) {
1411 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
1412
1413 for (unsigned i = 0; i < edges->size(); ++i) {
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001414 Record* Edge = edges->getElementAsRecord(i);
1415 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001416 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001417
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001418 if (isDagEmpty(Weight))
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001419 continue;
1420
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001421 EmitEdgeClass(i, B->getName(), Weight, OptDescs, O);
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001422 }
1423}
1424
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001425/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1426/// function.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001427void EmitPopulateCompilationGraph (Record* CompilationGraph,
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001428 std::ostream& O)
1429{
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001430 ListInit* edges = CompilationGraph->getValueAsListInit("edges");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001431
1432 // Generate code
Mikhail Glushenkov34307a92008-05-06 18:08:59 +00001433 O << "void llvmc::PopulateCompilationGraph(CompilationGraph& G) {\n"
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +00001434 << Indent1 << "PopulateLanguageMap();\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001435
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001436 // Insert vertices
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001437
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001438 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1439 if (Tools.empty())
1440 throw std::string("No tool definitions found!");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001441
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001442 for (RecordVector::iterator B = Tools.begin(), E = Tools.end(); B != E; ++B) {
1443 const std::string& Name = (*B)->getName();
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001444 if (Name != "root")
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001445 O << Indent1 << "G.insertNode(new "
1446 << Name << "());\n";
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001447 }
1448
1449 O << '\n';
1450
1451 // Insert edges
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001452 for (unsigned i = 0; i < edges->size(); ++i) {
1453 Record* Edge = edges->getElementAsRecord(i);
1454 Record* A = Edge->getValueAsDef("a");
1455 Record* B = Edge->getValueAsDef("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001456 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001457
1458 O << Indent1 << "G.insertEdge(\"" << A->getName() << "\", ";
1459
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001460 if (isDagEmpty(Weight))
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001461 O << "new SimpleEdge(\"" << B->getName() << "\")";
1462 else
1463 O << "new Edge" << i << "()";
1464
1465 O << ");\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001466 }
1467
1468 O << "}\n\n";
1469}
1470
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001471/// ExtractHookNames - Extract the hook names from all instances of
1472/// $CALL(HookName) in the provided command line string. Helper
1473/// function used by FillInHookNames().
1474void ExtractHookNames(const Init* CmdLine, StrVector& HookNames) {
1475 StrVector cmds;
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001476 llvm::SplitString(InitPtrToString(CmdLine), cmds);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001477 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1478 B != E; ++B) {
1479 const std::string& cmd = *B;
1480 if (cmd.find("$CALL(") == 0) {
1481 if (cmd.size() == 6)
1482 throw std::string("$CALL invocation: empty argument list!");
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001483 HookNames.push_back(std::string(cmd.begin() + 6,
1484 cmd.begin() + cmd.find(")")));
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001485 }
1486 }
1487}
1488
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001489/// ExtractHookNamesFromCaseConstruct - Extract hook names from the
1490/// 'case' expression, handle nesting. Helper function used by
1491/// FillInHookNames().
1492void ExtractHookNamesFromCaseConstruct(Init* Case, StrVector& HookNames) {
1493 const DagInit& d = InitPtrToDag(Case);
1494 bool even = false;
1495 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
1496 B != E; ++B) {
1497 Init* arg = *B;
1498 if (even && dynamic_cast<DagInit*>(arg)
1499 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case")
1500 ExtractHookNamesFromCaseConstruct(arg, HookNames);
1501 else if (even)
1502 ExtractHookNames(arg, HookNames);
1503 even = !even;
1504 }
1505}
1506
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001507/// FillInHookNames - Actually extract the hook names from all command
1508/// line strings. Helper function used by EmitHookDeclarations().
1509void FillInHookNames(const ToolPropertiesList& TPList,
1510 StrVector& HookNames) {
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001511 // For all command lines:
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001512 for (ToolPropertiesList::const_iterator B = TPList.begin(),
1513 E = TPList.end(); B != E; ++B) {
1514 const ToolProperties& P = *(*B);
1515 if (!P.CmdLine)
1516 continue;
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001517 if (dynamic_cast<StringInit*>(P.CmdLine))
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001518 // This is a string.
1519 ExtractHookNames(P.CmdLine, HookNames);
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001520 else
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001521 // This is a 'case' construct.
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001522 ExtractHookNamesFromCaseConstruct(P.CmdLine, HookNames);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001523 }
1524}
1525
1526/// EmitHookDeclarations - Parse CmdLine fields of all the tool
1527/// property records and emit hook function declaration for each
1528/// instance of $CALL(HookName).
1529void EmitHookDeclarations(const ToolPropertiesList& ToolProps,
1530 std::ostream& O) {
1531 StrVector HookNames;
1532 FillInHookNames(ToolProps, HookNames);
1533 if (HookNames.empty())
1534 return;
1535 std::sort(HookNames.begin(), HookNames.end());
1536 StrVector::const_iterator E = std::unique(HookNames.begin(), HookNames.end());
1537
1538 O << "namespace hooks {\n";
1539 for (StrVector::const_iterator B = HookNames.begin(); B != E; ++B)
1540 O << Indent1 << "std::string " << *B << "();\n";
1541
1542 O << "}\n\n";
1543}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001544
1545// End of anonymous namespace
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +00001546}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001547
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001548/// run - The back-end entry point.
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +00001549void LLVMCConfigurationEmitter::run (std::ostream &O) {
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00001550 try {
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001551
1552 // Emit file header.
Mikhail Glushenkov34307a92008-05-06 18:08:59 +00001553 EmitSourceFileHeader("LLVMC Configuration Library", O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001554
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001555 // Get a list of all defined Tools.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001556 RecordVector Tools = Records.getAllDerivedDefinitions("Tool");
1557 if (Tools.empty())
1558 throw std::string("No tool definitions found!");
1559
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001560 // Gather information from the Tool description dags.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001561 ToolPropertiesList tool_props;
1562 GlobalOptionDescriptions opt_descs;
1563 CollectToolProperties(Tools.begin(), Tools.end(), tool_props, opt_descs);
1564
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001565 // Emit global option registration code.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001566 EmitOptionDescriptions(opt_descs, O);
1567
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001568 // Emit hook declarations.
1569 EmitHookDeclarations(tool_props, O);
1570
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001571 // Emit PopulateLanguageMap() function
1572 // (a language map maps from file extensions to language names).
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001573 EmitPopulateLanguageMap(Records, O);
1574
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001575 // Emit Tool classes.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001576 for (ToolPropertiesList::const_iterator B = tool_props.begin(),
1577 E = tool_props.end(); B!=E; ++B)
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001578 EmitToolClassDefinition(*(*B), opt_descs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001579
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001580 Record* CompilationGraphRecord = Records.getDef("CompilationGraph");
1581 if (!CompilationGraphRecord)
1582 throw std::string("Compilation graph description not found!");
1583
1584 // Typecheck the compilation graph.
1585 TypecheckGraph(CompilationGraphRecord, tool_props);
1586
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001587 // Emit Edge# classes.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001588 EmitEdgeClasses(CompilationGraphRecord, opt_descs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001589
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001590 // Emit PopulateCompilationGraph() function.
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001591 EmitPopulateCompilationGraph(CompilationGraphRecord, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001592
1593 // EOF
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00001594 } catch (std::exception& Error) {
1595 throw Error.what() + std::string(" - usually this means a syntax error.");
1596 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001597}