Lines Matching refs:Int32Ty

196   Type *Int32Ty = Type::getInt32Ty(C);  in TEST()  local
206 Type *V2Int32Ty = FixedVectorType::get(Int32Ty, 2); in TEST()
211 Type *VScaleV2Int32Ty = ScalableVectorType::get(Int32Ty, 2); in TEST()
216 Type *Int32PtrTy = PointerType::get(Int32Ty, 0); in TEST()
219 Type *Int32PtrAS1Ty = PointerType::get(Int32Ty, 1); in TEST()
271 EXPECT_TRUE(CastInst::isBitCastable(FloatTy, Int32Ty)); in TEST()
273 EXPECT_TRUE(CastInst::isBitCastable(Int32Ty, FloatTy)); in TEST()
277 EXPECT_FALSE(CastInst::isBitCastable(Int32Ty, Int64Ty)); in TEST()
278 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, Int32Ty)); in TEST()
399 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
406 Type *Int32PtrTy = PointerType::get(Int32Ty, 0); in TEST()
447 Type *Int32PtrAS1Ty = PointerType::get(Int32Ty, 1); in TEST()
631 Type* Int32Ty = Type::getInt32Ty(C); in TEST() local
639 Int32Ty, nullptr, Int32Ty), in TEST()
654 Int64PtrTy, Int32Ty, Int64PtrTy, in TEST()
669 nullptr, Int32Ty, nullptr), in TEST()
709 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
710 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; in TEST()
711 FunctionType *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false); in TEST()
714 ConstantInt::get(Int32Ty, 1), in TEST()
715 ConstantInt::get(Int32Ty, 2), in TEST()
716 ConstantInt::get(Int32Ty, 3) in TEST()
744 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
745 FunctionType *FnTy = FunctionType::get(Int32Ty, Int32Ty, /*isVarArg=*/false); in TEST()
747 Value *Args[] = {ConstantInt::get(Int32Ty, 42)}; in TEST()
748 OperandBundleDef OldBundle("before", UndefValue::get(Int32Ty)); in TEST()
757 OperandBundleDef NewBundle("after", ConstantInt::get(Int32Ty, 7)); in TEST()
771 Type *Int32Ty = Type::getInt32Ty(C); in TEST() local
772 FunctionType *FnTy = FunctionType::get(Int32Ty, Int32Ty, /*isVarArg=*/false); in TEST()
774 Value *Args[] = {ConstantInt::get(Int32Ty, 42)}; in TEST()
777 OperandBundleDef OldBundle("before", UndefValue::get(Int32Ty)); in TEST()
787 OperandBundleDef NewBundle("after", ConstantInt::get(Int32Ty, 7)); in TEST()
909 auto *Int32Ty = Type::getInt32Ty(C); in TEST() local
912 SwitchInst::Create(UndefValue::get(Int32Ty), BB0.get(), 3, BB0.get()); in TEST()
913 SI->addCase(ConstantInt::get(Int32Ty, 1), BB1.get()); in TEST()
914 SI->addCase(ConstantInt::get(Int32Ty, 2), BB2.get()); in TEST()
915 SI->addCase(ConstantInt::get(Int32Ty, 3), BB3.get()); in TEST()
972 auto *Int32Ty = Type::getInt32Ty(C); in TEST() local
975 SwitchInst::Create(UndefValue::get(Int32Ty), BB0.get(), 4, BB0.get()); in TEST()
976 SI->addCase(ConstantInt::get(Int32Ty, 1), BB1.get()); in TEST()
977 SI->addCase(ConstantInt::get(Int32Ty, 2), BB2.get()); in TEST()
1010 Type *Int32Ty = Type::getInt32Ty(Ctx); in TEST() local
1011 Constant *CU = UndefValue::get(Int32Ty); in TEST()
1012 Constant *C0 = ConstantInt::get(Int32Ty, 0); in TEST()
1013 Constant *C1 = ConstantInt::get(Int32Ty, 1); in TEST()
1014 Constant *C2 = ConstantInt::get(Int32Ty, 2); in TEST()
1015 Constant *C3 = ConstantInt::get(Int32Ty, 3); in TEST()
1016 Constant *C4 = ConstantInt::get(Int32Ty, 4); in TEST()
1017 Constant *C5 = ConstantInt::get(Int32Ty, 5); in TEST()
1018 Constant *C6 = ConstantInt::get(Int32Ty, 6); in TEST()
1019 Constant *C7 = ConstantInt::get(Int32Ty, 7); in TEST()
1203 Type *VScaleV4Int32Ty = ScalableVectorType::get(Int32Ty, 4); in TEST()
1215 Type *VScaleV2Int32Ty = ScalableVectorType::get(Int32Ty, 2); in TEST()
1336 Type *Int32Ty = Type::getInt32Ty(Ctx); in TEST() local
1337 Constant *CU = UndefValue::get(Int32Ty); in TEST()
1338 Constant *C0 = ConstantInt::get(Int32Ty, 0); in TEST()
1339 Constant *C1 = ConstantInt::get(Int32Ty, 1); in TEST()