| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 193 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT() 262 return FixedVectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT() 264 return FixedVectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT() 266 return FixedVectorType::get(Type::getInt16Ty(Context), 3); in getTypeForEVT() 268 return FixedVectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT() 270 return FixedVectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT() 272 return FixedVectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT() 274 return FixedVectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT() 276 return FixedVectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT() 278 return FixedVectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT() [all …]
|
| /llvm-project-15.0.7/llvm/unittests/FuzzMutate/ |
| H A D | StrategiesTest.cpp | 30 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createInjectorMutator() 43 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createDeleterMutator() 54 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createInstModifierMutator()
|
| H A D | OperationsTest.cpp | 84 Constant *i16 = ConstantInt::get(Type::getInt16Ty(Ctx), 1 << 15); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Target/DirectX/ |
| H A D | DXILOpBuilder.cpp | 205 return Type::getInt16Ty(Ctx); in getTypeFromParameterKind() 290 return Type::getInt16Ty(Ctx); in getOverloadTy()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | VectorTypesTest.cpp | 40 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST() 134 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST() 229 Type *Int16Ty = Type::getInt16Ty(Ctx); in TEST()
|
| H A D | ConstantsTest.cpp | 209 Type *Int16Ty = Type::getInt16Ty(Context); in TEST() 406 Type *I16Ty = Type::getInt16Ty(Context); in TEST() 424 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST() 452 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
|
| H A D | InstructionsTest.cpp | 195 Type *Int16Ty = Type::getInt16Ty(C); in TEST() 630 Type* Int16Ty = Type::getInt16Ty(C); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUReplaceLDSUseWithPointer.cpp | 182 auto *I16Ty = Type::getInt16Ty(Ctx); in createLDSPointer() 242 Builder.CreateStore(Builder.CreatePtrToInt(GV, Type::getInt16Ty(Ctx)), in initializeLDSPointer()
|
| H A D | AMDGPUTargetTransformInfo.cpp | 416 return Type::getInt16Ty(Context); in getMemcpyLoopLoweringType() 460 Type *I16Ty = Type::getInt16Ty(Context); in getMemcpyLoopResidualLoweringType()
|
| H A D | AMDGPUInstCombineIntrinsic.cpp | 106 return Builder.CreateIntCast(&V, Type::getInt16Ty(V.getContext()), false); in convertTo16Bit() 300 : Type::getInt16Ty(II.getContext()); in simplifyAMDGCNImageIntrinsic()
|
| H A D | AMDGPUPrintfRuntimeBinding.cpp | 493 IType = Type::getInt16Ty(ArgType->getContext()); in lowerPrintfForGpu()
|
| H A D | AMDGPULibFunc.cpp | 886 case AMDGPULibFunc::I16: T = Type::getInt16Ty(C); break; in getIntrinsicParamType()
|
| H A D | AMDGPUHSAMetadataStreamer.cpp | 1000 auto Int16Ty = Type::getInt16Ty(Func.getContext()); in emitHiddenKernelArgs()
|
| /llvm-project-15.0.7/llvm/tools/llvm-isel-fuzzer/ |
| H A D | llvm-isel-fuzzer.cpp | 55 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createISelMutator()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | SanitizerCoverage.cpp | 387 Int16PtrTy = PointerType::getUnqual(IRB.getInt16Ty()); in instrumentModule() 393 Int16Ty = IRB.getInt16Ty(); in instrumentModule() 412 IRB.getInt16Ty(), IRB.getInt16Ty()); in instrumentModule()
|
| /llvm-project-15.0.7/llvm/tools/llvm-opt-fuzzer/ |
| H A D | llvm-opt-fuzzer.cpp | 45 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createOptMutator()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Type.cpp | 238 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type 296 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy() 319 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Type.h | 437 static IntegerType *getInt16Ty(LLVMContext &C);
|
| H A D | IRBuilder.h | 457 return ConstantInt::get(getInt16Ty(), C); in getInt16() 496 IntegerType *getInt16Ty() { in getInt16Ty() function 497 return Type::getInt16Ty(Context); in getInt16Ty()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86PreAMXConfig.cpp | 157 Type *I16Ty = Type::getInt16Ty(Ctx); in preWriteTileCfg()
|
| H A D | X86LowerAMXIntrinsics.cpp | 116 Type *I16Ty = Type::getInt16Ty(Ctx); in createLoop() 434 FixedVectorType *V2I16Ty = FixedVectorType::get(B.getInt16Ty(), 2); in createTileDPLoops()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | CodeExtractor.cpp | 828 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction() 1270 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement() 1306 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement() 1313 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
|
| /llvm-project-15.0.7/polly/lib/Exchange/ |
| H A D | JSONExporter.cpp | 611 {"i16", Type::getInt16Ty(LLVMContext)}, in parseTextType()
|
| /llvm-project-15.0.7/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 159 Type::getInt16Ty(Context), Type::getInt32Ty(Context), in Modifier()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 317 return llvm::Type::getInt16Ty(VMContext); in getTypeForFormat()
|