HomeSort by relevance Sort by last modified time
    Searched refs:getInt8Ty (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 35 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<int8_t, false>::get(getGlobalContext())));
36 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<uint8_t, false>::get(getGlobalContext())));
76 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
78 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
83 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
85 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
90 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7),
92 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
96 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()),
98 EXPECT_EQ(Type::getInt8Ty(getGlobalContext())
    [all...]
VerifierTest.cpp 50 Type *Ty = Type::getInt8Ty(C);
WaymarkTest.cpp 22 return ConstantInt::get(Type::getInt8Ty(getGlobalContext()), c);
IRBuilderTest.cpp 50 AllocaInst *Var1 = Builder.CreateAlloca(Builder.getInt8Ty());
52 AllocaInst *Var3 = Builder.CreateAlloca(Builder.getInt8Ty(),
InstructionsTest.cpp 119 Type* Int8Ty = Type::getInt8Ty(C);
ConstantsTest.cpp 103 IntegerType* Int8Ty = Type::getInt8Ty(getGlobalContext());
  /external/llvm/lib/IR/
ValueTypes.cpp 182 case MVT::i8: return Type::getInt8Ty(Context);
200 case MVT::v2i8: return VectorType::get(Type::getInt8Ty(Context), 2);
201 case MVT::v4i8: return VectorType::get(Type::getInt8Ty(Context), 4);
202 case MVT::v8i8: return VectorType::get(Type::getInt8Ty(Context), 8);
203 case MVT::v16i8: return VectorType::get(Type::getInt8Ty(Context), 16);
204 case MVT::v32i8: return VectorType::get(Type::getInt8Ty(Context), 32);
205 case MVT::v64i8: return VectorType::get(Type::getInt8Ty(Context), 64);
Type.cpp 239 IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; }
285 return getInt8Ty(C)->getPointerTo(AS);
312 case 8: return cast<IntegerType>(Type::getInt8Ty(C));
  /external/llvm/examples/BrainF/
BrainF.cpp 84 Type* Int8Ty = IntegerType::getInt8Ty(C);
151 PointerType::getUnqual(IntegerType::getInt8Ty(C)), NULL));
210 CreateTrunc(tape_0, IntegerType::getInt8Ty(C), tapereg);
296 PHINode::Create(PointerType::getUnqual(IntegerType::getInt8Ty(C)),
451 CreatePHI(PointerType::getUnqual(IntegerType::getInt8Ty(C)), 1,
BrainFDriver.cpp 63 IntegerType::getInt8Ty(mod->getContext()))), NULL));
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 126 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
147 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
162 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
295 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
ObjCARCOpts.cpp 857 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
873 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
889 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
905 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 323 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
414 PointeeType = llvm::Type::getInt8Ty(getLLVMContext());
438 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
451 EltTy = llvm::Type::getInt8Ty(getLLVMContext());
CGRecordLayoutBuilder.cpp 462 llvm::Type *FieldTy = llvm::Type::getInt8Ty(Types.getLLVMContext());
909 llvm::Type *Ty = llvm::Type::getInt8Ty(Types.getLLVMContext());
    [all...]
TargetInfo.cpp     [all...]
ItaniumCXXABI.cpp 338 Base = Builder.CreateBitCast(Base, Builder.getInt8Ty()->getPointerTo(AS));
    [all...]
  /external/llvm/include/llvm/IR/
Type.h 391 static IntegerType *getInt8Ty(LLVMContext &C);
IRBuilder.h 198 return ConstantInt::get(getInt8Ty(), C);
231 IntegerType *getInt8Ty() {
232 return Type::getInt8Ty(Context);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 761 getShadowPtr(V, EntryIRB.getInt8Ty(), EntryIRB),
    [all...]
AddressSanitizer.cpp     [all...]
GCOVProfiling.cpp 659 Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 101 ArgsTy.push_back(PointerType::get(IntegerType::getInt8Ty(Context), 0));
106 ArgsTy.push_back(IntegerType::getInt8Ty(Context));
251 case 1: t = Type::getInt8Ty(Context); break;
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 217 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(),
    [all...]
BuildLibCalls.cpp 532 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(),

Completed in 137 milliseconds

1 2