From 36604a60e8509a38cbfaeca779048cb6cd6f6682 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Wed, 15 Dec 2010 01:22:29 +0000 Subject: Remove ConvertToMAttrImpl, it became too '-march'-specific. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121828 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvmc/src/Hooks.cpp | 132 ++++++++++++++++++++++++---------------------- 1 file changed, 70 insertions(+), 62 deletions(-) (limited to 'tools') diff --git a/tools/llvmc/src/Hooks.cpp b/tools/llvmc/src/Hooks.cpp index 99b79e5..bcf4a53 100644 --- a/tools/llvmc/src/Hooks.cpp +++ b/tools/llvmc/src/Hooks.cpp @@ -22,68 +22,17 @@ inline unsigned NextHighestPowerOf2 (unsigned i) { typedef std::vector StrVec; typedef llvm::StringMap ArgMap; -/// ConvertToMAttrImpl - Common implementation of ConvertMArchToMAttr and -/// ConvertToMAttr. The optional Args parameter contains information about how -/// to transform special-cased values (for example, '-march=armv6' must be -/// forwarded as '-mattr=+v6'). -std::string ConvertToMAttrImpl(const StrVec& Opts, - const ArgMap* Args = 0, - const ArgMap* MCpuArgs = 0) { - std::string mattr("-mattr="); - std::string mcpu("-mcpu="); - bool mattrTouched = false; - bool mcpuTouched = false; - bool firstIter = true; - - for (StrVec::const_iterator B = Opts.begin(), E = Opts.end(); B!=E; ++B) { - const std::string& Arg = *B; - - if (firstIter) - firstIter = false; - else - mattr += ","; - - // Check if the argument is a special case. - if (Args != 0) { - ArgMap::const_iterator I = Args->find(Arg); - - if (I != Args->end()) { - mattr += '+'; - mattr += I->getValue(); - continue; - } - } - - // Check if the argument should be forwarded to -mcpu instead of -mattr. - if (MCpuArgs != 0 && !mcpuTouched) { - ArgMap::const_iterator I = MCpuArgs->find(Arg); - if (I != MCpuArgs->end()) { - mcpuTouched = true; - mcpu += I->getValue(); - continue; - } - } - - // Convert 'no-foo' to '-foo'. - if (Arg.find("no-") == 0 && Arg[3] != 0) { - mattr += '-'; - mattr += Arg.c_str() + 3; - } - // Convert 'foo' to '+foo'. - else { - mattr += '+'; - mattr += Arg; - } +/// AddPlusOrMinus - Convert 'no-foo' to '-foo' and 'foo' to '+foo'. +void AddPlusOrMinus (const std::string& Arg, std::string& out) { + if (Arg.find("no-") == 0 && Arg[3] != 0) { + out += '-'; + out += Arg.c_str() + 3; + } + else { + out += '+'; + out += Arg; } - - std::string out; - if (mattrTouched) - out += mattr; - if (mcpuTouched) - out += (mattrTouched ? " " : "") + mcpu; - - return out; } // -march values that need to be special-cased. @@ -125,7 +74,52 @@ std::string ConvertMArchToMAttr(const StrVec& Opts) { StaticDataInitialized = true; } - return ConvertToMAttrImpl(Opts, &MArchMap, &MArchMCpuMap); + std::string mattr("-mattr="); + std::string mcpu("-mcpu="); + bool mattrTouched = false; + bool mcpuTouched = false; + bool firstIter = true; + + for (StrVec::const_iterator B = Opts.begin(), E = Opts.end(); B!=E; ++B) { + const std::string& Arg = *B; + + if (firstIter) + firstIter = false; + else + mattr += ","; + + // Check if the argument is a special case. + { + ArgMap::const_iterator I = MArchMap.find(Arg); + + if (I != MArchMap.end()) { + mattr += '+'; + mattr += I->getValue(); + continue; + } + } + + // Check if the argument should be forwarded to -mcpu instead of -mattr. + { + ArgMap::const_iterator I = MArchMCpuMap.find(Arg); + + if (I != MArchMCpuMap.end()) { + mcpuTouched = true; + mcpu += I->getValue(); + continue; + } + } + + AddPlusOrMinus(Arg, mattr); + } + + std::string out; + if (mattrTouched) + out += mattr; + if (mcpuTouched) + out += (mattrTouched ? " " : "") + mcpu; + + return out; } // -mcpu values that need to be special-cased. @@ -182,7 +176,21 @@ std::string ConvertMFpu(const char* Val) { /// ConvertToMAttr - Convert '-mfoo' and '-mno-bar' to '-mattr=+foo,-bar'. std::string ConvertToMAttr(const StrVec& Opts) { - return ConvertToMAttrImpl(Opts); + std::string out("-mattr="); + bool firstIter = true; + + for (StrVec::const_iterator B = Opts.begin(), E = Opts.end(); B!=E; ++B) { + const std::string& Arg = *B; + + if (firstIter) + firstIter = false; + else + out += ","; + + AddPlusOrMinus(Arg, out); + } + + return out; } } -- cgit v1.1