45#define DEBUG_TYPE "tysan"
53 "__tysan_shadow_memory_address";
62 "tysan-outline-instrumentation",
63 cl::desc(
"Uses function calls for all TySan instrumentation, reducing "
68 "tysan-verify-outlined-instrumentation",
69 cl::desc(
"Check types twice with both inlined instrumentation and "
70 "function calls. This verifies that they behave the same."),
73STATISTIC(NumInstrumentedAccesses,
"Number of instrumented accesses");
82 void instrumentGlobals(
Module &M);
89 void initializeCallbacks(
Module &M);
96 bool IsWrite,
Value *ShadowBase,
97 Value *AppMemMask,
bool ForceSetType,
98 bool SanitizeFunction,
99 TypeDescriptorsMapTy &TypeDescriptors,
107 std::string getAnonymousStructIdentifier(
const MDNode *MD,
108 TypeNameMapTy &TypeNames);
109 bool generateTypeDescriptor(
const MDNode *MD,
110 TypeDescriptorsMapTy &TypeDescriptors,
111 TypeNameMapTy &TypeNames,
Module &M);
112 bool generateBaseTypeDescriptor(
const MDNode *MD,
113 TypeDescriptorsMapTy &TypeDescriptors,
114 TypeNameMapTy &TypeNames,
Module &M);
116 const Triple TargetTriple;
131 Function *TysanGlobalsSetTypeFunction;
135TypeSanitizer::TypeSanitizer(
Module &M)
136 : TargetTriple(M.getTargetTriple()),
137 AnonNameRegex(
"^_ZTS.*N[1-9][0-9]*_GLOBAL__N") {
139 IntptrTy =
DL.getIntPtrType(M.getContext());
140 PtrShift =
countr_zero(IntptrTy->getPrimitiveSizeInBits() / 8);
142 TysanGlobalsSetTypeFunction = M.getFunction(
"__tysan_set_globals_types");
143 initializeCallbacks(M);
146void TypeSanitizer::initializeCallbacks(
Module &M) {
147 LLVMContext &
C =
M.getContext();
154 Attr = Attr.addFnAttribute(
C, Attribute::NoUnwind);
155 Attribute::AttrKind SExtAttr =
156 TargetLibraryInfo::getExtAttrForI32Param(TargetTriple,
true);
157 Attribute::AttrKind BoolExtAttr =
163 Attr.maybeAddParamAttribute(
C, 1, SExtAttr)
164 .maybeAddParamAttribute(
C, 3, SExtAttr),
175 TysanIntrumentMemInst =
M.getOrInsertFunction(
176 "__tysan_instrument_mem_inst",
177 Attr.maybeAddParamAttribute(
C, 3, BoolExtAttr), IRB.getVoidTy(),
184 TysanInstrumentWithShadowUpdate =
185 M.getOrInsertFunction(
"__tysan_instrument_with_shadow_update",
186 Attr.maybeAddParamAttribute(
C, 2, BoolExtAttr)
187 .maybeAddParamAttribute(
C, 4, SExtAttr),
196 TysanSetShadowType =
M.getOrInsertFunction(
197 "__tysan_set_shadow_type", Attr, IRB.getVoidTy(),
204void TypeSanitizer::instrumentGlobals(
Module &M) {
205 TysanGlobalsSetTypeFunction =
nullptr;
207 NamedMDNode *Globals =
M.getNamedMetadata(
"llvm.tysan.globals");
212 FunctionType::get(Type::getVoidTy(
M.getContext()),
false),
218 const DataLayout &
DL =
M.getDataLayout();
219 Value *ShadowBase = getShadowBase(*TysanGlobalsSetTypeFunction);
220 Value *AppMemMask = getAppMemMask(*TysanGlobalsSetTypeFunction);
221 TypeDescriptorsMapTy TypeDescriptors;
222 TypeNameMapTy TypeNames;
224 for (
const auto &GMD : Globals->
operands()) {
228 const MDNode *TBAAMD =
cast<MDNode>(GMD->getOperand(1));
229 if (!generateBaseTypeDescriptor(TBAAMD, TypeDescriptors, TypeNames, M))
234 Type *AccessTy = GV->getValueType();
236 uint64_t AccessSize =
DL.getTypeStoreSize(AccessTy);
237 instrumentWithShadowUpdate(IRB, TBAAMD, GV, AccessSize,
false,
false,
238 ShadowBase, AppMemMask,
true,
false,
239 TypeDescriptors,
DL);
242 if (TysanGlobalsSetTypeFunction) {
246 IRB.CreateCall(TysanGlobalsSetTypeFunction, {});
250static const char LUT[] =
"0123456789abcdef";
253 size_t Length = Name.size();
255 Output.reserve(Output.size() + 3 *
Length);
256 for (
size_t i = 0; i <
Length; ++i) {
257 const unsigned char c = Name[i];
268 Output.push_back(
'_');
269 Output.push_back(
LUT[c >> 4]);
270 Output.push_back(
LUT[c & 15]);
277TypeSanitizer::getAnonymousStructIdentifier(
const MDNode *MD,
278 TypeNameMapTy &TypeNames) {
286 auto TNI = TypeNames.find(MemberNode);
287 std::string MemberName;
288 if (TNI != TypeNames.end()) {
289 MemberName = TNI->second;
297 if (MemberName.empty())
298 MemberName = getAnonymousStructIdentifier(MemberNode, TypeNames);
299 if (MemberName.empty())
301 TypeNames[MemberNode] = MemberName;
313 MD5::MD5Result HashResult;
314 Hash.
final(HashResult);
315 return "__anonymous_" + std::string(HashResult.
digest().
str());
318bool TypeSanitizer::generateBaseTypeDescriptor(
319 const MDNode *MD, TypeDescriptorsMapTy &TypeDescriptors,
320 TypeNameMapTy &TypeNames,
Module &M) {
330 Name = getAnonymousStructIdentifier(MD, TypeNames);
333 TypeNames[MD] =
Name;
339 TypeDescriptors[MD] = GV;
350 auto TDI = TypeDescriptors.find(MemberNode);
351 if (TDI != TypeDescriptors.end()) {
354 if (!generateBaseTypeDescriptor(MemberNode, TypeDescriptors, TypeNames,
358 Member = TypeDescriptors[MemberNode];
380 PushTDSub(ConstantInt::get(IntptrTy, 2));
381 PushTDSub(ConstantInt::get(IntptrTy, Members.
size()));
389 bool ShouldBeComdat = !AnonNameRegex.
match(NameNode->
getString());
390 for (
auto &Member : Members) {
392 PushTDSub(ConstantInt::get(IntptrTy,
Member.second));
400 GlobalVariable *TDGV =
401 new GlobalVariable(TDTy,
true,
405 M.insertGlobalVariable(TDGV);
407 if (ShouldBeComdat) {
409 Comdat *TDComdat =
M.getOrInsertComdat(EncodedName);
415 TypeDescriptors[MD] = TDGV;
419bool TypeSanitizer::generateTypeDescriptor(
420 const MDNode *MD, TypeDescriptorsMapTy &TypeDescriptors,
421 TypeNameMapTy &TypeNames,
Module &M) {
440 auto TDI = TypeDescriptors.find(BaseNode);
441 if (TDI != TypeDescriptors.end()) {
444 if (!generateBaseTypeDescriptor(BaseNode, TypeDescriptors, TypeNames, M))
447 Base = TypeDescriptors[BaseNode];
451 TDI = TypeDescriptors.find(AccessNode);
452 if (TDI != TypeDescriptors.end()) {
455 if (!generateBaseTypeDescriptor(AccessNode, TypeDescriptors, TypeNames, M))
458 Access = TypeDescriptors[AccessNode];
463 std::string EncodedName =
469 TypeDescriptors[MD] = GV;
480 ConstantInt::get(IntptrTy,
Offset));
485 GlobalVariable *TDGV =
486 new GlobalVariable(TDTy,
true,
490 M.insertGlobalVariable(TDGV);
492 if (ShouldBeComdat) {
494 Comdat *TDComdat =
M.getOrInsertComdat(EncodedName);
500 TypeDescriptors[MD] = TDGV;
508 return IRB.CreateLoad(IntptrTy, GlobalShadowAddress,
"shadow.base");
513 Value *GlobalAppMemMask =
515 return IRB.CreateLoad(IntptrTy, GlobalAppMemMask,
"app.mem.mask");
522 SmallVectorImpl<std::pair<Instruction *, MemoryLocation>> &MemoryAccesses,
528 if (Inst.getMetadata(LLVMContext::MD_nosanitize))
546 MemoryAccesses.push_back(std::make_pair(&Inst, MLoc));
559bool TypeSanitizer::sanitizeFunction(
Function &
F,
560 const TargetLibraryInfo &TLI) {
561 if (
F.isDeclaration())
565 if (&
F == TysanCtorFunction.
getCallee() || &
F == TysanGlobalsSetTypeFunction)
567 initializeCallbacks(*
F.getParent());
572 SmallSetVector<const MDNode *, 8> TBAAMetadata;
578 for (
auto &
A :
F.args())
579 if (
A.hasByValAttr())
583 TypeDescriptorsMapTy TypeDescriptors;
584 TypeNameMapTy TypeNames;
586 for (
const MDNode *MD : TBAAMetadata) {
587 if (TypeDescriptors.count(MD))
590 if (!generateTypeDescriptor(MD, TypeDescriptors, TypeNames, M))
597 bool SanitizeFunction =
F.hasFnAttribute(Attribute::SanitizeType);
598 bool NeedsInstrumentation =
599 MemTypeResetInsts.
empty() && MemoryAccesses.
empty();
600 Instruction *ShadowBase = NeedsInstrumentation ? nullptr : getShadowBase(
F);
601 Instruction *AppMemMask = NeedsInstrumentation ? nullptr : getAppMemMask(
F);
602 for (
const auto &[
I, MLoc] : MemoryAccesses) {
604 assert(MLoc.Size.isPrecise());
605 if (instrumentWithShadowUpdate(
606 IRB, MLoc.AATags.TBAA,
const_cast<Value *
>(MLoc.Ptr),
607 MLoc.Size.getValue(),
I->mayReadFromMemory(),
I->mayWriteToMemory(),
608 ShadowBase, AppMemMask,
false, SanitizeFunction, TypeDescriptors,
610 ++NumInstrumentedAccesses;
615 for (
auto Inst : MemTypeResetInsts)
616 Res |= instrumentMemInst(Inst, ShadowBase, AppMemMask,
DL);
627 AppMemMask,
"app.ptr.masked"),
628 PtrShift,
"app.ptr.shifted"),
629 ShadowBase,
"shadow.ptr.int");
632bool TypeSanitizer::instrumentWithShadowUpdate(
634 bool IsRead,
bool IsWrite,
Value *ShadowBase,
Value *AppMemMask,
635 bool ForceSetType,
bool SanitizeFunction,
636 TypeDescriptorsMapTy &TypeDescriptors,
const DataLayout &
DL) {
639 TDGV = TypeDescriptors[TBAAMD];
653 ConstantInt::get(OrdTy, (
int)IsRead | (((
int)IsWrite) << 1));
655 IRB.
CreateCall(TysanInstrumentWithShadowUpdate,
659 }
else if (ForceSetType || IsWrite) {
669 ShadowBase, AppMemMask);
674 auto SetType = [&]() {
679 for (
uint64_t i = 1; i < AccessSize; ++i) {
682 ConstantInt::get(IntptrTy, i << PtrShift),
683 "shadow.byte." + Twine(i) +
".offset"),
684 Int8PtrPtrTy,
"shadow.byte." + Twine(i) +
".ptr");
690 IRB.
getPtrTy(),
"bad.descriptor" + Twine(i));
703 "should have handled case above");
705 MDNode *UnlikelyBW = MDBuilder(
C).createBranchWeights(1, 100000);
707 if (!SanitizeFunction) {
715 NullTDTerm->
getParent()->setName(
"set.type");
774 Constant *
Flags = ConstantInt::get(OrdTy,
int(IsRead) | (
int(IsWrite) << 1));
780 &GoodTDTerm, UnlikelyBW);
795 Value *
Size = ConstantInt::get(OrdTy, AccessSize);
797 for (
uint64_t i = 1; i < AccessSize; ++i) {
799 IRB.
CreateAdd(ShadowDataInt, ConstantInt::get(IntptrTy, i << PtrShift)),
824 for (
uint64_t i = 1; i < AccessSize; ++i) {
826 IRB.
CreateAdd(ShadowDataInt, ConstantInt::get(IntptrTy, i << PtrShift)),
831 NotAllBadTD, IRB.
CreateICmpSGE(ILdTD, ConstantInt::get(IntptrTy, 0)));
842bool TypeSanitizer::instrumentMemInst(
Value *V, Instruction *ShadowBase,
843 Instruction *AppMemMask,
844 const DataLayout &
DL) {
856 BB = &
F->getEntryBlock();
860 if (IP->comesBefore(ShadowBase))
862 if (IP->comesBefore(AppMemMask))
867 bool NeedsMemMove =
false;
871 assert(
A->hasByValAttr() &&
"Type reset for non-byval argument?");
875 ConstantInt::get(IntptrTy,
DL.getTypeAllocSize(
A->getParamByValType()));
879 if (
MI->getDestAddressSpace() != 0)
882 Dest =
MI->getDest();
886 if (MTI->getSourceAddressSpace() == 0) {
887 Src = MTI->getSource();
897 Dest =
II->getArgOperand(0);
920 TysanIntrumentMemInst,
925 ShadowBase = getShadowBase(*
F);
927 AppMemMask = getAppMemMask(*
F);
964 std::tie(TysanCtorFunction, std::ignore) =
969 TypeSanitizer TySan(M);
970 TySan.instrumentGlobals(M);
976 TySan.sanitizeFunction(
F, TLI);
984 TySan.sanitizeFunction(
F, TLI);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Expand Atomic instructions
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
Module.h This file contains the declarations for the Module class.
Machine Check Debug Module
This file provides utility analysis objects describing memory locations.
uint64_t IntrinsicInst * II
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
This file implements a set that has insertion order iteration characteristics.
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)
static const char *const kTysanInitName
static Value * convertToShadowDataInt(IRBuilder<> &IRB, Value *Ptr, Type *IntptrTy, uint64_t PtrShift, Value *ShadowBase, Value *AppMemMask)
static const char *const kTysanShadowMemoryAddress
static cl::opt< bool > ClOutlineInstrumentation("tysan-outline-instrumentation", cl::desc("Uses function calls for all TySan instrumentation, reducing " "ELF size"), cl::Hidden, cl::init(true))
static const char *const kTysanGVNamePrefix
static const char *const kTysanModuleCtorName
static const char *const kTysanAppMemMask
void collectMemAccessInfo(Function &F, const TargetLibraryInfo &TLI, SmallVectorImpl< std::pair< Instruction *, MemoryLocation > > &MemoryAccesses, SmallSetVector< const MDNode *, 8 > &TBAAMetadata, SmallVectorImpl< Value * > &MemTypeResetInsts)
Collect all loads and stores, and for what TBAA nodes we need to generate type descriptors.
static cl::opt< bool > ClVerifyOutlinedInstrumentation("tysan-verify-outlined-instrumentation", cl::desc("Check types twice with both inlined instrumentation and " "function calls. This verifies that they behave the same."), cl::Hidden, cl::init(false))
static cl::opt< bool > ClWritesAlwaysSetType("tysan-writes-always-set-type", cl::desc("Writes always set the type"), cl::Hidden, cl::init(false))
static const char *const kTysanCheckName
static std::string encodeName(StringRef Name)
LLVM_ABI const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
const Function * getParent() const
Return the enclosing method, or null if none.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
This class represents a function call, abstracting a target machine's calling convention.
static LLVM_ABI Constant * getString(LLVMContext &Context, StringRef Initializer, bool AddNull=true, bool ByteString=false)
This method constructs a CDS and initializes it with a text string.
static ConstantInt * getSigned(IntegerType *Ty, int64_t V, bool ImplicitTrunc=false)
Return a ConstantInt with the specified value for the specified type.
static LLVM_ABI ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
static LLVM_ABI Constant * get(StructType *T, ArrayRef< Constant * > V)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
const BasicBlock & getEntryBlock() const
LLVM_ABI void setComdat(Comdat *C)
@ InternalLinkage
Rename collisions when linking (static functions).
@ LinkOnceODRLinkage
Same, but only replaced by something equivalent.
LLVM_ABI Value * CreateAllocationSize(Type *DestTy, AllocaInst *AI)
Get allocation size of an alloca as a runtime Value* (handles both static and dynamic allocas and vsc...
Value * CreateZExtOrTrunc(Value *V, Type *DestTy, const Twine &Name="")
Create a ZExt or Trunc from the integer value V to DestTy.
CallInst * CreateMemCpy(Value *Dst, MaybeAlign DstAlign, Value *Src, MaybeAlign SrcAlign, uint64_t Size, bool isVolatile=false, const AAMDNodes &AAInfo=AAMDNodes())
Create and insert a memcpy between the specified pointers.
ConstantInt * getTrue()
Get the constant value for i1 true.
Value * CreateICmpSGE(Value *LHS, Value *RHS, const Twine &Name="")
BasicBlock::iterator GetInsertPoint() const
Value * CreateIntToPtr(Value *V, Type *DestTy, const Twine &Name="")
ConstantInt * getInt8(uint8_t C)
Get a constant 8-bit value.
Value * CreateICmpNE(Value *LHS, Value *RHS, const Twine &Name="")
ConstantInt * getInt64(uint64_t C)
Get a constant 64-bit value.
CallInst * CreateMemMove(Value *Dst, MaybeAlign DstAlign, Value *Src, MaybeAlign SrcAlign, uint64_t Size, bool isVolatile=false, const AAMDNodes &AAInfo=AAMDNodes())
Value * CreateBitCast(Value *V, Type *DestTy, const Twine &Name="")
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Value * CreateShl(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
CallInst * CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, MaybeAlign Align, bool isVolatile=false, const AAMDNodes &AAInfo=AAMDNodes())
Create and insert a memset to the specified pointer and the specified value.
LLVMContext & getContext() const
Value * CreateAnd(Value *LHS, Value *RHS, const Twine &Name="")
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Value * CreatePtrToInt(Value *V, Type *DestTy, const Twine &Name="")
ConstantInt * getFalse()
Get the constant value for i1 false.
Value * CreateIsNotNull(Value *Arg, const Twine &Name="")
Return a boolean value testing if Arg != 0.
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
PointerType * getPtrTy(unsigned AddrSpace=0)
Fetch the type representing a pointer.
Value * CreateIsNull(Value *Arg, const Twine &Name="")
Return a boolean value testing if Arg == 0.
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
LLVM_ABI void SetInstDebugLocation(Instruction *I) const
If this builder has a current debug location, set it on the specified instruction.
Value * CreateOr(Value *LHS, Value *RHS, const Twine &Name="", bool IsDisjoint=false)
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Class to represent integer types.
LLVM_ABI void update(ArrayRef< uint8_t > Data)
Updates the hash for the byte stream provided.
LLVM_ABI void final(MD5Result &Result)
Finishes off the hash and puts the result in result.
const MDOperand & getOperand(unsigned I) const
unsigned getNumOperands() const
Return number of MDNode operands.
LLVMContext & getContext() const
LLVM_ABI StringRef getString() const
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
const DataLayout & getDataLayout() const
Return the DataLayout attached to the Module associated to this MF.
Representation for a specific memory location.
static LLVM_ABI MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
AAMDNodes AATags
The metadata nodes which describes the aliasing of the location (each member is null if that kind of ...
const Value * Ptr
The address of the start of the location.
A Module instance is used to store all the information related to an LLVM module.
iterator_range< op_iterator > operands()
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.
LLVM_ABI bool match(StringRef String, SmallVectorImpl< StringRef > *Matches=nullptr, std::string *Error=nullptr) const
matches - Match the regex against a given String.
static ReturnInst * Create(LLVMContext &C, Value *retVal=nullptr, InsertPosition InsertBefore=nullptr)
bool insert(const value_type &X)
Insert a new element into the SetVector.
A SetVector that performs no allocations if smaller than a certain size.
StringRef str() const
Explicit conversion to StringRef.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
Represent a constant reference to a string, i.e.
std::string str() const
Get the contents as an std::string.
static LLVM_ABI StructType * get(LLVMContext &Context, ArrayRef< Type * > Elements, bool isPacked=false)
This static method is the primary way to create a literal StructType.
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
static Attribute::AttrKind getExtAttrForBoolParam(const Triple &T)
Triple - Helper class for working with autoconf configuration names.
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isSized() const
Return true if it makes sense to take the size of this type.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI bool isSwiftError() const
Return true if this value is a swifterror value.
const ParentTy * getParent() const
self_iterator getIterator()
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ BasicBlock
Various leaf nodes.
initializer< Ty > init(const Ty &Val)
@ Size64
A 64-bit size relocation.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
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)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
auto dyn_cast_or_null(const Y &Val)
LLVM_ABI std::pair< Function *, FunctionCallee > createSanitizerCtorAndInitFunctions(Module &M, StringRef CtorName, StringRef InitName, ArrayRef< Type * > InitArgTypes, ArrayRef< Value * > InitArgs, StringRef VersionCheckName=StringRef(), bool Weak=false)
Creates sanitizer constructor function, and calls sanitizer's init function from it.
LLVM_ABI void SplitBlockAndInsertIfThenElse(Value *Cond, BasicBlock::iterator SplitBefore, Instruction **ThenTerm, Instruction **ElseTerm, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr)
SplitBlockAndInsertIfThenElse is similar to SplitBlockAndInsertIfThen, but also creates the ElseBlock...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
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...
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
LLVM_ABI void appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data=nullptr)
Append F to the list of global ctors of module M with the given Priority.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...
LLVM_ABI void maybeMarkSanitizerLibraryCallNoBuiltin(CallInst *CI, const TargetLibraryInfo *TLI)
Given a CallInst, check if it calls a string function known to CodeGen, and mark it with NoBuiltin if...
LLVM_ABI void appendToUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.used list.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
MDNode * TBAA
The tag for type-based alias analysis.
LLVM_ABI SmallString< 32 > digest() const
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)