Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/clang/lib/Driver/Multilib.cpp
Line
Count
Source (jump to first uncovered line)
1
//===- Multilib.cpp - Multilib Implementation -----------------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "clang/Driver/Multilib.h"
10
#include "clang/Basic/LLVM.h"
11
#include "clang/Basic/Version.h"
12
#include "llvm/ADT/DenseSet.h"
13
#include "llvm/ADT/SmallString.h"
14
#include "llvm/ADT/StringRef.h"
15
#include "llvm/Support/Compiler.h"
16
#include "llvm/Support/Error.h"
17
#include "llvm/Support/ErrorHandling.h"
18
#include "llvm/Support/Path.h"
19
#include "llvm/Support/Regex.h"
20
#include "llvm/Support/VersionTuple.h"
21
#include "llvm/Support/YAMLParser.h"
22
#include "llvm/Support/YAMLTraits.h"
23
#include "llvm/Support/raw_ostream.h"
24
#include <algorithm>
25
#include <cassert>
26
#include <string>
27
28
using namespace clang;
29
using namespace driver;
30
using namespace llvm::sys;
31
32
Multilib::Multilib(StringRef GCCSuffix, StringRef OSSuffix,
33
                   StringRef IncludeSuffix, const flags_list &Flags,
34
                   StringRef ExclusiveGroup)
35
    : GCCSuffix(GCCSuffix), OSSuffix(OSSuffix), IncludeSuffix(IncludeSuffix),
