43 "mem-intrinsic-expand-size",
49struct PreISelIntrinsicLowering {
57 const bool UseMemIntrinsicLibFunc;
59 explicit PreISelIntrinsicLowering(
63 bool UseMemIntrinsicLibFunc_ =
true)
64 : TM(TM_), LookupTTI(LookupTTI_), LookupTLI(LookupTLI_),
65 UseMemIntrinsicLibFunc(UseMemIntrinsicLibFunc_) {}
67 static bool shouldExpandMemIntrinsicWithSize(
Value *
Size,
69 bool expandMemIntrinsicUses(
Function &
F)
const;
70 bool lowerIntrinsics(
Module &M)
const;
81 Use *LastUse =
nullptr;
83 while (!Intrin.
use_empty() && (!LastUse || LastUse->getNext())) {
84 Use *U = LastUse ? LastUse->getNext() : &*Intrin.
use_begin();
88 if (
auto CI = dyn_cast<CallInst>(U->getUser()))
89 Changed |= Removed = Callback(CI);
100 bool Changed =
false;
104 auto CI = dyn_cast<CallInst>(U.getUser());
105 if (!CI || CI->getCalledOperand() != &
F)
110 B.CreatePtrAdd(CI->getArgOperand(0), CI->getArgOperand(1));
111 Value *OffsetI32 =
B.CreateAlignedLoad(Int32Ty, OffsetPtr,
Align(4));
113 Value *ResultPtr =
B.CreatePtrAdd(CI->getArgOperand(0), OffsetI32);
115 CI->replaceAllUsesWith(ResultPtr);
116 CI->eraseFromParent();
137 "Pre-ISel intrinsics do lower into regular function calls");
144 FunctionCallee FCache = M->getOrInsertFunction(NewFn,
F.getFunctionType());
147 Fn->setLinkage(
F.getLinkage());
151 Fn->addFnAttr(Attribute::NonLazyBind);
158 auto *CB = cast<CallBase>(U.getUser());
160 if (CB->getCalledFunction() != &
F) {
163 assert((Kind == objcarc::ARCInstKind::RetainRV ||
164 Kind == objcarc::ARCInstKind::UnsafeClaimRV) &&
165 "use expected to be the argument of operand bundle "
166 "\"clang.arc.attachedcall\"");
171 auto *CI = cast<CallInst>(CB);
172 assert(CI->getCalledFunction() &&
"Cannot lower an indirect call!");
174 IRBuilder<> Builder(CI->getParent(), CI->getIterator());
177 CI->getOperandBundlesAsDefs(BundleList);
196 if (
F.getAttributes().hasAttrSomewhere(Attribute::Returned, &Index) &&
199 Attribute::Returned);
201 if (!CI->use_empty())
202 CI->replaceAllUsesWith(NewCI);
203 CI->eraseFromParent();
211bool PreISelIntrinsicLowering::shouldExpandMemIntrinsicWithSize(
223 return SizeVal > Threshold || Threshold == 0;
231 const TargetLowering *TLI = TM->getSubtargetImpl(*F)->getTargetLowering();
237bool PreISelIntrinsicLowering::expandMemIntrinsicUses(
Function &
F)
const {
239 bool Changed =
false;
245 case Intrinsic::memcpy: {
246 auto *Memcpy = cast<MemCpyInst>(Inst);
249 if (shouldExpandMemIntrinsicWithSize(Memcpy->getLength(),
TTI)) {
250 if (UseMemIntrinsicLibFunc &&
257 Memcpy->eraseFromParent();
262 case Intrinsic::memcpy_inline: {
266 auto *Memcpy = cast<MemCpyInlineInst>(Inst);
267 if (isa<ConstantInt>(Memcpy->getLength()))
274 Memcpy->eraseFromParent();
277 case Intrinsic::memmove: {
278 auto *Memmove = cast<MemMoveInst>(Inst);
281 if (shouldExpandMemIntrinsicWithSize(Memmove->getLength(),
TTI)) {
282 if (UseMemIntrinsicLibFunc &&
288 Memmove->eraseFromParent();
294 case Intrinsic::memset: {
295 auto *Memset = cast<MemSetInst>(Inst);
298 if (shouldExpandMemIntrinsicWithSize(Memset->getLength(),
TTI)) {
299 if (UseMemIntrinsicLibFunc &&
305 Memset->eraseFromParent();
310 case Intrinsic::memset_inline: {
314 auto *Memset = cast<MemSetInlineInst>(Inst);
315 if (isa<ConstantInt>(Memset->getLength()))
320 Memset->eraseFromParent();
323 case Intrinsic::experimental_memset_pattern: {
324 auto *Memset = cast<MemSetPatternInst>(Inst);
327 Memset->eraseFromParent();
338bool PreISelIntrinsicLowering::lowerIntrinsics(
Module &M)
const {
339 bool Changed =
false;
341 switch (
F.getIntrinsicID()) {
344 case Intrinsic::memcpy:
345 case Intrinsic::memcpy_inline:
346 case Intrinsic::memmove:
347 case Intrinsic::memset:
348 case Intrinsic::memset_inline:
349 case Intrinsic::experimental_memset_pattern:
350 Changed |= expandMemIntrinsicUses(
F);
352 case Intrinsic::load_relative:
355 case Intrinsic::is_constant:
356 case Intrinsic::objectsize:
365#define BEGIN_REGISTER_VP_INTRINSIC(VPID, MASKPOS, VLENPOS) \
366 case Intrinsic::VPID:
367#include "llvm/IR/VPIntrinsics.def"
371 auto *VPI = cast<VPIntrinsic>(CI);
376 Changed |= ED != VPExpansionDetails::IntrinsicUnchanged;
377 bool Removed = ED == VPExpansionDetails::IntrinsicReplaced;
381 case Intrinsic::objc_autorelease:
384 case Intrinsic::objc_autoreleasePoolPop:
387 case Intrinsic::objc_autoreleasePoolPush:
390 case Intrinsic::objc_autoreleaseReturnValue:
393 case Intrinsic::objc_copyWeak:
396 case Intrinsic::objc_destroyWeak:
399 case Intrinsic::objc_initWeak:
402 case Intrinsic::objc_loadWeak:
405 case Intrinsic::objc_loadWeakRetained:
408 case Intrinsic::objc_moveWeak:
411 case Intrinsic::objc_release:
414 case Intrinsic::objc_retain:
417 case Intrinsic::objc_retainAutorelease:
420 case Intrinsic::objc_retainAutoreleaseReturnValue:
423 case Intrinsic::objc_retainAutoreleasedReturnValue:
424 Changed |=
lowerObjCCall(
F,
"objc_retainAutoreleasedReturnValue");
426 case Intrinsic::objc_retainBlock:
429 case Intrinsic::objc_storeStrong:
432 case Intrinsic::objc_storeWeak:
435 case Intrinsic::objc_unsafeClaimAutoreleasedReturnValue:
436 Changed |=
lowerObjCCall(
F,
"objc_unsafeClaimAutoreleasedReturnValue");
438 case Intrinsic::objc_retainedObject:
441 case Intrinsic::objc_unretainedObject:
444 case Intrinsic::objc_unretainedPointer:
447 case Intrinsic::objc_retain_autorelease:
450 case Intrinsic::objc_sync_enter:
453 case Intrinsic::objc_sync_exit:
463class PreISelIntrinsicLoweringLegacyPass :
public ModulePass {
467 PreISelIntrinsicLoweringLegacyPass() :
ModulePass(
ID) {}
477 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
F);
480 return this->getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(
F);
483 const auto *
TM = &getAnalysis<TargetPassConfig>().getTM<
TargetMachine>();
484 PreISelIntrinsicLowering
Lowering(TM, LookupTTI, LookupTLI);
491char PreISelIntrinsicLoweringLegacyPass::ID;
494 "pre-isel-intrinsic-lowering",
495 "Pre-ISel Intrinsic Lowering",
false,
false)
504 return new PreISelIntrinsicLoweringLegacyPass();
518 PreISelIntrinsicLowering
Lowering(
TM, LookupTTI, LookupTLI);
static const Function * getParent(const Value *V)
static bool setNonLazyBind(Function &F)
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Module.h This file contains the declarations for the Module class.
This defines the Use class.
The header file for the LowerConstantIntrinsics pass as used by the new pass manager.
This file defines ARC utility functions which are used by various parts of the compiler.
FunctionAnalysisManager FAM
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
static cl::opt< int64_t > MemIntrinsicExpandSizeThresholdOpt("mem-intrinsic-expand-size", cl::desc("Set minimum mem intrinsic size to expand in IR"), cl::init(-1), cl::Hidden)
Threshold to leave statically sized memory intrinsic calls.
pre isel intrinsic lowering
static bool forEachCall(Function &Intrin, T Callback)
pre isel intrinsic Pre ISel Intrinsic Lowering
static bool lowerObjCCall(Function &F, const char *NewFn, bool setNonLazyBind=false)
static bool canEmitLibcall(const TargetMachine *TM, Function *F, RTLIB::Libcall LC)
static CallInst::TailCallKind getOverridingTailCallKind(const Function &F)
static bool lowerLoadRelative(Function &F)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file describes how to lower LLVM code to machine code.
Target-Independent Code Generator Pass Configuration Options pass.
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Adds the attribute to the indicated argument.
This class represents a function call, abstracting a target machine's calling convention.
void setTailCallKind(TailCallKind TCK)
This is the shared class of boolean and integer constants.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
const Function & getFunction() const
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...
An analysis over an "outer" IR unit that provides access to an analysis manager over an "inner" IR un...
static bool mayLowerToFunctionCall(Intrinsic::ID IID)
Check if the intrinsic might lower into a regular function call in the course of IR transformations.
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
virtual bool runOnModule(Module &M)=0
runOnModule - Virtual method overriden by subclasses to process the module being operated on.
A Module instance is used to store all the information related to an LLVM module.
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
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.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Analysis pass providing the TargetTransformInfo.
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
const char * getLibcallName(RTLIB::Libcall Call) const
Get the libcall routine name for the specified libcall.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
Primary interface to the complete machine description for the target machine.
Target-Independent Code Generator Pass Configuration Options.
The instances of the Type class are immutable: once they are created, they are never changed.
static IntegerType * getInt32Ty(LLVMContext &C)
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
void setName(const Twine &Name)
Change the name of the value.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Libcall
RTLIB::Libcall enum - This enum defines all of the runtime library calls the backend can emit.
initializer< Ty > init(const Ty &Val)
ARCInstKind getAttachedARCFunctionKind(const CallBase *CB)
This function returns the ARCInstKind of the function attached to operand bundle clang_arc_attachedca...
bool IsNeverTail(ARCInstKind Class)
Test if the given class represents instructions which are never safe to mark with the "tail" keyword.
bool IsAlwaysTail(ARCInstKind Class)
Test if the given class represents instructions which are always safe to mark with the "tail" keyword...
ARCInstKind
Equivalence classes of instructions in the ARC Model.
ARCInstKind GetFunctionClass(const Function *F)
Determine if F is one of the special known Functions.
This is an optimization pass for GlobalISel generic memory operations.
bool lowerConstantIntrinsics(Function &F, const TargetLibraryInfo &TLI, DominatorTree *DT)
void expandMemSetPatternAsLoop(MemSetPatternInst *MemSet)
Expand MemSetPattern as a loop. MemSet is not deleted.
bool expandMemMoveAsLoop(MemMoveInst *MemMove, const TargetTransformInfo &TTI)
Expand MemMove as a loop.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
ModulePass * createPreISelIntrinsicLoweringPass()
This pass lowers the @llvm.load.relative and @llvm.objc.
VPExpansionDetails expandVectorPredicationIntrinsic(VPIntrinsic &VPI, const TargetTransformInfo &TTI)
Expand a vector predication intrinsic.
void expandMemCpyAsLoop(MemCpyInst *MemCpy, const TargetTransformInfo &TTI, ScalarEvolution *SE=nullptr)
Expand MemCpy as a loop. MemCpy is not deleted.
VPExpansionDetails
Represents the details the expansion of a VP intrinsic.
void expandMemSetAsLoop(MemSetInst *MemSet)
Expand MemSet as a loop. MemSet is not deleted.
This struct is a compact representation of a valid (non-zero power of two) alignment.
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)