Home
last modified time | relevance | path

Searched refs:RealPHI (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp270 PHINode *RealPHI = nullptr; member in __anon87c1be940111::ComplexDeinterleavingGraph
1533 RealPHI = ReductionInfo[Real].first; in identifyReductionNodes()
1539 std::swap(RealPHI, ImagPHI); in identifyReductionNodes()
1562 RealPHI = nullptr; in identifyReductionNodes()
1835 if (Real != RealPHI || Imag != ImagPHI) in identifyPHINode()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp890 llvm::PHINode *RealPHI = Builder.CreatePHI(ResR->getType(), 3, "real_mul_phi"); in EmitBinMul() local
891 RealPHI->addIncoming(ResR, OrigBB); in EmitBinMul()
892 RealPHI->addIncoming(ResR, INaNBB); in EmitBinMul()
893 RealPHI->addIncoming(LibCallR, LibCallBB); in EmitBinMul()
898 return ComplexPairTy(RealPHI, ImagPHI); in EmitBinMul()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp372 if (const auto *RealPHI = cast_or_null<MemoryPhi>(VH)) in insertDef() local
373 DefiningBlocks.insert(RealPHI->getBlock()); in insertDef()