Home
last modified time | relevance | path

Searched refs:getInt16Ty (Results 1 – 25 of 76) sorted by relevance

1234

/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DValueTypes.cpp148 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
179 case MVT::v1i16: return VectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT()
180 case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT()
181 case MVT::v3i16: return VectorType::get(Type::getInt16Ty(Context), 3); in getTypeForEVT()
182 case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT()
183 case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT()
184 case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT()
185 case MVT::v32i16: return VectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT()
186 case MVT::v64i16: return VectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT()
187 case MVT::v128i16: return VectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
[all …]
/external/llvm-project/llvm/lib/CodeGen/
DValueTypes.cpp186 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
239 return FixedVectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT()
241 return FixedVectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT()
243 return FixedVectorType::get(Type::getInt16Ty(Context), 3); in getTypeForEVT()
245 return FixedVectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT()
247 return FixedVectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT()
249 return FixedVectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT()
251 return FixedVectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT()
253 return FixedVectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT()
255 return FixedVectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
[all …]
/external/llvm/lib/IR/
DValueTypes.cpp212 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
240 case MVT::v1i16: return VectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT()
241 case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT()
242 case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT()
243 case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT()
244 case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT()
245 case MVT::v32i16: return VectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT()
246 case MVT::v64i16: return VectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT()
247 case MVT::v128i16: return VectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
DType.cpp168 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type
218 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy()
242 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
/external/llvm-project/llvm/unittests/FuzzMutate/
DStrategiesTest.cpp30 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createInjectorMutator()
43 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createDeleterMutator()
/external/llvm-project/mlir/lib/Conversion/GPUToVulkan/
DConvertLaunchFuncToVulkanCalls.cpp243 getMemRefType(rank, LLVM::LLVMType::getInt16Ty(&getContext())); in createBindMemRefCalls()
324 LLVM::LLVMType::getInt16Ty(&getContext()), in declareVulkanFunctions()
330 type = LLVM::LLVMType::getInt16Ty(&getContext()); in declareVulkanFunctions()
/external/llvm/unittests/IR/
DConstantsTest.cpp197 Type *Int16Ty = Type::getInt16Ty(Context); in TEST()
403 Type *I16Ty = Type::getInt16Ty(Context); in TEST()
422 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
445 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
DTypeBuilderTest.cpp39 EXPECT_EQ(Type::getInt16Ty(Context), in TEST()
41 EXPECT_EQ(Type::getInt16Ty(Context), in TEST()
DInstructionsTest.cpp175 Type *Int16Ty = Type::getInt16Ty(C); in TEST()
415 Type* Int16Ty = Type::getInt16Ty(C); in TEST()
/external/llvm-project/llvm/unittests/IR/
DVectorTypesTest.cpp36 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST()
130 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST()
225 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST()
DConstantsTest.cpp197 Type *Int16Ty = Type::getInt16Ty(Context); in TEST()
403 Type *I16Ty = Type::getInt16Ty(Context); in TEST()
422 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
445 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp298 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction()
502 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement()
536 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement()
543 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
/external/llvm-project/llvm/tools/llvm-isel-fuzzer/
Dllvm-isel-fuzzer.cpp57 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createISelMutator()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DType.cpp179 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type
229 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy()
252 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
/external/llvm-project/llvm/lib/IR/
DType.cpp185 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type
239 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy()
262 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
/external/llvm-project/llvm/tools/llvm-opt-fuzzer/
Dllvm-opt-fuzzer.cpp43 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createOptMutator()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder.cpp57 mInt16Ty = Type::getInt16Ty(pJitMgr->mContext); in Builder()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp380 Int16Ty = IRB.getInt16Ty(); in instrumentModule()
400 IRB.getInt16Ty(), IRB.getInt16Ty()); in instrumentModule()
/external/llvm/include/llvm/IR/
DType.h380 static IntegerType *getInt16Ty(LLVMContext &C);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DType.h422 static IntegerType *getInt16Ty(LLVMContext &C);
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DType.h391 static IntegerType *getInt16Ty(LLVMContext &C);
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp412 Int16Ty = IRB.getInt16Ty(); in instrumentModule()
431 IRB.getInt16Ty(), IRB.getInt16Ty()); in instrumentModule()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp781 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction()
1180 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement()
1214 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement()
1221 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
/external/llvm-project/llvm/include/llvm/IR/
DType.h412 static IntegerType *getInt16Ty(LLVMContext &C);
/external/llvm-project/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp830 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction()
1236 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement()
1270 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement()
1277 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()

1234