Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:ArgType

295     llvm::Type *ArgType = ArgValue->getType();
296 Value *F = CGM.getIntrinsic(Intrinsic::cttz, ArgType);
312 llvm::Type *ArgType = ArgValue->getType();
313 Value *F = CGM.getIntrinsic(Intrinsic::ctlz, ArgType);
329 llvm::Type *ArgType = ArgValue->getType();
330 Value *F = CGM.getIntrinsic(Intrinsic::cttz, ArgType);
335 llvm::ConstantInt::get(ArgType, 1));
336 Value *Zero = llvm::Constant::getNullValue(ArgType);
350 llvm::Type *ArgType = ArgValue->getType();
351 Value *F = CGM.getIntrinsic(Intrinsic::ctpop, ArgType);
355 Value *Result = Builder.CreateAnd(Tmp, llvm::ConstantInt::get(ArgType, 1));
366 llvm::Type *ArgType = ArgValue->getType();
367 Value *F = CGM.getIntrinsic(Intrinsic::ctpop, ArgType);
378 llvm::Type *ArgType = ArgValue->getType();
380 Value *FnExpect = CGM.getIntrinsic(Intrinsic::expect, ArgType);
391 llvm::Type *ArgType = ArgValue->getType();
392 Value *F = CGM.getIntrinsic(Intrinsic::bswap, ArgType);
457 llvm::Type *ArgType = Base->getType();
458 Value *F = CGM.getIntrinsic(Intrinsic::powi, ArgType);
1301 llvm::Type *ArgType = Base->getType();
1302 Value *F = CGM.getIntrinsic(Intrinsic::pow, ArgType);
1314 llvm::Type *ArgType = FirstArg->getType();
1315 Value *F = CGM.getIntrinsic(Intrinsic::fma, ArgType);