cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
147 lines
4.5 KiB
C++
147 lines
4.5 KiB
C++
//===---- PPCTargetParser.cpp - Parser for target features ------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements a target parser to recognise hardware features
|
|
// for PPC CPUs.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/TargetParser/PPCTargetParser.h"
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
#include "llvm/TargetParser/Host.h"
|
|
|
|
#define GET_SUBTARGETFEATURES_ENUM
|
|
#define GET_SUBTARGETFEATURES_KV
|
|
#include "llvm/TargetParser/PPCGenTargetFeatures.inc"
|
|
|
|
namespace llvm {
|
|
namespace PPC {
|
|
|
|
struct CPUInfo {
|
|
StringLiteral Name;
|
|
// FIXME: add the features field for this CPU.
|
|
};
|
|
|
|
constexpr CPUInfo PPCCPUInfo[] = {
|
|
#define PPC_CPU(Name, Linux_SUPPORT_METHOD, LinuxID, AIX_SUPPORT_METHOD, \
|
|
AIXID) \
|
|
{Name},
|
|
#include "llvm/TargetParser/PPCTargetParser.def"
|
|
};
|
|
|
|
static const CPUInfo *getCPUInfoByName(StringRef CPU) {
|
|
for (auto &C : PPCCPUInfo)
|
|
if (C.Name == CPU)
|
|
return &C;
|
|
return nullptr;
|
|
}
|
|
|
|
StringRef normalizeCPUName(StringRef CPUName) {
|
|
// Clang/LLVM does not actually support code generation
|
|
// for the 405 CPU. However, there are uses of this CPU ID
|
|
// in projects that previously used GCC and rely on Clang
|
|
// accepting it. Clang has always ignored it and passed the
|
|
// generic CPU ID to the back end.
|
|
return StringSwitch<StringRef>(CPUName)
|
|
.Cases("common", "405", "generic")
|
|
.Cases("ppc440", "440fp", "440")
|
|
.Cases("630", "power3", "pwr3")
|
|
.Case("G3", "g3")
|
|
.Case("G4", "g4")
|
|
.Case("G4+", "g4+")
|
|
.Case("8548", "e500")
|
|
.Case("ppc970", "970")
|
|
.Case("G5", "g5")
|
|
.Case("ppca2", "a2")
|
|
.Case("power4", "pwr4")
|
|
.Case("power5", "pwr5")
|
|
.Case("power5x", "pwr5x")
|
|
.Case("power5+", "pwr5+")
|
|
.Case("power6", "pwr6")
|
|
.Case("power6x", "pwr6x")
|
|
.Case("power7", "pwr7")
|
|
.Case("power8", "pwr8")
|
|
.Case("power9", "pwr9")
|
|
.Case("power10", "pwr10")
|
|
.Case("power11", "pwr11")
|
|
.Cases("powerpc", "powerpc32", "ppc")
|
|
.Case("powerpc64", "ppc64")
|
|
.Case("powerpc64le", "ppc64le")
|
|
.Default(CPUName);
|
|
}
|
|
|
|
void fillValidCPUList(SmallVectorImpl<StringRef> &Values) {
|
|
for (const auto &C : PPCCPUInfo)
|
|
Values.emplace_back(C.Name);
|
|
}
|
|
|
|
void fillValidTuneCPUList(SmallVectorImpl<StringRef> &Values) {
|
|
for (const auto &C : PPCCPUInfo)
|
|
Values.emplace_back(C.Name);
|
|
}
|
|
|
|
bool isValidCPU(StringRef CPU) {
|
|
const CPUInfo *Info = getCPUInfoByName(CPU);
|
|
if (!Info)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
StringRef getNormalizedPPCTargetCPU(const Triple &T, StringRef CPUName) {
|
|
if (!CPUName.empty()) {
|
|
if (CPUName == "native") {
|
|
StringRef CPU = sys::getHostCPUName();
|
|
if (!CPU.empty() && CPU != "generic")
|
|
return CPU;
|
|
}
|
|
|
|
StringRef CPU = normalizeCPUName(CPUName);
|
|
if (CPU != "generic" && CPU != "native")
|
|
return CPU;
|
|
}
|
|
|
|
// LLVM may default to generating code for the native CPU, but, like gcc, we
|
|
// default to a more generic option for each architecture. (except on AIX)
|
|
if (T.isOSAIX())
|
|
return "pwr7";
|
|
else if (T.getArch() == Triple::ppc64le)
|
|
return "ppc64le";
|
|
else if (T.getArch() == Triple::ppc64)
|
|
return "ppc64";
|
|
|
|
return "ppc";
|
|
}
|
|
|
|
StringRef getNormalizedPPCTuneCPU(const Triple &T, StringRef CPUName) {
|
|
return getNormalizedPPCTargetCPU(T, CPUName);
|
|
}
|
|
|
|
std::optional<StringMap<bool>> getPPCDefaultTargetFeatures(const Triple &T,
|
|
StringRef CPU) {
|
|
std::optional<StringMap<bool>> FeaturesOpt =
|
|
getCPUDefaultTargetFeatures(CPU, BasicPPCSubTypeKV, BasicPPCFeatureKV);
|
|
|
|
if (!FeaturesOpt.has_value())
|
|
return std::nullopt;
|
|
|
|
StringMap<bool> Features = FeaturesOpt.value();
|
|
// FIXME: We need to check for the processor model 8548, since the backend
|
|
// does not support this processor. When this processor model is implemented
|
|
// within the backend, the following code can be removed.
|
|
if (CPU == "8548")
|
|
Features["spe"] = true;
|
|
|
|
// The target feature `quadword-atomics` is only supported for 64-bit
|
|
// POWER8 and above.
|
|
if (Features.find("quadword-atomics") != Features.end() && !T.isArch64Bit())
|
|
Features["quadword-atomics"] = false;
|
|
return Features;
|
|
}
|
|
} // namespace PPC
|
|
} // namespace llvm
|