Searched refs:EmitScalarConversion (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp112 /// EmitScalarConversion - Emit a conversion from the specified type to the
114 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy);
537 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
691 /// EmitScalarConversion - Emit a conversion from the specified type to the
693 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, function in class:ScalarExprEmitter
751 llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy);
821 Src.first = EmitScalarConversion(Src.first, SrcTy, DstTy);
822 Src.second = EmitScalarConversion(Src.second, SrcTy, DstTy);
830 return EmitScalarConversion(Src.first, SrcTy, DstTy);
1458 Elt = EmitScalarConversion(El
3296 Value *CodeGenFunction::EmitScalarConversion(Value *Src, QualType SrcTy, function in class:CodeGenFunction
[all...]
H A DCGExprComplex.cpp397 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
398 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
407 Val = CGF.EmitScalarConversion(Val, SrcType, DestType);
H A DCodeGenFunction.h726 // EmitScalarConversion which assumes that all other uses of a
2339 /// EmitScalarConversion - Emit a conversion from the specified type to the
2341 llvm::Value *EmitScalarConversion(llvm::Value *Src, QualType SrcTy,
H A DCGExpr.cpp97 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);

Completed in 638 milliseconds