/openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
H A D | MachineFrameInfo.cpp | 53 const AllocaInst *Alloca, in CreateStackObject() 75 const AllocaInst *Alloca) { in CreateVariableSizedObject()
|
H A D | SwiftErrorValueTracking.cpp | 109 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(&Inst)) in setFunction() local
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
H A D | CoroFrame.cpp | 325 AllocaInst *Alloca; member 627 for (auto *Alloca : AllocaList) in addFieldForAllocas() local 634 AllocaInst *Alloca = A.Alloca; in addFieldForAllocas() local 691 AllocaInst *Alloca = A.Alloca; in addFieldForAllocas() local 1778 AllocaInst *Alloca = P.Alloca; in insertSpills() local 1798 AllocaInst *Alloca = A.Alloca; in insertSpills() local 1827 AllocaInst *Alloca = A.Alloca; in insertSpills() local 2260 auto Alloca = Builder.CreateAlloca(Builder.getInt8Ty(), AI->getSize()); in lowerLocalAllocas() local 2349 AllocaInst *Alloca, in emitSetAndGetSwiftErrorValueAround() 2378 static void eliminateSwiftErrorAlloca(Function &F, AllocaInst *Alloca, in eliminateSwiftErrorAlloca() [all …]
|
H A D | CoroSplit.cpp | 646 auto Alloca = Builder.CreateAlloca(ValueTy); in replaceSwiftErrorOps() local 776 auto *Alloca = dyn_cast<AllocaInst>(&I); in replaceEntryBlock() local
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
H A D | FunctionSpecialization.cpp | 104 Constant *FunctionSpecializer::getPromotableAlloca(AllocaInst *Alloca, in getPromotableAlloca() 141 auto *Alloca = dyn_cast<AllocaInst>(Val); in getConstantStackValue() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
H A D | toy.cpp | 893 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 995 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1065 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/ |
H A D | toy.cpp | 916 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1018 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1080 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
H A D | toy-jit.cpp | 792 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 890 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 953 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
H A D | toy.cpp | 1072 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1170 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1240 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
H A D | toy.cpp | 910 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1012 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1074 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
H A D | toy.cpp | 910 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1012 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1074 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
H A D | toy.cpp | 910 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1012 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1074 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGGPUBuiltin.cpp | 115 llvm::Value *Alloca = CGF->CreateTempAlloca(AllocaTy); in packArgsIntoNVPTXFormatBuffer() local
|
H A D | CGExpr.cpp | 73 auto Alloca = CreateTempAlloca(Ty, Name, ArraySize); in CreateTempAllocaWithoutCast() local 84 auto Alloca = CreateTempAllocaWithoutCast(Ty, Align, Name, ArraySize); in CreateTempAlloca() local 137 Address *Alloca) { in CreateMemTemp() 143 const Twine &Name, Address *Alloca) { in CreateMemTemp() 392 Address *Alloca = nullptr) { in createReferenceTemporary() 509 Address Alloca = Address::invalid(); in EmitMaterializeTemporaryExpr() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/ |
H A D | toy.cpp | 914 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1016 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1078 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 810 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 908 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 971 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
H A D | toy.cpp | 1174 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1272 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1342 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
/openbsd-src/gnu/llvm/llvm/lib/FuzzMutate/ |
H A D | RandomIRBuilder.cpp | 82 AllocaInst *Alloca = new AllocaInst(Ty, DL.getProgramAddressSpace(), "A", in newSource() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/ |
H A D | toy.cpp | 1032 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1130 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1200 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/ |
H A D | toy.cpp | 1084 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1188 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local 1273 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
|
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | WinEHFuncInfo.h | 65 const AllocaInst *Alloca; member
|
H A D | MachineFrameInfo.h | 164 const AllocaInst *Alloca; member
|
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 1252 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1350 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local 1420 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | RewriteStatepointsForGC.cpp | 1999 Value *Alloca = AllocaMap[OriginalValue]; in insertRelocationStores() local 2033 Value *Alloca = AllocaMap[OriginalValue]; in insertRematerializationStores() local 2068 AllocaInst *Alloca = new AllocaInst(LiveValue->getType(), in relocationViaAlloca() local 2128 AllocaInst *Alloca = Pair.second; in relocationViaAlloca() local 2163 AllocaInst *Alloca = Pair.second; in relocationViaAlloca() local
|
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPromoteAlloca.cpp | 349 static Value *GEPToVectorIndex(GetElementPtrInst *GEP, AllocaInst *Alloca, in GEPToVectorIndex() 387 static bool tryPromoteAllocaToVector(AllocaInst *Alloca, const DataLayout &DL, in tryPromoteAllocaToVector()
|