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 111 /// EmitScalarConversion - Emit a conversion from the specified type to the
113 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy);
530 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
653 /// EmitScalarConversion - Emit a conversion from the specified type to the
655 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType,
713 llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy);
783 Src.first = EmitScalarConversion(Src.first, SrcTy, DstTy);
784 Src.second = EmitScalarConversion(Src.second, SrcTy, DstTy);
792 return EmitScalarConversion(Src.first, SrcTy, DstTy);
    [all...]
CGExprComplex.cpp 371 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
372 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
448 Elt = CGF.EmitScalarConversion(Elt, Op->getType(), DestTy);
CodeGenFunction.h     [all...]
CGExpr.cpp 95 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
    [all...]

Completed in 26 milliseconds