Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 1 | //===- Multilib.cpp - Multilib Implementation -----------------------------===// |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "clang/Driver/Multilib.h" |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 11 | #include "clang/Basic/LLVM.h" |
| 12 | #include "llvm/ADT/SmallString.h" |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/StringMap.h" |
| 14 | #include "llvm/ADT/StringRef.h" |
| 15 | #include "llvm/ADT/StringSet.h" |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Compiler.h" |
| 17 | #include "llvm/Support/ErrorHandling.h" |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Path.h" |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Regex.h" |
Chandler Carruth | 757fcd6 | 2014-03-04 10:05:20 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 21 | #include <algorithm> |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 22 | #include <cassert> |
| 23 | #include <string> |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 24 | |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 25 | using namespace clang; |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 26 | using namespace driver; |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 27 | using namespace llvm::sys; |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 28 | |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 29 | /// normalize Segment to "/foo/bar" or "". |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 30 | static void normalizePathSegment(std::string &Segment) { |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 31 | StringRef seg = Segment; |
| 32 | |
| 33 | // Prune trailing "/" or "./" |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 34 | while (true) { |
Justin Bogner | 6bcf724 | 2014-08-03 21:46:33 +0000 | [diff] [blame] | 35 | StringRef last = path::filename(seg); |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 36 | if (last != ".") |
| 37 | break; |
| 38 | seg = path::parent_path(seg); |
| 39 | } |
| 40 | |
| 41 | if (seg.empty() || seg == "/") { |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 42 | Segment.clear(); |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 43 | return; |
| 44 | } |
| 45 | |
| 46 | // Add leading '/' |
| 47 | if (seg.front() != '/') { |
| 48 | Segment = "/" + seg.str(); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 49 | } else { |
NAKAMURA Takumi | 691e6ef | 2014-02-12 11:42:02 +0000 | [diff] [blame] | 50 | Segment = seg; |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 51 | } |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | Multilib::Multilib(StringRef GCCSuffix, StringRef OSSuffix, |
| 55 | StringRef IncludeSuffix) |
| 56 | : GCCSuffix(GCCSuffix), OSSuffix(OSSuffix), IncludeSuffix(IncludeSuffix) { |
| 57 | normalizePathSegment(this->GCCSuffix); |
| 58 | normalizePathSegment(this->OSSuffix); |
| 59 | normalizePathSegment(this->IncludeSuffix); |
| 60 | } |
| 61 | |
| 62 | Multilib &Multilib::gccSuffix(StringRef S) { |
| 63 | GCCSuffix = S; |
| 64 | normalizePathSegment(GCCSuffix); |
| 65 | return *this; |
| 66 | } |
| 67 | |
| 68 | Multilib &Multilib::osSuffix(StringRef S) { |
| 69 | OSSuffix = S; |
| 70 | normalizePathSegment(OSSuffix); |
| 71 | return *this; |
| 72 | } |
| 73 | |
| 74 | Multilib &Multilib::includeSuffix(StringRef S) { |
| 75 | IncludeSuffix = S; |
| 76 | normalizePathSegment(IncludeSuffix); |
| 77 | return *this; |
| 78 | } |
| 79 | |
Jonathan Roelofs | c8e377c | 2017-05-05 21:30:13 +0000 | [diff] [blame] | 80 | LLVM_DUMP_METHOD void Multilib::dump() const { |
| 81 | print(llvm::errs()); |
| 82 | } |
| 83 | |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 84 | void Multilib::print(raw_ostream &OS) const { |
| 85 | assert(GCCSuffix.empty() || (StringRef(GCCSuffix).front() == '/')); |
| 86 | if (GCCSuffix.empty()) |
| 87 | OS << "."; |
| 88 | else { |
| 89 | OS << StringRef(GCCSuffix).drop_front(); |
| 90 | } |
| 91 | OS << ";"; |
Simon Atanasyan | 6f657c4 | 2014-05-08 19:32:46 +0000 | [diff] [blame] | 92 | for (StringRef Flag : Flags) { |
| 93 | if (Flag.front() == '+') |
| 94 | OS << "@" << Flag.substr(1); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
| 98 | bool Multilib::isValid() const { |
| 99 | llvm::StringMap<int> FlagSet; |
| 100 | for (unsigned I = 0, N = Flags.size(); I != N; ++I) { |
| 101 | StringRef Flag(Flags[I]); |
| 102 | llvm::StringMap<int>::iterator SI = FlagSet.find(Flag.substr(1)); |
| 103 | |
| 104 | assert(StringRef(Flag).front() == '+' || StringRef(Flag).front() == '-'); |
| 105 | |
| 106 | if (SI == FlagSet.end()) |
| 107 | FlagSet[Flag.substr(1)] = I; |
| 108 | else if (Flags[I] != Flags[SI->getValue()]) |
| 109 | return false; |
| 110 | } |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | bool Multilib::operator==(const Multilib &Other) const { |
| 115 | // Check whether the flags sets match |
| 116 | // allowing for the match to be order invariant |
| 117 | llvm::StringSet<> MyFlags; |
Simon Atanasyan | 6f657c4 | 2014-05-08 19:32:46 +0000 | [diff] [blame] | 118 | for (const auto &Flag : Flags) |
| 119 | MyFlags.insert(Flag); |
| 120 | |
| 121 | for (const auto &Flag : Other.Flags) |
| 122 | if (MyFlags.find(Flag) == MyFlags.end()) |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 123 | return false; |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 124 | |
| 125 | if (osSuffix() != Other.osSuffix()) |
| 126 | return false; |
| 127 | |
| 128 | if (gccSuffix() != Other.gccSuffix()) |
| 129 | return false; |
| 130 | |
| 131 | if (includeSuffix() != Other.includeSuffix()) |
| 132 | return false; |
| 133 | |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | raw_ostream &clang::driver::operator<<(raw_ostream &OS, const Multilib &M) { |
| 138 | M.print(OS); |
| 139 | return OS; |
| 140 | } |
| 141 | |
| 142 | MultilibSet &MultilibSet::Maybe(const Multilib &M) { |
| 143 | Multilib Opposite; |
| 144 | // Negate any '+' flags |
Simon Atanasyan | 6f657c4 | 2014-05-08 19:32:46 +0000 | [diff] [blame] | 145 | for (StringRef Flag : M.flags()) { |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 146 | if (Flag.front() == '+') |
| 147 | Opposite.flags().push_back(("-" + Flag.substr(1)).str()); |
| 148 | } |
| 149 | return Either(M, Opposite); |
| 150 | } |
| 151 | |
| 152 | MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) { |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 153 | return Either({M1, M2}); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, |
| 157 | const Multilib &M3) { |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 158 | return Either({M1, M2, M3}); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, |
| 162 | const Multilib &M3, const Multilib &M4) { |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 163 | return Either({M1, M2, M3, M4}); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, |
| 167 | const Multilib &M3, const Multilib &M4, |
| 168 | const Multilib &M5) { |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 169 | return Either({M1, M2, M3, M4, M5}); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static Multilib compose(const Multilib &Base, const Multilib &New) { |
| 173 | SmallString<128> GCCSuffix; |
| 174 | llvm::sys::path::append(GCCSuffix, "/", Base.gccSuffix(), New.gccSuffix()); |
| 175 | SmallString<128> OSSuffix; |
| 176 | llvm::sys::path::append(OSSuffix, "/", Base.osSuffix(), New.osSuffix()); |
| 177 | SmallString<128> IncludeSuffix; |
| 178 | llvm::sys::path::append(IncludeSuffix, "/", Base.includeSuffix(), |
| 179 | New.includeSuffix()); |
| 180 | |
Yaron Keren | 92e1b62 | 2015-03-18 10:17:07 +0000 | [diff] [blame] | 181 | Multilib Composed(GCCSuffix, OSSuffix, IncludeSuffix); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 182 | |
| 183 | Multilib::flags_list &Flags = Composed.flags(); |
| 184 | |
| 185 | Flags.insert(Flags.end(), Base.flags().begin(), Base.flags().end()); |
| 186 | Flags.insert(Flags.end(), New.flags().begin(), New.flags().end()); |
| 187 | |
| 188 | return Composed; |
| 189 | } |
| 190 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 191 | MultilibSet &MultilibSet::Either(ArrayRef<Multilib> MultilibSegments) { |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 192 | multilib_list Composed; |
| 193 | |
| 194 | if (Multilibs.empty()) |
| 195 | Multilibs.insert(Multilibs.end(), MultilibSegments.begin(), |
| 196 | MultilibSegments.end()); |
| 197 | else { |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 198 | for (const auto &New : MultilibSegments) { |
| 199 | for (const auto &Base : *this) { |
Simon Atanasyan | 6f657c4 | 2014-05-08 19:32:46 +0000 | [diff] [blame] | 200 | Multilib MO = compose(Base, New); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 201 | if (MO.isValid()) |
| 202 | Composed.push_back(MO); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | Multilibs = Composed; |
| 207 | } |
| 208 | |
| 209 | return *this; |
| 210 | } |
| 211 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 212 | MultilibSet &MultilibSet::FilterOut(FilterCallback F) { |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 213 | filterInPlace(F, Multilibs); |
| 214 | return *this; |
| 215 | } |
| 216 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 217 | MultilibSet &MultilibSet::FilterOut(const char *Regex) { |
| 218 | llvm::Regex R(Regex); |
| 219 | #ifndef NDEBUG |
| 220 | std::string Error; |
| 221 | if (!R.isValid(Error)) { |
| 222 | llvm::errs() << Error; |
| 223 | llvm_unreachable("Invalid regex!"); |
| 224 | } |
| 225 | #endif |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 226 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 227 | filterInPlace([&R](const Multilib &M) { return R.match(M.gccSuffix()); }, |
| 228 | Multilibs); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 229 | return *this; |
| 230 | } |
| 231 | |
| 232 | void MultilibSet::push_back(const Multilib &M) { Multilibs.push_back(M); } |
| 233 | |
| 234 | void MultilibSet::combineWith(const MultilibSet &Other) { |
| 235 | Multilibs.insert(Multilibs.end(), Other.begin(), Other.end()); |
| 236 | } |
| 237 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 238 | static bool isFlagEnabled(StringRef Flag) { |
| 239 | char Indicator = Flag.front(); |
| 240 | assert(Indicator == '+' || Indicator == '-'); |
| 241 | return Indicator == '+'; |
| 242 | } |
| 243 | |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 244 | bool MultilibSet::select(const Multilib::flags_list &Flags, Multilib &M) const { |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 245 | llvm::StringMap<bool> FlagSet; |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 246 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 247 | // Stuff all of the flags into the FlagSet such that a true mappend indicates |
| 248 | // the flag was enabled, and a false mappend indicates the flag was disabled. |
| 249 | for (StringRef Flag : Flags) |
| 250 | FlagSet[Flag.substr(1)] = isFlagEnabled(Flag); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 251 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 252 | multilib_list Filtered = filterCopy([&FlagSet](const Multilib &M) { |
| 253 | for (StringRef Flag : M.flags()) { |
| 254 | llvm::StringMap<bool>::const_iterator SI = FlagSet.find(Flag.substr(1)); |
| 255 | if (SI != FlagSet.end()) |
| 256 | if (SI->getValue() != isFlagEnabled(Flag)) |
| 257 | return true; |
| 258 | } |
| 259 | return false; |
| 260 | }, Multilibs); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 261 | |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 262 | if (Filtered.empty()) |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 263 | return false; |
Simon Atanasyan | ecce7e1 | 2015-10-12 14:32:57 +0000 | [diff] [blame] | 264 | if (Filtered.size() == 1) { |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 265 | M = Filtered[0]; |
| 266 | return true; |
| 267 | } |
| 268 | |
| 269 | // TODO: pick the "best" multlib when more than one is suitable |
| 270 | assert(false); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 271 | return false; |
| 272 | } |
| 273 | |
Jonathan Roelofs | c8e377c | 2017-05-05 21:30:13 +0000 | [diff] [blame] | 274 | LLVM_DUMP_METHOD void MultilibSet::dump() const { |
| 275 | print(llvm::errs()); |
| 276 | } |
| 277 | |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 278 | void MultilibSet::print(raw_ostream &OS) const { |
Eugene Zelenko | 5e4511c | 2018-03-20 21:08:59 +0000 | [diff] [blame] | 279 | for (const auto &M : *this) |
Simon Atanasyan | 6f657c4 | 2014-05-08 19:32:46 +0000 | [diff] [blame] | 280 | OS << M << "\n"; |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 283 | MultilibSet::multilib_list MultilibSet::filterCopy(FilterCallback F, |
| 284 | const multilib_list &Ms) { |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 285 | multilib_list Copy(Ms); |
| 286 | filterInPlace(F, Copy); |
| 287 | return Copy; |
| 288 | } |
| 289 | |
Benjamin Kramer | ac75baa | 2015-03-22 15:56:12 +0000 | [diff] [blame] | 290 | void MultilibSet::filterInPlace(FilterCallback F, multilib_list &Ms) { |
| 291 | Ms.erase(std::remove_if(Ms.begin(), Ms.end(), F), Ms.end()); |
Jonathan Roelofs | 2cea1be | 2014-02-12 03:21:20 +0000 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | raw_ostream &clang::driver::operator<<(raw_ostream &OS, const MultilibSet &MS) { |
| 295 | MS.print(OS); |
| 296 | return OS; |
| 297 | } |