36
0
      Flags(Flags), ExclusiveGroup(ExclusiveGroup) {
37
0
  assert(GCCSuffix.empty() ||
38
0
         (StringRef(GCCSuffix).front() == '/' && GCCSuffix.size() > 1));
39
0
  assert(OSSuffix.empty() ||
40
0
         (StringRef(OSSuffix).front() == '/' && OSSuffix.size() > 1));
41
0
  assert(IncludeSuffix.empty() ||
42
0
         (StringRef(IncludeSuffix).front() == '/' && IncludeSuffix.size() > 1));
43
0
}
44
45
0
LLVM_DUMP_METHOD void Multilib::dump() const {
46
0
  print(llvm::errs());
47
0
}
48
49
0
void Multilib::print(raw_ostream &OS) const {
50
0
  if (GCCSuffix.empty())
51
0
    OS << ".";
52
0
  else {
53
0
    OS << StringRef(GCCSuffix).drop_front();
54
0
  }
55
0
  OS << ";";
56
0
  for (StringRef Flag : Flags) {
57
0
    if (Flag.front() == '-')
58
0
      OS << "@" << Flag.substr(1);
59
0
  }
60
0
}
61
62
0
bool Multilib::operator==(const Multilib &Other) const {
63
  // Check whether the flags sets match
64
  // allowing for the match to be order invariant
65
0
  llvm::StringSet<> MyFlags;
66
0
  for (const auto &Flag : Flags)
67
0
    MyFlags.insert(Flag);
68
69
0
  for (const auto &Flag : Other.Flags)
70
0
    if (!MyFlags.contains(Flag))
71
0
      return false;
72
73
0
  if (osSuffix() != Other.osSuffix())
74
0
    return false;
75
76
0
  if (gccSuffix() != Other.gccSuffix())
77
0
    return false;
78
79
0
  if (includeSuffix() != Other.includeSuffix())
80
0
    return false;
81
82
0
  return true;
83
0
}
84
85
0
raw_ostream &clang::driver::operator<<(raw_ostream &OS, const Multilib &M) {
86
0
  M.print(OS);
87
0
  return OS;
88
0
}
89
90
0
MultilibSet &MultilibSet::FilterOut(FilterCallback F) {
91
0
  llvm::erase_if(Multilibs, F);
92
0
  return *this;
93
0
}
94
95
0
void MultilibSet::push_back(const Multilib &M) { Multilibs.push_back(M); }
96
97
bool MultilibSet::select(const Multilib::flags_list &Flags,
98
0
                         llvm::SmallVectorImpl<Multilib> &Selected) const {
99
0
  llvm::StringSet<> FlagSet(expandFlags(Flags));
100
0
  Selected.clear();
101
102
  // Decide which multilibs we're going to select at all.
103
0
  llvm::DenseSet<StringRef> ExclusiveGroupsSelected;
104
0
  for (const Multilib &M : llvm::reverse(Multilibs)) {
105
    // If this multilib doesn't match all our flags, don't select it.
106
0
    if (!llvm::all_of(M.flags(), [&FlagSet](const std::string &F) {
107
0
          return FlagSet.contains(F);
108
0
        }))
109
0
      continue;
110
111
0
    const std::string &group = M.exclusiveGroup();
112
0
    if (!group.empty()) {
113
      // If this multilib has the same ExclusiveGroup as one we've already
114
      // selected, skip it. We're iterating in reverse order, so the group
115
      // member we've selected already is preferred.
116
      //
117
      // Otherwise, add the group name to the set of groups we've already
118
      // selected a member of.
119
0
      auto [It, Inserted] = ExclusiveGroupsSelected.insert(group);
120
0
      if (!Inserted)
121
0
        continue;
122
0
    }
123
124
    // Select this multilib.
125
0
    Selected.push_back(M);
126
0
  }
127
128
  // We iterated in reverse order, so now put Selected back the right way
129
  // round.
130
0
  std::reverse(Selected.begin(), Selected.end());
131
132
0
  return !Selected.empty();
133
0
}
134
135
llvm::StringSet<>
136
0
MultilibSet::expandFlags(const Multilib::flags_list &InFlags) const {
137
0
  llvm::StringSet<> Result;
138
0
  for (const auto &F : InFlags)
139
0
    Result.insert(F);
140
0
  for (const FlagMatcher &M : FlagMatchers) {
141
0
    std::string RegexString(M.Match);
142
143
    // Make the regular expression match the whole string.
144
0
    if (!StringRef(M.Match).starts_with("^"))
145
0
      RegexString.insert(RegexString.begin(), '^');
146
0
    if (!StringRef(M.Match).ends_with("$"))
147
0
      RegexString.push_back('$');
148
149
0
    const llvm::Regex Regex(RegexString);
150
0
    assert(Regex.isValid());
151
0
    if (llvm::any_of(InFlags,
152
0
                     [&Regex](StringRef F) { return Regex.match(F); })) {
153
0
      Result.insert(M.Flags.begin(), M.Flags.end());
154
0
    }
155
0
  }
156
0
  return Result;
157
0
}
158
159
namespace {
160
161
// When updating this also update MULTILIB_VERSION in MultilibTest.cpp
162
static const VersionTuple MultilibVersionCurrent(1, 0);
163
164
struct MultilibSerialization {
165
  std::string Dir;
166
  std::vector<std::string> Flags;
167
  std::string Group;
168
};
169
170
enum class MultilibGroupType {
171
  /*
172
   * The only group type currently supported is 'Exclusive', which indicates a
173
   * group of multilibs of which at most one may be selected.
174
   */
175
  Exclusive,
176
177
  /*
178
   * Future possibility: a second group type indicating a set of library
179
   * directories that are mutually _dependent_ rather than mutually exclusive:
180
   * if you include one you must include them all.
181
   *
182
   * It might also be useful to allow groups to be members of other groups, so
183
   * that a mutually exclusive group could contain a mutually dependent set of
184
   * library directories, or vice versa.
185
   *
186
   * These additional features would need changes in the implementation, but
187
   * the YAML schema is set up so they can be added without requiring changes
188
   * in existing users' multilib.yaml files.
189
   */
190
};
191
192
struct MultilibGroupSerialization {
193
  std::string Name;
194
  MultilibGroupType Type;
195
};
196
197
struct MultilibSetSerialization {
198
  llvm::VersionTuple MultilibVersion;
199
  std::vector<MultilibGroupSerialization> Groups;
200
  std::vector<MultilibSerialization> Multilibs;
201
  std::vector<MultilibSet::FlagMatcher> FlagMatchers;
202
};
203
204
} // end anonymous namespace
205
206
template <> struct llvm::yaml::MappingTraits<MultilibSerialization> {
207
0
  static void mapping(llvm::yaml::IO &io, MultilibSerialization &V) {
208
0
    io.mapRequired("Dir", V.Dir);
209
0
    io.mapRequired("Flags", V.Flags);
210
0
    io.mapOptional("Group", V.Group);
211
0
  }
212
0
  static std::string validate(IO &io, MultilibSerialization &V) {
213
0
    if (StringRef(V.Dir).starts_with("/"))
214
0
      return "paths must be relative but \"" + V.Dir + "\" starts with \"/\"";
215
0
    return std::string{};
216
0
  }
217
};
218
219
template <> struct llvm::yaml::ScalarEnumerationTraits<MultilibGroupType> {
220
0
  static void enumeration(IO &io, MultilibGroupType &Val) {
221
0
    io.enumCase(Val, "Exclusive", MultilibGroupType::Exclusive);
222
0
  }
223
};
224
225
template <> struct llvm::yaml::MappingTraits<MultilibGroupSerialization> {
226
0
  static void mapping(llvm::yaml::IO &io, MultilibGroupSerialization &V) {
227
0
    io.mapRequired("Name", V.Name);
228
0
    io.mapRequired("Type", V.Type);
229
0
  }
230
};
231
232
template <> struct llvm::yaml::MappingTraits<MultilibSet::FlagMatcher> {
233
0
  static void mapping(llvm::yaml::IO &io, MultilibSet::FlagMatcher &M) {
234
0
    io.mapRequired("Match", M.Match);
235
0
    io.mapRequired("Flags", M.Flags);
236
0
  }
237
0
  static std::string validate(IO &io, MultilibSet::FlagMatcher &M) {
238
0
    llvm::Regex Regex(M.Match);
239
0
    std::string RegexError;
240
0
    if (!Regex.isValid(RegexError))
241
0
      return RegexError;
242
0
    if (M.Flags.empty())
243
0
      return "value required for 'Flags'";
244
0
    return std::string{};
245
0
  }
246
};
247
248
template <> struct llvm::yaml::MappingTraits<MultilibSetSerialization> {
249
0
  static void mapping(llvm::yaml::IO &io, MultilibSetSerialization &M) {
250
0
    io.mapRequired("MultilibVersion", M.MultilibVersion);
251
0
    io.mapRequired("Variants", M.Multilibs);
252
0
    io.mapOptional("Groups", M.Groups);
253
0
    io.mapOptional("Mappings", M.FlagMatchers);
254
0
  }
255
0
  static std::string validate(IO &io, MultilibSetSerialization &M) {
256
0
    if (M.MultilibVersion.empty())
257
0
      return "missing required key 'MultilibVersion'";
258
0
    if (M.MultilibVersion.getMajor() != MultilibVersionCurrent.getMajor())
259
0
      return "multilib version " + M.MultilibVersion.getAsString() +
260
0
             " is unsupported";
261
0
    if (M.MultilibVersion.getMinor() > MultilibVersionCurrent.getMinor())
262
0
      return "multilib version " + M.MultilibVersion.getAsString() +
263
0
             " is unsupported";
264
0
    for (const MultilibSerialization &Lib : M.Multilibs) {
265
0
      if (!Lib.Group.empty()) {
266
0
        bool Found = false;
267
0
        for (const MultilibGroupSerialization &Group : M.Groups)
268
0
          if (Group.Name == Lib.Group) {
269
0
            Found = true;
270
0
            break;
271
0
          }
272
0
        if (!Found)
273
0
          return "multilib \"" + Lib.Dir +
274
0
                 "\" specifies undefined group name \"" + Lib.Group + "\"";
275
0
      }
276
0
    }
277
0
    return std::string{};
278
0
  }
279
};
280
281
LLVM_YAML_IS_SEQUENCE_VECTOR(MultilibSerialization)
282
LLVM_YAML_IS_SEQUENCE_VECTOR(MultilibGroupSerialization)
283
LLVM_YAML_IS_SEQUENCE_VECTOR(MultilibSet::FlagMatcher)
284
285
llvm::ErrorOr<MultilibSet>
286
MultilibSet::parseYaml(llvm::MemoryBufferRef Input,
287
                       llvm::SourceMgr::DiagHandlerTy DiagHandler,
288
0
                       void *DiagHandlerCtxt) {
289
0
  MultilibSetSerialization MS;
290
0
  llvm::yaml::Input YamlInput(Input, nullptr, DiagHandler, DiagHandlerCtxt);
291
0
  YamlInput >> MS;
292
0
  if (YamlInput.error())
293
0
    return YamlInput.error();
294
295
0
  multilib_list Multilibs;
296
0
  Multilibs.reserve(MS.Multilibs.size());
297
0
  for (const auto &M : MS.Multilibs) {
298
0
    std::string Dir;
299
0
    if (M.Dir != ".")
300
0
      Dir = "/" + M.Dir;
301
    // We transfer M.Group straight into the ExclusiveGroup parameter for the
302
    // Multilib constructor. If we later support more than one type of group,
303
    // we'll have to look up the group name in MS.Groups, check its type, and
304
    // decide what to do here.
305
0
    Multilibs.emplace_back(Dir, Dir, Dir, M.Flags, M.Group);
306
0
  }
307
308
0
  return MultilibSet(std::move(Multilibs), std::move(MS.FlagMatchers));
309
0
}
310
311
0
LLVM_DUMP_METHOD void MultilibSet::dump() const {
312
0
  print(llvm::errs());
313
0
}
314
315
0
void MultilibSet::print(raw_ostream &OS) const {
316
0
  for (const auto &M : *this)
317
0
    OS << M << "\n";
318
0
}
319
320
0
raw_ostream &clang::driver::operator<<(raw_ostream &OS, const MultilibSet &MS) {
321
0
  MS.print(OS);
322
0
  return OS;
323
0
}