Lines Matching full:int8

602   Type *Int8 = Type::getInt8Ty(C);  in TEST_F()  local
603 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
604 StoreInst *S1 = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
605 StoreInst *S2 = B.CreateStore(ConstantInt::get(Int8, 1), Alloca); in TEST_F()
606 StoreInst *S3 = B.CreateStore(ConstantInt::get(Int8, 2), Alloca); in TEST_F()
633 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
634 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
635 Instruction *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
636 Instruction *LI = B.CreateLoad(Int8, Alloca); in TEST_F()
663 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
664 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
665 StoreInst *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()
707 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
708 Constant *One = ConstantInt::get(Int8, 1); in TEST_F()
709 Constant *Zero = ConstantInt::get(Int8, 0); in TEST_F()
710 Value *AllocA = B.CreateAlloca(Int8, One, "a"); in TEST_F()
711 Value *AllocB = B.CreateAlloca(Int8, One, "b"); in TEST_F()
720 Instruction *ALoad0 = B.CreateLoad(Int8, AllocA, ""); in TEST_F()
725 Instruction *ALoad = B.CreateLoad(Int8, AllocA, ""); in TEST_F()
771 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
772 Constant *One = ConstantInt::get(Int8, 1); in TEST_F()
773 Value *AllocA = B.CreateAlloca(Int8, One, ""); in TEST_F()
776 Instruction *Load = B.CreateLoad(Int8, AllocA); in TEST_F()
800 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
801 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
802 Instruction *SIA = B.CreateStore(ConstantInt::get(Int8, 0), AllocaA); in TEST_F()
803 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
804 Instruction *SIB = B.CreateStore(ConstantInt::get(Int8, 0), AllocaB); in TEST_F()
805 Instruction *LIA = B.CreateLoad(Int8, AllocaA); in TEST_F()
832 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
833 Value *A = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
834 Value *B_ = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
835 Value *C = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "C"); in TEST_F()
837 StoreInst *StoreA0 = B.CreateStore(ConstantInt::get(Int8, 0), A); in TEST_F()
838 StoreInst *StoreB = B.CreateStore(ConstantInt::get(Int8, 0), B_); in TEST_F()
839 LoadInst *LoadB = B.CreateLoad(Int8, B_); in TEST_F()
840 StoreInst *StoreA1 = B.CreateStore(ConstantInt::get(Int8, 4), A); in TEST_F()
841 StoreInst *StoreC = B.CreateStore(ConstantInt::get(Int8, 4), C); in TEST_F()
842 StoreInst *StoreA2 = B.CreateStore(ConstantInt::get(Int8, 4), A); in TEST_F()
843 LoadInst *LoadC = B.CreateLoad(Int8, C); in TEST_F()
1009 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1010 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1011 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1013 B.CreateStore(ConstantInt::get(Int8, 1), AllocaB); in TEST_F()
1015 LoadInst *LA1 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1017 LoadInst *LA2 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1019 B.CreateStore(ConstantInt::get(Int8, 1), AllocaA); in TEST_F()
1021 LoadInst *LA3 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1023 LoadInst *LA4 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1052 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1053 Value *AllocaA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1054 Value *AllocaB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1055 StoreInst *SA1 = B.CreateStore(ConstantInt::get(Int8, 1), AllocaA); in TEST_F()
1056 StoreInst *SB1 = B.CreateStore(ConstantInt::get(Int8, 1), AllocaB); in TEST_F()
1057 StoreInst *SA2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaA); in TEST_F()
1058 StoreInst *SB2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaB); in TEST_F()
1059 StoreInst *SA3 = B.CreateStore(ConstantInt::get(Int8, 3), AllocaA); in TEST_F()
1060 StoreInst *SB3 = B.CreateStore(ConstantInt::get(Int8, 3), AllocaB); in TEST_F()
1103 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1107 B.CreateStore(ConstantInt::get(Int8, 1), PointerB); in TEST_F()
1108 LoadInst *LA1 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1109 B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1110 LoadInst *LB1 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1111 B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1112 LoadInst *LA2 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1113 B.CreateStore(ConstantInt::get(Int8, 0), PointerB); in TEST_F()
1114 LoadInst *LB2 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1145 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1149 Value *AllocaC = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "C"); in TEST_F()
1151 StoreInst *SA1 = B.CreateStore(ConstantInt::get(Int8, 0), PointerA); in TEST_F()
1153 StoreInst *SB1 = B.CreateStore(ConstantInt::get(Int8, 1), PointerB); in TEST_F()
1155 StoreInst *SC1 = B.CreateStore(ConstantInt::get(Int8, 2), AllocaC); in TEST_F()
1157 StoreInst *SA2 = B.CreateStore(ConstantInt::get(Int8, 3), PointerA); in TEST_F()
1159 StoreInst *SB2 = B.CreateStore(ConstantInt::get(Int8, 4), PointerB); in TEST_F()
1161 StoreInst *SC2 = B.CreateStore(ConstantInt::get(Int8, 5), AllocaC); in TEST_F()
1163 StoreInst *SB3 = B.CreateStore(ConstantInt::get(Int8, 6), PointerB); in TEST_F()
1306 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1307 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "alloc"); in TEST_F()
1356 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1357 Value *AllocA = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1358 Value *AllocB = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "B"); in TEST_F()
1360 StoreInst *StoreA = B.CreateStore(ConstantInt::get(Int8, 0), AllocA); in TEST_F()
1361 StoreInst *StoreB = B.CreateStore(ConstantInt::get(Int8, 1), AllocB); in TEST_F()
1362 StoreInst *StoreA2 = B.CreateStore(ConstantInt::get(Int8, 2), AllocA); in TEST_F()
1489 Type *Int8 = Type::getInt8Ty(C); in TEST_F() local
1496 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A"); in TEST_F()
1504 B.CreateStore(ConstantInt::get(Int8, 0), Alloca); in TEST_F()