Lines Matching refs:Int32Ty
208 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
215 M->getOrInsertGlobal("dummy", PointerType::getUnqual(Int32Ty)); in TEST()
217 M->getOrInsertGlobal("dummy2", PointerType::getUnqual(Int32Ty)); in TEST()
219 Constant *P0 = ConstantExpr::getPtrToInt(Global, Int32Ty); in TEST()
223 Constant *P4 = ConstantExpr::getPtrToInt(Global2, Int32Ty); in TEST()
227 Constant *One = ConstantInt::get(Int32Ty, 1); in TEST()
287 CHECK(ConstantExpr::getInBoundsGetElementPtr(PointerType::getUnqual(Int32Ty), in TEST()
311 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
312 Constant *One = ConstantInt::get(Int32Ty, 1); in TEST()
315 M->getOrInsertGlobal("dummy", PointerType::getUnqual(Int32Ty)); in TEST()
317 PointerType::getUnqual(Int32Ty), Global, One); in TEST()
616 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
617 Constant *CU = UndefValue::get(Int32Ty); in TEST()
618 Constant *CP = PoisonValue::get(Int32Ty); in TEST()
619 Constant *C1 = ConstantInt::get(Int32Ty, 1); in TEST()
620 Constant *C2 = ConstantInt::get(Int32Ty, 2); in TEST()
654 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
655 Constant *CU = UndefValue::get(Int32Ty); in TEST()
656 Constant *C1 = ConstantInt::get(Int32Ty, 1); in TEST()
657 Constant *C2 = ConstantInt::get(Int32Ty, 2); in TEST()
706 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
707 StructType *STy = StructType::get(Int32Ty, Int32Ty); in TEST()
708 ArrayType *ATy = ArrayType::get(Int32Ty, 2); in TEST()
709 Constant *CU = UndefValue::get(Int32Ty); in TEST()
710 Constant *CP = PoisonValue::get(Int32Ty); in TEST()
750 Type *Int32Ty = Type::getInt32Ty(Context); in TEST() local
758 for (auto *Ty : {FloatTy, Int32Ty, Int8Ty}) { in TEST()