Home
last modified time | relevance | path

Searched refs:InsertPointTy (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMPIRBuilder.h53 using InsertPointTy = IRBuilder<>::InsertPoint; variable
63 using FinalizeCallbackTy = std::function<void(InsertPointTy CodeGenIP)>;
104 function_ref<void(InsertPointTy AllocaIP, InsertPointTy CodeGenIP,
112 std::function<void(InsertPointTy AllocaIP, InsertPointTy CodeGenIP,
124 function_ref<void(InsertPointTy CodeGenIP, Value *IndVar)>;
144 using PrivatizeCallbackTy = function_ref<InsertPointTy(
145 InsertPointTy AllocaIP, InsertPointTy CodeGenIP, Value &Original,
154 LocationDescription(const InsertPointTy &IP) : IP(IP) {} in LocationDescription()
155 LocationDescription(const InsertPointTy &IP, const DebugLoc &DL) in LocationDescription()
157 InsertPointTy IP;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
DOMPIRBuilder.cpp335 OpenMPIRBuilder::InsertPointTy
343 OpenMPIRBuilder::InsertPointTy
390 OpenMPIRBuilder::InsertPointTy
421 auto ExitCB = [this, CanceledDirective, Loc](InsertPointTy IP) { in createCancel()
481 const LocationDescription &Loc, InsertPointTy OuterAllocaIP, in createParallel()
556 auto FiniCBWrapper = [&](InsertPointTy IP) { in createParallel()
563 IP = InsertPointTy(I->getParent(), I->getIterator()); in createParallel()
576 InsertPointTy InnerAllocaIP = Builder.saveIP(); in createParallel()
607 InsertPointTy CodeGenIP(PRegBodyBB, PRegBodyBB->begin()); in createParallel()
661 InsertPointTy ExitIP(PRegExitBB, PRegExitBB->end()); in createParallel()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DOpenMPOpt.cpp825 using InsertPointTy = OpenMPIRBuilder::InsertPointTy; in mergeParallelRegions() typedef
847 auto BodyGenCB = [&](InsertPointTy AllocaIP, InsertPointTy CodeGenIP, in mergeParallelRegions()
858 auto PrivCB = [&](InsertPointTy AllocaIP, InsertPointTy CodeGenIP, Value &, in mergeParallelRegions()
859 Value &Inner, Value *&ReplacementValue) -> InsertPointTy { in mergeParallelRegions()
864 auto FiniCB = [&](InsertPointTy CodeGenIP) {}; in mergeParallelRegions()
887 auto BodyGenCB = [&](InsertPointTy AllocaIP, InsertPointTy CodeGenIP, in mergeParallelRegions()
897 auto FiniCB = [&](InsertPointTy CodeGenIP) {}; in mergeParallelRegions()
938 InsertPointTy(ParentBB, ParentBB->end()), DL); in mergeParallelRegions()
939 InsertPointTy SeqAfterIP = in mergeParallelRegions()
1006 OpenMPIRBuilder::LocationDescription Loc(InsertPointTy(BB, BB->end()), in mergeParallelRegions()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1714 using InsertPointTy = llvm::OpenMPIRBuilder::InsertPointTy; in EmitOMPParallelDirective() typedef
1718 auto FiniCB = [this](InsertPointTy IP) { in EmitOMPParallelDirective()
1726 auto PrivCB = [](InsertPointTy AllocaIP, InsertPointTy CodeGenIP, in EmitOMPParallelDirective()
1739 this](InsertPointTy AllocaIP, InsertPointTy CodeGenIP, in EmitOMPParallelDirective()
1749 llvm::OpenMPIRBuilder::InsertPointTy AllocaIP( in EmitOMPParallelDirective()
2012 auto BodyGen = [&, this](llvm::OpenMPIRBuilder::InsertPointTy CodeGenIP, in EmitOMPCanonicalLoop()
3621 llvm::OpenMPIRBuilder::InsertPointTy AllocaIP( in EmitOMPForDirective()
3824 using InsertPointTy = llvm::OpenMPIRBuilder::InsertPointTy; in EmitOMPSectionsDirective() typedef
3827 auto FiniCB = [this](InsertPointTy IP) { in EmitOMPSectionsDirective()
3837 auto SectionCB = [this, SubStmt](InsertPointTy AllocaIP, in EmitOMPSectionsDirective()
[all …]
DCodeGenFunction.h1695 using InsertPointTy = llvm::OpenMPIRBuilder::InsertPointTy;
1740 static void FinalizeOMPRegion(CodeGenFunction &CGF, InsertPointTy IP) {
1764 InsertPointTy CodeGenIP,
1787 OutlinedRegionBodyRAII(CodeGenFunction &cgf, InsertPointTy &AllocaIP,
1814 InlinedRegionBodyRAII(CodeGenFunction &cgf, InsertPointTy &AllocaIP,
DCGOpenMPRuntime.cpp1230 auto FiniCB = [&CGF](llvm::OpenMPIRBuilder::InsertPointTy IP) { in PushAndPopStackRAII()