60#define DEBUG_TYPE "alloc-token"
67 cl::desc(
"The allocation function prefix"),
71 cl::desc(
"Maximum number of tokens (0 = no max)"),
75 ClFastABI(
"alloc-token-fast-abi",
76 cl::desc(
"The token ID is encoded in the function name"),
84 ClExtended(
"alloc-token-extended",
85 cl::desc(
"Extend coverage to custom allocation functions"),
92cl::opt<bool> ClCoverReplaceableNew(
"alloc-token-cover-replaceable-new",
93 cl::desc(
"Cover replaceable operator new"),
97 "alloc-token-fallback",
98 cl::desc(
"The default fallback token where none could be determined"),
103STATISTIC(NumFunctionsModified,
"Functions modified");
104STATISTIC(NumAllocationsInstrumented,
"Allocations instrumented");
114 II &&
II->getIntrinsicID() == Intrinsic::alloc_token_id) {
118 if (Ret->getNumOperands() == 0)
125 assert(Ret->getNumOperands() == 2 &&
"bad !alloc_token");
131bool containsPointer(
const MDNode *MD) {
134 return CI->getValue().getBoolValue();
140 : MaxTokens(MaxTokens ? MaxTokens : TokenTy.
getBitMask()) {
147 return Val % MaxTokens;
154class IncrementMode :
public ModeBase {
156 using ModeBase::ModeBase;
159 return boundedToken(Counter++);
167class RandomMode :
public ModeBase {
170 std::unique_ptr<RandomNumberGenerator> RNG)
171 : ModeBase(TokenTy, MaxTokens), RNG(std::move(RNG)) {}
173 return boundedToken((*RNG)());
177 std::unique_ptr<RandomNumberGenerator> RNG;
183class TypeHashMode :
public ModeBase {
185 using ModeBase::ModeBase;
189 if (
MDNode *
N = getAllocTokenMetadata(CB)) {
196 remarkNoMetadata(CB, ORE);
197 return ClFallbackToken;
202 static void remarkNoMetadata(
const CallBase &CB,
207 ore::NV CalleeNV(
"Callee", Callee ? Callee->getName() :
"<unknown>");
209 <<
"Call to '" << CalleeNV <<
"' in '" << FuncNV
210 <<
"' without source-level type token";
216class TypeHashPointerSplitMode :
public TypeHashMode {
218 using TypeHashMode::TypeHashMode;
221 if (
MDNode *
N = getAllocTokenMetadata(CB)) {
231 remarkNoMetadata(CB, ORE);
232 return ClFallbackToken;
249 :
Options(transformOptionsFromCl(std::move(Opts))),
Mod(M),
251 Mode(IncrementMode(*IntPtrTy, *
Options.MaxTokens)) {
256 Mode.emplace<RandomMode>(*IntPtrTy, *
Options.MaxTokens,
260 Mode.emplace<TypeHashMode>(*IntPtrTy, *
Options.MaxTokens);
263 Mode.emplace<TypeHashPointerSplitMode>(*IntPtrTy, *
Options.MaxTokens);
272 std::optional<LibFunc>
280 static bool ignoreInstrumentableLibFunc(
LibFunc Func);
297 return std::visit([&](
auto &&
Mode) {
return Mode(CB, ORE); },
Mode);
307 std::variant<IncrementMode, RandomMode, TypeHashMode,
308 TypeHashPointerSplitMode>
312bool AllocToken::instrumentFunction(
Function &
F) {
314 if (
F.hasFnAttribute(Attribute::Naked))
326 const bool InstrumentFunction =
327 F.hasFnAttribute(Attribute::SanitizeAllocToken) &&
328 !
F.hasFnAttribute(Attribute::DisableSanitizerInstrumentation);
334 II &&
II->getIntrinsicID() == Intrinsic::alloc_token_id) {
339 if (!InstrumentFunction)
345 if (std::optional<LibFunc> Func = shouldInstrumentCall(*CB, TLI))
346 AllocCalls.emplace_back(CB, Func.value());
351 if (!AllocCalls.empty()) {
352 for (
auto &[CB, Func] : AllocCalls)
353 Modified |= replaceAllocationCall(CB, Func, ORE, TLI);
355 NumFunctionsModified++;
358 if (!IntrinsicInsts.
empty()) {
359 for (
auto *
II : IntrinsicInsts)
360 replaceIntrinsicInst(
II, ORE);
362 NumFunctionsModified++;
368std::optional<LibFunc>
369AllocToken::shouldInstrumentCall(
const CallBase &CB,
380 if (isInstrumentableLibFunc(Func, CB, TLI))
389bool AllocToken::isInstrumentableLibFunc(
LibFunc Func,
const CallBase &CB,
391 if (ignoreInstrumentableLibFunc(Func))
400 case LibFunc_posix_memalign:
401 case LibFunc_size_returning_new:
402 case LibFunc_size_returning_new_hot_cold:
403 case LibFunc_size_returning_new_aligned:
404 case LibFunc_size_returning_new_aligned_hot_cold:
409 case LibFunc_ZnwjRKSt9nothrow_t:
410 case LibFunc_ZnwjSt11align_val_t:
411 case LibFunc_ZnwjSt11align_val_tRKSt9nothrow_t:
413 case LibFunc_Znwm12__hot_cold_t:
414 case LibFunc_ZnwmRKSt9nothrow_t:
415 case LibFunc_ZnwmRKSt9nothrow_t12__hot_cold_t:
416 case LibFunc_ZnwmSt11align_val_t:
417 case LibFunc_ZnwmSt11align_val_t12__hot_cold_t:
418 case LibFunc_ZnwmSt11align_val_tRKSt9nothrow_t:
419 case LibFunc_ZnwmSt11align_val_tRKSt9nothrow_t12__hot_cold_t:
421 case LibFunc_ZnajRKSt9nothrow_t:
422 case LibFunc_ZnajSt11align_val_t:
423 case LibFunc_ZnajSt11align_val_tRKSt9nothrow_t:
425 case LibFunc_Znam12__hot_cold_t:
426 case LibFunc_ZnamRKSt9nothrow_t:
427 case LibFunc_ZnamRKSt9nothrow_t12__hot_cold_t:
428 case LibFunc_ZnamSt11align_val_t:
429 case LibFunc_ZnamSt11align_val_t12__hot_cold_t:
430 case LibFunc_ZnamSt11align_val_tRKSt9nothrow_t:
431 case LibFunc_ZnamSt11align_val_tRKSt9nothrow_t12__hot_cold_t:
432 return ClCoverReplaceableNew;
439bool AllocToken::ignoreInstrumentableLibFunc(
LibFunc Func) {
442 case LibFunc_dunder_strdup:
443 case LibFunc_strndup:
444 case LibFunc_dunder_strndup:
456 FunctionCallee TokenAlloc = getTokenAllocFunction(*CB, TokenID, Func);
459 NumAllocationsInstrumented++;
471 NewArgs.
push_back(ConstantInt::get(IntPtrTy, TokenID));
478 II->getUnwindDest(), NewArgs);
480 NewCall = IRB.
CreateCall(TokenAlloc, NewArgs);
496 std::optional<std::pair<LibFunc, uint64_t>>
Key;
498 Key = std::make_pair(OriginalFunc,
Options.FastABI ? TokenID : 0);
499 auto It = TokenAllocFunctions.find(*
Key);
500 if (It != TokenAllocFunctions.end())
508 if (OldFTy->isVarArg())
511 Type *RetTy = OldFTy->getReturnType();
513 std::string TokenAllocName = ClFuncPrefix;
515 TokenAllocName +=
utostr(TokenID) +
"_";
518 TokenAllocName += Callee->getName();
522 F->copyAttributesFrom(Callee);
525 TokenAllocFunctions[*
Key] = TokenAlloc;
531 assert(
II->getIntrinsicID() == Intrinsic::alloc_token_id);
534 Value *V = ConstantInt::get(IntPtrTy, TokenID);
535 II->replaceAllUsesWith(V);
536 II->eraseFromParent();
545 AllocToken
Pass(Options, M,
MAM);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Expand Atomic instructions
This file contains the simple types necessary to represent the attributes associated with functions a...
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseMap class.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
print mir2vec MIR2Vec Vocabulary Printer Pass
uint64_t IntrinsicInst * II
if(auto Err=PB.parsePassPipeline(MPM, Passes)) return wrap(std MPM run * Mod
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
LLVM_ABI AllocTokenPass(AllocTokenOptions Opts={})
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
Represents analyses that only rely on functions' control flow.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
void setCallingConv(CallingConv::ID CC)
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
CallingConv::ID getCallingConv() const
void setAttributes(AttributeList A)
Set the attributes for this call.
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
void setCalledFunction(Function *Fn)
Sets the function called, including updating the function type.
LLVM_ABI bool isTailCall() const
Tests if this call site is marked as a tail call.
void setTailCall(bool IsTc=true)
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
FunctionType * getFunctionType()
unsigned getNumParams() const
Return the number of fixed parameters this function type requires.
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
@ AvailableExternallyLinkage
Available for inspection, not emission.
InvokeInst * CreateInvoke(FunctionType *Ty, Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef< Value * > Args, ArrayRef< OperandBundleDef > OpBundles, const Twine &Name="")
Create an invoke instruction.
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI void copyMetadata(const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >())
Copy metadata from SrcInst to this instruction.
Class to represent integer types.
uint64_t getBitMask() const
Return a bitmask with ones set for all of the bits that can be set by an unsigned version of this typ...
A wrapper class for inspecting calls to intrinsic functions.
const MDOperand & getOperand(unsigned I) const
LLVM_ABI StringRef getString() const
A Module instance is used to store all the information related to an LLVM module.
Pass interface - Implemented by all 'passes'.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
bool getLibFunc(StringRef funcName, LibFunc &F) const
Searches for a particular function name.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
const ParentTy * getParent() const
Pass manager infrastructure for declaring and invalidating analyses.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI std::optional< uint64_t > getAllocToken(AllocTokenMode Mode, const AllocTokenMetadata &Metadata, uint64_t MaxTokens)
Calculates stable allocation token ID.
LLVM_ABI std::pair< StringRef, StringRef > getToken(StringRef Source, StringRef Delimiters=" \t\n\v\f\r")
getToken - This function extracts one token from source, ignoring any leading characters that appear ...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
std::string utostr(uint64_t X, bool isNeg=false)
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
@ Mod
The access may modify the value stored in memory.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI)
Tests if a value is a call or invoke to a library function that allocates or reallocates memory (eith...
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
AllocTokenMode
Modes for generating allocation token IDs.
@ TypeHash
Token ID based on allocated type hash.
@ Random
Simple mode that returns a statically-assigned random token ID.
@ Increment
Incrementally increasing token ID.
@ TypeHashPointerSplit
Token ID based on allocated type hash, where the top half ID-space is reserved for types that contain...
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Implement std::hash so that hash_code can be used in STL containers.
std::optional< uint64_t > MaxTokens