Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Real

77   /// EmitStoreOfComplex - Store the specified real/imag parts into the
178 // LNot,Real,Imag never return complex.
285 /// load the real and imaginary pieces, returning them as Real/Imag.
294 llvm::Value *Real=0, *Imag=0;
299 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr->getName() + ".real");
307 return ComplexPairTy(Real, Imag);
310 /// EmitStoreOfComplex - Store the specified real/imag parts into the
319 llvm::Value *RealPtr = Builder.CreateStructGEP(Ptr, 0, "real");
369 // complex type, both the real and imaginary parts follow the conversion
370 // rules for the corresponding real types.
731 // Create a PHI node for the real part.
757 llvm::Value *Real = CGF.EmitScalarExpr(E->getInit(0));
759 return ComplexPairTy(Real, Imag);