Lines Matching refs:Int64Ty
243 Type *IntptrTy, *IntptrPtrTy, *Int64Ty, *Int64PtrTy, *Int32Ty, *Int32PtrTy, member in __anon1b0e388a0111::ModuleSanitizerCoverage
418 Int64Ty = IRB.getInt64Ty(); in instrumentModule()
444 M.getOrInsertFunction(SanCovTraceCmp8, VoidTy, Int64Ty, Int64Ty); in instrumentModule()
453 M.getOrInsertFunction(SanCovTraceConstCmp8, VoidTy, Int64Ty, Int64Ty); in instrumentModule()
462 M.getOrInsertFunction(SanCovTraceDiv8, VoidTy, Int64Ty); in instrumentModule()
466 M.getOrInsertFunction(SanCovTraceSwitchName, VoidTy, Int64Ty, Int64PtrTy); in instrumentModule()
800 Int64Ty->getScalarSizeInBits()) in InjectTraceForSwitch()
802 Initializers.push_back(ConstantInt::get(Int64Ty, SI->getNumCases())); in InjectTraceForSwitch()
804 ConstantInt::get(Int64Ty, Cond->getType()->getScalarSizeInBits())); in InjectTraceForSwitch()
806 Int64Ty->getScalarSizeInBits()) in InjectTraceForSwitch()
807 Cond = IRB.CreateIntCast(Cond, Int64Ty, false); in InjectTraceForSwitch()
811 Int64Ty->getScalarSizeInBits()) in InjectTraceForSwitch()
812 C = ConstantExpr::getCast(CastInst::ZExt, It.getCaseValue(), Int64Ty); in InjectTraceForSwitch()
820 ArrayType *ArrayOfInt64Ty = ArrayType::get(Int64Ty, Initializers.size()); in InjectTraceForSwitch()