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).
164 lines
5.9 KiB
C++
164 lines
5.9 KiB
C++
//===---------- DeviceOffload.cpp - Device Offloading------------*- 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 offloading to CUDA devices.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "DeviceOffload.h"
|
|
|
|
#include "clang/Basic/TargetOptions.h"
|
|
#include "clang/CodeGen/ModuleBuilder.h"
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
#include "clang/Interpreter/PartialTranslationUnit.h"
|
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/MC/TargetRegistry.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
namespace clang {
|
|
|
|
IncrementalCUDADeviceParser::IncrementalCUDADeviceParser(
|
|
CompilerInstance &DeviceInstance, CompilerInstance &HostInstance,
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> FS,
|
|
llvm::Error &Err, const std::list<PartialTranslationUnit> &PTUs)
|
|
: IncrementalParser(DeviceInstance, Err), PTUs(PTUs), VFS(FS),
|
|
CodeGenOpts(HostInstance.getCodeGenOpts()),
|
|
TargetOpts(DeviceInstance.getTargetOpts()) {
|
|
if (Err)
|
|
return;
|
|
StringRef Arch = TargetOpts.CPU;
|
|
if (!Arch.starts_with("sm_") || Arch.substr(3).getAsInteger(10, SMVersion)) {
|
|
Err = llvm::joinErrors(std::move(Err), llvm::make_error<llvm::StringError>(
|
|
"Invalid CUDA architecture",
|
|
llvm::inconvertibleErrorCode()));
|
|
return;
|
|
}
|
|
}
|
|
|
|
llvm::Expected<llvm::StringRef> IncrementalCUDADeviceParser::GeneratePTX() {
|
|
auto &PTU = PTUs.back();
|
|
std::string Error;
|
|
|
|
const llvm::Target *Target = llvm::TargetRegistry::lookupTarget(
|
|
PTU.TheModule->getTargetTriple(), Error);
|
|
if (!Target)
|
|
return llvm::make_error<llvm::StringError>(std::move(Error),
|
|
std::error_code());
|
|
llvm::TargetOptions TO = llvm::TargetOptions();
|
|
llvm::TargetMachine *TargetMachine = Target->createTargetMachine(
|
|
PTU.TheModule->getTargetTriple(), TargetOpts.CPU, "", TO,
|
|
llvm::Reloc::Model::PIC_);
|
|
PTU.TheModule->setDataLayout(TargetMachine->createDataLayout());
|
|
|
|
PTXCode.clear();
|
|
llvm::raw_svector_ostream dest(PTXCode);
|
|
|
|
llvm::legacy::PassManager PM;
|
|
if (TargetMachine->addPassesToEmitFile(PM, dest, nullptr,
|
|
llvm::CodeGenFileType::AssemblyFile)) {
|
|
return llvm::make_error<llvm::StringError>(
|
|
"NVPTX backend cannot produce PTX code.",
|
|
llvm::inconvertibleErrorCode());
|
|
}
|
|
|
|
if (!PM.run(*PTU.TheModule))
|
|
return llvm::make_error<llvm::StringError>("Failed to emit PTX code.",
|
|
llvm::inconvertibleErrorCode());
|
|
|
|
PTXCode += '\0';
|
|
while (PTXCode.size() % 8)
|
|
PTXCode += '\0';
|
|
return PTXCode.str();
|
|
}
|
|
|
|
llvm::Error IncrementalCUDADeviceParser::GenerateFatbinary() {
|
|
enum FatBinFlags {
|
|
AddressSize64 = 0x01,
|
|
HasDebugInfo = 0x02,
|
|
ProducerCuda = 0x04,
|
|
HostLinux = 0x10,
|
|
HostMac = 0x20,
|
|
HostWindows = 0x40
|
|
};
|
|
|
|
struct FatBinInnerHeader {
|
|
uint16_t Kind; // 0x00
|
|
uint16_t unknown02; // 0x02
|
|
uint32_t HeaderSize; // 0x04
|
|
uint32_t DataSize; // 0x08
|
|
uint32_t unknown0c; // 0x0c
|
|
uint32_t CompressedSize; // 0x10
|
|
uint32_t SubHeaderSize; // 0x14
|
|
uint16_t VersionMinor; // 0x18
|
|
uint16_t VersionMajor; // 0x1a
|
|
uint32_t CudaArch; // 0x1c
|
|
uint32_t unknown20; // 0x20
|
|
uint32_t unknown24; // 0x24
|
|
uint32_t Flags; // 0x28
|
|
uint32_t unknown2c; // 0x2c
|
|
uint32_t unknown30; // 0x30
|
|
uint32_t unknown34; // 0x34
|
|
uint32_t UncompressedSize; // 0x38
|
|
uint32_t unknown3c; // 0x3c
|
|
uint32_t unknown40; // 0x40
|
|
uint32_t unknown44; // 0x44
|
|
FatBinInnerHeader(uint32_t DataSize, uint32_t CudaArch, uint32_t Flags)
|
|
: Kind(1 /*PTX*/), unknown02(0x0101), HeaderSize(sizeof(*this)),
|
|
DataSize(DataSize), unknown0c(0), CompressedSize(0),
|
|
SubHeaderSize(HeaderSize - 8), VersionMinor(2), VersionMajor(4),
|
|
CudaArch(CudaArch), unknown20(0), unknown24(0), Flags(Flags),
|
|
unknown2c(0), unknown30(0), unknown34(0), UncompressedSize(0),
|
|
unknown3c(0), unknown40(0), unknown44(0) {}
|
|
};
|
|
|
|
struct FatBinHeader {
|
|
uint32_t Magic; // 0x00
|
|
uint16_t Version; // 0x04
|
|
uint16_t HeaderSize; // 0x06
|
|
uint32_t DataSize; // 0x08
|
|
uint32_t unknown0c; // 0x0c
|
|
public:
|
|
FatBinHeader(uint32_t DataSize)
|
|
: Magic(0xba55ed50), Version(1), HeaderSize(sizeof(*this)),
|
|
DataSize(DataSize), unknown0c(0) {}
|
|
};
|
|
|
|
FatBinHeader OuterHeader(sizeof(FatBinInnerHeader) + PTXCode.size());
|
|
FatbinContent.append((char *)&OuterHeader,
|
|
((char *)&OuterHeader) + OuterHeader.HeaderSize);
|
|
|
|
FatBinInnerHeader InnerHeader(PTXCode.size(), SMVersion,
|
|
FatBinFlags::AddressSize64 |
|
|
FatBinFlags::HostLinux);
|
|
FatbinContent.append((char *)&InnerHeader,
|
|
((char *)&InnerHeader) + InnerHeader.HeaderSize);
|
|
|
|
FatbinContent.append(PTXCode.begin(), PTXCode.end());
|
|
|
|
const PartialTranslationUnit &PTU = PTUs.back();
|
|
|
|
std::string FatbinFileName = "/" + PTU.TheModule->getName().str() + ".fatbin";
|
|
|
|
VFS->addFile(FatbinFileName, 0,
|
|
llvm::MemoryBuffer::getMemBuffer(
|
|
llvm::StringRef(FatbinContent.data(), FatbinContent.size()),
|
|
"", false));
|
|
|
|
CodeGenOpts.CudaGpuBinaryFileName = std::move(FatbinFileName);
|
|
|
|
FatbinContent.clear();
|
|
|
|
return llvm::Error::success();
|
|
}
|
|
|
|
IncrementalCUDADeviceParser::~IncrementalCUDADeviceParser() {}
|
|
|
|
} // namespace clang
|