Searched refs:ParamTy (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1063 Type *ParamTy = FT->getParamType(i); local
1066 if (!CastInst::isCastable(ActTy, ParamTy))
1070 if (Attrs & Attributes::typeIncompatible(ParamTy))
1075 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
1076 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
1088 bool isConvertible = ActTy == ParamTy ||
1089 (TD && ((ParamTy->isPointerTy() ||
1090 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
1152 Type *ParamTy = FT->getParamType(i); local
1153 if ((*AI)->getType() == ParamTy) {
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DObjCARC.cpp2458 Type *ParamTy = CInst->getArgOperand(0)->getType(); local
2466 if (Op->getType() != ParamTy)
2467 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
3112 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext())); local
3119 Value *MyArg = ArgTy == ParamTy ? Arg :
3120 new BitCastInst(Arg, ParamTy, "", InsertPt);
3136 Value *MyArg = ArgTy == ParamTy ? Arg :
3137 new BitCastInst(Arg, ParamTy, "", InsertPt);

Completed in 111 milliseconds