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).
94 lines
3.0 KiB
C++
94 lines
3.0 KiB
C++
//===- Writer.h -------------------------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_COFF_WRITER_H
|
|
#define LLD_COFF_WRITER_H
|
|
|
|
#include "Chunks.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Object/COFF.h"
|
|
#include <chrono>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace lld::coff {
|
|
static const int pageSize = 4096;
|
|
class COFFLinkerContext;
|
|
|
|
void writeResult(COFFLinkerContext &ctx);
|
|
|
|
class PartialSection {
|
|
public:
|
|
PartialSection(StringRef n, uint32_t chars)
|
|
: name(n), characteristics(chars) {}
|
|
StringRef name;
|
|
unsigned characteristics;
|
|
std::vector<Chunk *> chunks;
|
|
};
|
|
|
|
// OutputSection represents a section in an output file. It's a
|
|
// container of chunks. OutputSection and Chunk are 1:N relationship.
|
|
// Chunks cannot belong to more than one OutputSections. The writer
|
|
// creates multiple OutputSections and assign them unique,
|
|
// non-overlapping file offsets and RVAs.
|
|
class OutputSection {
|
|
public:
|
|
OutputSection(llvm::StringRef n, uint32_t chars) : name(n) {
|
|
header.Characteristics = chars;
|
|
}
|
|
void addChunk(Chunk *c);
|
|
void insertChunkAtStart(Chunk *c);
|
|
void merge(OutputSection *other);
|
|
void setPermissions(uint32_t c);
|
|
uint64_t getRVA() const { return header.VirtualAddress; }
|
|
uint64_t getFileOff() const { return header.PointerToRawData; }
|
|
void writeHeaderTo(uint8_t *buf, bool isDebug);
|
|
void addContributingPartialSection(PartialSection *sec);
|
|
|
|
// Sort chunks to split native and EC sections on hybrid targets.
|
|
void splitECChunks();
|
|
|
|
// Returns the size of this section in an executable memory image.
|
|
// This may be smaller than the raw size (the raw size is multiple
|
|
// of disk sector size, so there may be padding at end), or may be
|
|
// larger (if that's the case, the loader reserves spaces after end
|
|
// of raw data).
|
|
uint64_t getVirtualSize() { return header.VirtualSize; }
|
|
|
|
// Returns the size of the section in the output file.
|
|
uint64_t getRawSize() { return header.SizeOfRawData; }
|
|
|
|
// Set offset into the string table storing this section name.
|
|
// Used only when the name is longer than 8 bytes.
|
|
void setStringTableOff(uint32_t v) { stringTableOff = v; }
|
|
|
|
bool isCodeSection() const {
|
|
return (header.Characteristics & llvm::COFF::IMAGE_SCN_CNT_CODE) &&
|
|
(header.Characteristics & llvm::COFF::IMAGE_SCN_MEM_READ) &&
|
|
(header.Characteristics & llvm::COFF::IMAGE_SCN_MEM_EXECUTE);
|
|
}
|
|
|
|
// N.B. The section index is one based.
|
|
uint32_t sectionIndex = 0;
|
|
|
|
llvm::StringRef name;
|
|
llvm::object::coff_section header = {};
|
|
|
|
std::vector<Chunk *> chunks;
|
|
std::vector<Chunk *> origChunks;
|
|
|
|
std::vector<PartialSection *> contribSections;
|
|
|
|
private:
|
|
uint32_t stringTableOff = 0;
|
|
};
|
|
|
|
} // namespace lld::coff
|
|
|
|
#endif
|