HomeSort by relevance Sort by last modified time
    Searched refs:EmitScalarConversion (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/CodeGen/
CGExprScalar.cpp 112 /// 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,
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);
    [all...]
CGExprComplex.cpp 397 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
398 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
407 Val = CGF.EmitScalarConversion(Val, SrcType, DestType);
    [all...]
CodeGenFunction.h 726 // EmitScalarConversion which assumes that all other uses of a
    [all...]
CGExpr.cpp 97 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
    [all...]

Completed in 47 milliseconds