1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
|
//===------ BPFPreserveStaticOffset.cpp -----------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// TLDR: replaces llvm.preserve.static.offset + GEP + load / store
// with llvm.bpf.getelementptr.and.load / store
//
// This file implements BPFPreserveStaticOffsetPass transformation.
// This transformation address two BPF verifier specific issues:
//
// (a) Access to the fields of some structural types is allowed only
// using load and store instructions with static immediate offsets.
//
// Examples of such types are `struct __sk_buff` and `struct
// bpf_sock_ops`. This is so because offsets of the fields of
// these structures do not match real offsets in the running
// kernel. During BPF program load LDX and STX instructions
// referring to the fields of these types are rewritten so that
// offsets match real offsets. For this rewrite to happen field
// offsets have to be encoded as immediate operands of the
// instructions.
//
// See kernel/bpf/verifier.c:convert_ctx_access function in the
// Linux kernel source tree for details.
//
// (b) Pointers to context parameters of BPF programs must not be
// modified before access.
//
// During BPF program verification a tag PTR_TO_CTX is tracked for
// register values. In case if register with such tag is modified
// BPF program is not allowed to read or write memory using this
// register. See kernel/bpf/verifier.c:check_mem_access function
// in the Linux kernel source tree for details.
//
// The following sequence of the IR instructions:
//
// %x = getelementptr %ptr, %constant_offset
// %y = load %x
//
// Is translated as a single machine instruction:
//
// LDW %ptr, %constant_offset
//
// In order for cases (a) and (b) to work the sequence %x-%y above has
// to be preserved by the IR passes.
//
// However, several optimization passes might sink `load` instruction
// or hoist `getelementptr` instruction so that the instructions are
// no longer in sequence. Examples of such passes are:
// SimplifyCFGPass, InstCombinePass, GVNPass.
// After such modification the verifier would reject the BPF program.
//
// To avoid this issue the patterns like (load/store (getelementptr ...))
// are replaced by calls to BPF specific intrinsic functions:
// - llvm.bpf.getelementptr.and.load
// - llvm.bpf.getelementptr.and.store
//
// These calls are lowered back to (load/store (getelementptr ...))
// by BPFCheckAndAdjustIR pass right before the translation from IR to
// machine instructions.
//
// The transformation is split into the following steps:
// - When IR is generated from AST the calls to intrinsic function
// llvm.preserve.static.offset are inserted.
// - BPFPreserveStaticOffsetPass is executed as early as possible
// with AllowPatial set to true, this handles marked GEP chains
// with constant offsets.
// - BPFPreserveStaticOffsetPass is executed at ScalarOptimizerLateEPCallback
// with AllowPatial set to false, this handles marked GEP chains
// with offsets that became constant after loop unrolling, e.g.
// to handle the following code:
//
// struct context { int x[4]; } __attribute__((preserve_static_offset));
//
// struct context *ctx = ...;
// #pragma clang loop unroll(full)
// for (int i = 0; i < 4; ++i)
// foo(ctx->x[i]);
//
// The early BPFPreserveStaticOffsetPass run is necessary to allow
// additional GVN / CSE opportunities after functions inlining.
// The relative order of optimization applied to function:
// - early stage (1)
// - ...
// - function inlining (2)
// - ...
// - loop unrolling
// - ...
// - ScalarOptimizerLateEPCallback (3)
//
// When function A is inlined into function B all optimizations for A
// are already done, while some passes remain for B. In case if
// BPFPreserveStaticOffsetPass is done at (3) but not done at (1)
// the code after (2) would contain a mix of
// (load (gep %p)) and (get.and.load %p) usages:
// - the (load (gep %p)) would come from the calling function;
// - the (get.and.load %p) would come from the callee function.
// Thus clobbering CSE / GVN passes done after inlining.
#include "BPF.h"
#include "BPFCORE.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/IR/Argument.h"
#include "llvm/IR/Attributes.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DebugInfoMetadata.h"
#include "llvm/IR/DiagnosticInfo.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Intrinsics.h"
#include "llvm/IR/IntrinsicsBPF.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#define DEBUG_TYPE "bpf-preserve-static-offset"
using namespace llvm;
static const unsigned GepAndLoadFirstIdxArg = 6;
static const unsigned GepAndStoreFirstIdxArg = 7;
static bool isIntrinsicCall(Value *I, Intrinsic::ID Id) {
if (auto *Call = dyn_cast<CallInst>(I))
if (Function *Func = Call->getCalledFunction())
return Func->getIntrinsicID() == Id;
return false;
}
static bool isPreserveStaticOffsetCall(Value *I) {
return isIntrinsicCall(I, Intrinsic::preserve_static_offset);
}
static CallInst *isGEPAndLoad(Value *I) {
if (isIntrinsicCall(I, Intrinsic::bpf_getelementptr_and_load))
return cast<CallInst>(I);
return nullptr;
}
static CallInst *isGEPAndStore(Value *I) {
if (isIntrinsicCall(I, Intrinsic::bpf_getelementptr_and_store))
return cast<CallInst>(I);
return nullptr;
}
template <class T = Instruction>
static DILocation *mergeDILocations(SmallVector<T *> &Insns) {
DILocation *Merged = (*Insns.begin())->getDebugLoc();
for (T *I : Insns)
Merged = DILocation::getMergedLocation(Merged, I->getDebugLoc());
return Merged;
}
static CallInst *makeIntrinsicCall(Module *M,
Intrinsic::BPFIntrinsics Intrinsic,
ArrayRef<Type *> Types,
ArrayRef<Value *> Args) {
Function *Fn = Intrinsic::getDeclaration(M, Intrinsic, Types);
return CallInst::Create(Fn, Args);
}
static void setParamElementType(CallInst *Call, unsigned ArgNo, Type *Type) {
LLVMContext &C = Call->getContext();
Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::ElementType, Type));
}
static void setParamReadNone(CallInst *Call, unsigned ArgNo) {
LLVMContext &C = Call->getContext();
Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::ReadNone));
}
static void setParamReadOnly(CallInst *Call, unsigned ArgNo) {
LLVMContext &C = Call->getContext();
Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::ReadOnly));
}
static void setParamWriteOnly(CallInst *Call, unsigned ArgNo) {
LLVMContext &C = Call->getContext();
Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::WriteOnly));
}
namespace {
struct GEPChainInfo {
bool InBounds;
Type *SourceElementType;
SmallVector<Value *> Indices;
SmallVector<GetElementPtrInst *> Members;
GEPChainInfo() { reset(); }
void reset() {
InBounds = true;
SourceElementType = nullptr;
Indices.clear();
Members.clear();
}
};
} // Anonymous namespace
template <class T = std::disjunction<LoadInst, StoreInst>>
static void fillCommonArgs(LLVMContext &C, SmallVector<Value *> &Args,
GEPChainInfo &GEP, T *Insn) {
Type *Int8Ty = Type::getInt8Ty(C);
Type *Int1Ty = Type::getInt1Ty(C);
// Implementation of Align guarantees that ShiftValue < 64
unsigned AlignShiftValue = Log2_64(Insn->getAlign().value());
Args.push_back(GEP.Members[0]->getPointerOperand());
Args.push_back(ConstantInt::get(Int1Ty, Insn->isVolatile()));
Args.push_back(ConstantInt::get(Int8Ty, (unsigned)Insn->getOrdering()));
Args.push_back(ConstantInt::get(Int8Ty, (unsigned)Insn->getSyncScopeID()));
Args.push_back(ConstantInt::get(Int8Ty, AlignShiftValue));
Args.push_back(ConstantInt::get(Int1Ty, GEP.InBounds));
Args.append(GEP.Indices.begin(), GEP.Indices.end());
}
static Instruction *makeGEPAndLoad(Module *M, GEPChainInfo &GEP,
LoadInst *Load) {
SmallVector<Value *> Args;
fillCommonArgs(M->getContext(), Args, GEP, Load);
CallInst *Call = makeIntrinsicCall(M, Intrinsic::bpf_getelementptr_and_load,
{Load->getType()}, Args);
setParamElementType(Call, 0, GEP.SourceElementType);
Call->applyMergedLocation(mergeDILocations(GEP.Members), Load->getDebugLoc());
Call->setName((*GEP.Members.rbegin())->getName());
if (Load->isUnordered()) {
Call->setOnlyReadsMemory();
Call->setOnlyAccessesArgMemory();
setParamReadOnly(Call, 0);
}
for (unsigned I = GepAndLoadFirstIdxArg; I < Args.size(); ++I)
Call->addParamAttr(I, Attribute::ImmArg);
Call->setAAMetadata(Load->getAAMetadata());
return Call;
}
static Instruction *makeGEPAndStore(Module *M, GEPChainInfo &GEP,
StoreInst *Store) {
SmallVector<Value *> Args;
Args.push_back(Store->getValueOperand());
fillCommonArgs(M->getContext(), Args, GEP, Store);
CallInst *Call =
makeIntrinsicCall(M, Intrinsic::bpf_getelementptr_and_store,
{Store->getValueOperand()->getType()}, Args);
setParamElementType(Call, 1, GEP.SourceElementType);
if (Store->getValueOperand()->getType()->isPointerTy())
setParamReadNone(Call, 0);
Call->applyMergedLocation(mergeDILocations(GEP.Members),
Store->getDebugLoc());
if (Store->isUnordered()) {
Call->setOnlyWritesMemory();
Call->setOnlyAccessesArgMemory();
setParamWriteOnly(Call, 1);
}
for (unsigned I = GepAndStoreFirstIdxArg; I < Args.size(); ++I)
Call->addParamAttr(I, Attribute::ImmArg);
Call->setAAMetadata(Store->getAAMetadata());
return Call;
}
static unsigned getOperandAsUnsigned(CallInst *Call, unsigned ArgNo) {
if (auto *Int = dyn_cast<ConstantInt>(Call->getOperand(ArgNo)))
return Int->getValue().getZExtValue();
std::string Report;
raw_string_ostream ReportS(Report);
ReportS << "Expecting ConstantInt as argument #" << ArgNo << " of " << *Call
<< "\n";
report_fatal_error(StringRef(Report));
}
static GetElementPtrInst *reconstructGEP(CallInst *Call, int Delta) {
SmallVector<Value *> Indices;
Indices.append(Call->data_operands_begin() + 6 + Delta,
Call->data_operands_end());
Type *GEPPointeeType = Call->getParamElementType(Delta);
auto *GEP =
GetElementPtrInst::Create(GEPPointeeType, Call->getOperand(Delta),
ArrayRef<Value *>(Indices), Call->getName());
GEP->setIsInBounds(getOperandAsUnsigned(Call, 5 + Delta));
return GEP;
}
template <class T = std::disjunction<LoadInst, StoreInst>>
static void reconstructCommon(CallInst *Call, GetElementPtrInst *GEP, T *Insn,
int Delta) {
Insn->setVolatile(getOperandAsUnsigned(Call, 1 + Delta));
Insn->setOrdering((AtomicOrdering)getOperandAsUnsigned(Call, 2 + Delta));
Insn->setSyncScopeID(getOperandAsUnsigned(Call, 3 + Delta));
unsigned AlignShiftValue = getOperandAsUnsigned(Call, 4 + Delta);
Insn->setAlignment(Align(1ULL << AlignShiftValue));
GEP->setDebugLoc(Call->getDebugLoc());
Insn->setDebugLoc(Call->getDebugLoc());
Insn->setAAMetadata(Call->getAAMetadata());
}
std::pair<GetElementPtrInst *, LoadInst *>
BPFPreserveStaticOffsetPass::reconstructLoad(CallInst *Call) {
GetElementPtrInst *GEP = reconstructGEP(Call, 0);
Type *ReturnType = Call->getFunctionType()->getReturnType();
auto *Load = new LoadInst(ReturnType, GEP, "",
/* These would be set in reconstructCommon */
false, Align(1));
reconstructCommon(Call, GEP, Load, 0);
return std::pair{GEP, Load};
}
std::pair<GetElementPtrInst *, StoreInst *>
BPFPreserveStaticOffsetPass::reconstructStore(CallInst *Call) {
GetElementPtrInst *GEP = reconstructGEP(Call, 1);
auto *Store = new StoreInst(Call->getOperand(0), GEP,
/* These would be set in reconstructCommon */
false, Align(1));
reconstructCommon(Call, GEP, Store, 1);
return std::pair{GEP, Store};
}
static bool isZero(Value *V) {
auto *CI = dyn_cast<ConstantInt>(V);
return CI && CI->isZero();
}
// Given a chain of GEP instructions collect information necessary to
// merge this chain as a single GEP instruction of form:
// getelementptr %<type>, ptr %p, i32 0, <field_idx1>, <field_idx2>, ...
static bool foldGEPChainAsStructAccess(SmallVector<GetElementPtrInst *> &GEPs,
GEPChainInfo &Info) {
if (GEPs.empty())
return false;
if (!all_of(GEPs, [=](GetElementPtrInst *GEP) {
return GEP->hasAllConstantIndices();
}))
return false;
GetElementPtrInst *First = GEPs[0];
Info.InBounds = First->isInBounds();
Info.SourceElementType = First->getSourceElementType();
Type *ResultElementType = First->getResultElementType();
Info.Indices.append(First->idx_begin(), First->idx_end());
Info.Members.push_back(First);
for (auto *Iter = GEPs.begin() + 1; Iter != GEPs.end(); ++Iter) {
GetElementPtrInst *GEP = *Iter;
if (!isZero(*GEP->idx_begin())) {
Info.reset();
return false;
}
if (!GEP->getSourceElementType() ||
GEP->getSourceElementType() != ResultElementType) {
Info.reset();
return false;
}
Info.InBounds &= GEP->isInBounds();
Info.Indices.append(GEP->idx_begin() + 1, GEP->idx_end());
Info.Members.push_back(GEP);
ResultElementType = GEP->getResultElementType();
}
return true;
}
// Given a chain of GEP instructions collect information necessary to
// merge this chain as a single GEP instruction of form:
// getelementptr i8, ptr %p, i64 %offset
static bool foldGEPChainAsU8Access(SmallVector<GetElementPtrInst *> &GEPs,
GEPChainInfo &Info) {
if (GEPs.empty())
return false;
GetElementPtrInst *First = GEPs[0];
const DataLayout &DL = First->getDataLayout();
LLVMContext &C = First->getContext();
Type *PtrTy = First->getType()->getScalarType();
APInt Offset(DL.getIndexTypeSizeInBits(PtrTy), 0);
for (GetElementPtrInst *GEP : GEPs) {
if (!GEP->accumulateConstantOffset(DL, Offset)) {
Info.reset();
return false;
}
Info.InBounds &= GEP->isInBounds();
Info.Members.push_back(GEP);
}
Info.SourceElementType = Type::getInt8Ty(C);
Info.Indices.push_back(ConstantInt::get(C, Offset));
return true;
}
static void reportNonStaticGEPChain(Instruction *Insn) {
auto Msg = DiagnosticInfoUnsupported(
*Insn->getFunction(),
Twine("Non-constant offset in access to a field of a type marked "
"with preserve_static_offset might be rejected by BPF verifier")
.concat(Insn->getDebugLoc()
? ""
: " (pass -g option to get exact location)"),
Insn->getDebugLoc(), DS_Warning);
Insn->getContext().diagnose(Msg);
}
static bool allZeroIndices(SmallVector<GetElementPtrInst *> &GEPs) {
return GEPs.empty() || all_of(GEPs, [=](GetElementPtrInst *GEP) {
return GEP->hasAllZeroIndices();
});
}
static bool tryToReplaceWithGEPBuiltin(Instruction *LoadOrStoreTemplate,
SmallVector<GetElementPtrInst *> &GEPs,
Instruction *InsnToReplace) {
GEPChainInfo GEPChain;
if (!foldGEPChainAsStructAccess(GEPs, GEPChain) &&
!foldGEPChainAsU8Access(GEPs, GEPChain)) {
return false;
}
Module *M = InsnToReplace->getModule();
if (auto *Load = dyn_cast<LoadInst>(LoadOrStoreTemplate)) {
Instruction *Replacement = makeGEPAndLoad(M, GEPChain, Load);
Replacement->insertBefore(InsnToReplace);
InsnToReplace->replaceAllUsesWith(Replacement);
}
if (auto *Store = dyn_cast<StoreInst>(LoadOrStoreTemplate)) {
Instruction *Replacement = makeGEPAndStore(M, GEPChain, Store);
Replacement->insertBefore(InsnToReplace);
}
return true;
}
// Check if U->getPointerOperand() == I
static bool isPointerOperand(Value *I, User *U) {
if (auto *L = dyn_cast<LoadInst>(U))
return L->getPointerOperand() == I;
if (auto *S = dyn_cast<StoreInst>(U))
return S->getPointerOperand() == I;
if (auto *GEP = dyn_cast<GetElementPtrInst>(U))
return GEP->getPointerOperand() == I;
if (auto *Call = isGEPAndLoad(U))
return Call->getArgOperand(0) == I;
if (auto *Call = isGEPAndStore(U))
return Call->getArgOperand(1) == I;
return false;
}
static bool isInlineableCall(User *U) {
if (auto *Call = dyn_cast<CallInst>(U))
return Call->hasFnAttr(Attribute::InlineHint);
return false;
}
static void rewriteAccessChain(Instruction *Insn,
SmallVector<GetElementPtrInst *> &GEPs,
SmallVector<Instruction *> &Visited,
bool AllowPatial, bool &StillUsed);
static void rewriteUses(Instruction *Insn,
SmallVector<GetElementPtrInst *> &GEPs,
SmallVector<Instruction *> &Visited, bool AllowPatial,
bool &StillUsed) {
for (User *U : Insn->users()) {
auto *UI = dyn_cast<Instruction>(U);
if (UI && (isPointerOperand(Insn, UI) || isPreserveStaticOffsetCall(UI) ||
isInlineableCall(UI)))
rewriteAccessChain(UI, GEPs, Visited, AllowPatial, StillUsed);
else
LLVM_DEBUG({
llvm::dbgs() << "unsupported usage in BPFPreserveStaticOffsetPass:\n";
llvm::dbgs() << " Insn: " << *Insn << "\n";
llvm::dbgs() << " User: " << *U << "\n";
});
}
}
// A DFS traversal of GEP chain trees starting from Root.
//
// Recursion descends through GEP instructions and
// llvm.preserve.static.offset calls. Recursion stops at any other
// instruction. If load or store instruction is reached it is replaced
// by a call to `llvm.bpf.getelementptr.and.load` or
// `llvm.bpf.getelementptr.and.store` intrinsic.
// If `llvm.bpf.getelementptr.and.load/store` is reached the accumulated
// GEPs are merged into the intrinsic call.
// If nested calls to `llvm.preserve.static.offset` are encountered these
// calls are marked for deletion.
//
// Parameters description:
// - Insn - current position in the tree
// - GEPs - GEP instructions for the current branch
// - Visited - a list of visited instructions in DFS order,
// order is important for unused instruction deletion.
// - AllowPartial - when true GEP chains that can't be folded are
// not reported, otherwise diagnostic message is show for such chains.
// - StillUsed - set to true if one of the GEP chains could not be
// folded, makes sense when AllowPartial is false, means that root
// preserve.static.offset call is still in use and should remain
// until the next run of this pass.
static void rewriteAccessChain(Instruction *Insn,
SmallVector<GetElementPtrInst *> &GEPs,
SmallVector<Instruction *> &Visited,
bool AllowPatial, bool &StillUsed) {
auto MarkAndTraverseUses = [&]() {
Visited.push_back(Insn);
rewriteUses(Insn, GEPs, Visited, AllowPatial, StillUsed);
};
auto TryToReplace = [&](Instruction *LoadOrStore) {
// Do nothing for (preserve.static.offset (load/store ..)) or for
// GEPs with zero indices. Such constructs lead to zero offset and
// are simplified by other passes.
if (allZeroIndices(GEPs))
return;
if (tryToReplaceWithGEPBuiltin(LoadOrStore, GEPs, Insn)) {
Visited.push_back(Insn);
return;
}
if (!AllowPatial)
reportNonStaticGEPChain(Insn);
StillUsed = true;
};
if (isa<LoadInst>(Insn) || isa<StoreInst>(Insn)) {
TryToReplace(Insn);
} else if (isGEPAndLoad(Insn)) {
auto [GEP, Load] =
BPFPreserveStaticOffsetPass::reconstructLoad(cast<CallInst>(Insn));
GEPs.push_back(GEP);
TryToReplace(Load);
GEPs.pop_back();
delete Load;
delete GEP;
} else if (isGEPAndStore(Insn)) {
// This case can't be merged with the above because
// `delete Load` / `delete Store` wants a concrete type,
// destructor of Instruction is protected.
auto [GEP, Store] =
BPFPreserveStaticOffsetPass::reconstructStore(cast<CallInst>(Insn));
GEPs.push_back(GEP);
TryToReplace(Store);
GEPs.pop_back();
delete Store;
delete GEP;
} else if (auto *GEP = dyn_cast<GetElementPtrInst>(Insn)) {
GEPs.push_back(GEP);
MarkAndTraverseUses();
GEPs.pop_back();
} else if (isPreserveStaticOffsetCall(Insn)) {
MarkAndTraverseUses();
} else if (isInlineableCall(Insn)) {
// Preserve preserve.static.offset call for parameters of
// functions that might be inlined. These would be removed on a
// second pass after inlining.
// Might happen when a pointer to a preserve_static_offset
// structure is passed as parameter of a function that would be
// inlined inside a loop that would be unrolled.
if (AllowPatial)
StillUsed = true;
} else {
SmallString<128> Buf;
raw_svector_ostream BufStream(Buf);
BufStream << *Insn;
report_fatal_error(
Twine("Unexpected rewriteAccessChain Insn = ").concat(Buf));
}
}
static void removeMarkerCall(Instruction *Marker) {
Marker->replaceAllUsesWith(Marker->getOperand(0));
Marker->eraseFromParent();
}
static bool rewriteAccessChain(Instruction *Marker, bool AllowPatial,
SmallPtrSetImpl<Instruction *> &RemovedMarkers) {
SmallVector<GetElementPtrInst *> GEPs;
SmallVector<Instruction *> Visited;
bool StillUsed = false;
rewriteUses(Marker, GEPs, Visited, AllowPatial, StillUsed);
// Check if Visited instructions could be removed, iterate in
// reverse to unblock instructions higher in the chain.
for (auto V = Visited.rbegin(); V != Visited.rend(); ++V) {
if (isPreserveStaticOffsetCall(*V)) {
removeMarkerCall(*V);
RemovedMarkers.insert(*V);
} else if ((*V)->use_empty()) {
(*V)->eraseFromParent();
}
}
return StillUsed;
}
static std::vector<Instruction *>
collectPreserveStaticOffsetCalls(Function &F) {
std::vector<Instruction *> Calls;
for (Instruction &Insn : instructions(F))
if (isPreserveStaticOffsetCall(&Insn))
Calls.push_back(&Insn);
return Calls;
}
bool isPreserveArrayIndex(Value *V) {
return isIntrinsicCall(V, Intrinsic::preserve_array_access_index);
}
bool isPreserveStructIndex(Value *V) {
return isIntrinsicCall(V, Intrinsic::preserve_struct_access_index);
}
bool isPreserveUnionIndex(Value *V) {
return isIntrinsicCall(V, Intrinsic::preserve_union_access_index);
}
static void removePAICalls(Instruction *Marker) {
auto IsPointerOperand = [](Value *Op, User *U) {
if (auto *GEP = dyn_cast<GetElementPtrInst>(U))
return GEP->getPointerOperand() == Op;
if (isPreserveStaticOffsetCall(U) || isPreserveArrayIndex(U) ||
isPreserveStructIndex(U) || isPreserveUnionIndex(U))
return cast<CallInst>(U)->getArgOperand(0) == Op;
return false;
};
SmallVector<Value *, 32> WorkList;
WorkList.push_back(Marker);
do {
Value *V = WorkList.pop_back_val();
for (User *U : V->users())
if (IsPointerOperand(V, U))
WorkList.push_back(U);
auto *Call = dyn_cast<CallInst>(V);
if (!Call)
continue;
if (isPreserveArrayIndex(V))
BPFCoreSharedInfo::removeArrayAccessCall(Call);
else if (isPreserveStructIndex(V))
BPFCoreSharedInfo::removeStructAccessCall(Call);
else if (isPreserveUnionIndex(V))
BPFCoreSharedInfo::removeUnionAccessCall(Call);
} while (!WorkList.empty());
}
// Look for sequences:
// - llvm.preserve.static.offset -> getelementptr... -> load
// - llvm.preserve.static.offset -> getelementptr... -> store
// And replace those with calls to intrinsics:
// - llvm.bpf.getelementptr.and.load
// - llvm.bpf.getelementptr.and.store
static bool rewriteFunction(Function &F, bool AllowPartial) {
LLVM_DEBUG(dbgs() << "********** BPFPreserveStaticOffsetPass (AllowPartial="
<< AllowPartial << ") ************\n");
auto MarkerCalls = collectPreserveStaticOffsetCalls(F);
SmallPtrSet<Instruction *, 16> RemovedMarkers;
LLVM_DEBUG(dbgs() << "There are " << MarkerCalls.size()
<< " preserve.static.offset calls\n");
if (MarkerCalls.empty())
return false;
for (auto *Call : MarkerCalls)
removePAICalls(Call);
for (auto *Call : MarkerCalls) {
if (RemovedMarkers.contains(Call))
continue;
bool StillUsed = rewriteAccessChain(Call, AllowPartial, RemovedMarkers);
if (!StillUsed || !AllowPartial)
removeMarkerCall(Call);
}
return true;
}
PreservedAnalyses
llvm::BPFPreserveStaticOffsetPass::run(Function &F,
FunctionAnalysisManager &AM) {
return rewriteFunction(F, AllowPartial) ? PreservedAnalyses::none()
: PreservedAnalyses::all();
}
|