Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DValueTypes.cpp193 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
268 return FixedVectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT()
270 return FixedVectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT()
272 return FixedVectorType::get(Type::getInt16Ty(Context), 3); in getTypeForEVT()
274 return FixedVectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT()
276 return FixedVectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT()
278 return FixedVectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT()
280 return FixedVectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT()
282 return FixedVectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT()
284 return FixedVectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/
H A DDXILOpBuilder.cpp205 return Type::getInt16Ty(Ctx); in getTypeFromParameterKind()
290 return Type::getInt16Ty(Ctx); in getOverloadTy()
/openbsd-src/gnu/llvm/llvm/tools/llvm-isel-fuzzer/
H A Dllvm-isel-fuzzer.cpp55 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createISelMutator()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUReplaceLDSUseWithPointer.cpp182 auto *I16Ty = Type::getInt16Ty(Ctx); in createLDSPointer()
242 Builder.CreateStore(Builder.CreatePtrToInt(GV, Type::getInt16Ty(Ctx)), in initializeLDSPointer()
H A DAMDGPUTargetTransformInfo.cpp418 return Type::getInt16Ty(Context); in getMemcpyLoopLoweringType()
462 Type *I16Ty = Type::getInt16Ty(Context); in getMemcpyLoopResidualLoweringType()
H A DAMDGPUInstCombineIntrinsic.cpp108 return Builder.CreateIntCast(&V, Type::getInt16Ty(V.getContext()), false); in convertTo16Bit()
302 : Type::getInt16Ty(II.getContext()); in simplifyAMDGCNImageIntrinsic()
H A DAMDGPULibFunc.cpp887 case AMDGPULibFunc::I16: T = Type::getInt16Ty(C); break; in getIntrinsicParamType()
H A DAMDGPUHSAMetadataStreamer.cpp1019 auto Int16Ty = Type::getInt16Ty(Func.getContext()); in emitHiddenKernelArgs()
/openbsd-src/gnu/llvm/llvm/tools/llvm-opt-fuzzer/
H A Dllvm-opt-fuzzer.cpp45 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createOptMutator()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp405 Int16PtrTy = PointerType::getUnqual(IRB.getInt16Ty()); in instrumentModule()
411 Int16Ty = IRB.getInt16Ty(); in instrumentModule()
430 IRB.getInt16Ty(), IRB.getInt16Ty()); in instrumentModule()
H A DInstrProfiling.cpp1009 auto *Int16Ty = Type::getInt16Ty(Ctx); in getOrCreateRegionCounters()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DType.cpp240 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type
298 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy()
321 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
H A DAutoUpgrade.cpp2358 Rep = Builder.CreateBitCast(Rep, Builder.getInt16Ty()); in UpgradeIntrinsicCall()
2361 C = ConstantInt::getAllOnesValue(Builder.getInt16Ty()); in UpgradeIntrinsicCall()
2363 C = ConstantInt::getNullValue(Builder.getInt16Ty()); in UpgradeIntrinsicCall()
4318 NewCall, FixedVectorType::get(Builder.getInt16Ty(), NumElts)); in UpgradeIntrinsicCall()
H A DConstants.cpp3016 auto *Ty = FixedVectorType::get(Type::getInt16Ty(Context), Elts.size()); in get()
H A DCore.cpp587 return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C)); in LLVMInt16TypeInContext()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DType.h466 static IntegerType *getInt16Ty(LLVMContext &C);
H A DIRBuilder.h468 return ConstantInt::get(getInt16Ty(), C); in getInt16()
507 IntegerType *getInt16Ty() { in getInt16Ty() function
508 return Type::getInt16Ty(Context); in getInt16Ty()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86PreAMXConfig.cpp157 Type *I16Ty = Type::getInt16Ty(Ctx); in preWriteTileCfg()
H A DX86LowerAMXIntrinsics.cpp116 Type *I16Ty = Type::getInt16Ty(Ctx); in createLoop()
434 FixedVectorType *V2I16Ty = FixedVectorType::get(B.getInt16Ty(), 2); in createTileDPLoops()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp827 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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp162 Type::getInt16Ty(Context), Type::getInt32Ty(Context), in Modifier()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenTypes.cpp317 return llvm::Type::getInt16Ty(VMContext); in getTypeForFormat()
H A DTargetInfo.cpp5697 llvm::Type::getInt16Ty(getVMContext()), 8); in coerceIllegalVector()
5732 llvm::Type *ResType = llvm::Type::getInt16Ty(getVMContext()); in coerceIllegalVector()
6882 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType()
6920 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType()
9315 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType()
9407 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyArgumentType()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DConstantFolding.cpp459 C = FoldBitCast(C, Type::getInt16Ty(C->getContext()), DL); in ReadDataFromGlobal()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp4291 Type::getVoidTy(Ctx), {Type::getInt16Ty(Ctx), Type::getInt32Ty(Ctx)}, in buildCustomStateMachine()

12