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).
93 lines
3.3 KiB
C++
93 lines
3.3 KiB
C++
//===- Thunks.h --------------------------------------------------------===//
|
|
//
|
|
// 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_ELF_THUNKS_H
|
|
#define LLD_ELF_THUNKS_H
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "Relocations.h"
|
|
|
|
namespace lld::elf {
|
|
struct Ctx;
|
|
class Defined;
|
|
class InputFile;
|
|
class Symbol;
|
|
class ThunkSection;
|
|
// Class to describe an instance of a Thunk.
|
|
// A Thunk is a code-sequence inserted by the linker in between a caller and
|
|
// the callee. The relocation to the callee is redirected to the Thunk, which
|
|
// after executing transfers control to the callee. Typical uses of Thunks
|
|
// include transferring control from non-pi to pi and changing state on
|
|
// targets like ARM.
|
|
//
|
|
// Thunks can be created for Defined, Shared and Undefined Symbols.
|
|
// Thunks are assigned to synthetic ThunkSections
|
|
class Thunk {
|
|
public:
|
|
Thunk(Ctx &, Symbol &destination, int64_t addend);
|
|
virtual ~Thunk();
|
|
|
|
virtual uint32_t size() = 0;
|
|
virtual void writeTo(uint8_t *buf) = 0;
|
|
|
|
// All Thunks must define at least one symbol, known as the thunk target
|
|
// symbol, so that we can redirect relocations to it. The thunk may define
|
|
// additional symbols, but these are never targets for relocations.
|
|
virtual void addSymbols(ThunkSection &isec) = 0;
|
|
|
|
void setOffset(uint64_t offset);
|
|
Defined *addSymbol(StringRef name, uint8_t type, uint64_t value,
|
|
InputSectionBase §ion);
|
|
|
|
// Some Thunks must be placed immediately before their Target as they elide
|
|
// a branch and fall through to the first Symbol in the Target.
|
|
virtual InputSection *getTargetInputSection() const { return nullptr; }
|
|
|
|
// To reuse a Thunk the InputSection and the relocation must be compatible
|
|
// with it.
|
|
virtual bool isCompatibleWith(const InputSection &,
|
|
const Relocation &) const {
|
|
return true;
|
|
}
|
|
|
|
// Thunks that indirectly branch to targets may need a synthetic landing
|
|
// pad generated close to the target. For example AArch64 when BTI is
|
|
// enabled.
|
|
virtual bool needsSyntheticLandingPad() { return false; }
|
|
|
|
Defined *getThunkTargetSym() const { return syms[0]; }
|
|
|
|
Ctx &ctx;
|
|
Symbol &destination;
|
|
int64_t addend;
|
|
// Alternative target when indirect branch to destination can't be used.
|
|
Symbol *landingPad = nullptr;
|
|
llvm::SmallVector<Defined *, 3> syms;
|
|
uint64_t offset = 0;
|
|
// The alignment requirement for this Thunk, defaults to the size of the
|
|
// typical code section alignment.
|
|
uint32_t alignment = 4;
|
|
};
|
|
|
|
// For a Relocation to symbol S create a Thunk to be added to a synthetic
|
|
// ThunkSection.
|
|
std::unique_ptr<Thunk> addThunk(Ctx &, const InputSection &isec,
|
|
Relocation &rel);
|
|
|
|
// Create a landing pad Thunk for use when indirect branches from Thunks
|
|
// are restricted.
|
|
std::unique_ptr<Thunk> addLandingPadThunk(Ctx &, Symbol &s, int64_t a);
|
|
|
|
void writePPC32PltCallStub(Ctx &, uint8_t *buf, uint64_t gotPltVA,
|
|
const InputFile *file, int64_t addend);
|
|
void writePPC64LoadAndBranch(Ctx &, uint8_t *buf, int64_t offset);
|
|
|
|
} // namespace lld::elf
|
|
|
|
#endif
|