blob: ebf4b18aff2fae532da1bd26cd343d2ee23f2bb9 [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"
Mikhail Glushenkovb08aafd2008-11-12 00:04:46 +000023
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000024#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>
Chris Lattner52aa6862008-06-04 04:46:14 +000029#include <typeinfo>
Mikhail Glushenkovb08aafd2008-11-12 00:04:46 +000030
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000031using namespace llvm;
32
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +000033namespace {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000034
35//===----------------------------------------------------------------------===//
36/// Typedefs
37
38typedef std::vector<Record*> RecordVector;
39typedef std::vector<std::string> StrVector;
40
41//===----------------------------------------------------------------------===//
42/// Constants
43
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000044// Indentation strings.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000045const char * Indent1 = " ";
46const char * Indent2 = " ";
47const char * Indent3 = " ";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000048
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 Glushenkov4840b4c2008-12-07 16:41:11 +000058/// Id - An 'identity' function object.
59struct Id {
60 template<typename T>
61 void operator()(const T&) const {
62 }
63};
64
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000065int InitPtrToInt(const Init* ptr) {
66 const IntInit& val = dynamic_cast<const IntInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000067 return val.getValue();
68}
69
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +000070const std::string& InitPtrToString(const Init* ptr) {
71 const StringInit& val = dynamic_cast<const StringInit&>(*ptr);
72 return val.getValue();
73}
74
75const ListInit& InitPtrToList(const Init* ptr) {
76 const ListInit& val = dynamic_cast<const ListInit&>(*ptr);
77 return val;
78}
79
80const DagInit& InitPtrToDag(const Init* ptr) {
Mikhail Glushenkov35576b02008-05-30 06:10:19 +000081 const DagInit& val = dynamic_cast<const DagInit&>(*ptr);
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +000082 return val;
83}
84
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +000085// checkNumberOfArguments - Ensure that the number of args in d is
Mikhail Glushenkovdedba642008-05-30 06:08:50 +000086// less than or equal to min_arguments, otherwise throw an exception.
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +000087void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +000088 if (!d || d->getNumArgs() < min_arguments)
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +000089 throw "Property " + d->getOperator()->getAsString()
90 + " has too few arguments!";
91}
92
Mikhail Glushenkovdedba642008-05-30 06:08:50 +000093// isDagEmpty - is this DAG marked with an empty marker?
94bool isDagEmpty (const DagInit* d) {
95 return d->getOperator()->getAsString() == "empty";
96}
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +000097
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +000098// EscapeVariableName - Escape commas and other symbols not allowed
99// in the C++ variable names. Makes it possible to use options named
100// like "Wa," (useful for prefix options).
101std::string EscapeVariableName(const std::string& Var) {
102 std::string ret;
103 for (unsigned i = 0; i != Var.size(); ++i) {
104 char cur_char = Var[i];
105 if (cur_char == ',') {
106 ret += "_comma_";
107 }
108 else if (cur_char == '+') {
109 ret += "_plus_";
110 }
111 else if (cur_char == '-') {
112 ret += "_dash_";
113 }
114 else {
115 ret.push_back(cur_char);
116 }
117 }
118 return ret;
119}
120
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000121//===----------------------------------------------------------------------===//
122/// Back-end specific code
123
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000124
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000125/// OptionType - One of six different option types. See the
126/// documentation for detailed description of differences.
127/// Extern* options are those that are defined in some other plugin.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000128namespace OptionType {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000129 enum OptionType { Alias, Switch, Parameter, ParameterList,
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000130 Prefix, PrefixList};
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000131
132bool IsList (OptionType t) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000133 return (t == ParameterList || t == PrefixList);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000134}
135
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000136bool IsSwitch (OptionType t) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000137 return (t == Switch);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000138}
139
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000140bool IsParameter (OptionType t) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000141 return (t == Parameter || t == Prefix);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000142}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000143
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000144}
145
146OptionType::OptionType stringToOptionType(const std::string& T) {
147 if (T == "alias_option")
148 return OptionType::Alias;
149 else if (T == "switch_option")
150 return OptionType::Switch;
151 else if (T == "parameter_option")
152 return OptionType::Parameter;
153 else if (T == "parameter_list_option")
154 return OptionType::ParameterList;
155 else if (T == "prefix_option")
156 return OptionType::Prefix;
157 else if (T == "prefix_list_option")
158 return OptionType::PrefixList;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000159 else
160 throw "Unknown option type: " + T + '!';
161}
162
163namespace OptionDescriptionFlags {
164 enum OptionDescriptionFlags { Required = 0x1, Hidden = 0x2,
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000165 ReallyHidden = 0x4, Extern = 0x8 };
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000166}
167
168/// OptionDescription - Represents data contained in a single
169/// OptionList entry.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000170struct OptionDescription {
171 OptionType::OptionType Type;
172 std::string Name;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000173 unsigned Flags;
174 std::string Help;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000175
176 OptionDescription(OptionType::OptionType t = OptionType::Switch,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000177 const std::string& n = "",
178 const std::string& h = DefaultHelpString)
179 : Type(t), Name(n), Flags(0x0), Help(h)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000180 {}
181
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000182 /// GenTypeDeclaration - Returns the C++ variable type of this
183 /// option.
184 const char* GenTypeDeclaration() const;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000185
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000186 /// GenVariableName - Returns the variable name used in the
187 /// generated C++ code.
188 std::string GenVariableName() const;
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000189
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +0000190 /// Merge - Merge two option descriptions.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000191 void Merge (const OptionDescription& other);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000192
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000193 // Misc convenient getters/setters.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000194
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000195 bool isAlias() const;
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000196
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000197 bool isExtern() const;
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000198 void setExtern();
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000199
200 bool isRequired() const;
201 void setRequired();
202
203 bool isHidden() const;
204 void setHidden();
205
206 bool isReallyHidden() const;
207 void setReallyHidden();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000208};
209
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000210void OptionDescription::Merge (const OptionDescription& other)
211{
212 if (other.Type != Type)
213 throw "Conflicting definitions for the option " + Name + "!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000214
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000215 if (Help == other.Help || Help == DefaultHelpString)
216 Help = other.Help;
217 else if (other.Help != DefaultHelpString) {
218 llvm::cerr << "Warning: several different help strings"
219 " defined for option " + Name + "\n";
220 }
221
222 Flags |= other.Flags;
223}
224
225bool OptionDescription::isAlias() const {
226 return Type == OptionType::Alias;
227}
228
229bool OptionDescription::isExtern() const {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000230 return Flags & OptionDescriptionFlags::Extern;
231}
232void OptionDescription::setExtern() {
233 Flags |= OptionDescriptionFlags::Extern;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000234}
235
236bool OptionDescription::isRequired() const {
237 return Flags & OptionDescriptionFlags::Required;
238}
239void OptionDescription::setRequired() {
240 Flags |= OptionDescriptionFlags::Required;
241}
242
243bool OptionDescription::isHidden() const {
244 return Flags & OptionDescriptionFlags::Hidden;
245}
246void OptionDescription::setHidden() {
247 Flags |= OptionDescriptionFlags::Hidden;
248}
249
250bool OptionDescription::isReallyHidden() const {
251 return Flags & OptionDescriptionFlags::ReallyHidden;
252}
253void OptionDescription::setReallyHidden() {
254 Flags |= OptionDescriptionFlags::ReallyHidden;
255}
256
257const char* OptionDescription::GenTypeDeclaration() const {
258 switch (Type) {
259 case OptionType::Alias:
260 return "cl::alias";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000261 case OptionType::PrefixList:
262 case OptionType::ParameterList:
263 return "cl::list<std::string>";
264 case OptionType::Switch:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000265 return "cl::opt<bool>";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000266 case OptionType::Parameter:
267 case OptionType::Prefix:
268 default:
269 return "cl::opt<std::string>";
270 }
271}
272
273std::string OptionDescription::GenVariableName() const {
274 const std::string& EscapedName = EscapeVariableName(Name);
275 switch (Type) {
276 case OptionType::Alias:
277 return "AutoGeneratedAlias_" + EscapedName;
278 case OptionType::PrefixList:
279 case OptionType::ParameterList:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000280 return "AutoGeneratedList_" + EscapedName;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000281 case OptionType::Switch:
282 return "AutoGeneratedSwitch_" + EscapedName;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000283 case OptionType::Prefix:
284 case OptionType::Parameter:
285 default:
286 return "AutoGeneratedParameter_" + EscapedName;
287 }
288}
289
290/// OptionDescriptions - An OptionDescription array plus some helper
291/// functions.
292class OptionDescriptions {
293 typedef StringMap<OptionDescription> container_type;
294
295 /// Descriptions - A list of OptionDescriptions.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000296 container_type Descriptions;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000297
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000298public:
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000299 /// FindOption - exception-throwing wrapper for find().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000300 const OptionDescription& FindOption(const std::string& OptName) const;
Mikhail Glushenkova5922cc2008-05-06 17:22:03 +0000301
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000302 /// insertDescription - Insert new OptionDescription into
303 /// OptionDescriptions list
304 void InsertDescription (const OptionDescription& o);
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000305
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000306 // Support for STL-style iteration
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000307 typedef container_type::const_iterator const_iterator;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000308 const_iterator begin() const { return Descriptions.begin(); }
309 const_iterator end() const { return Descriptions.end(); }
310};
311
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000312const OptionDescription&
313OptionDescriptions::FindOption(const std::string& OptName) const
314{
315 const_iterator I = Descriptions.find(OptName);
316 if (I != Descriptions.end())
317 return I->second;
318 else
319 throw OptName + ": no such option!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000320}
321
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000322void OptionDescriptions::InsertDescription (const OptionDescription& o)
323{
324 container_type::iterator I = Descriptions.find(o.Name);
325 if (I != Descriptions.end()) {
326 OptionDescription& D = I->second;
327 D.Merge(o);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000328 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000329 else {
330 Descriptions[o.Name] = o;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000331 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000332}
333
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000334/// HandlerTable - A base class for function objects implemented as
335/// 'tables of handlers'.
336template <class T>
337class HandlerTable {
338protected:
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000339 // Implementation details.
340
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000341 /// Handler -
342 typedef void (T::* Handler) (const DagInit*);
343 /// HandlerMap - A map from property names to property handlers
344 typedef StringMap<Handler> HandlerMap;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000345
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000346 static HandlerMap Handlers_;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000347 static bool staticMembersInitialized_;
348
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000349 T* childPtr;
350public:
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000351
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000352 HandlerTable(T* cp) : childPtr(cp)
353 {}
354
355 /// operator() - Just forwards to the corresponding property
356 /// handler.
357 void operator() (Init* i) {
358 const DagInit& property = InitPtrToDag(i);
359 const std::string& property_name = property.getOperator()->getAsString();
360 typename HandlerMap::iterator method = Handlers_.find(property_name);
361
362 if (method != Handlers_.end()) {
363 Handler h = method->second;
364 (childPtr->*h)(&property);
365 }
366 else {
367 throw "No handler found for property " + property_name + "!";
368 }
369 }
370
371 void AddHandler(const char* Property, Handler Handl) {
372 Handlers_[Property] = Handl;
373 }
374};
375
376template <class T> typename HandlerTable<T>::HandlerMap
377HandlerTable<T>::Handlers_;
378template <class T> bool HandlerTable<T>::staticMembersInitialized_ = false;
379
380
381/// CollectOptionProperties - Function object for iterating over an
382/// option property list.
383class CollectOptionProperties : public HandlerTable<CollectOptionProperties> {
384private:
385
386 /// optDescs_ - OptionDescriptions table. This is where the
387 /// information is stored.
388 OptionDescription& optDesc_;
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000389
390public:
391
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000392 explicit CollectOptionProperties(OptionDescription& OD)
393 : HandlerTable<CollectOptionProperties>(this), optDesc_(OD)
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000394 {
395 if (!staticMembersInitialized_) {
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000396 AddHandler("extern", &CollectOptionProperties::onExtern);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000397 AddHandler("help", &CollectOptionProperties::onHelp);
398 AddHandler("hidden", &CollectOptionProperties::onHidden);
399 AddHandler("really_hidden", &CollectOptionProperties::onReallyHidden);
400 AddHandler("required", &CollectOptionProperties::onRequired);
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000401
402 staticMembersInitialized_ = true;
403 }
404 }
405
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000406private:
407
408 /// Option property handlers --
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000409 /// Methods that handle option properties such as (help) or (hidden).
Mikhail Glushenkov50084e82008-09-22 20:46:19 +0000410
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000411 void onExtern (const DagInit* d) {
412 checkNumberOfArguments(d, 0);
413 optDesc_.setExtern();
414 }
415
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000416 void onHelp (const DagInit* d) {
417 checkNumberOfArguments(d, 1);
Mikhail Glushenkov0e70fb52008-12-07 16:47:12 +0000418 optDesc_.Help = InitPtrToString(d->getArg(0));
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000419 }
420
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000421 void onHidden (const DagInit* d) {
422 checkNumberOfArguments(d, 0);
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000423 optDesc_.setHidden();
424 }
425
426 void onReallyHidden (const DagInit* d) {
427 checkNumberOfArguments(d, 0);
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +0000428 optDesc_.setReallyHidden();
429 }
430
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000431 void onRequired (const DagInit* d) {
432 checkNumberOfArguments(d, 0);
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000433 optDesc_.setRequired();
434 }
435
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000436};
437
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000438/// AddOption - A function object that is applied to every option
439/// description. Used by CollectOptionDescriptions.
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000440class AddOption {
441private:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000442 OptionDescriptions& OptDescs_;
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000443
444public:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000445 explicit AddOption(OptionDescriptions& OD) : OptDescs_(OD)
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000446 {}
447
448 void operator()(const Init* i) {
449 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000450 checkNumberOfArguments(&d, 1);
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000451
452 const OptionType::OptionType Type =
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000453 stringToOptionType(d.getOperator()->getAsString());
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000454 const std::string& Name = InitPtrToString(d.getArg(0));
455
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000456 OptionDescription OD(Type, Name);
457
458 if (!OD.isExtern())
459 checkNumberOfArguments(&d, 2);
460
461 if (OD.isAlias()) {
462 // Aliases store the aliased option name in the 'Help' field.
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000463 OD.Help = InitPtrToString(d.getArg(1));
464 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000465 else if (!OD.isExtern()) {
466 processOptionProperties(&d, OD);
467 }
468 OptDescs_.InsertDescription(OD);
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000469 }
470
471private:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000472 /// processOptionProperties - Go through the list of option
473 /// properties and call a corresponding handler for each.
474 static void processOptionProperties (const DagInit* d, OptionDescription& o) {
475 checkNumberOfArguments(d, 2);
476 DagInit::const_arg_iterator B = d->arg_begin();
477 // Skip the first argument: it's always the option name.
478 ++B;
479 std::for_each(B, d->arg_end(), CollectOptionProperties(o));
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000480 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000481
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000482};
483
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000484/// CollectOptionDescriptions - Collects option properties from all
485/// OptionLists.
486void CollectOptionDescriptions (RecordVector::const_iterator B,
487 RecordVector::const_iterator E,
488 OptionDescriptions& OptDescs)
489{
490 // For every OptionList:
491 for (; B!=E; ++B) {
492 RecordVector::value_type T = *B;
493 // Throws an exception if the value does not exist.
494 ListInit* PropList = T->getValueAsListInit("options");
Mikhail Glushenkove62df252008-05-30 06:27:29 +0000495
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000496 // For every option description in this list:
497 // collect the information and
498 std::for_each(PropList->begin(), PropList->end(), AddOption(OptDescs));
499 }
500}
501
502// Tool information record
503
504namespace ToolFlags {
505 enum ToolFlags { Join = 0x1, Sink = 0x2 };
506}
507
508struct ToolDescription : public RefCountedBase<ToolDescription> {
509 std::string Name;
510 Init* CmdLine;
511 Init* Actions;
512 StrVector InLanguage;
513 std::string OutLanguage;
514 std::string OutputSuffix;
515 unsigned Flags;
516
517 // Various boolean properties
518 void setSink() { Flags |= ToolFlags::Sink; }
519 bool isSink() const { return Flags & ToolFlags::Sink; }
520 void setJoin() { Flags |= ToolFlags::Join; }
521 bool isJoin() const { return Flags & ToolFlags::Join; }
522
523 // Default ctor here is needed because StringMap can only store
524 // DefaultConstructible objects
525 ToolDescription() : CmdLine(0), Actions(0), Flags(0) {}
526 ToolDescription (const std::string& n)
527 : Name(n), CmdLine(0), Actions(0), Flags(0)
528 {}
529};
530
531/// ToolDescriptions - A list of Tool information records.
532typedef std::vector<IntrusiveRefCntPtr<ToolDescription> > ToolDescriptions;
533
534
535/// CollectToolProperties - Function object for iterating over a list of
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +0000536/// tool property records.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000537class CollectToolProperties : public HandlerTable<CollectToolProperties> {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000538private:
539
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000540 /// toolDesc_ - Properties of the current Tool. This is where the
541 /// information is stored.
542 ToolDescription& toolDesc_;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000543
544public:
545
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000546 explicit CollectToolProperties (ToolDescription& d)
547 : HandlerTable<CollectToolProperties>(this) , toolDesc_(d)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000548 {
549 if (!staticMembersInitialized_) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000550
551 AddHandler("actions", &CollectToolProperties::onActions);
552 AddHandler("cmd_line", &CollectToolProperties::onCmdLine);
553 AddHandler("in_language", &CollectToolProperties::onInLanguage);
554 AddHandler("join", &CollectToolProperties::onJoin);
555 AddHandler("out_language", &CollectToolProperties::onOutLanguage);
556 AddHandler("output_suffix", &CollectToolProperties::onOutputSuffix);
557 AddHandler("sink", &CollectToolProperties::onSink);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000558
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000559 staticMembersInitialized_ = true;
560 }
561 }
562
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000563private:
564
565 /// Property handlers --
566 /// Functions that extract information about tool properties from
567 /// DAG representation.
568
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000569 void onActions (const DagInit* d) {
570 checkNumberOfArguments(d, 1);
Mikhail Glushenkov8d489a82008-12-07 16:45:12 +0000571 Init* Case = d->getArg(0);
572 if (typeid(*Case) != typeid(DagInit) ||
573 static_cast<DagInit*>(Case)->getOperator()->getAsString() != "case")
574 throw
575 std::string("The argument to (actions) should be a 'case' construct!");
576 toolDesc_.Actions = Case;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000577 }
578
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000579 void onCmdLine (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000580 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000581 toolDesc_.CmdLine = d->getArg(0);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000582 }
583
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000584 void onInLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000585 checkNumberOfArguments(d, 1);
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000586 Init* arg = d->getArg(0);
587
588 // Find out the argument's type.
589 if (typeid(*arg) == typeid(StringInit)) {
590 // It's a string.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000591 toolDesc_.InLanguage.push_back(InitPtrToString(arg));
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000592 }
593 else {
594 // It's a list.
595 const ListInit& lst = InitPtrToList(arg);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000596 StrVector& out = toolDesc_.InLanguage;
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000597
598 // Copy strings to the output vector.
599 for (ListInit::const_iterator B = lst.begin(), E = lst.end();
600 B != E; ++B) {
601 out.push_back(InitPtrToString(*B));
602 }
603
604 // Remove duplicates.
605 std::sort(out.begin(), out.end());
606 StrVector::iterator newE = std::unique(out.begin(), out.end());
607 out.erase(newE, out.end());
608 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000609 }
610
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000611 void onJoin (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000612 checkNumberOfArguments(d, 0);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000613 toolDesc_.setJoin();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000614 }
615
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000616 void onOutLanguage (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000617 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000618 toolDesc_.OutLanguage = InitPtrToString(d->getArg(0));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000619 }
620
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000621 void onOutputSuffix (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000622 checkNumberOfArguments(d, 1);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000623 toolDesc_.OutputSuffix = InitPtrToString(d->getArg(0));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000624 }
625
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +0000626 void onSink (const DagInit* d) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000627 checkNumberOfArguments(d, 0);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000628 toolDesc_.setSink();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000629 }
630
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000631};
632
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000633
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000634/// CollectToolDescriptions - Gather information about tool properties
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000635/// from the parsed TableGen data (basically a wrapper for the
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000636/// CollectToolProperties function object).
637void CollectToolDescriptions (RecordVector::const_iterator B,
638 RecordVector::const_iterator E,
639 ToolDescriptions& ToolDescs)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000640{
641 // Iterate over a properties list of every Tool definition
642 for (;B!=E;++B) {
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +0000643 const Record* T = *B;
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000644 // Throws an exception if the value does not exist.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000645 ListInit* PropList = T->getValueAsListInit("properties");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000646
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000647 IntrusiveRefCntPtr<ToolDescription>
648 ToolDesc(new ToolDescription(T->getName()));
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000649
650 std::for_each(PropList->begin(), PropList->end(),
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000651 CollectToolProperties(*ToolDesc));
652 ToolDescs.push_back(ToolDesc);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +0000653 }
654}
655
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000656/// FillInEdgeVector - Merge all compilation graph definitions into
657/// one single edge list.
658void FillInEdgeVector(RecordVector::const_iterator B,
659 RecordVector::const_iterator E, RecordVector& Out) {
660 for (; B != E; ++B) {
661 const ListInit* edges = (*B)->getValueAsListInit("edges");
Mikhail Glushenkovbf774352008-05-30 06:27:02 +0000662
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000663 for (unsigned i = 0; i < edges->size(); ++i)
664 Out.push_back(edges->getElementAsRecord(i));
665 }
666}
667
668/// CalculatePriority - Calculate the priority of this plugin.
669int CalculatePriority(RecordVector::const_iterator B,
670 RecordVector::const_iterator E) {
671 int total = 0;
Mikhail Glushenkoveb71ecf2008-11-17 17:30:25 +0000672 for (; B!=E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000673 total += static_cast<int>((*B)->getValueAsInt("priority"));
674 }
675 return total;
676}
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000677
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000678/// NotInGraph - Helper function object for FilterNotInGraph.
679struct NotInGraph {
680private:
681 const llvm::StringSet<>& ToolsInGraph_;
682
683public:
684 NotInGraph(const llvm::StringSet<>& ToolsInGraph)
685 : ToolsInGraph_(ToolsInGraph)
686 {}
687
688 bool operator()(const IntrusiveRefCntPtr<ToolDescription>& x) {
689 return (ToolsInGraph_.count(x->Name) == 0);
690 }
691};
692
693/// FilterNotInGraph - Filter out from ToolDescs all Tools not
694/// mentioned in the compilation graph definition.
695void FilterNotInGraph (const RecordVector& EdgeVector,
696 ToolDescriptions& ToolDescs) {
697
698 // List all tools mentioned in the graph.
699 llvm::StringSet<> ToolsInGraph;
700
701 for (RecordVector::const_iterator B = EdgeVector.begin(),
702 E = EdgeVector.end(); B != E; ++B) {
703
704 const Record* Edge = *B;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000705 const std::string& NodeA = Edge->getValueAsString("a");
706 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000707
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000708 if (NodeA != "root")
709 ToolsInGraph.insert(NodeA);
710 ToolsInGraph.insert(NodeB);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000711 }
712
713 // Filter ToolPropertiesList.
714 ToolDescriptions::iterator new_end =
715 std::remove_if(ToolDescs.begin(), ToolDescs.end(),
716 NotInGraph(ToolsInGraph));
717 ToolDescs.erase(new_end, ToolDescs.end());
718}
719
720/// FillInToolToLang - Fills in two tables that map tool names to
721/// (input, output) languages. Helper function used by TypecheckGraph().
722void FillInToolToLang (const ToolDescriptions& ToolDescs,
723 StringMap<StringSet<> >& ToolToInLang,
724 StringMap<std::string>& ToolToOutLang) {
725 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
726 E = ToolDescs.end(); B != E; ++B) {
727 const ToolDescription& D = *(*B);
728 for (StrVector::const_iterator B = D.InLanguage.begin(),
729 E = D.InLanguage.end(); B != E; ++B)
730 ToolToInLang[D.Name].insert(*B);
731 ToolToOutLang[D.Name] = D.OutLanguage;
Mikhail Glushenkovd638e852008-05-30 06:26:08 +0000732 }
733}
734
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000735/// TypecheckGraph - Check that names for output and input languages
736/// on all edges do match. This doesn't do much when the information
737/// about the whole graph is not available (i.e. when compiling most
738/// plugins).
739void TypecheckGraph (const RecordVector& EdgeVector,
740 const ToolDescriptions& ToolDescs) {
741 StringMap<StringSet<> > ToolToInLang;
742 StringMap<std::string> ToolToOutLang;
743
744 FillInToolToLang(ToolDescs, ToolToInLang, ToolToOutLang);
745 StringMap<std::string>::iterator IAE = ToolToOutLang.end();
746 StringMap<StringSet<> >::iterator IBE = ToolToInLang.end();
747
748 for (RecordVector::const_iterator B = EdgeVector.begin(),
749 E = EdgeVector.end(); B != E; ++B) {
750 const Record* Edge = *B;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000751 const std::string& NodeA = Edge->getValueAsString("a");
752 const std::string& NodeB = Edge->getValueAsString("b");
753 StringMap<std::string>::iterator IA = ToolToOutLang.find(NodeA);
754 StringMap<StringSet<> >::iterator IB = ToolToInLang.find(NodeB);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000755
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000756 if (NodeA != "root") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000757 if (IA != IAE && IB != IBE && IB->second.count(IA->second) == 0)
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000758 throw "Edge " + NodeA + "->" + NodeB
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000759 + ": output->input language mismatch";
760 }
761
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +0000762 if (NodeB == "root")
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000763 throw std::string("Edges back to the root are not allowed!");
764 }
765}
766
767/// WalkCase - Walks the 'case' expression DAG and invokes
768/// TestCallback on every test, and StatementCallback on every
769/// statement. Handles 'case' nesting, but not the 'and' and 'or'
770/// combinators.
771// TODO: Re-implement EmitCaseConstructHandler on top of this function?
772template <typename F1, typename F2>
773void WalkCase(Init* Case, F1 TestCallback, F2 StatementCallback) {
774 const DagInit& d = InitPtrToDag(Case);
775 bool even = false;
776 for (DagInit::const_arg_iterator B = d.arg_begin(), E = d.arg_end();
777 B != E; ++B) {
778 Init* arg = *B;
779 if (even && dynamic_cast<DagInit*>(arg)
780 && static_cast<DagInit*>(arg)->getOperator()->getAsString() == "case")
781 WalkCase(arg, TestCallback, StatementCallback);
782 else if (!even)
783 TestCallback(arg);
784 else
785 StatementCallback(arg);
786 even = !even;
787 }
788}
789
790/// ExtractOptionNames - A helper function object used by
791/// CheckForSuperfluousOptions() to walk the 'case' DAG.
792class ExtractOptionNames {
793 llvm::StringSet<>& OptionNames_;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000794
Mikhail Glushenkovccce1922008-12-07 16:42:22 +0000795 void processDag(const Init* Statement) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000796 const DagInit& Stmt = InitPtrToDag(Statement);
797 const std::string& ActionName = Stmt.getOperator()->getAsString();
798 if (ActionName == "forward" || ActionName == "forward_as" ||
799 ActionName == "unpack_values" || ActionName == "switch_on" ||
800 ActionName == "parameter_equals" || ActionName == "element_in_list" ||
801 ActionName == "not_empty") {
802 checkNumberOfArguments(&Stmt, 1);
803 const std::string& Name = InitPtrToString(Stmt.getArg(0));
804 OptionNames_.insert(Name);
805 }
806 else if (ActionName == "and" || ActionName == "or") {
807 for (unsigned i = 0, NumArgs = Stmt.getNumArgs(); i < NumArgs; ++i) {
Mikhail Glushenkovccce1922008-12-07 16:42:22 +0000808 this->processDag(Stmt.getArg(i));
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000809 }
810 }
811 }
Mikhail Glushenkovccce1922008-12-07 16:42:22 +0000812
813public:
814 ExtractOptionNames(llvm::StringSet<>& OptionNames) : OptionNames_(OptionNames)
815 {}
816
817 void operator()(const Init* Statement) {
818 if (typeid(*Statement) == typeid(ListInit)) {
819 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
820 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
821 B != E; ++B)
822 this->processDag(*B);
823 }
824 else {
825 this->processDag(Statement);
826 }
827 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000828};
829
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000830/// CheckForSuperfluousOptions - Check that there are no side
831/// effect-free options (specified only in the OptionList). Otherwise,
832/// output a warning.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000833void CheckForSuperfluousOptions (const RecordVector& Edges,
834 const ToolDescriptions& ToolDescs,
835 const OptionDescriptions& OptDescs) {
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000836 llvm::StringSet<> nonSuperfluousOptions;
837
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000838 // Add all options mentioned in the ToolDesc.Actions to the set of
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000839 // non-superfluous options.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000840 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
841 E = ToolDescs.end(); B != E; ++B) {
842 const ToolDescription& TD = *(*B);
843 ExtractOptionNames Callback(nonSuperfluousOptions);
844 if (TD.Actions)
845 WalkCase(TD.Actions, Callback, Callback);
846 }
847
848 // Add all options mentioned in the 'case' clauses of the
849 // OptionalEdges of the compilation graph to the set of
850 // non-superfluous options.
851 for (RecordVector::const_iterator B = Edges.begin(), E = Edges.end();
852 B != E; ++B) {
853 const Record* Edge = *B;
854 DagInit* Weight = Edge->getValueAsDag("weight");
855
856 if (!isDagEmpty(Weight))
857 WalkCase(Weight, ExtractOptionNames(nonSuperfluousOptions), Id());
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000858 }
859
860 // Check that all options in OptDescs belong to the set of
861 // non-superfluous options.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000862 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000863 E = OptDescs.end(); B != E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000864 const OptionDescription& Val = B->second;
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000865 if (!nonSuperfluousOptions.count(Val.Name)
866 && Val.Type != OptionType::Alias)
Mikhail Glushenkovfa990682008-11-17 17:29:18 +0000867 llvm::cerr << "Warning: option '-" << Val.Name << "' has no effect! "
Mikhail Glushenkove5fcb552008-05-30 06:28:37 +0000868 "Probable cause: this option is specified only in the OptionList.\n";
869 }
870}
871
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000872/// EmitCaseTest1Arg - Helper function used by
873/// EmitCaseConstructHandler.
874bool EmitCaseTest1Arg(const std::string& TestName,
875 const DagInit& d,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000876 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000877 std::ostream& O) {
878 checkNumberOfArguments(&d, 1);
879 const std::string& OptName = InitPtrToString(d.getArg(0));
880 if (TestName == "switch_on") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000881 const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
882 if (!OptionType::IsSwitch(OptDesc.Type))
883 throw OptName + ": incorrect option type - should be a switch!";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000884 O << OptDesc.GenVariableName();
885 return true;
886 } else if (TestName == "input_languages_contain") {
887 O << "InLangs.count(\"" << OptName << "\") != 0";
888 return true;
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +0000889 } else if (TestName == "in_language") {
Mikhail Glushenkov56a625a2008-09-22 20:48:22 +0000890 // This works only for single-argument Tool::GenerateAction. Join
891 // tools can process several files in different languages simultaneously.
892
893 // TODO: make this work with Edge::Weight (if possible).
Mikhail Glushenkovcdbfa1a2008-09-22 20:47:46 +0000894 O << "LangMap.GetLanguage(inFile) == \"" << OptName << '\"';
Mikhail Glushenkov242d0e62008-05-30 06:19:52 +0000895 return true;
896 } else if (TestName == "not_empty") {
Mikhail Glushenkovb4833872008-05-30 06:24:07 +0000897 if (OptName == "o") {
898 O << "!OutputFilename.empty()";
899 return true;
900 }
901 else {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000902 const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
903 if (OptionType::IsSwitch(OptDesc.Type))
904 throw OptName
905 + ": incorrect option type - should be a list or parameter!";
Mikhail Glushenkovb4833872008-05-30 06:24:07 +0000906 O << '!' << OptDesc.GenVariableName() << ".empty()";
907 return true;
908 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000909 }
910
911 return false;
912}
913
914/// EmitCaseTest2Args - Helper function used by
915/// EmitCaseConstructHandler.
916bool EmitCaseTest2Args(const std::string& TestName,
917 const DagInit& d,
918 const char* IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000919 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000920 std::ostream& O) {
921 checkNumberOfArguments(&d, 2);
922 const std::string& OptName = InitPtrToString(d.getArg(0));
923 const std::string& OptArg = InitPtrToString(d.getArg(1));
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000924 const OptionDescription& OptDesc = OptDescs.FindOption(OptName);
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000925
926 if (TestName == "parameter_equals") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000927 if (!OptionType::IsParameter(OptDesc.Type))
928 throw OptName + ": incorrect option type - should be a parameter!";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000929 O << OptDesc.GenVariableName() << " == \"" << OptArg << "\"";
930 return true;
931 }
932 else if (TestName == "element_in_list") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000933 if (!OptionType::IsList(OptDesc.Type))
934 throw OptName + ": incorrect option type - should be a list!";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000935 const std::string& VarName = OptDesc.GenVariableName();
936 O << "std::find(" << VarName << ".begin(),\n"
937 << IndentLevel << Indent1 << VarName << ".end(), \""
938 << OptArg << "\") != " << VarName << ".end()";
939 return true;
940 }
941
942 return false;
943}
944
945// Forward declaration.
946// EmitLogicalOperationTest and EmitCaseTest are mutually recursive.
947void EmitCaseTest(const DagInit& d, const char* IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000948 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000949 std::ostream& O);
950
951/// EmitLogicalOperationTest - Helper function used by
952/// EmitCaseConstructHandler.
953void EmitLogicalOperationTest(const DagInit& d, const char* LogicOp,
954 const char* IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000955 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000956 std::ostream& O) {
957 O << '(';
958 for (unsigned j = 0, NumArgs = d.getNumArgs(); j < NumArgs; ++j) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +0000959 const DagInit& InnerTest = InitPtrToDag(d.getArg(j));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000960 EmitCaseTest(InnerTest, IndentLevel, OptDescs, O);
961 if (j != NumArgs - 1)
962 O << ")\n" << IndentLevel << Indent1 << ' ' << LogicOp << " (";
963 else
964 O << ')';
965 }
966}
967
968/// EmitCaseTest - Helper function used by EmitCaseConstructHandler.
969void EmitCaseTest(const DagInit& d, const char* IndentLevel,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000970 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000971 std::ostream& O) {
972 const std::string& TestName = d.getOperator()->getAsString();
973
974 if (TestName == "and")
975 EmitLogicalOperationTest(d, "&&", IndentLevel, OptDescs, O);
976 else if (TestName == "or")
977 EmitLogicalOperationTest(d, "||", IndentLevel, OptDescs, O);
978 else if (EmitCaseTest1Arg(TestName, d, OptDescs, O))
979 return;
980 else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O))
981 return;
982 else
983 throw TestName + ": unknown edge property!";
984}
985
986// Emit code that handles the 'case' construct.
987// Takes a function object that should emit code for every case clause.
988// Callback's type is
989// void F(Init* Statement, const char* IndentLevel, std::ostream& O).
990template <typename F>
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000991void EmitCaseConstructHandler(const Init* Dag, const char* IndentLevel,
Mikhail Glushenkov1d95e9f2008-05-31 13:43:21 +0000992 F Callback, bool EmitElseIf,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000993 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000994 std::ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +0000995 const DagInit* d = &InitPtrToDag(Dag);
996 if (d->getOperator()->getAsString() != "case")
997 throw std::string("EmitCaseConstructHandler should be invoked"
998 " only on 'case' expressions!");
Mikhail Glushenkov35576b02008-05-30 06:10:19 +0000999
Mikhail Glushenkov31681512008-05-30 06:15:47 +00001000 unsigned numArgs = d->getNumArgs();
1001 if (d->getNumArgs() < 2)
1002 throw "There should be at least one clause in the 'case' expression:\n"
1003 + d->getAsString();
1004
1005 for (unsigned i = 0; i != numArgs; ++i) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001006 const DagInit& Test = InitPtrToDag(d->getArg(i));
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001007
Mikhail Glushenkov31681512008-05-30 06:15:47 +00001008 // Emit the test.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001009 if (Test.getOperator()->getAsString() == "default") {
1010 if (i+2 != numArgs)
1011 throw std::string("The 'default' clause should be the last in the"
1012 "'case' construct!");
1013 O << IndentLevel << "else {\n";
1014 }
1015 else {
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001016 O << IndentLevel << ((i != 0 && EmitElseIf) ? "else if (" : "if (");
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001017 EmitCaseTest(Test, IndentLevel, OptDescs, O);
1018 O << ") {\n";
1019 }
1020
Mikhail Glushenkov31681512008-05-30 06:15:47 +00001021 // Emit the corresponding statement.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001022 ++i;
1023 if (i == numArgs)
1024 throw "Case construct handler: no corresponding action "
1025 "found for the test " + Test.getAsString() + '!';
1026
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001027 Init* arg = d->getArg(i);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001028 const DagInit* nd = dynamic_cast<DagInit*>(arg);
1029 if (nd && (nd->getOperator()->getAsString() == "case")) {
1030 // Handle the nested 'case'.
1031 EmitCaseConstructHandler(nd, (std::string(IndentLevel) + Indent1).c_str(),
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001032 Callback, EmitElseIf, OptDescs, O);
1033 }
1034 else {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001035 Callback(arg, (std::string(IndentLevel) + Indent1).c_str(), O);
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001036 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001037 O << IndentLevel << "}\n";
1038 }
1039}
1040
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001041/// SubstituteSpecialCommands - Perform string substitution for $CALL
1042/// and $ENV. Helper function used by EmitCmdLineVecFill().
1043std::string SubstituteSpecialCommands(const std::string& cmd) {
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001044 size_t cparen = cmd.find(")");
1045 std::string ret;
1046
1047 if (cmd.find("$CALL(") == 0) {
1048 if (cmd.size() == 6)
1049 throw std::string("$CALL invocation: empty argument list!");
1050
1051 ret += "hooks::";
1052 ret += std::string(cmd.begin() + 6, cmd.begin() + cparen);
1053 ret += "()";
1054 }
1055 else if (cmd.find("$ENV(") == 0) {
1056 if (cmd.size() == 5)
1057 throw std::string("$ENV invocation: empty argument list!");
1058
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00001059 ret += "checkCString(std::getenv(\"";
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001060 ret += std::string(cmd.begin() + 5, cmd.begin() + cparen);
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00001061 ret += "\"))";
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001062 }
1063 else {
1064 throw "Unknown special command: " + cmd;
1065 }
1066
1067 if (cmd.begin() + cparen + 1 != cmd.end()) {
1068 ret += " + std::string(\"";
1069 ret += (cmd.c_str() + cparen + 1);
1070 ret += "\")";
1071 }
1072
1073 return ret;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001074}
1075
1076/// EmitCmdLineVecFill - Emit code that fills in the command line
1077/// vector. Helper function used by EmitGenerateActionMethod().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001078void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001079 bool IsJoin, const char* IndentLevel,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001080 std::ostream& O) {
1081 StrVector StrVec;
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001082 SplitString(InitPtrToString(CmdLine), StrVec);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001083 if (StrVec.empty())
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001084 throw "Tool " + ToolName + " has empty command line!";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001085
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001086 StrVector::const_iterator I = StrVec.begin();
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001087 ++I;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001088 for (StrVector::const_iterator E = StrVec.end(); I != E; ++I) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001089 const std::string& cmd = *I;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001090 O << IndentLevel;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001091 if (cmd.at(0) == '$') {
1092 if (cmd == "$INFILE") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001093 if (IsJoin)
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001094 O << "for (PathVector::const_iterator B = inFiles.begin()"
1095 << ", E = inFiles.end();\n"
1096 << IndentLevel << "B != E; ++B)\n"
1097 << IndentLevel << Indent1 << "vec.push_back(B->toString());\n";
1098 else
1099 O << "vec.push_back(inFile.toString());\n";
1100 }
1101 else if (cmd == "$OUTFILE") {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001102 O << "vec.push_back(out_file);\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001103 }
1104 else {
Mikhail Glushenkov1e453b02008-05-30 06:13:29 +00001105 O << "vec.push_back(" << SubstituteSpecialCommands(cmd);
1106 O << ");\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001107 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001108 }
1109 else {
1110 O << "vec.push_back(\"" << cmd << "\");\n";
1111 }
1112 }
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001113 O << IndentLevel << "cmd = "
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001114 << ((StrVec[0][0] == '$') ? SubstituteSpecialCommands(StrVec[0])
1115 : "\"" + StrVec[0] + "\"")
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001116 << ";\n";
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001117}
1118
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001119/// EmitCmdLineVecFillCallback - A function object wrapper around
1120/// EmitCmdLineVecFill(). Used by EmitGenerateActionMethod() as an
1121/// argument to EmitCaseConstructHandler().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001122class EmitCmdLineVecFillCallback {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001123 bool IsJoin;
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001124 const std::string& ToolName;
1125 public:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001126 EmitCmdLineVecFillCallback(bool J, const std::string& TN)
1127 : IsJoin(J), ToolName(TN) {}
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001128
1129 void operator()(const Init* Statement, const char* IndentLevel,
1130 std::ostream& O) const
1131 {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001132 EmitCmdLineVecFill(Statement, ToolName, IsJoin,
1133 IndentLevel, O);
1134 }
1135};
1136
1137/// EmitForwardOptionPropertyHandlingCode - Helper function used to
1138/// implement EmitActionHandler. Emits code for
1139/// handling the (forward) and (forward_as) option properties.
1140void EmitForwardOptionPropertyHandlingCode (const OptionDescription& D,
1141 const char* Indent,
1142 const std::string& NewName,
1143 std::ostream& O) {
1144 const std::string& Name = NewName.empty()
1145 ? ("-" + D.Name)
1146 : NewName;
1147
1148 switch (D.Type) {
1149 case OptionType::Switch:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001150 O << Indent << "vec.push_back(\"" << Name << "\");\n";
1151 break;
1152 case OptionType::Parameter:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001153 O << Indent << "vec.push_back(\"" << Name << "\");\n";
1154 O << Indent << "vec.push_back(" << D.GenVariableName() << ");\n";
1155 break;
1156 case OptionType::Prefix:
1157 O << Indent << "vec.push_back(\"" << Name << "\" + "
1158 << D.GenVariableName() << ");\n";
1159 break;
1160 case OptionType::PrefixList:
1161 O << Indent << "for (" << D.GenTypeDeclaration()
1162 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1163 << Indent << "E = " << D.GenVariableName() << ".end(); B != E; ++B)\n"
1164 << Indent << Indent1 << "vec.push_back(\"" << Name << "\" + "
1165 << "*B);\n";
1166 break;
1167 case OptionType::ParameterList:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001168 O << Indent << "for (" << D.GenTypeDeclaration()
1169 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1170 << Indent << "E = " << D.GenVariableName()
1171 << ".end() ; B != E; ++B) {\n"
1172 << Indent << Indent1 << "vec.push_back(\"" << Name << "\");\n"
1173 << Indent << Indent1 << "vec.push_back(*B);\n"
1174 << Indent << "}\n";
1175 break;
1176 case OptionType::Alias:
1177 default:
1178 throw std::string("Aliases are not allowed in tool option descriptions!");
1179 }
1180}
1181
1182/// EmitActionHandler - Emit code that handles actions. Used by
1183/// EmitGenerateActionMethod() as an argument to
1184/// EmitCaseConstructHandler().
1185class EmitActionHandler {
1186 const OptionDescriptions& OptDescs;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001187
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001188 void processActionDag(const Init* Statement, const char* IndentLevel,
1189 std::ostream& O) const
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001190 {
1191 const DagInit& Dag = InitPtrToDag(Statement);
1192 const std::string& ActionName = Dag.getOperator()->getAsString();
1193
1194 if (ActionName == "append_cmd") {
1195 checkNumberOfArguments(&Dag, 1);
1196 const std::string& Cmd = InitPtrToString(Dag.getArg(0));
1197 O << IndentLevel << "vec.push_back(\"" << Cmd << "\");\n";
1198 }
1199 else if (ActionName == "forward") {
1200 checkNumberOfArguments(&Dag, 1);
1201 const std::string& Name = InitPtrToString(Dag.getArg(0));
1202 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1203 IndentLevel, "", O);
1204 }
1205 else if (ActionName == "forward_as") {
1206 checkNumberOfArguments(&Dag, 2);
1207 const std::string& Name = InitPtrToString(Dag.getArg(0));
1208 const std::string& NewName = InitPtrToString(Dag.getArg(0));
1209 EmitForwardOptionPropertyHandlingCode(OptDescs.FindOption(Name),
1210 IndentLevel, NewName, O);
1211 }
1212 else if (ActionName == "output_suffix") {
1213 checkNumberOfArguments(&Dag, 1);
1214 const std::string& OutSuf = InitPtrToString(Dag.getArg(0));
1215 O << IndentLevel << "output_suffix = \"" << OutSuf << "\";\n";
1216 }
1217 else if (ActionName == "stop_compilation") {
1218 O << IndentLevel << "stop_compilation = true;\n";
1219 }
1220 else if (ActionName == "unpack_values") {
1221 checkNumberOfArguments(&Dag, 1);
1222 const std::string& Name = InitPtrToString(Dag.getArg(0));
1223 const OptionDescription& D = OptDescs.FindOption(Name);
1224
1225 if (OptionType::IsList(D.Type)) {
1226 O << IndentLevel << "for (" << D.GenTypeDeclaration()
1227 << "::iterator B = " << D.GenVariableName() << ".begin(),\n"
1228 << IndentLevel << "E = " << D.GenVariableName()
1229 << ".end(); B != E; ++B)\n"
1230 << IndentLevel << Indent1 << "llvm::SplitString(*B, vec, \",\");\n";
1231 }
1232 else if (OptionType::IsParameter(D.Type)){
1233 O << Indent3 << "llvm::SplitString("
1234 << D.GenVariableName() << ", vec, \",\");\n";
1235 }
1236 else {
1237 throw "Option '" + D.Name +
1238 "': switches can't have the 'unpack_values' property!";
1239 }
1240 }
1241 else {
1242 throw "Unknown action name: " + ActionName + "!";
1243 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001244 }
Mikhail Glushenkovccce1922008-12-07 16:42:22 +00001245 public:
1246 EmitActionHandler(const OptionDescriptions& OD)
1247 : OptDescs(OD) {}
1248
1249 void operator()(const Init* Statement, const char* IndentLevel,
1250 std::ostream& O) const
1251 {
1252 if (typeid(*Statement) == typeid(ListInit)) {
1253 const ListInit& DagList = *static_cast<const ListInit*>(Statement);
1254 for (ListInit::const_iterator B = DagList.begin(), E = DagList.end();
1255 B != E; ++B)
1256 this->processActionDag(*B, IndentLevel, O);
1257 }
1258 else {
1259 this->processActionDag(Statement, IndentLevel, O);
1260 }
1261 }
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001262};
1263
1264// EmitGenerateActionMethod - Emit one of two versions of the
1265// Tool::GenerateAction() method.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001266void EmitGenerateActionMethod (const ToolDescription& D,
1267 const OptionDescriptions& OptDescs,
1268 bool IsJoin, std::ostream& O) {
1269 if (IsJoin)
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001270 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n";
1271 else
1272 O << Indent1 << "Action GenerateAction(const sys::Path& inFile,\n";
1273
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001274 O << Indent2 << "bool HasChildren,\n"
1275 << Indent2 << "const llvm::sys::Path& TempDir,\n"
Mikhail Glushenkovcdbfa1a2008-09-22 20:47:46 +00001276 << Indent2 << "const InputLanguagesSet& InLangs,\n"
1277 << Indent2 << "const LanguageMap& LangMap) const\n"
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001278 << Indent1 << "{\n"
foldre4a81682008-11-08 19:43:32 +00001279 << Indent2 << "std::string cmd;\n"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001280 << Indent2 << "std::vector<std::string> vec;\n"
1281 << Indent2 << "bool stop_compilation = !HasChildren;\n"
1282 << Indent2 << "const char* output_suffix = \"" << D.OutputSuffix << "\";\n"
1283 << Indent2 << "std::string out_file;\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001284
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001285 // For every understood option, emit handling code.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001286 if (D.Actions)
1287 EmitCaseConstructHandler(D.Actions, Indent2, EmitActionHandler(OptDescs),
1288 false, OptDescs, O);
1289
1290 O << '\n' << Indent2
1291 << "out_file = OutFilename(" << (IsJoin ? "sys::Path(),\n" : "inFile,\n")
1292 << Indent3 << "TempDir, stop_compilation, output_suffix).toString();\n\n";
1293
1294 // cmd_line is either a string or a 'case' construct.
1295 if (!D.CmdLine)
1296 throw "Tool " + D.Name + " has no cmd_line property!";
1297 else if (typeid(*D.CmdLine) == typeid(StringInit))
1298 EmitCmdLineVecFill(D.CmdLine, D.Name, IsJoin, Indent2, O);
1299 else
1300 EmitCaseConstructHandler(D.CmdLine, Indent2,
1301 EmitCmdLineVecFillCallback(IsJoin, D.Name),
1302 true, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001303
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001304 // Handle the Sink property.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001305 if (D.isSink()) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001306 O << Indent2 << "if (!" << SinkOptionName << ".empty()) {\n"
1307 << Indent3 << "vec.insert(vec.end(), "
1308 << SinkOptionName << ".begin(), " << SinkOptionName << ".end());\n"
1309 << Indent2 << "}\n";
1310 }
1311
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001312 O << Indent2 << "return Action(cmd, vec, stop_compilation, out_file);\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001313 << Indent1 << "}\n\n";
1314}
1315
Mikhail Glushenkov7adcf1e2008-05-09 08:27:26 +00001316/// EmitGenerateActionMethods - Emit two GenerateAction() methods for
1317/// a given Tool class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001318void EmitGenerateActionMethods (const ToolDescription& ToolDesc,
1319 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001320 std::ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001321 if (!ToolDesc.isJoin())
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001322 O << Indent1 << "Action GenerateAction(const PathVector& inFiles,\n"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001323 << Indent2 << "bool HasChildren,\n"
1324 << Indent2 << "const llvm::sys::Path& TempDir,\n"
Mikhail Glushenkovcdbfa1a2008-09-22 20:47:46 +00001325 << Indent2 << "const InputLanguagesSet& InLangs,\n"
1326 << Indent2 << "const LanguageMap& LangMap) const\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001327 << Indent1 << "{\n"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001328 << Indent2 << "throw std::runtime_error(\"" << ToolDesc.Name
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001329 << " is not a Join tool!\");\n"
1330 << Indent1 << "}\n\n";
1331 else
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001332 EmitGenerateActionMethod(ToolDesc, OptDescs, true, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001333
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001334 EmitGenerateActionMethod(ToolDesc, OptDescs, false, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001335}
1336
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001337/// EmitInOutLanguageMethods - Emit the [Input,Output]Language()
1338/// methods for a given Tool class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001339void EmitInOutLanguageMethods (const ToolDescription& D, std::ostream& O) {
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001340 O << Indent1 << "const char** InputLanguages() const {\n"
1341 << Indent2 << "return InputLanguages_;\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001342 << Indent1 << "}\n\n";
1343
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001344 if (D.OutLanguage.empty())
1345 throw "Tool " + D.Name + " has no 'out_language' property!";
1346
Mikhail Glushenkovd379d162008-05-06 17:24:26 +00001347 O << Indent1 << "const char* OutputLanguage() const {\n"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001348 << Indent2 << "return \"" << D.OutLanguage << "\";\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001349 << Indent1 << "}\n\n";
1350}
1351
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001352/// EmitNameMethod - Emit the Name() method for a given Tool class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001353void EmitNameMethod (const ToolDescription& D, std::ostream& O) {
Mikhail Glushenkovd379d162008-05-06 17:24:26 +00001354 O << Indent1 << "const char* Name() const {\n"
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001355 << Indent2 << "return \"" << D.Name << "\";\n"
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001356 << Indent1 << "}\n\n";
1357}
1358
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001359/// EmitIsJoinMethod - Emit the IsJoin() method for a given Tool
1360/// class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001361void EmitIsJoinMethod (const ToolDescription& D, std::ostream& O) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001362 O << Indent1 << "bool IsJoin() const {\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001363 if (D.isJoin())
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001364 O << Indent2 << "return true;\n";
1365 else
1366 O << Indent2 << "return false;\n";
1367 O << Indent1 << "}\n\n";
1368}
1369
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001370/// EmitStaticMemberDefinitions - Emit static member definitions for a
1371/// given Tool class.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001372void EmitStaticMemberDefinitions(const ToolDescription& D, std::ostream& O) {
1373 if (D.InLanguage.empty())
1374 throw "Tool " + D.Name + " has no 'in_language' property!";
1375
1376 O << "const char* " << D.Name << "::InputLanguages_[] = {";
1377 for (StrVector::const_iterator B = D.InLanguage.begin(),
1378 E = D.InLanguage.end(); B != E; ++B)
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001379 O << '\"' << *B << "\", ";
1380 O << "0};\n\n";
1381}
1382
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001383/// EmitToolClassDefinition - Emit a Tool class definition.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001384void EmitToolClassDefinition (const ToolDescription& D,
1385 const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001386 std::ostream& O) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001387 if (D.Name == "root")
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001388 return;
1389
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001390 // Header
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001391 O << "class " << D.Name << " : public ";
1392 if (D.isJoin())
Mikhail Glushenkov121889c2008-05-06 17:26:53 +00001393 O << "JoinTool";
1394 else
1395 O << "Tool";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001396
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001397 O << "{\nprivate:\n"
1398 << Indent1 << "static const char* InputLanguages_[];\n\n";
1399
1400 O << "public:\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001401 EmitNameMethod(D, O);
1402 EmitInOutLanguageMethods(D, O);
1403 EmitIsJoinMethod(D, O);
1404 EmitGenerateActionMethods(D, OptDescs, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001405
1406 // Close class definition
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001407 O << "};\n";
1408
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001409 EmitStaticMemberDefinitions(D, O);
Mikhail Glushenkov61923cb2008-05-30 06:24:49 +00001410
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001411}
1412
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001413/// EmitOptionDefintions - Iterate over a list of option descriptions
1414/// and emit registration code.
1415void EmitOptionDefintions (const OptionDescriptions& descs,
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001416 bool HasSink, bool HasExterns,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001417 std::ostream& O)
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001418{
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001419 std::vector<OptionDescription> Aliases;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001420
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001421 // Emit static cl::Option variables.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001422 for (OptionDescriptions::const_iterator B = descs.begin(),
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001423 E = descs.end(); B!=E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001424 const OptionDescription& val = B->second;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001425
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001426 if (val.Type == OptionType::Alias) {
1427 Aliases.push_back(val);
1428 continue;
1429 }
1430
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001431 if (val.isExtern())
1432 O << "extern ";
1433
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001434 O << val.GenTypeDeclaration() << ' '
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001435 << val.GenVariableName();
1436
1437 if (val.isExtern()) {
1438 O << ";\n";
1439 continue;
1440 }
1441
1442 O << "(\"" << val.Name << '\"';
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001443
1444 if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
1445 O << ", cl::Prefix";
1446
1447 if (val.isRequired()) {
1448 switch (val.Type) {
1449 case OptionType::PrefixList:
1450 case OptionType::ParameterList:
1451 O << ", cl::OneOrMore";
1452 break;
1453 default:
1454 O << ", cl::Required";
1455 }
1456 }
1457
Mikhail Glushenkovc9b650d2008-11-28 00:13:25 +00001458 if (val.isReallyHidden() || val.isHidden()) {
1459 if (val.isRequired())
1460 O << " |";
1461 else
1462 O << ",";
1463 if (val.isReallyHidden())
1464 O << " cl::ReallyHidden";
1465 else
1466 O << " cl::Hidden";
1467 }
1468
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001469 if (!val.Help.empty())
1470 O << ", cl::desc(\"" << val.Help << "\")";
1471
1472 O << ");\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001473 }
1474
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001475 // Emit the aliases (they should go after all the 'proper' options).
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001476 for (std::vector<OptionDescription>::const_iterator
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001477 B = Aliases.begin(), E = Aliases.end(); B != E; ++B) {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001478 const OptionDescription& val = *B;
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001479
1480 O << val.GenTypeDeclaration() << ' '
1481 << val.GenVariableName()
1482 << "(\"" << val.Name << '\"';
1483
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001484 const OptionDescription& D = descs.FindOption(val.Help);
1485 O << ", cl::aliasopt(" << D.GenVariableName() << ")";
Mikhail Glushenkovb623c322008-05-30 06:22:52 +00001486
1487 O << ", cl::desc(\"" << "An alias for -" + val.Help << "\"));\n";
1488 }
1489
1490 // Emit the sink option.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001491 if (HasSink)
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001492 O << (HasExterns ? "extern cl" : "cl")
1493 << "::list<std::string> " << SinkOptionName
1494 << (HasExterns ? ";\n" : "(cl::Sink);\n");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001495
1496 O << '\n';
1497}
1498
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001499/// EmitPopulateLanguageMap - Emit the PopulateLanguageMap() function.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001500void EmitPopulateLanguageMap (const RecordKeeper& Records, std::ostream& O)
1501{
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001502 // Generate code
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001503 O << "void PopulateLanguageMapLocal(LanguageMap& langMap) {\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001504
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00001505 // Get the relevant field out of RecordKeeper
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001506 const Record* LangMapRecord = Records.getDef("LanguageMap");
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001507
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00001508 // It is allowed for a plugin to have no language map.
1509 if (LangMapRecord) {
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001510
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00001511 ListInit* LangsToSuffixesList = LangMapRecord->getValueAsListInit("map");
1512 if (!LangsToSuffixesList)
1513 throw std::string("Error in the language map definition!");
1514
1515 for (unsigned i = 0; i < LangsToSuffixesList->size(); ++i) {
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001516 const Record* LangToSuffixes = LangsToSuffixesList->getElementAsRecord(i);
Mikhail Glushenkovfa990682008-11-17 17:29:18 +00001517
1518 const std::string& Lang = LangToSuffixes->getValueAsString("lang");
1519 const ListInit* Suffixes = LangToSuffixes->getValueAsListInit("suffixes");
1520
1521 for (unsigned i = 0; i < Suffixes->size(); ++i)
1522 O << Indent1 << "langMap[\""
1523 << InitPtrToString(Suffixes->getElement(i))
1524 << "\"] = \"" << Lang << "\";\n";
1525 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001526 }
1527
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001528 O << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001529}
1530
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001531/// IncDecWeight - Helper function passed to EmitCaseConstructHandler()
1532/// by EmitEdgeClass().
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001533void IncDecWeight (const Init* i, const char* IndentLevel,
1534 std::ostream& O) {
Mikhail Glushenkov0e92d2f2008-05-30 06:18:16 +00001535 const DagInit& d = InitPtrToDag(i);
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001536 const std::string& OpName = d.getOperator()->getAsString();
1537
1538 if (OpName == "inc_weight")
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001539 O << IndentLevel << "ret += ";
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001540 else if (OpName == "dec_weight")
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001541 O << IndentLevel << "ret -= ";
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001542 else
1543 throw "Unknown operator in edge properties list: " + OpName + '!';
1544
1545 if (d.getNumArgs() > 0)
1546 O << InitPtrToInt(d.getArg(0)) << ";\n";
1547 else
1548 O << "2;\n";
1549
Mikhail Glushenkovdfcad6c2008-05-06 18:18:20 +00001550}
1551
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001552/// EmitEdgeClass - Emit a single Edge# class.
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001553void EmitEdgeClass (unsigned N, const std::string& Target,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001554 DagInit* Case, const OptionDescriptions& OptDescs,
Mikhail Glushenkov35576b02008-05-30 06:10:19 +00001555 std::ostream& O) {
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001556
1557 // Class constructor.
1558 O << "class Edge" << N << ": public Edge {\n"
1559 << "public:\n"
1560 << Indent1 << "Edge" << N << "() : Edge(\"" << Target
1561 << "\") {}\n\n"
1562
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001563 // Function Weight().
Mikhail Glushenkovd6228882008-05-06 18:15:12 +00001564 << Indent1 << "unsigned Weight(const InputLanguagesSet& InLangs) const {\n"
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001565 << Indent2 << "unsigned ret = 0;\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001566
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001567 // Handle the 'case' construct.
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001568 EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
Mikhail Glushenkov7dbc0ab2008-05-06 18:14:24 +00001569
1570 O << Indent2 << "return ret;\n"
1571 << Indent1 << "};\n\n};\n\n";
Mikhail Glushenkov8d0d5d22008-05-06 17:23:14 +00001572}
1573
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001574/// EmitEdgeClasses - Emit Edge* classes that represent graph edges.
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001575void EmitEdgeClasses (const RecordVector& EdgeVector,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001576 const OptionDescriptions& OptDescs,
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001577 std::ostream& O) {
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001578 int i = 0;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00001579 for (RecordVector::const_iterator B = EdgeVector.begin(),
1580 E = EdgeVector.end(); B != E; ++B) {
1581 const Record* Edge = *B;
1582 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001583 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001584
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001585 if (!isDagEmpty(Weight))
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00001586 EmitEdgeClass(i, NodeB, Weight, OptDescs, O);
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001587 ++i;
Mikhail Glushenkov46d4e972008-05-06 16:36:06 +00001588 }
1589}
1590
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001591/// EmitPopulateCompilationGraph - Emit the PopulateCompilationGraph()
1592/// function.
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001593void EmitPopulateCompilationGraph (const RecordVector& EdgeVector,
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001594 const ToolDescriptions& ToolDescs,
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001595 std::ostream& O)
1596{
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001597 O << "void PopulateCompilationGraphLocal(CompilationGraph& G) {\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001598
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001599 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1600 E = ToolDescs.end(); B != E; ++B)
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001601 O << Indent1 << "G.insertNode(new " << (*B)->Name << "());\n";
Mikhail Glushenkov719c25812008-11-12 00:05:17 +00001602
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +00001603 O << '\n';
1604
Mikhail Glushenkov719c25812008-11-12 00:05:17 +00001605 // Insert edges.
1606
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001607 int i = 0;
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00001608 for (RecordVector::const_iterator B = EdgeVector.begin(),
1609 E = EdgeVector.end(); B != E; ++B) {
1610 const Record* Edge = *B;
1611 const std::string& NodeA = Edge->getValueAsString("a");
1612 const std::string& NodeB = Edge->getValueAsString("b");
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001613 DagInit* Weight = Edge->getValueAsDag("weight");
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001614
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00001615 O << Indent1 << "G.insertEdge(\"" << NodeA << "\", ";
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001616
Mikhail Glushenkovdedba642008-05-30 06:08:50 +00001617 if (isDagEmpty(Weight))
Mikhail Glushenkov02ec3a52008-12-07 16:44:47 +00001618 O << "new SimpleEdge(\"" << NodeB << "\")";
Mikhail Glushenkov761958d2008-05-06 16:36:50 +00001619 else
1620 O << "new Edge" << i << "()";
1621
1622 O << ");\n";
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001623 ++i;
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001624 }
1625
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001626 O << "}\n\n";
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001627}
1628
Mikhail Glushenkov793f63d2008-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().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001632class ExtractHookNames {
1633 llvm::StringSet<>& HookNames_;
1634public:
1635 ExtractHookNames(llvm::StringSet<>& HookNames)
1636 : HookNames_(HookNames_) {}
1637
1638 void operator()(const Init* CmdLine) {
1639 StrVector cmds;
1640 llvm::SplitString(InitPtrToString(CmdLine), cmds);
1641 for (StrVector::const_iterator B = cmds.begin(), E = cmds.end();
1642 B != E; ++B) {
1643 const std::string& cmd = *B;
1644 if (cmd.find("$CALL(") == 0) {
1645 if (cmd.size() == 6)
1646 throw std::string("$CALL invocation: empty argument list!");
1647 HookNames_.insert(std::string(cmd.begin() + 6,
1648 cmd.begin() + cmd.find(")")));
1649 }
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001650 }
1651 }
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001652};
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001653
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001654/// FillInHookNames - Actually extract the hook names from all command
1655/// line strings. Helper function used by EmitHookDeclarations().
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001656void FillInHookNames(const ToolDescriptions& ToolDescs,
1657 llvm::StringSet<>& HookNames)
1658{
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001659 // For all command lines:
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001660 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1661 E = ToolDescs.end(); B != E; ++B) {
1662 const ToolDescription& D = *(*B);
1663 if (!D.CmdLine)
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001664 continue;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001665 if (dynamic_cast<StringInit*>(D.CmdLine))
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001666 // This is a string.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001667 ExtractHookNames(HookNames).operator()(D.CmdLine);
Mikhail Glushenkovb24c8b22008-05-30 06:22:15 +00001668 else
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001669 // This is a 'case' construct.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001670 WalkCase(D.CmdLine, Id(), ExtractHookNames(HookNames));
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001671 }
1672}
1673
1674/// EmitHookDeclarations - Parse CmdLine fields of all the tool
1675/// property records and emit hook function declaration for each
1676/// instance of $CALL(HookName).
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001677void EmitHookDeclarations(const ToolDescriptions& ToolDescs, std::ostream& O) {
1678 llvm::StringSet<> HookNames;
1679 FillInHookNames(ToolDescs, HookNames);
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001680 if (HookNames.empty())
1681 return;
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001682
1683 O << "namespace hooks {\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001684 for (StringSet<>::const_iterator B = HookNames.begin(), E = HookNames.end();
1685 B != E; ++B)
1686 O << Indent1 << "std::string " << B->first() << "();\n";
Mikhail Glushenkov793f63d2008-05-30 06:12:24 +00001687
1688 O << "}\n\n";
1689}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001690
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001691/// EmitRegisterPlugin - Emit code to register this plugin.
Mikhail Glushenkoveb71ecf2008-11-17 17:30:25 +00001692void EmitRegisterPlugin(int Priority, std::ostream& O) {
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001693 O << "struct Plugin : public llvmc::BasePlugin {\n\n"
Mikhail Glushenkoveb71ecf2008-11-17 17:30:25 +00001694 << Indent1 << "int Priority() const { return " << Priority << "; }\n\n"
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001695 << Indent1 << "void PopulateLanguageMap(LanguageMap& langMap) const\n"
1696 << Indent1 << "{ PopulateLanguageMapLocal(langMap); }\n\n"
1697 << Indent1
1698 << "void PopulateCompilationGraph(CompilationGraph& graph) const\n"
1699 << Indent1 << "{ PopulateCompilationGraphLocal(graph); }\n"
1700 << "};\n\n"
1701
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001702 << "static llvmc::RegisterPlugin<Plugin> RP;\n\n";
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001703}
1704
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00001705/// EmitIncludes - Emit necessary #include directives and some
1706/// additional declarations.
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001707void EmitIncludes(std::ostream& O) {
Mikhail Glushenkov62ab3112008-09-22 20:50:40 +00001708 O << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n"
1709 << "#include \"llvm/CompilerDriver/Plugin.h\"\n"
1710 << "#include \"llvm/CompilerDriver/Tool.h\"\n\n"
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001711
1712 << "#include \"llvm/ADT/StringExtras.h\"\n"
1713 << "#include \"llvm/Support/CommandLine.h\"\n\n"
1714
1715 << "#include <cstdlib>\n"
1716 << "#include <stdexcept>\n\n"
1717
1718 << "using namespace llvm;\n"
1719 << "using namespace llvmc;\n\n"
1720
Mikhail Glushenkovb4890702008-11-12 12:41:18 +00001721 << "extern cl::opt<std::string> OutputFilename;\n\n"
1722
1723 << "inline const char* checkCString(const char* s)\n"
1724 << "{ return s == NULL ? \"\" : s; }\n\n";
Mikhail Glushenkov945522f2008-09-22 20:49:34 +00001725}
1726
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001727
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001728/// PluginData - Holds all information about a plugin.
1729struct PluginData {
1730 OptionDescriptions OptDescs;
1731 bool HasSink;
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001732 bool HasExterns;
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001733 ToolDescriptions ToolDescs;
1734 RecordVector Edges;
1735 int Priority;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001736};
1737
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001738/// HasSink - Go through the list of tool descriptions and check if
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001739/// there are any with the 'sink' property set.
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001740bool HasSink(const ToolDescriptions& ToolDescs) {
1741 for (ToolDescriptions::const_iterator B = ToolDescs.begin(),
1742 E = ToolDescs.end(); B != E; ++B)
1743 if ((*B)->isSink())
1744 return true;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001745
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001746 return false;
1747}
1748
1749/// HasExterns - Go through the list of option descriptions and check
1750/// if there are any external options.
1751bool HasExterns(const OptionDescriptions& OptDescs) {
1752 for (OptionDescriptions::const_iterator B = OptDescs.begin(),
1753 E = OptDescs.end(); B != E; ++B)
1754 if (B->second.isExtern())
1755 return true;
1756
1757 return false;
Mikhail Glushenkov973b3a32008-11-17 17:29:42 +00001758}
1759
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001760/// CollectPluginData - Collect tool and option properties,
1761/// compilation graph edges and plugin priority from the parse tree.
1762void CollectPluginData (const RecordKeeper& Records, PluginData& Data) {
1763 // Collect option properties.
1764 const RecordVector& OptionLists =
1765 Records.getAllDerivedDefinitions("OptionList");
1766 CollectOptionDescriptions(OptionLists.begin(), OptionLists.end(),
1767 Data.OptDescs);
1768
1769 // Collect tool properties.
1770 const RecordVector& Tools = Records.getAllDerivedDefinitions("Tool");
1771 CollectToolDescriptions(Tools.begin(), Tools.end(), Data.ToolDescs);
1772 Data.HasSink = HasSink(Data.ToolDescs);
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001773 Data.HasExterns = HasExterns(Data.OptDescs);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001774
1775 // Collect compilation graph edges.
1776 const RecordVector& CompilationGraphs =
1777 Records.getAllDerivedDefinitions("CompilationGraph");
1778 FillInEdgeVector(CompilationGraphs.begin(), CompilationGraphs.end(),
1779 Data.Edges);
1780
1781 // Calculate the priority of this plugin.
1782 const RecordVector& Priorities =
1783 Records.getAllDerivedDefinitions("PluginPriority");
1784 Data.Priority = CalculatePriority(Priorities.begin(), Priorities.end());
Mikhail Glushenkoveb71ecf2008-11-17 17:30:25 +00001785}
1786
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001787/// CheckPluginData - Perform some sanity checks on the collected data.
1788void CheckPluginData(PluginData& Data) {
1789 // Filter out all tools not mentioned in the compilation graph.
1790 FilterNotInGraph(Data.Edges, Data.ToolDescs);
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001791
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001792 // Typecheck the compilation graph.
1793 TypecheckGraph(Data.Edges, Data.ToolDescs);
1794
1795 // Check that there are no options without side effects (specified
1796 // only in the OptionList).
1797 CheckForSuperfluousOptions(Data.Edges, Data.ToolDescs, Data.OptDescs);
1798
Mikhail Glushenkovd24c1292008-11-28 00:13:47 +00001799}
1800
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001801void EmitPluginCode(const PluginData& Data, std::ostream& O) {
1802 // Emit file header.
1803 EmitIncludes(O);
1804
1805 // Emit global option registration code.
Mikhail Glushenkov9111ba22008-12-07 16:42:47 +00001806 EmitOptionDefintions(Data.OptDescs, Data.HasSink, Data.HasExterns, O);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001807
1808 // Emit hook declarations.
1809 EmitHookDeclarations(Data.ToolDescs, O);
1810
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001811 O << "namespace {\n\n";
1812
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001813 // Emit PopulateLanguageMap() function
1814 // (a language map maps from file extensions to language names).
1815 EmitPopulateLanguageMap(Records, O);
1816
1817 // Emit Tool classes.
1818 for (ToolDescriptions::const_iterator B = Data.ToolDescs.begin(),
1819 E = Data.ToolDescs.end(); B!=E; ++B)
1820 EmitToolClassDefinition(*(*B), Data.OptDescs, O);
1821
1822 // Emit Edge# classes.
1823 EmitEdgeClasses(Data.Edges, Data.OptDescs, O);
1824
1825 // Emit PopulateCompilationGraph() function.
1826 EmitPopulateCompilationGraph(Data.Edges, Data.ToolDescs, O);
1827
1828 // Emit code for plugin registration.
1829 EmitRegisterPlugin(Data.Priority, O);
1830
Mikhail Glushenkov64046a72008-12-11 10:34:18 +00001831 O << "} // End anonymous namespace.\n";
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001832 // EOF
1833}
1834
1835
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001836// End of anonymous namespace
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +00001837}
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001838
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001839/// run - The back-end entry point.
Mikhail Glushenkovc1f738d2008-05-06 18:12:03 +00001840void LLVMCConfigurationEmitter::run (std::ostream &O) {
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00001841 try {
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001842 PluginData Data;
Mikhail Glushenkovbe46ae12008-05-07 21:50:19 +00001843
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001844 CollectPluginData(Records, Data);
1845 CheckPluginData(Data);
1846
Mikhail Glushenkov34307a92008-05-06 18:08:59 +00001847 EmitSourceFileHeader("LLVMC Configuration Library", O);
Mikhail Glushenkov4840b4c2008-12-07 16:41:11 +00001848 EmitPluginCode(Data, O);
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001849
Mikhail Glushenkovffe736e2008-05-30 06:21:48 +00001850 } catch (std::exception& Error) {
1851 throw Error.what() + std::string(" - usually this means a syntax error.");
1852 }
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001853}