| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | MachineFrameInfo.cpp | 53 const AllocaInst *Alloca, in CreateStackObject() 75 const AllocaInst *Alloca) { in CreateVariableSizedObject()
|
| D | SwiftErrorValueTracking.cpp | 109 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(&Inst)) in setFunction() local
|
| D | MIRPrinter.cpp | 429 if (const auto *Alloca = MFI.getObjectAllocation(I)) in convertStackObjects() local
|
| D | MachineOperand.cpp | 507 if (const AllocaInst *Alloca = MFI->getObjectAllocation(FrameIndex)) in printFrameIndex() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| D | CoroFrame.cpp | 309 AllocaInst *Alloca; member 589 for (auto *Alloca : AllocaList) in addFieldForAllocas() local 596 AllocaInst *Alloca = A.Alloca; in addFieldForAllocas() local 653 AllocaInst *Alloca = A.Alloca; in addFieldForAllocas() local 1693 AllocaInst *Alloca = P.Alloca; in insertSpills() local 1713 AllocaInst *Alloca = A.Alloca; in insertSpills() local 1735 AllocaInst *Alloca = A.Alloca; in insertSpills() local 2127 auto Alloca = Builder.CreateAlloca(Builder.getInt8Ty(), AI->getSize()); in lowerLocalAllocas() local 2216 AllocaInst *Alloca, in emitSetAndGetSwiftErrorValueAround() 2245 static void eliminateSwiftErrorAlloca(Function &F, AllocaInst *Alloca, in eliminateSwiftErrorAlloca() [all …]
|
| D | CoroSplit.cpp | 612 auto Alloca = Builder.CreateAlloca(ValueTy); in replaceSwiftErrorOps() local 743 auto *Alloca = dyn_cast<AllocaInst>(&I); in replaceEntryBlock() local
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGGPUBuiltin.cpp | 109 llvm::Value *Alloca = CreateTempAlloca(AllocaTy); in EmitNVPTXDevicePrintfCallExpr() local
|
| D | CGExpr.cpp | 71 auto Alloca = CreateTempAlloca(Ty, Name, ArraySize); in CreateTempAllocaWithoutCast() local 82 auto Alloca = CreateTempAllocaWithoutCast(Ty, Align, Name, ArraySize); in CreateTempAlloca() local 130 auto *Alloca = Var.getPointer(); in InitTempAlloca() local 148 Address *Alloca) { in CreateMemTemp() 154 const Twine &Name, Address *Alloca) { in CreateMemTemp() 393 Address *Alloca = nullptr) { in createReferenceTemporary() 510 Address Alloca = Address::invalid(); in EmitMaterializeTemporaryExpr() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | WinEHFuncInfo.h | 65 const AllocaInst *Alloca; member
|
| D | MachineFrameInfo.h | 165 const AllocaInst *Alloca; member
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| D | RewriteStatepointsForGC.cpp | 1870 Value *Alloca = AllocaMap[OriginalValue]; in insertRelocationStores() local 1904 Value *Alloca = AllocaMap[OriginalValue]; in insertRematerializationStores() local 1939 AllocaInst *Alloca = new AllocaInst(LiveValue->getType(), in relocationViaAlloca() local 1999 AllocaInst *Alloca = Pair.second; in relocationViaAlloca() local 2030 AllocaInst *Alloca = Pair.second; in relocationViaAlloca() local
|
| D | MemCpyOptimizer.cpp | 1299 AllocaInst *Alloca = dyn_cast<AllocaInst>(getUnderlyingObject(V)); in hasUndefContentsMSSA() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUPromoteAlloca.cpp | 407 static bool tryPromoteAllocaToVector(AllocaInst *Alloca, const DataLayout &DL, in tryPromoteAllocaToVector()
|
| D | AMDGPUTargetTransformInfo.cpp | 192 const AllocaInst *Alloca = in getUnrollingPreferences() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| D | MIRParser.cpp | 759 const AllocaInst *Alloca = nullptr; in initializeFrameInfo() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | Value.cpp | 1004 auto *Alloca = dyn_cast<AllocaInst>(this); in isSwiftError() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/ |
| D | ARMFastISel.cpp | 1017 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { in SelectLoad() local 1149 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { in SelectStore() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| D | GlobalOpt.cpp | 1486 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr, in processInternalGlobal() local 1873 auto *Alloca = in RemovePreallocated() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| D | X86FastISel.cpp | 1141 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { in X86SelectStore() local 1333 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { in X86SelectLoad() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineCompares.cpp | 1011 const AllocaInst *Alloca, in foldAllocaCmp() 5803 if (auto *Alloca = dyn_cast<AllocaInst>(getUnderlyingObject(Op0))) in visitICmpInst() local 5806 if (auto *Alloca = dyn_cast<AllocaInst>(getUnderlyingObject(Op1))) in visitICmpInst() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| D | HWAddressSanitizer.cpp | 1333 if (auto *Alloca = dyn_cast_or_null<AllocaInst>(V)) in sanitizeFunction() local
|
| D | AddressSanitizer.cpp | 3104 AllocaInst *Alloca; in createAllocaForLayout() local 3180 auto *Alloca = dyn_cast<AllocaInst>(Store->getPointerOperand()); in findStoresToUninstrumentedArgAllocas() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64FastISel.cpp | 1943 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { in selectLoad() local 2144 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { in selectStore() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| D | ObjCARCOpts.cpp | 2240 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) { in OptimizeWeakCalls() local
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | SelectionDAGBuilder.cpp | 4049 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { in visitLoad() local 4228 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { in visitStore() local 6684 const Value *Alloca = I.getArgOperand(0)->stripPointerCasts(); in visitIntrinsicCall() local 6814 for (const Value *Alloca : Allocas) { in visitIntrinsicCall() local
|