Lines Matching refs:Int32Ty
176 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
186 Type *V2Int32Ty = VectorType::get(Int32Ty, 2); in TEST()
190 Type *Int32PtrTy = PointerType::get(Int32Ty, 0); in TEST()
193 Type *Int32PtrAS1Ty = PointerType::get(Int32Ty, 1); in TEST()
247 EXPECT_TRUE(CastInst::isBitCastable(FloatTy, Int32Ty)); in TEST()
249 EXPECT_TRUE(CastInst::isBitCastable(Int32Ty, FloatTy)); in TEST()
253 EXPECT_FALSE(CastInst::isBitCastable(Int32Ty, Int64Ty)); in TEST()
254 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, Int32Ty)); in TEST()
416 Type* Int32Ty = Type::getInt32Ty(C); in TEST() local
424 Int32Ty, nullptr, Int32Ty), in TEST()
439 Int64PtrTy, Int32Ty, Int64PtrTy, in TEST()
454 nullptr, Int32Ty, nullptr), in TEST()
494 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
495 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; in TEST()
496 Type *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false); in TEST()
499 ConstantInt::get(Int32Ty, 1), in TEST()
500 ConstantInt::get(Int32Ty, 2), in TEST()
501 ConstantInt::get(Int32Ty, 3) in TEST()
527 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
528 Type *FnTy = FunctionType::get(Int32Ty, Int32Ty, /*isVarArg=*/false); in TEST()
530 Value *Args[] = {ConstantInt::get(Int32Ty, 42)}; in TEST()
531 OperandBundleDef OldBundle("before", UndefValue::get(Int32Ty)); in TEST()
540 OperandBundleDef NewBundle("after", ConstantInt::get(Int32Ty, 7)); in TEST()
554 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
555 Type *FnTy = FunctionType::get(Int32Ty, Int32Ty, /*isVarArg=*/false); in TEST()
557 Value *Args[] = {ConstantInt::get(Int32Ty, 42)}; in TEST()
560 OperandBundleDef OldBundle("before", UndefValue::get(Int32Ty)); in TEST()
568 OperandBundleDef NewBundle("after", ConstantInt::get(Int32Ty, 7)); in TEST()