HomeSort by relevance Sort by last modified time
    Searched defs:Int8Ty (Results 1 - 20 of 20) sorted by null

  /external/swiftshader/third_party/LLVM/unittests/VMCore/
ConstantsTest.cpp 100 IntegerType* Int8Ty = Type::getInt8Ty(getGlobalContext());
101 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, false)->getSExtValue());
102 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, true)->getSExtValue());
103 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
104 EXPECT_EQ(-50, ConstantInt::get(Int8Ty, 206)->getSExtValue());
105 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
106 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
109 EXPECT_EQ(0x3b, ConstantInt::get(Int8Ty, 0x13b)->getSExtValue());
InstructionsTest.cpp 114 Type* Int8Ty = Type::getInt8Ty(C);
116 Type* V8x8Ty = VectorType::get(Int8Ty, 8);
  /external/llvm/lib/CodeGen/
PreISelIntrinsicLowering.cpp 34 Type *Int8Ty = Type::getInt8Ty(F.getContext());
44 B.CreateGEP(Int8Ty, CI->getArgOperand(0), CI->getArgOperand(1));
48 Value *ResultPtr = B.CreateGEP(Int8Ty, CI->getArgOperand(0), OffsetI32);
SafeStack.cpp 115 Type *Int8Ty;
205 Int8Ty = Type::getInt8Ty(M.getContext());
    [all...]
  /external/llvm/unittests/IR/
ValueTest.cpp 50 Type *Int8Ty = Type::getInt8Ty(Ctx);
87 Constant *DummyCast1 = M->getOrInsertGlobal("dummy_cast", Int8Ty);
ConstantsTest.cpp 108 IntegerType *Int8Ty = Type::getInt8Ty(Context);
109 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, false)->getSExtValue());
110 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, true)->getSExtValue());
111 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
112 EXPECT_EQ(-50, ConstantInt::get(Int8Ty, 206)->getSExtValue());
113 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
114 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
117 EXPECT_EQ(0x3b, ConstantInt::get(Int8Ty, 0x13b)->getSExtValue());
InstructionsTest.cpp 174 Type *Int8Ty = Type::getInt8Ty(C);
178 Type *V8x8Ty = VectorType::get(Int8Ty, 8);
  /external/clang/lib/CodeGen/
CodeGenTypeCache.h 37 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
ObjectFilePCHContainerOperations.cpp 261 auto Int8Ty = llvm::Type::getInt8Ty(*VMContext);
262 auto *Ty = llvm::ArrayType::get(Int8Ty, Size);
CGExprScalar.cpp     [all...]
CGObjCGNU.cpp 112 llvm::IntegerType *Int8Ty;
266 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
276 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
278 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
279 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
    [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 96 Type* Int8Ty = IntegerType::getInt8Ty(C);
97 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty);
99 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 84 Type* Int8Ty = IntegerType::getInt8Ty(C);
85 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty);
87 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 242 IntegerType *Int8Ty;
259 : M(M), Int8Ty(Type::getInt8Ty(M.getContext())),
599 Value *Bit = ConstantInt::get(Int8Ty, 1ULL << OffsetBit);
601 auto IsBitSet = B.CreateICmpNE(BitsAndBit, ConstantInt::get(Int8Ty, 0));
734 Value *GEP = LoadB.CreateGEP(Int8Ty, Ptr, Offset);
LowerTypeTests.cpp 219 IntegerType *Int8Ty;
313 *M, Int8Ty, /*isConstant=*/true, GlobalValue::PrivateLinkage, nullptr);
315 *M, Int8Ty, /*isConstant=*/true, GlobalValue::PrivateLinkage, nullptr);
323 BAI->Mask = ConstantExpr::getPtrToInt(MaskGlobal, Int8Ty);
342 BAI->Mask->replaceAllUsesWith(ConstantInt::get(Int8Ty, Mask));
366 Int8Ty, 0, GlobalValue::PrivateLinkage, "bits", GEP, M);
417 return B.CreateICmpNE(ByteAndMask, ConstantInt::get(Int8Ty, 0));
514 ConstantAggregateZero::get(ArrayType::get(Int8Ty, Padding)));
634 ConstantInt *Jmp = ConstantInt::get(Int8Ty, kJmpPCRel32Code);
646 ConstantInt *Int3 = ConstantInt::get(Int8Ty, kInt3Code)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContextImpl.h 174 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 252 Type *Int8Ty = IRB.getInt8Ty();
259 new GlobalVariable(M, Int8Ty, false, GlobalVariable::ExternalLinkage,
283 Type *Int8ArrayNTy = ArrayType::get(Int8Ty, alignTo(N, CounterAlignment));
  /external/llvm/lib/IR/
LLVMContextImpl.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]
  /frameworks/compile/libbcc/lib/
RSKernelExpand.cpp 255 llvm::Type *Int8Ty = llvm::Type::getInt8Ty(*Context);
256 llvm::Type *Int8PtrTy = Int8Ty->getPointerTo();
    [all...]

Completed in 500 milliseconds