Merge llvm-project release/15.x llvmorg-15.0.6-0-g088f33605d8a
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-15.0.6-0-g088f33605d8a. PR: 265425 MFC after: 2 weeks
This commit is contained in:
+2
-2
@@ -52,7 +52,7 @@
|
|||||||
# xargs -n1 | sort | uniq -d;
|
# xargs -n1 | sort | uniq -d;
|
||||||
# done
|
# done
|
||||||
|
|
||||||
# 20230208: new clang import which bumps version from 14.0.5 to 15.0.3
|
# 20230208: new clang import which bumps version from 14.0.5 to 15.0.6
|
||||||
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/algorithm
|
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/algorithm
|
||||||
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/complex
|
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/complex
|
||||||
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/new
|
OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/new
|
||||||
@@ -363,7 +363,7 @@ OLD_FILES+=usr/lib/clang/14.0.5/share/msan_ignorelist.txt
|
|||||||
OLD_DIRS+=usr/lib/clang/14.0.5/share
|
OLD_DIRS+=usr/lib/clang/14.0.5/share
|
||||||
OLD_DIRS+=usr/lib/clang/14.0.5
|
OLD_DIRS+=usr/lib/clang/14.0.5
|
||||||
|
|
||||||
# 20230208: new libc++ import which bumps version from 14.0.5 to 15.0.3
|
# 20230208: new libc++ import which bumps version from 14.0.5 to 15.0.6
|
||||||
OLD_FILES+=usr/include/c++/v1/__functional_base
|
OLD_FILES+=usr/include/c++/v1/__functional_base
|
||||||
OLD_FILES+=usr/include/c++/v1/__libcpp_version
|
OLD_FILES+=usr/include/c++/v1/__libcpp_version
|
||||||
OLD_FILES+=usr/include/c++/v1/__nullptr
|
OLD_FILES+=usr/include/c++/v1/__nullptr
|
||||||
|
|||||||
@@ -7047,10 +7047,10 @@ Address ARMABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
|
|||||||
|
|
||||||
// Empty records are ignored for parameter passing purposes.
|
// Empty records are ignored for parameter passing purposes.
|
||||||
if (isEmptyRecord(getContext(), Ty, true)) {
|
if (isEmptyRecord(getContext(), Ty, true)) {
|
||||||
Address Addr = Address(CGF.Builder.CreateLoad(VAListAddr),
|
VAListAddr = CGF.Builder.CreateElementBitCast(VAListAddr, CGF.Int8PtrTy);
|
||||||
getVAListElementType(CGF), SlotSize);
|
auto *Load = CGF.Builder.CreateLoad(VAListAddr);
|
||||||
Addr = CGF.Builder.CreateElementBitCast(Addr, CGF.ConvertTypeForMem(Ty));
|
Address Addr = Address(Load, CGF.Int8Ty, SlotSize);
|
||||||
return Addr;
|
return CGF.Builder.CreateElementBitCast(Addr, CGF.ConvertTypeForMem(Ty));
|
||||||
}
|
}
|
||||||
|
|
||||||
CharUnits TySize = getContext().getTypeSizeInChars(Ty);
|
CharUnits TySize = getContext().getTypeSizeInChars(Ty);
|
||||||
|
|||||||
@@ -2139,31 +2139,21 @@ void Generic_GCC::GCCInstallationDetector::AddDefaultGCCPrefixes(
|
|||||||
// and gcc-toolsets.
|
// and gcc-toolsets.
|
||||||
if (SysRoot.empty() && TargetTriple.getOS() == llvm::Triple::Linux &&
|
if (SysRoot.empty() && TargetTriple.getOS() == llvm::Triple::Linux &&
|
||||||
D.getVFS().exists("/opt/rh")) {
|
D.getVFS().exists("/opt/rh")) {
|
||||||
// Find the directory in /opt/rh/ starting with gcc-toolset-* or
|
// TODO: We may want to remove this, since the functionality
|
||||||
// devtoolset-* with the highest version number and add that
|
// can be achieved using config files.
|
||||||
// one to our prefixes.
|
Prefixes.push_back("/opt/rh/gcc-toolset-12/root/usr");
|
||||||
std::string ChosenToolsetDir;
|
Prefixes.push_back("/opt/rh/gcc-toolset-11/root/usr");
|
||||||
unsigned ChosenToolsetVersion = 0;
|
Prefixes.push_back("/opt/rh/gcc-toolset-10/root/usr");
|
||||||
std::error_code EC;
|
Prefixes.push_back("/opt/rh/devtoolset-12/root/usr");
|
||||||
for (llvm::vfs::directory_iterator LI = D.getVFS().dir_begin("/opt/rh", EC),
|
Prefixes.push_back("/opt/rh/devtoolset-11/root/usr");
|
||||||
LE;
|
Prefixes.push_back("/opt/rh/devtoolset-10/root/usr");
|
||||||
!EC && LI != LE; LI = LI.increment(EC)) {
|
Prefixes.push_back("/opt/rh/devtoolset-9/root/usr");
|
||||||
StringRef ToolsetDir = llvm::sys::path::filename(LI->path());
|
Prefixes.push_back("/opt/rh/devtoolset-8/root/usr");
|
||||||
unsigned ToolsetVersion;
|
Prefixes.push_back("/opt/rh/devtoolset-7/root/usr");
|
||||||
if ((!ToolsetDir.startswith("gcc-toolset-") &&
|
Prefixes.push_back("/opt/rh/devtoolset-6/root/usr");
|
||||||
!ToolsetDir.startswith("devtoolset-")) ||
|
Prefixes.push_back("/opt/rh/devtoolset-4/root/usr");
|
||||||
ToolsetDir.substr(ToolsetDir.rfind('-') + 1)
|
Prefixes.push_back("/opt/rh/devtoolset-3/root/usr");
|
||||||
.getAsInteger(10, ToolsetVersion))
|
Prefixes.push_back("/opt/rh/devtoolset-2/root/usr");
|
||||||
continue;
|
|
||||||
|
|
||||||
if (ToolsetVersion > ChosenToolsetVersion) {
|
|
||||||
ChosenToolsetVersion = ToolsetVersion;
|
|
||||||
ChosenToolsetDir = "/opt/rh/" + ToolsetDir.str();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ChosenToolsetVersion > 0)
|
|
||||||
Prefixes.push_back(ChosenToolsetDir + "/root/usr");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fall back to /usr which is used by most non-Solaris systems.
|
// Fall back to /usr which is used by most non-Solaris systems.
|
||||||
|
|||||||
@@ -939,11 +939,9 @@ bool Sema::LookupBuiltin(LookupResult &R) {
|
|||||||
|
|
||||||
// If this is a builtin on this (or all) targets, create the decl.
|
// If this is a builtin on this (or all) targets, create the decl.
|
||||||
if (unsigned BuiltinID = II->getBuiltinID()) {
|
if (unsigned BuiltinID = II->getBuiltinID()) {
|
||||||
// In C++, C2x, and OpenCL (spec v1.2 s6.9.f), we don't have any
|
// In C++ and OpenCL (spec v1.2 s6.9.f), we don't have any predefined
|
||||||
// predefined library functions like 'malloc'. Instead, we'll just
|
// library functions like 'malloc'. Instead, we'll just error.
|
||||||
// error.
|
if ((getLangOpts().CPlusPlus || getLangOpts().OpenCL) &&
|
||||||
if ((getLangOpts().CPlusPlus || getLangOpts().OpenCL ||
|
|
||||||
getLangOpts().C2x) &&
|
|
||||||
Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
|
Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|||||||
@@ -6443,6 +6443,9 @@ GetTypeSourceInfoForDeclarator(TypeProcessingState &State,
|
|||||||
CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
|
CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
while (BTFTagAttributedTypeLoc TL = CurrTL.getAs<BTFTagAttributedTypeLoc>())
|
||||||
|
CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
|
||||||
|
|
||||||
while (DependentAddressSpaceTypeLoc TL =
|
while (DependentAddressSpaceTypeLoc TL =
|
||||||
CurrTL.getAs<DependentAddressSpaceTypeLoc>()) {
|
CurrTL.getAs<DependentAddressSpaceTypeLoc>()) {
|
||||||
fillDependentAddressSpaceTypeLoc(TL, D.getTypeObject(i).getAttrs());
|
fillDependentAddressSpaceTypeLoc(TL, D.getTypeObject(i).getAttrs());
|
||||||
|
|||||||
@@ -2839,6 +2839,12 @@ void ExprEngine::VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (const auto *TPO = dyn_cast<TemplateParamObjectDecl>(D)) {
|
||||||
|
// FIXME: We should meaningfully implement this.
|
||||||
|
(void)TPO;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
llvm_unreachable("Support for this Decl not implemented.");
|
llvm_unreachable("Support for this Decl not implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -6703,7 +6703,7 @@ INTERCEPTOR(int, sem_init, __sanitizer_sem_t *s, int pshared, unsigned value) {
|
|||||||
COMMON_INTERCEPTOR_ENTER(ctx, sem_init, s, pshared, value);
|
COMMON_INTERCEPTOR_ENTER(ctx, sem_init, s, pshared, value);
|
||||||
// Workaround a bug in glibc's "old" semaphore implementation by
|
// Workaround a bug in glibc's "old" semaphore implementation by
|
||||||
// zero-initializing the sem_t contents. This has to be done here because
|
// zero-initializing the sem_t contents. This has to be done here because
|
||||||
// interceptors bind to the lowest symbols version by default, hitting the
|
// interceptors bind to the lowest version before glibc 2.36, hitting the
|
||||||
// buggy code path while the non-sanitized build of the same code works fine.
|
// buggy code path while the non-sanitized build of the same code works fine.
|
||||||
REAL(memset)(s, 0, sizeof(*s));
|
REAL(memset)(s, 0, sizeof(*s));
|
||||||
int res = REAL(sem_init)(s, pshared, value);
|
int res = REAL(sem_init)(s, pshared, value);
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
# define _LIBCPP_VERSION 15003
|
# define _LIBCPP_VERSION 15006
|
||||||
|
|
||||||
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
|
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
|
||||||
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
|
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
|
||||||
|
|||||||
@@ -883,7 +883,7 @@ template <class _Rp, class... _ArgTypes> class __policy_func<_Rp(_ArgTypes...)>
|
|||||||
#endif // _LIBCPP_NO_RTTI
|
#endif // _LIBCPP_NO_RTTI
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(_LIBCPP_HAS_BLOCKS_RUNTIME) && !defined(_LIBCPP_HAS_OBJC_ARC)
|
#if defined(_LIBCPP_HAS_BLOCKS_RUNTIME)
|
||||||
|
|
||||||
extern "C" void *_Block_copy(const void *);
|
extern "C" void *_Block_copy(const void *);
|
||||||
extern "C" void _Block_release(const void *);
|
extern "C" void _Block_release(const void *);
|
||||||
@@ -898,14 +898,22 @@ class __func<_Rp1(^)(_ArgTypes1...), _Alloc, _Rp(_ArgTypes...)>
|
|||||||
public:
|
public:
|
||||||
_LIBCPP_INLINE_VISIBILITY
|
_LIBCPP_INLINE_VISIBILITY
|
||||||
explicit __func(__block_type const& __f)
|
explicit __func(__block_type const& __f)
|
||||||
|
#ifdef _LIBCPP_HAS_OBJC_ARC
|
||||||
|
: __f_(__f)
|
||||||
|
#else
|
||||||
: __f_(reinterpret_cast<__block_type>(__f ? _Block_copy(__f) : nullptr))
|
: __f_(reinterpret_cast<__block_type>(__f ? _Block_copy(__f) : nullptr))
|
||||||
|
#endif
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
// [TODO] add && to save on a retain
|
// [TODO] add && to save on a retain
|
||||||
|
|
||||||
_LIBCPP_INLINE_VISIBILITY
|
_LIBCPP_INLINE_VISIBILITY
|
||||||
explicit __func(__block_type __f, const _Alloc& /* unused */)
|
explicit __func(__block_type __f, const _Alloc& /* unused */)
|
||||||
|
#ifdef _LIBCPP_HAS_OBJC_ARC
|
||||||
|
: __f_(__f)
|
||||||
|
#else
|
||||||
: __f_(reinterpret_cast<__block_type>(__f ? _Block_copy(__f) : nullptr))
|
: __f_(reinterpret_cast<__block_type>(__f ? _Block_copy(__f) : nullptr))
|
||||||
|
#endif
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
virtual __base<_Rp(_ArgTypes...)>* __clone() const {
|
virtual __base<_Rp(_ArgTypes...)>* __clone() const {
|
||||||
@@ -921,8 +929,10 @@ class __func<_Rp1(^)(_ArgTypes1...), _Alloc, _Rp(_ArgTypes...)>
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual void destroy() _NOEXCEPT {
|
virtual void destroy() _NOEXCEPT {
|
||||||
|
#ifndef _LIBCPP_HAS_OBJC_ARC
|
||||||
if (__f_)
|
if (__f_)
|
||||||
_Block_release(__f_);
|
_Block_release(__f_);
|
||||||
|
#endif
|
||||||
__f_ = 0;
|
__f_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -950,7 +960,7 @@ class __func<_Rp1(^)(_ArgTypes1...), _Alloc, _Rp(_ArgTypes...)>
|
|||||||
#endif // _LIBCPP_NO_RTTI
|
#endif // _LIBCPP_NO_RTTI
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _LIBCPP_HAS_EXTENSION_BLOCKS && !_LIBCPP_HAS_OBJC_ARC
|
#endif // _LIBCPP_HAS_EXTENSION_BLOCKS
|
||||||
|
|
||||||
} // namespace __function
|
} // namespace __function
|
||||||
|
|
||||||
|
|||||||
@@ -1330,12 +1330,15 @@ static void readConfigs(opt::InputArgList &args) {
|
|||||||
parseClangOption(std::string("-") + arg->getValue(), arg->getSpelling());
|
parseClangOption(std::string("-") + arg->getValue(), arg->getSpelling());
|
||||||
|
|
||||||
// GCC collect2 passes -plugin-opt=path/to/lto-wrapper with an absolute or
|
// GCC collect2 passes -plugin-opt=path/to/lto-wrapper with an absolute or
|
||||||
// relative path. Just ignore. If not ended with "lto-wrapper", consider it an
|
// relative path. Just ignore. If not ended with "lto-wrapper" (or
|
||||||
|
// "lto-wrapper.exe" for GCC cross-compiled for Windows), consider it an
|
||||||
// unsupported LLVMgold.so option and error.
|
// unsupported LLVMgold.so option and error.
|
||||||
for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq))
|
for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq)) {
|
||||||
if (!StringRef(arg->getValue()).endswith("lto-wrapper"))
|
StringRef v(arg->getValue());
|
||||||
|
if (!v.endswith("lto-wrapper") && !v.endswith("lto-wrapper.exe"))
|
||||||
error(arg->getSpelling() + ": unknown plugin option '" + arg->getValue() +
|
error(arg->getSpelling() + ": unknown plugin option '" + arg->getValue() +
|
||||||
"'");
|
"'");
|
||||||
|
}
|
||||||
|
|
||||||
config->passPlugins = args::getStrings(args, OPT_load_pass_plugins);
|
config->passPlugins = args::getStrings(args, OPT_load_pass_plugins);
|
||||||
|
|
||||||
|
|||||||
@@ -1157,7 +1157,7 @@ template <class ELFT> void ObjFile<ELFT>::postParse() {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (binding == STB_WEAK)
|
if (sym.binding == STB_WEAK || binding == STB_WEAK)
|
||||||
continue;
|
continue;
|
||||||
std::lock_guard<std::mutex> lock(mu);
|
std::lock_guard<std::mutex> lock(mu);
|
||||||
ctx->duplicates.push_back({&sym, this, sec, eSym.st_value});
|
ctx->duplicates.push_back({&sym, this, sec, eSym.st_value});
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ class UnwindInfoSectionImpl final : public UnwindInfoSection {
|
|||||||
public:
|
public:
|
||||||
UnwindInfoSectionImpl() : cuOffsets(target->wordSize) {}
|
UnwindInfoSectionImpl() : cuOffsets(target->wordSize) {}
|
||||||
uint64_t getSize() const override { return unwindInfoSize; }
|
uint64_t getSize() const override { return unwindInfoSize; }
|
||||||
void prepareRelocations() override;
|
void prepare() override;
|
||||||
void finalize() override;
|
void finalize() override;
|
||||||
void writeTo(uint8_t *buf) const override;
|
void writeTo(uint8_t *buf) const override;
|
||||||
|
|
||||||
@@ -166,6 +166,7 @@ class UnwindInfoSectionImpl final : public UnwindInfoSection {
|
|||||||
void prepareRelocations(ConcatInputSection *);
|
void prepareRelocations(ConcatInputSection *);
|
||||||
void relocateCompactUnwind(std::vector<CompactUnwindEntry> &);
|
void relocateCompactUnwind(std::vector<CompactUnwindEntry> &);
|
||||||
void encodePersonalities();
|
void encodePersonalities();
|
||||||
|
Symbol *canonicalizePersonality(Symbol *);
|
||||||
|
|
||||||
uint64_t unwindInfoSize = 0;
|
uint64_t unwindInfoSize = 0;
|
||||||
std::vector<decltype(symbols)::value_type> symbolsVec;
|
std::vector<decltype(symbols)::value_type> symbolsVec;
|
||||||
@@ -218,14 +219,24 @@ void UnwindInfoSection::addSymbol(const Defined *d) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UnwindInfoSectionImpl::prepareRelocations() {
|
void UnwindInfoSectionImpl::prepare() {
|
||||||
// This iteration needs to be deterministic, since prepareRelocations may add
|
// This iteration needs to be deterministic, since prepareRelocations may add
|
||||||
// entries to the GOT. Hence the use of a MapVector for
|
// entries to the GOT. Hence the use of a MapVector for
|
||||||
// UnwindInfoSection::symbols.
|
// UnwindInfoSection::symbols.
|
||||||
for (const Defined *d : make_second_range(symbols))
|
for (const Defined *d : make_second_range(symbols))
|
||||||
if (d->unwindEntry &&
|
if (d->unwindEntry) {
|
||||||
d->unwindEntry->getName() == section_names::compactUnwind)
|
if (d->unwindEntry->getName() == section_names::compactUnwind) {
|
||||||
prepareRelocations(d->unwindEntry);
|
prepareRelocations(d->unwindEntry);
|
||||||
|
} else {
|
||||||
|
// We don't have to add entries to the GOT here because FDEs have
|
||||||
|
// explicit GOT relocations, so Writer::scanRelocations() will add those
|
||||||
|
// GOT entries. However, we still need to canonicalize the personality
|
||||||
|
// pointers (like prepareRelocations() does for CU entries) in order
|
||||||
|
// to avoid overflowing the 3-personality limit.
|
||||||
|
FDE &fde = cast<ObjFile>(d->getFile())->fdes[d->unwindEntry];
|
||||||
|
fde.personality = canonicalizePersonality(fde.personality);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compact unwind relocations have different semantics, so we handle them in a
|
// Compact unwind relocations have different semantics, so we handle them in a
|
||||||
@@ -279,6 +290,7 @@ void UnwindInfoSectionImpl::prepareRelocations(ConcatInputSection *isec) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Similar to canonicalizePersonality(), but we also register a GOT entry.
|
||||||
if (auto *defined = dyn_cast<Defined>(s)) {
|
if (auto *defined = dyn_cast<Defined>(s)) {
|
||||||
// Check if we have created a synthetic symbol at the same address.
|
// Check if we have created a synthetic symbol at the same address.
|
||||||
Symbol *&personality =
|
Symbol *&personality =
|
||||||
@@ -291,6 +303,7 @@ void UnwindInfoSectionImpl::prepareRelocations(ConcatInputSection *isec) {
|
|||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(isa<DylibSymbol>(s));
|
assert(isa<DylibSymbol>(s));
|
||||||
in.got->addEntry(s);
|
in.got->addEntry(s);
|
||||||
continue;
|
continue;
|
||||||
@@ -320,6 +333,18 @@ void UnwindInfoSectionImpl::prepareRelocations(ConcatInputSection *isec) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Symbol *UnwindInfoSectionImpl::canonicalizePersonality(Symbol *personality) {
|
||||||
|
if (auto *defined = dyn_cast_or_null<Defined>(personality)) {
|
||||||
|
// Check if we have created a synthetic symbol at the same address.
|
||||||
|
Symbol *&synth = personalityTable[{defined->isec, defined->value}];
|
||||||
|
if (synth == nullptr)
|
||||||
|
synth = defined;
|
||||||
|
else if (synth != defined)
|
||||||
|
return synth;
|
||||||
|
}
|
||||||
|
return personality;
|
||||||
|
}
|
||||||
|
|
||||||
// We need to apply the relocations to the pre-link compact unwind section
|
// We need to apply the relocations to the pre-link compact unwind section
|
||||||
// before converting it to post-link form. There should only be absolute
|
// before converting it to post-link form. There should only be absolute
|
||||||
// relocations here: since we are not emitting the pre-link CU section, there
|
// relocations here: since we are not emitting the pre-link CU section, there
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class UnwindInfoSection : public SyntheticSection {
|
|||||||
// section entirely.
|
// section entirely.
|
||||||
bool isNeeded() const override { return !allEntriesAreOmitted; }
|
bool isNeeded() const override { return !allEntriesAreOmitted; }
|
||||||
void addSymbol(const Defined *);
|
void addSymbol(const Defined *);
|
||||||
virtual void prepareRelocations() = 0;
|
virtual void prepare() = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
UnwindInfoSection();
|
UnwindInfoSection();
|
||||||
|
|||||||
@@ -675,7 +675,7 @@ void Writer::scanRelocations() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
in.unwindInfo->prepareRelocations();
|
in.unwindInfo->prepare();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Writer::scanSymbols() {
|
void Writer::scanSymbols() {
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
/* Various liblldb typedefs that SWIG needs to know about. */
|
/* Various liblldb typedefs that SWIG needs to know about. */
|
||||||
#define __extension__ /* Undefine GCC keyword to make Swig happy when processing glibc's stdint.h. */
|
#define __extension__ /* Undefine GCC keyword to make Swig happy when processing glibc's stdint.h. */
|
||||||
/* The ISO C99 standard specifies that in C++ implementations limit macros such
|
|
||||||
as INT32_MAX should only be defined if __STDC_LIMIT_MACROS is. */
|
|
||||||
#define __STDC_LIMIT_MACROS
|
|
||||||
%include "stdint.i"
|
%include "stdint.i"
|
||||||
|
|
||||||
%include "lldb/lldb-defines.h"
|
%include "lldb/lldb-defines.h"
|
||||||
|
|||||||
@@ -435,7 +435,7 @@ template <> bool SetNumberFromPyObject<double>(double &number, PyObject *obj) {
|
|||||||
|
|
||||||
%typemap(out) lldb::FileSP {
|
%typemap(out) lldb::FileSP {
|
||||||
$result = nullptr;
|
$result = nullptr;
|
||||||
lldb::FileSP &sp = $1;
|
const lldb::FileSP &sp = $1;
|
||||||
if (sp) {
|
if (sp) {
|
||||||
PythonFile pyfile = unwrapOrSetPythonException(PythonFile::FromFile(*sp));
|
PythonFile pyfile = unwrapOrSetPythonException(PythonFile::FromFile(*sp));
|
||||||
if (!pyfile.IsValid())
|
if (!pyfile.IsValid())
|
||||||
|
|||||||
@@ -182,6 +182,8 @@ class SBType {
|
|||||||
|
|
||||||
lldb::SBType GetTemplateArgumentType(uint32_t idx);
|
lldb::SBType GetTemplateArgumentType(uint32_t idx);
|
||||||
|
|
||||||
|
/// Return the TemplateArgumentKind of the template argument at index idx.
|
||||||
|
/// Variadic argument packs are automatically expanded.
|
||||||
lldb::TemplateArgumentKind GetTemplateArgumentKind(uint32_t idx);
|
lldb::TemplateArgumentKind GetTemplateArgumentKind(uint32_t idx);
|
||||||
|
|
||||||
lldb::SBType GetFunctionReturnType();
|
lldb::SBType GetFunctionReturnType();
|
||||||
|
|||||||
@@ -338,14 +338,28 @@ class CompilerType {
|
|||||||
GetIndexOfChildMemberWithName(const char *name, bool omit_empty_base_classes,
|
GetIndexOfChildMemberWithName(const char *name, bool omit_empty_base_classes,
|
||||||
std::vector<uint32_t> &child_indexes) const;
|
std::vector<uint32_t> &child_indexes) const;
|
||||||
|
|
||||||
size_t GetNumTemplateArguments() const;
|
/// Return the number of template arguments the type has.
|
||||||
|
/// If expand_pack is true, then variadic argument packs are automatically
|
||||||
|
/// expanded to their supplied arguments. If it is false an argument pack
|
||||||
|
/// will only count as 1 argument.
|
||||||
|
size_t GetNumTemplateArguments(bool expand_pack = false) const;
|
||||||
|
|
||||||
lldb::TemplateArgumentKind GetTemplateArgumentKind(size_t idx) const;
|
// Return the TemplateArgumentKind of the template argument at index idx.
|
||||||
CompilerType GetTypeTemplateArgument(size_t idx) const;
|
// If expand_pack is true, then variadic argument packs are automatically
|
||||||
|
// expanded to their supplied arguments. With expand_pack set to false, an
|
||||||
|
// arguement pack will count as 1 argument and return a type of Pack.
|
||||||
|
lldb::TemplateArgumentKind
|
||||||
|
GetTemplateArgumentKind(size_t idx, bool expand_pack = false) const;
|
||||||
|
CompilerType GetTypeTemplateArgument(size_t idx,
|
||||||
|
bool expand_pack = false) const;
|
||||||
|
|
||||||
/// Returns the value of the template argument and its type.
|
/// Returns the value of the template argument and its type.
|
||||||
|
/// If expand_pack is true, then variadic argument packs are automatically
|
||||||
|
/// expanded to their supplied arguments. With expand_pack set to false, an
|
||||||
|
/// arguement pack will count as 1 argument and it is invalid to call this
|
||||||
|
/// method on the pack argument.
|
||||||
llvm::Optional<IntegralTemplateArgument>
|
llvm::Optional<IntegralTemplateArgument>
|
||||||
GetIntegralTemplateArgument(size_t idx) const;
|
GetIntegralTemplateArgument(size_t idx, bool expand_pack = false) const;
|
||||||
|
|
||||||
CompilerType GetTypeForFormatters() const;
|
CompilerType GetTypeForFormatters() const;
|
||||||
|
|
||||||
|
|||||||
@@ -346,14 +346,18 @@ class TypeSystem : public PluginInterface {
|
|||||||
const char *name, bool omit_empty_base_classes,
|
const char *name, bool omit_empty_base_classes,
|
||||||
std::vector<uint32_t> &child_indexes) = 0;
|
std::vector<uint32_t> &child_indexes) = 0;
|
||||||
|
|
||||||
virtual size_t GetNumTemplateArguments(lldb::opaque_compiler_type_t type);
|
virtual size_t GetNumTemplateArguments(lldb::opaque_compiler_type_t type,
|
||||||
|
bool expand_pack);
|
||||||
|
|
||||||
virtual lldb::TemplateArgumentKind
|
virtual lldb::TemplateArgumentKind
|
||||||
GetTemplateArgumentKind(lldb::opaque_compiler_type_t type, size_t idx);
|
GetTemplateArgumentKind(lldb::opaque_compiler_type_t type, size_t idx,
|
||||||
virtual CompilerType GetTypeTemplateArgument(lldb::opaque_compiler_type_t type,
|
bool expand_pack);
|
||||||
size_t idx);
|
virtual CompilerType
|
||||||
|
GetTypeTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx,
|
||||||
|
bool expand_pack);
|
||||||
virtual llvm::Optional<CompilerType::IntegralTemplateArgument>
|
virtual llvm::Optional<CompilerType::IntegralTemplateArgument>
|
||||||
GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx);
|
GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx,
|
||||||
|
bool expand_pack);
|
||||||
|
|
||||||
// Dumping types
|
// Dumping types
|
||||||
|
|
||||||
|
|||||||
@@ -542,7 +542,8 @@ uint32_t SBType::GetNumberOfTemplateArguments() {
|
|||||||
LLDB_INSTRUMENT_VA(this);
|
LLDB_INSTRUMENT_VA(this);
|
||||||
|
|
||||||
if (IsValid())
|
if (IsValid())
|
||||||
return m_opaque_sp->GetCompilerType(false).GetNumTemplateArguments();
|
return m_opaque_sp->GetCompilerType(false).GetNumTemplateArguments(
|
||||||
|
/*expand_pack=*/true);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -553,13 +554,15 @@ lldb::SBType SBType::GetTemplateArgumentType(uint32_t idx) {
|
|||||||
return SBType();
|
return SBType();
|
||||||
|
|
||||||
CompilerType type;
|
CompilerType type;
|
||||||
|
const bool expand_pack = true;
|
||||||
switch(GetTemplateArgumentKind(idx)) {
|
switch(GetTemplateArgumentKind(idx)) {
|
||||||
case eTemplateArgumentKindType:
|
case eTemplateArgumentKindType:
|
||||||
type = m_opaque_sp->GetCompilerType(false).GetTypeTemplateArgument(idx);
|
type = m_opaque_sp->GetCompilerType(false).GetTypeTemplateArgument(
|
||||||
|
idx, expand_pack);
|
||||||
break;
|
break;
|
||||||
case eTemplateArgumentKindIntegral:
|
case eTemplateArgumentKindIntegral:
|
||||||
type = m_opaque_sp->GetCompilerType(false)
|
type = m_opaque_sp->GetCompilerType(false)
|
||||||
.GetIntegralTemplateArgument(idx)
|
.GetIntegralTemplateArgument(idx, expand_pack)
|
||||||
->type;
|
->type;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -574,7 +577,8 @@ lldb::TemplateArgumentKind SBType::GetTemplateArgumentKind(uint32_t idx) {
|
|||||||
LLDB_INSTRUMENT_VA(this, idx);
|
LLDB_INSTRUMENT_VA(this, idx);
|
||||||
|
|
||||||
if (IsValid())
|
if (IsValid())
|
||||||
return m_opaque_sp->GetCompilerType(false).GetTemplateArgumentKind(idx);
|
return m_opaque_sp->GetCompilerType(false).GetTemplateArgumentKind(
|
||||||
|
idx, /*expand_pack=*/true);
|
||||||
return eTemplateArgumentKindNull;
|
return eTemplateArgumentKindNull;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7096,7 +7096,8 @@ TypeSystemClang::GetIndexOfChildWithName(lldb::opaque_compiler_type_t type,
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
TypeSystemClang::GetNumTemplateArguments(lldb::opaque_compiler_type_t type) {
|
TypeSystemClang::GetNumTemplateArguments(lldb::opaque_compiler_type_t type,
|
||||||
|
bool expand_pack) {
|
||||||
if (!type)
|
if (!type)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@@ -7111,8 +7112,17 @@ TypeSystemClang::GetNumTemplateArguments(lldb::opaque_compiler_type_t type) {
|
|||||||
const clang::ClassTemplateSpecializationDecl *template_decl =
|
const clang::ClassTemplateSpecializationDecl *template_decl =
|
||||||
llvm::dyn_cast<clang::ClassTemplateSpecializationDecl>(
|
llvm::dyn_cast<clang::ClassTemplateSpecializationDecl>(
|
||||||
cxx_record_decl);
|
cxx_record_decl);
|
||||||
if (template_decl)
|
if (template_decl) {
|
||||||
return template_decl->getTemplateArgs().size();
|
const auto &template_arg_list = template_decl->getTemplateArgs();
|
||||||
|
size_t num_args = template_arg_list.size();
|
||||||
|
assert(num_args && "template specialization without any args");
|
||||||
|
if (expand_pack && num_args) {
|
||||||
|
const auto &pack = template_arg_list[num_args - 1];
|
||||||
|
if (pack.getKind() == clang::TemplateArgument::Pack)
|
||||||
|
num_args += pack.pack_size() - 1;
|
||||||
|
}
|
||||||
|
return num_args;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -7149,15 +7159,51 @@ TypeSystemClang::GetAsTemplateSpecialization(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const TemplateArgument *
|
||||||
|
GetNthTemplateArgument(const clang::ClassTemplateSpecializationDecl *decl,
|
||||||
|
size_t idx, bool expand_pack) {
|
||||||
|
const auto &args = decl->getTemplateArgs();
|
||||||
|
const size_t args_size = args.size();
|
||||||
|
|
||||||
|
assert(args_size && "template specialization without any args");
|
||||||
|
if (!args_size)
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
const size_t last_idx = args_size - 1;
|
||||||
|
|
||||||
|
// We're asked for a template argument that can't be a parameter pack, so
|
||||||
|
// return it without worrying about 'expand_pack'.
|
||||||
|
if (idx < last_idx)
|
||||||
|
return &args[idx];
|
||||||
|
|
||||||
|
// We're asked for the last template argument but we don't want/need to
|
||||||
|
// expand it.
|
||||||
|
if (!expand_pack || args[last_idx].getKind() != clang::TemplateArgument::Pack)
|
||||||
|
return idx >= args.size() ? nullptr : &args[idx];
|
||||||
|
|
||||||
|
// Index into the expanded pack.
|
||||||
|
// Note that 'idx' counts from the beginning of all template arguments
|
||||||
|
// (including the ones preceding the parameter pack).
|
||||||
|
const auto &pack = args[last_idx];
|
||||||
|
const size_t pack_idx = idx - last_idx;
|
||||||
|
const size_t pack_size = pack.pack_size();
|
||||||
|
assert(pack_idx < pack_size && "parameter pack index out-of-bounds");
|
||||||
|
return &pack.pack_elements()[pack_idx];
|
||||||
|
}
|
||||||
|
|
||||||
lldb::TemplateArgumentKind
|
lldb::TemplateArgumentKind
|
||||||
TypeSystemClang::GetTemplateArgumentKind(lldb::opaque_compiler_type_t type,
|
TypeSystemClang::GetTemplateArgumentKind(lldb::opaque_compiler_type_t type,
|
||||||
size_t arg_idx) {
|
size_t arg_idx, bool expand_pack) {
|
||||||
const clang::ClassTemplateSpecializationDecl *template_decl =
|
const clang::ClassTemplateSpecializationDecl *template_decl =
|
||||||
GetAsTemplateSpecialization(type);
|
GetAsTemplateSpecialization(type);
|
||||||
if (! template_decl || arg_idx >= template_decl->getTemplateArgs().size())
|
if (!template_decl)
|
||||||
return eTemplateArgumentKindNull;
|
return eTemplateArgumentKindNull;
|
||||||
|
|
||||||
switch (template_decl->getTemplateArgs()[arg_idx].getKind()) {
|
const auto *arg = GetNthTemplateArgument(template_decl, arg_idx, expand_pack);
|
||||||
|
if (!arg)
|
||||||
|
return eTemplateArgumentKindNull;
|
||||||
|
|
||||||
|
switch (arg->getKind()) {
|
||||||
case clang::TemplateArgument::Null:
|
case clang::TemplateArgument::Null:
|
||||||
return eTemplateArgumentKindNull;
|
return eTemplateArgumentKindNull;
|
||||||
|
|
||||||
@@ -7190,35 +7236,32 @@ TypeSystemClang::GetTemplateArgumentKind(lldb::opaque_compiler_type_t type,
|
|||||||
|
|
||||||
CompilerType
|
CompilerType
|
||||||
TypeSystemClang::GetTypeTemplateArgument(lldb::opaque_compiler_type_t type,
|
TypeSystemClang::GetTypeTemplateArgument(lldb::opaque_compiler_type_t type,
|
||||||
size_t idx) {
|
size_t idx, bool expand_pack) {
|
||||||
const clang::ClassTemplateSpecializationDecl *template_decl =
|
const clang::ClassTemplateSpecializationDecl *template_decl =
|
||||||
GetAsTemplateSpecialization(type);
|
GetAsTemplateSpecialization(type);
|
||||||
if (!template_decl || idx >= template_decl->getTemplateArgs().size())
|
if (!template_decl)
|
||||||
return CompilerType();
|
return CompilerType();
|
||||||
|
|
||||||
const clang::TemplateArgument &template_arg =
|
const auto *arg = GetNthTemplateArgument(template_decl, idx, expand_pack);
|
||||||
template_decl->getTemplateArgs()[idx];
|
if (!arg || arg->getKind() != clang::TemplateArgument::Type)
|
||||||
if (template_arg.getKind() != clang::TemplateArgument::Type)
|
|
||||||
return CompilerType();
|
return CompilerType();
|
||||||
|
|
||||||
return GetType(template_arg.getAsType());
|
return GetType(arg->getAsType());
|
||||||
}
|
}
|
||||||
|
|
||||||
Optional<CompilerType::IntegralTemplateArgument>
|
Optional<CompilerType::IntegralTemplateArgument>
|
||||||
TypeSystemClang::GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type,
|
TypeSystemClang::GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type,
|
||||||
size_t idx) {
|
size_t idx, bool expand_pack) {
|
||||||
const clang::ClassTemplateSpecializationDecl *template_decl =
|
const clang::ClassTemplateSpecializationDecl *template_decl =
|
||||||
GetAsTemplateSpecialization(type);
|
GetAsTemplateSpecialization(type);
|
||||||
if (! template_decl || idx >= template_decl->getTemplateArgs().size())
|
if (!template_decl)
|
||||||
return llvm::None;
|
return llvm::None;
|
||||||
|
|
||||||
const clang::TemplateArgument &template_arg =
|
const auto *arg = GetNthTemplateArgument(template_decl, idx, expand_pack);
|
||||||
template_decl->getTemplateArgs()[idx];
|
if (!arg || arg->getKind() != clang::TemplateArgument::Integral)
|
||||||
if (template_arg.getKind() != clang::TemplateArgument::Integral)
|
|
||||||
return llvm::None;
|
return llvm::None;
|
||||||
|
|
||||||
return {
|
return {{arg->getAsIntegral(), GetType(arg->getIntegralType())}};
|
||||||
{template_arg.getAsIntegral(), GetType(template_arg.getIntegralType())}};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CompilerType TypeSystemClang::GetTypeForFormatters(void *type) {
|
CompilerType TypeSystemClang::GetTypeForFormatters(void *type) {
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ class TypePayloadClang {
|
|||||||
void SetOwningModule(OptionalClangModuleID id);
|
void SetOwningModule(OptionalClangModuleID id);
|
||||||
/// \}
|
/// \}
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A TypeSystem implementation based on Clang.
|
/// A TypeSystem implementation based on Clang.
|
||||||
///
|
///
|
||||||
/// This class uses a single clang::ASTContext as the backend for storing
|
/// This class uses a single clang::ASTContext as the backend for storing
|
||||||
@@ -334,7 +334,7 @@ class TypeSystemClang : public TypeSystem {
|
|||||||
|
|
||||||
llvm::SmallVector<const char *, 2> names;
|
llvm::SmallVector<const char *, 2> names;
|
||||||
llvm::SmallVector<clang::TemplateArgument, 2> args;
|
llvm::SmallVector<clang::TemplateArgument, 2> args;
|
||||||
|
|
||||||
const char * pack_name = nullptr;
|
const char * pack_name = nullptr;
|
||||||
std::unique_ptr<TemplateParameterInfos> packed_args;
|
std::unique_ptr<TemplateParameterInfos> packed_args;
|
||||||
};
|
};
|
||||||
@@ -539,7 +539,7 @@ class TypeSystemClang : public TypeSystem {
|
|||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
bool Verify(lldb::opaque_compiler_type_t type) override;
|
bool Verify(lldb::opaque_compiler_type_t type) override;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool IsArrayType(lldb::opaque_compiler_type_t type,
|
bool IsArrayType(lldb::opaque_compiler_type_t type,
|
||||||
CompilerType *element_type, uint64_t *size,
|
CompilerType *element_type, uint64_t *size,
|
||||||
bool *is_incomplete) override;
|
bool *is_incomplete) override;
|
||||||
@@ -812,16 +812,17 @@ class TypeSystemClang : public TypeSystem {
|
|||||||
const char *name, bool omit_empty_base_classes,
|
const char *name, bool omit_empty_base_classes,
|
||||||
std::vector<uint32_t> &child_indexes) override;
|
std::vector<uint32_t> &child_indexes) override;
|
||||||
|
|
||||||
size_t GetNumTemplateArguments(lldb::opaque_compiler_type_t type) override;
|
size_t GetNumTemplateArguments(lldb::opaque_compiler_type_t type,
|
||||||
|
bool expand_pack) override;
|
||||||
|
|
||||||
lldb::TemplateArgumentKind
|
lldb::TemplateArgumentKind
|
||||||
GetTemplateArgumentKind(lldb::opaque_compiler_type_t type,
|
GetTemplateArgumentKind(lldb::opaque_compiler_type_t type, size_t idx,
|
||||||
size_t idx) override;
|
bool expand_pack) override;
|
||||||
CompilerType GetTypeTemplateArgument(lldb::opaque_compiler_type_t type,
|
CompilerType GetTypeTemplateArgument(lldb::opaque_compiler_type_t type,
|
||||||
size_t idx) override;
|
size_t idx, bool expand_pack) override;
|
||||||
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
||||||
GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type,
|
GetIntegralTemplateArgument(lldb::opaque_compiler_type_t type, size_t idx,
|
||||||
size_t idx) override;
|
bool expand_pack) override;
|
||||||
|
|
||||||
CompilerType GetTypeForFormatters(void *type) override;
|
CompilerType GetTypeForFormatters(void *type) override;
|
||||||
|
|
||||||
|
|||||||
@@ -659,30 +659,32 @@ size_t CompilerType::GetIndexOfChildMemberWithName(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t CompilerType::GetNumTemplateArguments() const {
|
size_t CompilerType::GetNumTemplateArguments(bool expand_pack) const {
|
||||||
if (IsValid()) {
|
if (IsValid()) {
|
||||||
return m_type_system->GetNumTemplateArguments(m_type);
|
return m_type_system->GetNumTemplateArguments(m_type, expand_pack);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
TemplateArgumentKind CompilerType::GetTemplateArgumentKind(size_t idx) const {
|
TemplateArgumentKind
|
||||||
|
CompilerType::GetTemplateArgumentKind(size_t idx, bool expand_pack) const {
|
||||||
if (IsValid())
|
if (IsValid())
|
||||||
return m_type_system->GetTemplateArgumentKind(m_type, idx);
|
return m_type_system->GetTemplateArgumentKind(m_type, idx, expand_pack);
|
||||||
return eTemplateArgumentKindNull;
|
return eTemplateArgumentKindNull;
|
||||||
}
|
}
|
||||||
|
|
||||||
CompilerType CompilerType::GetTypeTemplateArgument(size_t idx) const {
|
CompilerType CompilerType::GetTypeTemplateArgument(size_t idx,
|
||||||
|
bool expand_pack) const {
|
||||||
if (IsValid()) {
|
if (IsValid()) {
|
||||||
return m_type_system->GetTypeTemplateArgument(m_type, idx);
|
return m_type_system->GetTypeTemplateArgument(m_type, idx, expand_pack);
|
||||||
}
|
}
|
||||||
return CompilerType();
|
return CompilerType();
|
||||||
}
|
}
|
||||||
|
|
||||||
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
||||||
CompilerType::GetIntegralTemplateArgument(size_t idx) const {
|
CompilerType::GetIntegralTemplateArgument(size_t idx, bool expand_pack) const {
|
||||||
if (IsValid())
|
if (IsValid())
|
||||||
return m_type_system->GetIntegralTemplateArgument(m_type, idx);
|
return m_type_system->GetIntegralTemplateArgument(m_type, idx, expand_pack);
|
||||||
return llvm::None;
|
return llvm::None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -118,23 +118,25 @@ CompilerType TypeSystem::GetTypeForFormatters(void *type) {
|
|||||||
return CompilerType(this, type);
|
return CompilerType(this, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t TypeSystem::GetNumTemplateArguments(lldb::opaque_compiler_type_t type) {
|
size_t TypeSystem::GetNumTemplateArguments(lldb::opaque_compiler_type_t type,
|
||||||
|
bool expand_pack) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
TemplateArgumentKind
|
TemplateArgumentKind
|
||||||
TypeSystem::GetTemplateArgumentKind(opaque_compiler_type_t type, size_t idx) {
|
TypeSystem::GetTemplateArgumentKind(opaque_compiler_type_t type, size_t idx,
|
||||||
|
bool expand_pack) {
|
||||||
return eTemplateArgumentKindNull;
|
return eTemplateArgumentKindNull;
|
||||||
}
|
}
|
||||||
|
|
||||||
CompilerType TypeSystem::GetTypeTemplateArgument(opaque_compiler_type_t type,
|
CompilerType TypeSystem::GetTypeTemplateArgument(opaque_compiler_type_t type,
|
||||||
size_t idx) {
|
size_t idx, bool expand_pack) {
|
||||||
return CompilerType();
|
return CompilerType();
|
||||||
}
|
}
|
||||||
|
|
||||||
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
llvm::Optional<CompilerType::IntegralTemplateArgument>
|
||||||
TypeSystem::GetIntegralTemplateArgument(opaque_compiler_type_t type,
|
TypeSystem::GetIntegralTemplateArgument(opaque_compiler_type_t type, size_t idx,
|
||||||
size_t idx) {
|
bool expand_pack) {
|
||||||
return llvm::None;
|
return llvm::None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1110,6 +1110,12 @@ void InterleavedAccessInfo::collectConstStrideAccesses(
|
|||||||
continue;
|
continue;
|
||||||
Type *ElementTy = getLoadStoreType(&I);
|
Type *ElementTy = getLoadStoreType(&I);
|
||||||
|
|
||||||
|
// Currently, codegen doesn't support cases where the type size doesn't
|
||||||
|
// match the alloc size. Skip them for now.
|
||||||
|
uint64_t Size = DL.getTypeAllocSize(ElementTy);
|
||||||
|
if (Size * 8 != DL.getTypeSizeInBits(ElementTy))
|
||||||
|
continue;
|
||||||
|
|
||||||
// We don't check wrapping here because we don't know yet if Ptr will be
|
// We don't check wrapping here because we don't know yet if Ptr will be
|
||||||
// part of a full group or a group with gaps. Checking wrapping for all
|
// part of a full group or a group with gaps. Checking wrapping for all
|
||||||
// pointers (even those that end up in groups with no gaps) will be overly
|
// pointers (even those that end up in groups with no gaps) will be overly
|
||||||
@@ -1121,7 +1127,6 @@ void InterleavedAccessInfo::collectConstStrideAccesses(
|
|||||||
/*Assume=*/true, /*ShouldCheckWrap=*/false);
|
/*Assume=*/true, /*ShouldCheckWrap=*/false);
|
||||||
|
|
||||||
const SCEV *Scev = replaceSymbolicStrideSCEV(PSE, Strides, Ptr);
|
const SCEV *Scev = replaceSymbolicStrideSCEV(PSE, Strides, Ptr);
|
||||||
uint64_t Size = DL.getTypeAllocSize(ElementTy);
|
|
||||||
AccessStrideInfo[&I] = StrideDescriptor(Stride, Scev, Size,
|
AccessStrideInfo[&I] = StrideDescriptor(Stride, Scev, Size,
|
||||||
getLoadStoreAlignment(&I));
|
getLoadStoreAlignment(&I));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9693,6 +9693,7 @@ TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
|
|||||||
Entry.Alignment = Alignment;
|
Entry.Alignment = Alignment;
|
||||||
CLI.getArgs().insert(CLI.getArgs().begin(), Entry);
|
CLI.getArgs().insert(CLI.getArgs().begin(), Entry);
|
||||||
CLI.NumFixedArgs += 1;
|
CLI.NumFixedArgs += 1;
|
||||||
|
CLI.getArgs()[0].IndirectType = CLI.RetTy;
|
||||||
CLI.RetTy = Type::getVoidTy(CLI.RetTy->getContext());
|
CLI.RetTy = Type::getVoidTy(CLI.RetTy->getContext());
|
||||||
|
|
||||||
// sret demotion isn't compatible with tail-calls, since the sret argument
|
// sret demotion isn't compatible with tail-calls, since the sret argument
|
||||||
|
|||||||
@@ -569,7 +569,8 @@ void IRPromoter::TruncateSinks() {
|
|||||||
void IRPromoter::Cleanup() {
|
void IRPromoter::Cleanup() {
|
||||||
LLVM_DEBUG(dbgs() << "IR Promotion: Cleanup..\n");
|
LLVM_DEBUG(dbgs() << "IR Promotion: Cleanup..\n");
|
||||||
// Some zexts will now have become redundant, along with their trunc
|
// Some zexts will now have become redundant, along with their trunc
|
||||||
// operands, so remove them
|
// operands, so remove them.
|
||||||
|
// Some zexts need to be replaced with truncate if src bitwidth is larger.
|
||||||
for (auto *V : Visited) {
|
for (auto *V : Visited) {
|
||||||
if (!isa<ZExtInst>(V))
|
if (!isa<ZExtInst>(V))
|
||||||
continue;
|
continue;
|
||||||
@@ -584,6 +585,11 @@ void IRPromoter::Cleanup() {
|
|||||||
<< "\n");
|
<< "\n");
|
||||||
ReplaceAllUsersOfWith(ZExt, Src);
|
ReplaceAllUsersOfWith(ZExt, Src);
|
||||||
continue;
|
continue;
|
||||||
|
} else if (ZExt->getSrcTy()->getScalarSizeInBits() > PromotedWidth) {
|
||||||
|
IRBuilder<> Builder{ZExt};
|
||||||
|
Value *Trunc = Builder.CreateTrunc(Src, ZExt->getDestTy());
|
||||||
|
ReplaceAllUsersOfWith(ZExt, Trunc);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We've inserted a trunc for a zext sink, but we already know that the
|
// We've inserted a trunc for a zext sink, but we already know that the
|
||||||
|
|||||||
@@ -1040,7 +1040,7 @@ static bool UpgradeIntrinsicFunction1(Function *F, Function *&NewFn) {
|
|||||||
Name, F->getParent());
|
Name, F->getParent());
|
||||||
|
|
||||||
// The new function may also need remangling.
|
// The new function may also need remangling.
|
||||||
if (auto Result = llvm::Intrinsic::remangleIntrinsicFunction(F))
|
if (auto Result = llvm::Intrinsic::remangleIntrinsicFunction(NewFn))
|
||||||
NewFn = *Result;
|
NewFn = *Result;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -432,10 +432,6 @@ void llvm::sys::SetOneShotPipeSignalFunction(void (*Handler)()) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void llvm::sys::DefaultOneShotPipeSignalHandler() {
|
void llvm::sys::DefaultOneShotPipeSignalHandler() {
|
||||||
// UNIX03 conformance requires a non-zero exit code and an error message
|
|
||||||
// to stderr when writing to a closed stdout fails.
|
|
||||||
errs() << "error: write on a pipe with no reader\n";
|
|
||||||
|
|
||||||
// Send a special return code that drivers can check for, from sysexits.h.
|
// Send a special return code that drivers can check for, from sysexits.h.
|
||||||
exit(EX_IOERR);
|
exit(EX_IOERR);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5805,7 +5805,7 @@ SDValue AArch64TargetLowering::LowerFormalArguments(
|
|||||||
assert(!Res && "Call operand has unhandled type");
|
assert(!Res && "Call operand has unhandled type");
|
||||||
(void)Res;
|
(void)Res;
|
||||||
}
|
}
|
||||||
SmallVector<SDValue, 16> ArgValues;
|
|
||||||
unsigned ExtraArgLocs = 0;
|
unsigned ExtraArgLocs = 0;
|
||||||
for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
|
for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
|
||||||
CCValAssign &VA = ArgLocs[i - ExtraArgLocs];
|
CCValAssign &VA = ArgLocs[i - ExtraArgLocs];
|
||||||
@@ -6157,17 +6157,10 @@ void AArch64TargetLowering::saveVarArgRegisters(CCState &CCInfo,
|
|||||||
/// appropriate copies out of appropriate physical registers.
|
/// appropriate copies out of appropriate physical registers.
|
||||||
SDValue AArch64TargetLowering::LowerCallResult(
|
SDValue AArch64TargetLowering::LowerCallResult(
|
||||||
SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg,
|
SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
|
const SmallVectorImpl<CCValAssign> &RVLocs, const SDLoc &DL,
|
||||||
SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
|
SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
|
||||||
SDValue ThisVal) const {
|
SDValue ThisVal) const {
|
||||||
CCAssignFn *RetCC = CCAssignFnForReturn(CallConv);
|
|
||||||
// Assign locations to each value returned by this call.
|
|
||||||
SmallVector<CCValAssign, 16> RVLocs;
|
|
||||||
DenseMap<unsigned, SDValue> CopiedRegs;
|
DenseMap<unsigned, SDValue> CopiedRegs;
|
||||||
CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
|
|
||||||
*DAG.getContext());
|
|
||||||
CCInfo.AnalyzeCallResult(Ins, RetCC);
|
|
||||||
|
|
||||||
// Copy all of the result registers out of their specified physreg.
|
// Copy all of the result registers out of their specified physreg.
|
||||||
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
||||||
CCValAssign VA = RVLocs[i];
|
CCValAssign VA = RVLocs[i];
|
||||||
@@ -6508,17 +6501,39 @@ AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
|
|||||||
GuardWithBTI = FuncInfo->branchTargetEnforcement();
|
GuardWithBTI = FuncInfo->branchTargetEnforcement();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Analyze operands of the call, assigning locations to each operand.
|
||||||
|
SmallVector<CCValAssign, 16> ArgLocs;
|
||||||
|
CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
|
||||||
|
|
||||||
|
if (IsVarArg) {
|
||||||
|
unsigned NumArgs = Outs.size();
|
||||||
|
|
||||||
|
for (unsigned i = 0; i != NumArgs; ++i) {
|
||||||
|
if (!Outs[i].IsFixed && Outs[i].VT.isScalableVector())
|
||||||
|
report_fatal_error("Passing SVE types to variadic functions is "
|
||||||
|
"currently not supported");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
analyzeCallOperands(*this, Subtarget, CLI, CCInfo);
|
||||||
|
|
||||||
|
CCAssignFn *RetCC = CCAssignFnForReturn(CallConv);
|
||||||
|
// Assign locations to each value returned by this call.
|
||||||
|
SmallVector<CCValAssign, 16> RVLocs;
|
||||||
|
CCState RetCCInfo(CallConv, IsVarArg, DAG.getMachineFunction(), RVLocs,
|
||||||
|
*DAG.getContext());
|
||||||
|
RetCCInfo.AnalyzeCallResult(Ins, RetCC);
|
||||||
|
|
||||||
// Check callee args/returns for SVE registers and set calling convention
|
// Check callee args/returns for SVE registers and set calling convention
|
||||||
// accordingly.
|
// accordingly.
|
||||||
if (CallConv == CallingConv::C || CallConv == CallingConv::Fast) {
|
if (CallConv == CallingConv::C || CallConv == CallingConv::Fast) {
|
||||||
bool CalleeOutSVE = any_of(Outs, [](ISD::OutputArg &Out){
|
auto HasSVERegLoc = [](CCValAssign &Loc) {
|
||||||
return Out.VT.isScalableVector();
|
if (!Loc.isRegLoc())
|
||||||
});
|
return false;
|
||||||
bool CalleeInSVE = any_of(Ins, [](ISD::InputArg &In){
|
return AArch64::ZPRRegClass.contains(Loc.getLocReg()) ||
|
||||||
return In.VT.isScalableVector();
|
AArch64::PPRRegClass.contains(Loc.getLocReg());
|
||||||
});
|
};
|
||||||
|
if (any_of(RVLocs, HasSVERegLoc) || any_of(ArgLocs, HasSVERegLoc))
|
||||||
if (CalleeInSVE || CalleeOutSVE)
|
|
||||||
CallConv = CallingConv::AArch64_SVE_VectorCall;
|
CallConv = CallingConv::AArch64_SVE_VectorCall;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -6540,22 +6555,6 @@ AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
|
|||||||
report_fatal_error("failed to perform tail call elimination on a call "
|
report_fatal_error("failed to perform tail call elimination on a call "
|
||||||
"site marked musttail");
|
"site marked musttail");
|
||||||
|
|
||||||
// Analyze operands of the call, assigning locations to each operand.
|
|
||||||
SmallVector<CCValAssign, 16> ArgLocs;
|
|
||||||
CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
|
|
||||||
|
|
||||||
if (IsVarArg) {
|
|
||||||
unsigned NumArgs = Outs.size();
|
|
||||||
|
|
||||||
for (unsigned i = 0; i != NumArgs; ++i) {
|
|
||||||
if (!Outs[i].IsFixed && Outs[i].VT.isScalableVector())
|
|
||||||
report_fatal_error("Passing SVE types to variadic functions is "
|
|
||||||
"currently not supported");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
analyzeCallOperands(*this, Subtarget, CLI, CCInfo);
|
|
||||||
|
|
||||||
// Get a count of how many bytes are to be pushed on the stack.
|
// Get a count of how many bytes are to be pushed on the stack.
|
||||||
unsigned NumBytes = CCInfo.getNextStackOffset();
|
unsigned NumBytes = CCInfo.getNextStackOffset();
|
||||||
|
|
||||||
@@ -6961,7 +6960,7 @@ AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
|
|||||||
|
|
||||||
// Handle result values, copying them out of physregs into vregs that we
|
// Handle result values, copying them out of physregs into vregs that we
|
||||||
// return.
|
// return.
|
||||||
return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, Ins, DL, DAG,
|
return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, RVLocs, DL, DAG,
|
||||||
InVals, IsThisReturn,
|
InVals, IsThisReturn,
|
||||||
IsThisReturn ? OutVals[0] : SDValue());
|
IsThisReturn ? OutVals[0] : SDValue());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -894,7 +894,7 @@ class AArch64TargetLowering : public TargetLowering {
|
|||||||
|
|
||||||
SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
|
SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<CCValAssign> &RVLocs,
|
||||||
const SDLoc &DL, SelectionDAG &DAG,
|
const SDLoc &DL, SelectionDAG &DAG,
|
||||||
SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
|
SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
|
||||||
SDValue ThisVal) const;
|
SDValue ThisVal) const;
|
||||||
|
|||||||
@@ -249,6 +249,7 @@ SITargetLowering::SITargetLowering(const TargetMachine &TM,
|
|||||||
case ISD::STORE:
|
case ISD::STORE:
|
||||||
case ISD::BUILD_VECTOR:
|
case ISD::BUILD_VECTOR:
|
||||||
case ISD::BITCAST:
|
case ISD::BITCAST:
|
||||||
|
case ISD::UNDEF:
|
||||||
case ISD::EXTRACT_VECTOR_ELT:
|
case ISD::EXTRACT_VECTOR_ELT:
|
||||||
case ISD::INSERT_VECTOR_ELT:
|
case ISD::INSERT_VECTOR_ELT:
|
||||||
case ISD::EXTRACT_SUBVECTOR:
|
case ISD::EXTRACT_SUBVECTOR:
|
||||||
@@ -516,6 +517,7 @@ SITargetLowering::SITargetLowering(const TargetMachine &TM,
|
|||||||
case ISD::STORE:
|
case ISD::STORE:
|
||||||
case ISD::BUILD_VECTOR:
|
case ISD::BUILD_VECTOR:
|
||||||
case ISD::BITCAST:
|
case ISD::BITCAST:
|
||||||
|
case ISD::UNDEF:
|
||||||
case ISD::EXTRACT_VECTOR_ELT:
|
case ISD::EXTRACT_VECTOR_ELT:
|
||||||
case ISD::INSERT_VECTOR_ELT:
|
case ISD::INSERT_VECTOR_ELT:
|
||||||
case ISD::INSERT_SUBVECTOR:
|
case ISD::INSERT_SUBVECTOR:
|
||||||
|
|||||||
@@ -1036,7 +1036,7 @@ InstructionCost ARMTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
|
|||||||
// split, we may need an expensive shuffle to get two in sync. This has the
|
// split, we may need an expensive shuffle to get two in sync. This has the
|
||||||
// effect of making larger than legal compares (v8i32 for example)
|
// effect of making larger than legal compares (v8i32 for example)
|
||||||
// expensive.
|
// expensive.
|
||||||
if (LT.second.getVectorNumElements() > 2) {
|
if (LT.second.isVector() && LT.second.getVectorNumElements() > 2) {
|
||||||
if (LT.first > 1)
|
if (LT.first > 1)
|
||||||
return LT.first * BaseCost +
|
return LT.first * BaseCost +
|
||||||
BaseT::getScalarizationOverhead(VecCondTy, true, false);
|
BaseT::getScalarizationOverhead(VecCondTy, true, false);
|
||||||
|
|||||||
@@ -125,10 +125,14 @@ def CC_Sparc64 : CallingConv<[
|
|||||||
def RetCC_Sparc64 : CallingConv<[
|
def RetCC_Sparc64 : CallingConv<[
|
||||||
// A single f32 return value always goes in %f0. The ABI doesn't specify what
|
// A single f32 return value always goes in %f0. The ABI doesn't specify what
|
||||||
// happens to multiple f32 return values outside a struct.
|
// happens to multiple f32 return values outside a struct.
|
||||||
CCIfType<[f32], CCCustom<"CC_Sparc64_Half">>,
|
CCIfType<[f32], CCCustom<"RetCC_Sparc64_Half">>,
|
||||||
|
|
||||||
// Otherwise, return values are passed exactly like arguments.
|
// Otherwise, return values are passed exactly like arguments, except that
|
||||||
CCDelegateTo<CC_Sparc64>
|
// returns that are too big to fit into the registers is passed as an sret
|
||||||
|
// instead.
|
||||||
|
CCIfInReg<CCIfType<[i32, f32], CCCustom<"RetCC_Sparc64_Half">>>,
|
||||||
|
CCIfType<[i32], CCPromoteToType<i64>>,
|
||||||
|
CCCustom<"RetCC_Sparc64_Full">
|
||||||
]>;
|
]>;
|
||||||
|
|
||||||
// Callee-saved registers are handled by the register window mechanism.
|
// Callee-saved registers are handled by the register window mechanism.
|
||||||
|
|||||||
@@ -101,9 +101,9 @@ static bool CC_Sparc_Assign_Ret_Split_64(unsigned &ValNo, MVT &ValVT,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Allocate a full-sized argument for the 64-bit ABI.
|
// Allocate a full-sized argument for the 64-bit ABI.
|
||||||
static bool CC_Sparc64_Full(unsigned &ValNo, MVT &ValVT,
|
static bool Analyze_CC_Sparc64_Full(bool IsReturn, unsigned &ValNo, MVT &ValVT,
|
||||||
MVT &LocVT, CCValAssign::LocInfo &LocInfo,
|
MVT &LocVT, CCValAssign::LocInfo &LocInfo,
|
||||||
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
assert((LocVT == MVT::f32 || LocVT == MVT::f128
|
assert((LocVT == MVT::f32 || LocVT == MVT::f128
|
||||||
|| LocVT.getSizeInBits() == 64) &&
|
|| LocVT.getSizeInBits() == 64) &&
|
||||||
"Can't handle non-64 bits locations");
|
"Can't handle non-64 bits locations");
|
||||||
@@ -133,6 +133,11 @@ static bool CC_Sparc64_Full(unsigned &ValNo, MVT &ValVT,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bail out if this is a return CC and we run out of registers to place
|
||||||
|
// values into.
|
||||||
|
if (IsReturn)
|
||||||
|
return false;
|
||||||
|
|
||||||
// This argument goes on the stack in an 8-byte slot.
|
// This argument goes on the stack in an 8-byte slot.
|
||||||
// When passing floats, LocVT is smaller than 8 bytes. Adjust the offset to
|
// When passing floats, LocVT is smaller than 8 bytes. Adjust the offset to
|
||||||
// the right-aligned float. The first 4 bytes of the stack slot are undefined.
|
// the right-aligned float. The first 4 bytes of the stack slot are undefined.
|
||||||
@@ -146,9 +151,9 @@ static bool CC_Sparc64_Full(unsigned &ValNo, MVT &ValVT,
|
|||||||
// Allocate a half-sized argument for the 64-bit ABI.
|
// Allocate a half-sized argument for the 64-bit ABI.
|
||||||
//
|
//
|
||||||
// This is used when passing { float, int } structs by value in registers.
|
// This is used when passing { float, int } structs by value in registers.
|
||||||
static bool CC_Sparc64_Half(unsigned &ValNo, MVT &ValVT,
|
static bool Analyze_CC_Sparc64_Half(bool IsReturn, unsigned &ValNo, MVT &ValVT,
|
||||||
MVT &LocVT, CCValAssign::LocInfo &LocInfo,
|
MVT &LocVT, CCValAssign::LocInfo &LocInfo,
|
||||||
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
assert(LocVT.getSizeInBits() == 32 && "Can't handle non-32 bits locations");
|
assert(LocVT.getSizeInBits() == 32 && "Can't handle non-32 bits locations");
|
||||||
unsigned Offset = State.AllocateStack(4, Align(4));
|
unsigned Offset = State.AllocateStack(4, Align(4));
|
||||||
|
|
||||||
@@ -174,10 +179,43 @@ static bool CC_Sparc64_Half(unsigned &ValNo, MVT &ValVT,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bail out if this is a return CC and we run out of registers to place
|
||||||
|
// values into.
|
||||||
|
if (IsReturn)
|
||||||
|
return false;
|
||||||
|
|
||||||
State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
|
State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool CC_Sparc64_Full(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
|
||||||
|
CCValAssign::LocInfo &LocInfo,
|
||||||
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
|
return Analyze_CC_Sparc64_Full(false, ValNo, ValVT, LocVT, LocInfo, ArgFlags,
|
||||||
|
State);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool CC_Sparc64_Half(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
|
||||||
|
CCValAssign::LocInfo &LocInfo,
|
||||||
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
|
return Analyze_CC_Sparc64_Half(false, ValNo, ValVT, LocVT, LocInfo, ArgFlags,
|
||||||
|
State);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool RetCC_Sparc64_Full(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
|
||||||
|
CCValAssign::LocInfo &LocInfo,
|
||||||
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
|
return Analyze_CC_Sparc64_Full(true, ValNo, ValVT, LocVT, LocInfo, ArgFlags,
|
||||||
|
State);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool RetCC_Sparc64_Half(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
|
||||||
|
CCValAssign::LocInfo &LocInfo,
|
||||||
|
ISD::ArgFlagsTy &ArgFlags, CCState &State) {
|
||||||
|
return Analyze_CC_Sparc64_Half(true, ValNo, ValVT, LocVT, LocInfo, ArgFlags,
|
||||||
|
State);
|
||||||
|
}
|
||||||
|
|
||||||
#include "SparcGenCallingConv.inc"
|
#include "SparcGenCallingConv.inc"
|
||||||
|
|
||||||
// The calling conventions in SparcCallingConv.td are described in terms of the
|
// The calling conventions in SparcCallingConv.td are described in terms of the
|
||||||
@@ -191,6 +229,15 @@ static unsigned toCallerWindow(unsigned Reg) {
|
|||||||
return Reg;
|
return Reg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool SparcTargetLowering::CanLowerReturn(
|
||||||
|
CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
|
||||||
|
const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
|
||||||
|
SmallVector<CCValAssign, 16> RVLocs;
|
||||||
|
CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
|
||||||
|
return CCInfo.CheckReturn(Outs, Subtarget->is64Bit() ? RetCC_Sparc64
|
||||||
|
: RetCC_Sparc32);
|
||||||
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
SparcTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
|
SparcTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
|
||||||
bool IsVarArg,
|
bool IsVarArg,
|
||||||
@@ -1031,6 +1078,7 @@ SparcTargetLowering::LowerCall_32(TargetLowering::CallLoweringInfo &CLI,
|
|||||||
|
|
||||||
// Copy all of the result registers out of their specified physreg.
|
// Copy all of the result registers out of their specified physreg.
|
||||||
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
||||||
|
assert(RVLocs[i].isRegLoc() && "Can only return in registers!");
|
||||||
if (RVLocs[i].getLocVT() == MVT::v2i32) {
|
if (RVLocs[i].getLocVT() == MVT::v2i32) {
|
||||||
SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2i32);
|
SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2i32);
|
||||||
SDValue Lo = DAG.getCopyFromReg(
|
SDValue Lo = DAG.getCopyFromReg(
|
||||||
@@ -1346,6 +1394,7 @@ SparcTargetLowering::LowerCall_64(TargetLowering::CallLoweringInfo &CLI,
|
|||||||
// Copy all of the result registers out of their specified physreg.
|
// Copy all of the result registers out of their specified physreg.
|
||||||
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
||||||
CCValAssign &VA = RVLocs[i];
|
CCValAssign &VA = RVLocs[i];
|
||||||
|
assert(VA.isRegLoc() && "Can only return in registers!");
|
||||||
unsigned Reg = toCallerWindow(VA.getLocReg());
|
unsigned Reg = toCallerWindow(VA.getLocReg());
|
||||||
|
|
||||||
// When returning 'inreg {i32, i32 }', two consecutive i32 arguments can
|
// When returning 'inreg {i32, i32 }', two consecutive i32 arguments can
|
||||||
|
|||||||
@@ -144,6 +144,11 @@ namespace llvm {
|
|||||||
SDValue LowerCall_64(TargetLowering::CallLoweringInfo &CLI,
|
SDValue LowerCall_64(TargetLowering::CallLoweringInfo &CLI,
|
||||||
SmallVectorImpl<SDValue> &InVals) const;
|
SmallVectorImpl<SDValue> &InVals) const;
|
||||||
|
|
||||||
|
bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
|
||||||
|
bool isVarArg,
|
||||||
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
LLVMContext &Context) const override;
|
||||||
|
|
||||||
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
|
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<SDValue> &OutVals,
|
const SmallVectorImpl<SDValue> &OutVals,
|
||||||
|
|||||||
@@ -2003,7 +2003,7 @@ OptimizeFunctions(Module &M,
|
|||||||
// FIXME: We should also hoist alloca affected by this to the entry
|
// FIXME: We should also hoist alloca affected by this to the entry
|
||||||
// block if possible.
|
// block if possible.
|
||||||
if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) &&
|
if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) &&
|
||||||
!F.hasAddressTaken() && !hasMustTailCallers(&F)) {
|
!F.hasAddressTaken() && !hasMustTailCallers(&F) && !F.isVarArg()) {
|
||||||
RemoveAttribute(&F, Attribute::InAlloca);
|
RemoveAttribute(&F, Attribute::InAlloca);
|
||||||
Changed = true;
|
Changed = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3289,6 +3289,10 @@ bool InstCombinerImpl::transformConstExprCastCall(CallBase &Call) {
|
|||||||
if (CallerPAL.hasParamAttr(i, Attribute::SwiftError))
|
if (CallerPAL.hasParamAttr(i, Attribute::SwiftError))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (CallerPAL.hasParamAttr(i, Attribute::ByVal) !=
|
||||||
|
Callee->getAttributes().hasParamAttr(i, Attribute::ByVal))
|
||||||
|
return false; // Cannot transform to or from byval.
|
||||||
|
|
||||||
// If the parameter is passed as a byval argument, then we have to have a
|
// If the parameter is passed as a byval argument, then we have to have a
|
||||||
// sized type and the sized type has to have the same size as the old type.
|
// sized type and the sized type has to have the same size as the old type.
|
||||||
if (ParamTy != ActTy && CallerPAL.hasParamAttr(i, Attribute::ByVal)) {
|
if (ParamTy != ActTy && CallerPAL.hasParamAttr(i, Attribute::ByVal)) {
|
||||||
|
|||||||
@@ -1210,8 +1210,7 @@ static bool isSafePHIToSpeculate(PHINode &PN) {
|
|||||||
BasicBlock *BB = PN.getParent();
|
BasicBlock *BB = PN.getParent();
|
||||||
Align MaxAlign;
|
Align MaxAlign;
|
||||||
uint64_t APWidth = DL.getIndexTypeSizeInBits(PN.getType());
|
uint64_t APWidth = DL.getIndexTypeSizeInBits(PN.getType());
|
||||||
APInt MaxSize(APWidth, 0);
|
Type *LoadType = nullptr;
|
||||||
bool HaveLoad = false;
|
|
||||||
for (User *U : PN.users()) {
|
for (User *U : PN.users()) {
|
||||||
LoadInst *LI = dyn_cast<LoadInst>(U);
|
LoadInst *LI = dyn_cast<LoadInst>(U);
|
||||||
if (!LI || !LI->isSimple())
|
if (!LI || !LI->isSimple())
|
||||||
@@ -1223,21 +1222,27 @@ static bool isSafePHIToSpeculate(PHINode &PN) {
|
|||||||
if (LI->getParent() != BB)
|
if (LI->getParent() != BB)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (LoadType) {
|
||||||
|
if (LoadType != LI->getType())
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
LoadType = LI->getType();
|
||||||
|
}
|
||||||
|
|
||||||
// Ensure that there are no instructions between the PHI and the load that
|
// Ensure that there are no instructions between the PHI and the load that
|
||||||
// could store.
|
// could store.
|
||||||
for (BasicBlock::iterator BBI(PN); &*BBI != LI; ++BBI)
|
for (BasicBlock::iterator BBI(PN); &*BBI != LI; ++BBI)
|
||||||
if (BBI->mayWriteToMemory())
|
if (BBI->mayWriteToMemory())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
uint64_t Size = DL.getTypeStoreSize(LI->getType()).getFixedSize();
|
|
||||||
MaxAlign = std::max(MaxAlign, LI->getAlign());
|
MaxAlign = std::max(MaxAlign, LI->getAlign());
|
||||||
MaxSize = MaxSize.ult(Size) ? APInt(APWidth, Size) : MaxSize;
|
|
||||||
HaveLoad = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!HaveLoad)
|
if (!LoadType)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
APInt LoadSize = APInt(APWidth, DL.getTypeStoreSize(LoadType).getFixedSize());
|
||||||
|
|
||||||
// We can only transform this if it is safe to push the loads into the
|
// We can only transform this if it is safe to push the loads into the
|
||||||
// predecessor blocks. The only thing to watch out for is that we can't put
|
// predecessor blocks. The only thing to watch out for is that we can't put
|
||||||
// a possibly trapping load in the predecessor if it is a critical edge.
|
// a possibly trapping load in the predecessor if it is a critical edge.
|
||||||
@@ -1259,7 +1264,7 @@ static bool isSafePHIToSpeculate(PHINode &PN) {
|
|||||||
// If this pointer is always safe to load, or if we can prove that there
|
// If this pointer is always safe to load, or if we can prove that there
|
||||||
// is already a load in the block, then we can move the load to the pred
|
// is already a load in the block, then we can move the load to the pred
|
||||||
// block.
|
// block.
|
||||||
if (isSafeToLoadUnconditionally(InVal, MaxAlign, MaxSize, DL, TI))
|
if (isSafeToLoadUnconditionally(InVal, MaxAlign, LoadSize, DL, TI))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
@@ -356,9 +356,9 @@ int analyzeLoadFromClobberingMemInst(Type *LoadTy, Value *LoadPtr,
|
|||||||
|
|
||||||
// If this is memset, we just need to see if the offset is valid in the size
|
// If this is memset, we just need to see if the offset is valid in the size
|
||||||
// of the memset..
|
// of the memset..
|
||||||
if (MI->getIntrinsicID() == Intrinsic::memset) {
|
if (const auto *memset_inst = dyn_cast<MemSetInst>(MI)) {
|
||||||
if (DL.isNonIntegralPointerType(LoadTy->getScalarType())) {
|
if (DL.isNonIntegralPointerType(LoadTy->getScalarType())) {
|
||||||
auto *CI = dyn_cast<ConstantInt>(cast<MemSetInst>(MI)->getValue());
|
auto *CI = dyn_cast<ConstantInt>(memset_inst->getValue());
|
||||||
if (!CI || !CI->isZero())
|
if (!CI || !CI->isZero())
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
..
|
..
|
||||||
lib
|
lib
|
||||||
clang
|
clang
|
||||||
15.0.3
|
15.0.6
|
||||||
lib
|
lib
|
||||||
freebsd
|
freebsd
|
||||||
..
|
..
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
..
|
..
|
||||||
lib
|
lib
|
||||||
clang
|
clang
|
||||||
15.0.3
|
15.0.6
|
||||||
include
|
include
|
||||||
cuda_wrappers
|
cuda_wrappers
|
||||||
..
|
..
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
.PATH: ${CLANG_SRCS}/lib/Headers
|
.PATH: ${CLANG_SRCS}/lib/Headers
|
||||||
|
|
||||||
INCSGROUPS= INCS CUDA HLSL OMP PPC
|
INCSGROUPS= INCS CUDA HLSL OMP PPC
|
||||||
INCSDIR= ${LIBDIR}/clang/15.0.3/include
|
INCSDIR= ${LIBDIR}/clang/15.0.6/include
|
||||||
CUDADIR= ${INCSDIR}/cuda_wrappers
|
CUDADIR= ${INCSDIR}/cuda_wrappers
|
||||||
HLSLDIR= ${INCSDIR}/hlsl
|
HLSLDIR= ${INCSDIR}/hlsl
|
||||||
OMPDIR= ${INCSDIR}/openmp_wrappers
|
OMPDIR= ${INCSDIR}/openmp_wrappers
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
// $FreeBSD$
|
// $FreeBSD$
|
||||||
|
|
||||||
#define LLVM_REVISION "llvmorg-15.0.2-10-gf3c5289e7846"
|
#define LLVM_REVISION "llvmorg-15.0.6-0-g088f33605d8a"
|
||||||
#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
||||||
|
|
||||||
#define CLANG_REVISION "llvmorg-15.0.2-10-gf3c5289e7846"
|
#define CLANG_REVISION "llvmorg-15.0.6-0-g088f33605d8a"
|
||||||
#define CLANG_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
#define CLANG_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
||||||
|
|
||||||
#define LLDB_REVISION "llvmorg-15.0.2-10-gf3c5289e7846"
|
#define LLDB_REVISION "llvmorg-15.0.6-0-g088f33605d8a"
|
||||||
#define LLDB_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
#define LLDB_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
/* $FreeBSD$ */
|
/* $FreeBSD$ */
|
||||||
|
|
||||||
#define CLANG_VERSION 15.0.3
|
#define CLANG_VERSION 15.0.6
|
||||||
#define CLANG_VERSION_STRING "15.0.3"
|
#define CLANG_VERSION_STRING "15.0.6"
|
||||||
#define CLANG_VERSION_MAJOR 15
|
#define CLANG_VERSION_MAJOR 15
|
||||||
#define CLANG_VERSION_MINOR 0
|
#define CLANG_VERSION_MINOR 0
|
||||||
#define CLANG_VERSION_PATCHLEVEL 3
|
#define CLANG_VERSION_PATCHLEVEL 6
|
||||||
|
|
||||||
#define CLANG_VENDOR "FreeBSD "
|
#define CLANG_VENDOR "FreeBSD "
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
#define CLANG_HAVE_RLIMITS 1
|
#define CLANG_HAVE_RLIMITS 1
|
||||||
|
|
||||||
/* The LLVM product name and version */
|
/* The LLVM product name and version */
|
||||||
#define BACKEND_PACKAGE_STRING "LLVM 15.0.3"
|
#define BACKEND_PACKAGE_STRING "LLVM 15.0.6"
|
||||||
|
|
||||||
/* Linker version detected at compile time. */
|
/* Linker version detected at compile time. */
|
||||||
/* #undef HOST_LINK_VERSION */
|
/* #undef HOST_LINK_VERSION */
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// Local identifier in __FreeBSD_version style
|
// Local identifier in __FreeBSD_version style
|
||||||
#define LLD_FREEBSD_VERSION 1400005
|
#define LLD_FREEBSD_VERSION 1400005
|
||||||
|
|
||||||
#define LLD_VERSION_STRING "15.0.3 (FreeBSD llvmorg-15.0.2-10-gf3c5289e7846-" __XSTRING(LLD_FREEBSD_VERSION) ")"
|
#define LLD_VERSION_STRING "15.0.6 (FreeBSD llvmorg-15.0.6-0-g088f33605d8a-" __XSTRING(LLD_FREEBSD_VERSION) ")"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#define LLDB_VERSION 15.0.3
|
#define LLDB_VERSION 15.0.6
|
||||||
#define LLDB_VERSION_STRING "15.0.3"
|
#define LLDB_VERSION_STRING "15.0.6"
|
||||||
#define LLDB_VERSION_MAJOR 15
|
#define LLDB_VERSION_MAJOR 15
|
||||||
#define LLDB_VERSION_MINOR 0
|
#define LLDB_VERSION_MINOR 0
|
||||||
#define LLDB_VERSION_PATCH 3
|
#define LLDB_VERSION_PATCH 6
|
||||||
/* #undef LLDB_FULL_VERSION_STRING */
|
/* #undef LLDB_FULL_VERSION_STRING */
|
||||||
|
|||||||
@@ -353,10 +353,10 @@
|
|||||||
#define PACKAGE_NAME "LLVM"
|
#define PACKAGE_NAME "LLVM"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "LLVM 15.0.3"
|
#define PACKAGE_STRING "LLVM 15.0.6"
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "15.0.3"
|
#define PACKAGE_VERSION "15.0.6"
|
||||||
|
|
||||||
/* Define to the vendor of this package. */
|
/* Define to the vendor of this package. */
|
||||||
/* #undef PACKAGE_VENDOR */
|
/* #undef PACKAGE_VENDOR */
|
||||||
|
|||||||
@@ -74,10 +74,10 @@
|
|||||||
#define LLVM_VERSION_MINOR 0
|
#define LLVM_VERSION_MINOR 0
|
||||||
|
|
||||||
/* Patch version of the LLVM API */
|
/* Patch version of the LLVM API */
|
||||||
#define LLVM_VERSION_PATCH 3
|
#define LLVM_VERSION_PATCH 6
|
||||||
|
|
||||||
/* LLVM version string */
|
/* LLVM version string */
|
||||||
#define LLVM_VERSION_STRING "15.0.3"
|
#define LLVM_VERSION_STRING "15.0.6"
|
||||||
|
|
||||||
/* Whether LLVM records statistics for use with GetStatistics(),
|
/* Whether LLVM records statistics for use with GetStatistics(),
|
||||||
* PrintStatistics() or PrintStatisticsJSON()
|
* PrintStatistics() or PrintStatisticsJSON()
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
/* $FreeBSD$ */
|
||||||
#define LLVM_REVISION "llvmorg-15.0.2-10-gf3c5289e7846"
|
#define LLVM_REVISION "llvmorg-15.0.6-0-g088f33605d8a"
|
||||||
#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
CLANG_SUBDIR=clang/15.0.3
|
CLANG_SUBDIR=clang/15.0.6
|
||||||
CLANGDIR= /usr/lib/${CLANG_SUBDIR}
|
CLANGDIR= /usr/lib/${CLANG_SUBDIR}
|
||||||
SANITIZER_LIBDIR= ${CLANGDIR}/lib/freebsd
|
SANITIZER_LIBDIR= ${CLANGDIR}/lib/freebsd
|
||||||
SANITIZER_SHAREDIR= ${CLANGDIR}/share
|
SANITIZER_SHAREDIR= ${CLANGDIR}/share
|
||||||
|
|||||||
@@ -1200,328 +1200,328 @@ OLD_FILES+=usr/share/man/man1/objdump.1.gz
|
|||||||
OLD_FILES+=usr/bin/clang
|
OLD_FILES+=usr/bin/clang
|
||||||
OLD_FILES+=usr/bin/clang++
|
OLD_FILES+=usr/bin/clang++
|
||||||
OLD_FILES+=usr/bin/clang-cpp
|
OLD_FILES+=usr/bin/clang-cpp
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cuda_wrappers/algorithm
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cuda_wrappers/algorithm
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cuda_wrappers/complex
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cuda_wrappers/complex
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cuda_wrappers/new
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cuda_wrappers/new
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/cuda_wrappers
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/cuda_wrappers
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/fuzzer/FuzzedDataProvider.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/fuzzer/FuzzedDataProvider.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/fuzzer
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/fuzzer
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hlsl/hlsl_basic_types.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hlsl/hlsl_basic_types.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hlsl/hlsl_intrinsics.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hlsl/hlsl_intrinsics.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/hlsl
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/hlsl
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/__clang_openmp_device_functions.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/__clang_openmp_device_functions.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/cmath
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/cmath
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/complex
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/complex
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/complex.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/complex.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/complex_cmath.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/complex_cmath.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/math.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/math.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/openmp_wrappers/new
|
OLD_FILES+=usr/lib/clang/15.0.6/include/openmp_wrappers/new
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/openmp_wrappers
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/openmp_wrappers
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/bmi2intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/bmi2intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/bmiintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/bmiintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/emmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/emmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/immintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/immintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/mm_malloc.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/mm_malloc.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/mmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/mmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/pmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/pmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/smmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/smmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/tmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/tmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/x86gprintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/x86gprintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/x86intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/x86intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ppc_wrappers/xmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ppc_wrappers/xmmintrin.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/ppc_wrappers
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/ppc_wrappers
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/profile/InstrProfData.inc
|
OLD_FILES+=usr/lib/clang/15.0.6/include/profile/InstrProfData.inc
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/profile/MemProfData.inc
|
OLD_FILES+=usr/lib/clang/15.0.6/include/profile/MemProfData.inc
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/profile
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/profile
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/allocator_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/allocator_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/asan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/asan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/common_interface_defs.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/common_interface_defs.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/coverage_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/coverage_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/dfsan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/dfsan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/hwasan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/hwasan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/linux_syscall_hooks.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/linux_syscall_hooks.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/lsan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/lsan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/memprof_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/memprof_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/msan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/msan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/netbsd_syscall_hooks.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/netbsd_syscall_hooks.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/scudo_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/scudo_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/tsan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/tsan_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/tsan_interface_atomic.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/tsan_interface_atomic.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sanitizer/ubsan_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sanitizer/ubsan_interface.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/sanitizer
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/sanitizer
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xray/xray_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xray/xray_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xray/xray_log_interface.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xray/xray_log_interface.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xray/xray_records.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xray/xray_records.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include/xray
|
OLD_DIRS+=usr/lib/clang/15.0.6/include/xray
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_builtin_vars.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_builtin_vars.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_cmath.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_cmath.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_complex_builtins.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_complex_builtins.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_device_functions.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_device_functions.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_intrinsics.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_intrinsics.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_libdevice_declares.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_libdevice_declares.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_math.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_math.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_math_forward_declares.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_math_forward_declares.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_runtime_wrapper.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_runtime_wrapper.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_cuda_texture_intrinsics.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_cuda_texture_intrinsics.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_hip_cmath.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_hip_cmath.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_hip_libdevice_declares.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_hip_libdevice_declares.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_hip_math.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_hip_math.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__clang_hip_runtime_wrapper.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__clang_hip_runtime_wrapper.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__stddef_max_align_t.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__stddef_max_align_t.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__wmmintrin_aes.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__wmmintrin_aes.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/__wmmintrin_pclmul.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/__wmmintrin_pclmul.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/adxintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/adxintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/altivec.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/altivec.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ammintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ammintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/amxintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/amxintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm64intr.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm64intr.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_acle.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_acle.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_bf16.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_bf16.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_cde.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_cde.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_cmse.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_cmse.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_fp16.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_fp16.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_mve.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_mve.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_neon.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_neon.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_neon_sve_bridge.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_neon_sve_bridge.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/arm_sve.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/arm_sve.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/armintr.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/armintr.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx2intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx2intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512bf16intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512bf16intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512bitalgintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512bitalgintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512bwintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512bwintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512cdintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512cdintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512dqintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512dqintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512erintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512erintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512fintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512fintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512fp16intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512fp16intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512ifmaintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512ifmaintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512ifmavlintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512ifmavlintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512pfintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512pfintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vbmi2intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vbmi2intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vbmiintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vbmiintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vbmivlintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vbmivlintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlbf16intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlbf16intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlbitalgintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlbitalgintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlbwintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlbwintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlcdintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlcdintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vldqintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vldqintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlfp16intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlfp16intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlvbmi2intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlvbmi2intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlvnniintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlvnniintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vlvp2intersectintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vlvp2intersectintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vnniintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vnniintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vp2intersectintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vp2intersectintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vpopcntdqintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vpopcntdqintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avx512vpopcntdqvlintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avx512vpopcntdqvlintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avxintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avxintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/avxvnniintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/avxvnniintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/bmi2intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/bmi2intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/bmiintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/bmiintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/builtins.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/builtins.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cet.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cet.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cetintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cetintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cldemoteintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cldemoteintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/clflushoptintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/clflushoptintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/clwbintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/clwbintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/clzerointrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/clzerointrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/cpuid.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/cpuid.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/crc32intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/crc32intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/emmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/emmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/enqcmdintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/enqcmdintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/f16cintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/f16cintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/float.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/float.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/fma4intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/fma4intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/fmaintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/fmaintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/fxsrintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/fxsrintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/gfniintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/gfniintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hexagon_circ_brev_intrinsics.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hexagon_circ_brev_intrinsics.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hexagon_protos.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hexagon_protos.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hexagon_types.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hexagon_types.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hlsl.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hlsl.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hresetintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hresetintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/htmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/htmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/htmxlintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/htmxlintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/hvx_hexagon_protos.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/hvx_hexagon_protos.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ia32intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ia32intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/immintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/immintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/inttypes.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/inttypes.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/invpcidintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/invpcidintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/iso646.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/iso646.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/keylockerintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/keylockerintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/limits.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/limits.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/lwpintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/lwpintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/lzcntintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/lzcntintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/mm3dnow.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/mm3dnow.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/mm_malloc.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/mm_malloc.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/mmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/mmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/module.modulemap
|
OLD_FILES+=usr/lib/clang/15.0.6/include/module.modulemap
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/movdirintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/movdirintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/msa.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/msa.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/mwaitxintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/mwaitxintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/nmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/nmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/omp-tools.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/omp-tools.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/omp.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/omp.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ompt.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ompt.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/opencl-c-base.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/opencl-c-base.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/opencl-c.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/opencl-c.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/pconfigintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/pconfigintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/pkuintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/pkuintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/pmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/pmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/popcntintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/popcntintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/prfchwintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/prfchwintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/ptwriteintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/ptwriteintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/rdpruintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/rdpruintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/rdseedintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/rdseedintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/riscv_vector.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/riscv_vector.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/rtmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/rtmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/s390intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/s390intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/serializeintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/serializeintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/sgxintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/sgxintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/shaintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/shaintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/smmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/smmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdalign.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdalign.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdarg.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdarg.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdatomic.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdatomic.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdbool.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdbool.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stddef.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stddef.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdint.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdint.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/stdnoreturn.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/stdnoreturn.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/tbmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/tbmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/tgmath.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/tgmath.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/tmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/tmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/tsxldtrkintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/tsxldtrkintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/uintrintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/uintrintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/unwind.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/unwind.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/vadefs.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/vadefs.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/vaesintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/vaesintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/varargs.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/varargs.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/vecintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/vecintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/velintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/velintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/velintrin_approx.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/velintrin_approx.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/velintrin_gen.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/velintrin_gen.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/vpclmulqdqintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/vpclmulqdqintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/waitpkgintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/waitpkgintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/wasm_simd128.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/wasm_simd128.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/wbnoinvdintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/wbnoinvdintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/wmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/wmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/x86gprintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/x86gprintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/x86intrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/x86intrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xmmintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xmmintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xopintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xopintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xsavecintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xsavecintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xsaveintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xsaveintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xsaveoptintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xsaveoptintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xsavesintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xsavesintrin.h
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/include/xtestintrin.h
|
OLD_FILES+=usr/lib/clang/15.0.6/include/xtestintrin.h
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/include
|
OLD_DIRS+=usr/lib/clang/15.0.6/include
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-aarch64.so
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-aarch64.so
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-arm.so
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-arm.so
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-armhf.so
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-armhf.so
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-i386.so
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-i386.so
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-preinit-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-preinit-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-preinit-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-preinit-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-preinit-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-preinit-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-preinit-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-preinit-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan-x86_64.so
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan-x86_64.so
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_cxx-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_cxx-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_cxx-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_cxx-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_cxx-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_cxx-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_cxx-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_cxx-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_static-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_static-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.asan_static-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.asan_static-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi_diag-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi_diag-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi_diag-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi_diag-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi_diag-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi_diag-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi_diag-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi_diag-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.dd-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.dd-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.dd-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.dd-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.fuzzer-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.fuzzer-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.fuzzer-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.fuzzer-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.msan-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.msan-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.msan-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.msan-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.msan_cxx-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.msan_cxx-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-powerpc.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-powerpc.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-powerpc64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-powerpc64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-powerpc64le.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-powerpc64le.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.profile-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.profile-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.safestack-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.safestack-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.safestack-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.safestack-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.safestack-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.safestack-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats_client-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats_client-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats_client-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats_client-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats_client-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats_client-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats_client-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats_client-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.stats_client-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.stats_client-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.tsan-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.tsan-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.tsan-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.tsan-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_minimal-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_minimal-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-basic-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-basic-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-basic-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-basic-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-basic-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-basic-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-basic-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-basic-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-fdr-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-fdr-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-fdr-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-fdr-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-fdr-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-fdr-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-fdr-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-fdr-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-profiling-aarch64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-profiling-aarch64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-profiling-arm.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-profiling-arm.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-profiling-armhf.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-profiling-armhf.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-profiling-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-profiling-x86_64.a
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/lib/freebsd/libclang_rt.xray-x86_64.a
|
OLD_FILES+=usr/lib/clang/15.0.6/lib/freebsd/libclang_rt.xray-x86_64.a
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/lib/freebsd
|
OLD_DIRS+=usr/lib/clang/15.0.6/lib/freebsd
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/lib
|
OLD_DIRS+=usr/lib/clang/15.0.6/lib
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/share/asan_ignorelist.txt
|
OLD_FILES+=usr/lib/clang/15.0.6/share/asan_ignorelist.txt
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/share/cfi_ignorelist.txt
|
OLD_FILES+=usr/lib/clang/15.0.6/share/cfi_ignorelist.txt
|
||||||
OLD_FILES+=usr/lib/clang/15.0.3/share/msan_ignorelist.txt
|
OLD_FILES+=usr/lib/clang/15.0.6/share/msan_ignorelist.txt
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3/share
|
OLD_DIRS+=usr/lib/clang/15.0.6/share
|
||||||
OLD_DIRS+=usr/lib/clang/15.0.3
|
OLD_DIRS+=usr/lib/clang/15.0.6
|
||||||
OLD_DIRS+=usr/lib/clang
|
OLD_DIRS+=usr/lib/clang
|
||||||
OLD_FILES+=usr/share/doc/llvm/clang/LICENSE.TXT
|
OLD_FILES+=usr/share/doc/llvm/clang/LICENSE.TXT
|
||||||
OLD_DIRS+=usr/share/doc/llvm/clang
|
OLD_DIRS+=usr/share/doc/llvm/clang
|
||||||
|
|||||||
Reference in New Issue
Block a user