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);
534 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
688 /// EmitScalarConversion - Emit a conversion from the specified type to the
690 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType,
748 llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy);
818 Src.first = EmitScalarConversion(Src.first, SrcTy, DstTy);
819 Src.second = EmitScalarConversion(Src.second, SrcTy, DstTy);
827 return EmitScalarConversion(Src.first, SrcTy, DstTy);
    [all...]
CGExprComplex.cpp 394 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
395 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
404 Val = CGF.EmitScalarConversion(Val, SrcType, DestType);
    [all...]
CodeGenFunction.h 719 // EmitScalarConversion which assumes that all other uses of a
    [all...]
CGExpr.cpp 95 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
    [all...]

Completed in 598 milliseconds