Home
last modified time | relevance | path

Searched refs:ImagPHI (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp271 PHINode *ImagPHI = nullptr; member in __anon87c1be940111::ComplexDeinterleavingGraph
1534 ImagPHI = ReductionInfo[Imag].first; in identifyReductionNodes()
1539 std::swap(RealPHI, ImagPHI); in identifyReductionNodes()
1563 ImagPHI = nullptr; in identifyReductionNodes()
1835 if (Real != RealPHI || Imag != ImagPHI) in identifyPHINode()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp894 llvm::PHINode *ImagPHI = Builder.CreatePHI(ResI->getType(), 3, "imag_mul_phi"); in EmitBinMul() local
895 ImagPHI->addIncoming(ResI, OrigBB); in EmitBinMul()
896 ImagPHI->addIncoming(ResI, INaNBB); in EmitBinMul()
897 ImagPHI->addIncoming(LibCallI, LibCallBB); in EmitBinMul()
898 return ComplexPairTy(RealPHI, ImagPHI); in EmitBinMul()