You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
//===- OutputFormatCmd.cpp ------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "mcld/Script/OutputFormatCmd.h"
|
|
#include "mcld/Support/raw_ostream.h"
|
|
|
|
namespace mcld {
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// OutputFormatCmd
|
|
//===----------------------------------------------------------------------===//
|
|
OutputFormatCmd::OutputFormatCmd(const std::string& pFormat)
|
|
: ScriptCommand(ScriptCommand::OUTPUT_FORMAT) {
|
|
m_FormatList.push_back(pFormat);
|
|
}
|
|
|
|
OutputFormatCmd::OutputFormatCmd(const std::string& pDefault,
|
|
const std::string& pBig,
|
|
const std::string& pLittle)
|
|
: ScriptCommand(ScriptCommand::OUTPUT_FORMAT) {
|
|
m_FormatList.push_back(pDefault);
|
|
m_FormatList.push_back(pBig);
|
|
m_FormatList.push_back(pLittle);
|
|
}
|
|
|
|
OutputFormatCmd::~OutputFormatCmd() {
|
|
}
|
|
|
|
void OutputFormatCmd::dump() const {
|
|
mcld::outs() << "OUTPUT_FORMAT ( ";
|
|
assert(m_FormatList.size() == 1 || m_FormatList.size() == 3);
|
|
for (size_t i = 0; i < m_FormatList.size(); ++i) {
|
|
if (i != 0)
|
|
mcld::outs() << " , ";
|
|
mcld::outs() << m_FormatList[i];
|
|
}
|
|
mcld::outs() << " )\n";
|
|
}
|
|
|
|
void OutputFormatCmd::activate(Module& pModule) {
|
|
// TODO
|
|
}
|
|
|
|
} // namespace mcld
|