Lines Matching refs:Int8
604 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
605 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
606 StoreInst *S1 = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
607 StoreInst *S2 = B.CreateStore(ConstantInt::get(Int8, 1), Alloca); in TEST_F()
608 StoreInst *S3 = B.CreateStore(ConstantInt::get(Int8, 2), Alloca); in TEST_F()
635 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
636 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
637 Instruction *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
638 Instruction *LI = B.CreateLoad(Int8, Alloca); in TEST_F()
665 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
666 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
667 StoreInst *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
709 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
710 Constant *One = ConstantInt::get(Int8, 1); in TEST_F()
711 Constant *Zero = ConstantInt::get(Int8, 0); in TEST_F()
712 Value *AllocA = B.CreateAlloca(Int8, One, "a"); in TEST_F()
713 Value *AllocB = B.CreateAlloca(Int8, One, "b"); in TEST_F()
722 Instruction *ALoad0 = B.CreateLoad(Int8, AllocA, ""); in TEST_F()
727 Instruction *ALoad = B.CreateLoad(Int8, AllocA, ""); in TEST_F()
773 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
774 Constant *One = ConstantInt::get(Int8, 1); in TEST_F()
775 Value *AllocA = B.CreateAlloca(Int8, One, ""); in TEST_F()
778 Instruction *Load = B.CreateLoad(Int8, AllocA); in TEST_F()
802 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
803 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
804 Instruction *SIA = B.CreateStore(ConstantInt::get(Int8, 0), AllocaA); in TEST_F()
805 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
806 Instruction *SIB = B.CreateStore(ConstantInt::get(Int8, 0), AllocaB); in TEST_F()
807 Instruction *LIA = B.CreateLoad(Int8, AllocaA); in TEST_F()
834 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
835 Value *A = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
836 Value *B_ = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
837 Value *C = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "C"); in TEST_F()
839 StoreInst *StoreA0 = B.CreateStore(ConstantInt::get(Int8, 0), A); in TEST_F()
840 StoreInst *StoreB = B.CreateStore(ConstantInt::get(Int8, 0), B_); in TEST_F()
841 LoadInst *LoadB = B.CreateLoad(Int8, B_); in TEST_F()
842 StoreInst *StoreA1 = B.CreateStore(ConstantInt::get(Int8, 4), A); in TEST_F()
843 StoreInst *StoreC = B.CreateStore(ConstantInt::get(Int8, 4), C); in TEST_F()
844 StoreInst *StoreA2 = B.CreateStore(ConstantInt::get(Int8, 4), A); in TEST_F()
845 LoadInst *LoadC = B.CreateLoad(Int8, C); in TEST_F()
1011 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1012 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1013 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1015 B.CreateStore(ConstantInt::get(Int8, 1), AllocaB); in TEST_F()
1017 LoadInst *LA1 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1019 LoadInst *LA2 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1021 B.CreateStore(ConstantInt::get(Int8, 1), AllocaA); in TEST_F()
1023 LoadInst *LA3 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1025 LoadInst *LA4 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1055 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1056 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1057 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1058 StoreInst *SA1 = B.CreateStore(ConstantInt::get(Int8, 1), AllocaA); in TEST_F()
1059 StoreInst *SB1 = B.CreateStore(ConstantInt::get(Int8, 1), AllocaB); in TEST_F()
1060 StoreInst *SA2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaA); in TEST_F()
1061 StoreInst *SB2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaB); in TEST_F()
1062 StoreInst *SA3 = B.CreateStore(ConstantInt::get(Int8, 3), AllocaA); in TEST_F()
1063 StoreInst *SB3 = B.CreateStore(ConstantInt::get(Int8, 3), AllocaB); in TEST_F()
1106 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1110 B.CreateStore(ConstantInt::get(Int8, 1), PointerB); in TEST_F()
1111 LoadInst *LA1 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1112 B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1113 LoadInst *LB1 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1114 B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1115 LoadInst *LA2 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1116 B.CreateStore(ConstantInt::get(Int8, 0), PointerB); in TEST_F()
1117 LoadInst *LB2 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1149 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1153 Value *AllocaC = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "C"); in TEST_F()
1155 StoreInst *SA1 = B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1157 StoreInst *SB1 = B.CreateStore(ConstantInt::get(Int8, 1), PointerB); in TEST_F()
1159 StoreInst *SC1 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaC); in TEST_F()
1161 StoreInst *SA2 = B.CreateStore(ConstantInt::get(Int8, 3), PointerA); in TEST_F()
1163 StoreInst *SB2 = B.CreateStore(ConstantInt::get(Int8, 4), PointerB); in TEST_F()
1165 StoreInst *SC2 = B.CreateStore(ConstantInt::get(Int8, 5), AllocaC); in TEST_F()
1167 StoreInst *SB3 = B.CreateStore(ConstantInt::get(Int8, 6), PointerB); in TEST_F()
1311 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1312 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "alloc"); in TEST_F()
1361 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1362 Value *AllocA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1363 Value *AllocB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1365 StoreInst *StoreA = B.CreateStore(ConstantInt::get(Int8, 0), AllocA); in TEST_F()
1366 StoreInst *StoreB = B.CreateStore(ConstantInt::get(Int8, 1), AllocB); in TEST_F()
1367 StoreInst *StoreA2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocA); in TEST_F()
1494 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1501 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1509 B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()