mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-27 22:15:18 +00:00
Add external definitions for commonly-used template specializations and add
anchor methods to others. This eliminates the vtable/template method bloat in .o files that defining a cl::opt used to impose (~4K per .o file for one cp::opt<unsigned>). llvm-svn: 29909
This commit is contained in:
parent
a72e220a25
commit
91f098c9f7
@ -22,6 +22,7 @@
|
||||
|
||||
#include "llvm/Support/type_traits.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
@ -509,6 +510,9 @@ struct basic_parser_impl { // non-template implementation of basic_parser<t>
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "value"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
// basic_parser - The real basic parser is just a template wrapper that provides
|
||||
@ -519,7 +523,6 @@ struct basic_parser : public basic_parser_impl {
|
||||
typedef DataType parser_data_type;
|
||||
};
|
||||
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<bool>
|
||||
//
|
||||
@ -533,10 +536,15 @@ public:
|
||||
return ValueOptional;
|
||||
}
|
||||
|
||||
// getValueName - Do not print =<value> at all
|
||||
// getValueName - Do not print =<value> at all.
|
||||
virtual const char *getValueName() const { return 0; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<bool>);
|
||||
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<int>
|
||||
@ -549,8 +557,13 @@ public:
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "int"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<int>);
|
||||
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<unsigned>
|
||||
@ -563,8 +576,12 @@ public:
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "uint"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<double>
|
||||
@ -577,8 +594,12 @@ public:
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "number"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<double>);
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<float>
|
||||
@ -591,8 +612,12 @@ public:
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "number"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<float>);
|
||||
|
||||
//--------------------------------------------------
|
||||
// parser<std::string>
|
||||
@ -609,8 +634,13 @@ public:
|
||||
|
||||
// getValueName - Overload in subclass to provide a better default value.
|
||||
virtual const char *getValueName() const { return "string"; }
|
||||
|
||||
// An out-of-line virtual method to provide a 'home' for this class.
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// applicator class - This class is used because we must use partial
|
||||
// specialization to handle literal string arguments specially (const char* does
|
||||
@ -845,6 +875,11 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class opt<unsigned>);
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class opt<int>);
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class opt<std::string>);
|
||||
EXTERN_TEMPLATE_INSTANTIATION(class opt<bool>);
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// list_storage class
|
||||
|
||||
|
@ -28,11 +28,36 @@
|
||||
#include <cerrno>
|
||||
#include <cstring>
|
||||
using namespace llvm;
|
||||
|
||||
using namespace cl;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Template instantiations and anchors.
|
||||
//
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<bool>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<int>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<double>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<float>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
|
||||
|
||||
TEMPLATE_INSTANTIATION(class opt<unsigned>);
|
||||
TEMPLATE_INSTANTIATION(class opt<int>);
|
||||
TEMPLATE_INSTANTIATION(class opt<std::string>);
|
||||
TEMPLATE_INSTANTIATION(class opt<bool>);
|
||||
|
||||
void Option::anchor() {}
|
||||
void basic_parser_impl::anchor() {}
|
||||
void parser<bool>::anchor() {}
|
||||
void parser<int>::anchor() {}
|
||||
void parser<unsigned>::anchor() {}
|
||||
void parser<double>::anchor() {}
|
||||
void parser<float>::anchor() {}
|
||||
void parser<std::string>::anchor() {}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Globals for name and overview of program
|
||||
static std::string ProgramName ( "<premain>" );
|
||||
static std::string ProgramName = "<premain>";
|
||||
static const char *ProgramOverview = 0;
|
||||
|
||||
// This collects additional help to be printed.
|
||||
@ -47,7 +72,7 @@ extrahelp::extrahelp(const char* Help)
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Basic, shared command line option processing machinery...
|
||||
// Basic, shared command line option processing machinery.
|
||||
//
|
||||
|
||||
// Return the global command line option vector. Making it a function scoped
|
||||
@ -596,10 +621,6 @@ void cl::ParseCommandLineOptions(int &argc, char **argv,
|
||||
// Option Base class implementation
|
||||
//
|
||||
|
||||
// Out of line virtual function to provide home for the class.
|
||||
void Option::anchor() {
|
||||
}
|
||||
|
||||
bool Option::error(std::string Message, const char *ArgName) {
|
||||
if (ArgName == 0) ArgName = ArgStr;
|
||||
if (ArgName[0] == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user