| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 210 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()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Type.cpp | 175 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type 225 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy() 248 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
|
| H A D | AutoUpgrade.cpp | 1745 Rep = Builder.CreateBitCast(Rep, Builder.getInt16Ty()); in UpgradeIntrinsicCall() 1748 C = ConstantInt::getAllOnesValue(Builder.getInt16Ty()); in UpgradeIntrinsicCall() 1750 C = ConstantInt::getNullValue(Builder.getInt16Ty()); in UpgradeIntrinsicCall()
|
| H A D | Constants.cpp | 2589 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size()); in get()
|
| H A D | Core.cpp | 545 return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C)); in LLVMInt16TypeInContext()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | SanitizerCoverage.cpp | 329 Int16Ty = IRB.getInt16Ty(); in runOnModule() 338 M.getOrInsertFunction(SanCovTraceCmp2, VoidTy, IRB.getInt16Ty(), in runOnModule() 339 IRB.getInt16Ty())); in runOnModule()
|
| H A D | InstrProfiling.cpp | 772 auto *Int16Ty = Type::getInt16Ty(Ctx); in getOrCreateRegionCounters()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | CodeExtractor.cpp | 695 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction() 1027 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement() 1061 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement() 1068 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Type.h | 409 static IntegerType *getInt16Ty(LLVMContext &C);
|
| H A D | IRBuilder.h | 303 return ConstantInt::get(getInt16Ty(), C); in getInt16() 342 IntegerType *getInt16Ty() { in getInt16Ty() function 343 return Type::getInt16Ty(Context); in getInt16Ty()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 297 return llvm::Type::getInt16Ty(VMContext); in getTypeForFormat()
|
| H A D | TargetInfo.cpp | 5083 llvm::Type *ResType = llvm::Type::getInt16Ty(getVMContext()); in classifyArgumentType() 6093 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType() 6131 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType() 7377 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyArgumentType() 7410 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType() 7664 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyReturnType() 7735 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); in classifyArgumentType()
|
| H A D | CodeGenModule.cpp | 105 Int16Ty = llvm::Type::getInt16Ty(LLVMContext); in CodeGenModule()
|
| H A D | CGBuiltin.cpp | 12087 { Builder.getInt16Ty(), Src0->getType() }); in EmitAMDGPUBuiltinExpr()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 314 Type::getInt16Ty(Context), in pickScalarType()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 889 case AMDGPULibFunc::I16: T = Type::getInt16Ty(C); break; in getIntrinsicParamType()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 413 C = FoldBitCast(C, Type::getInt16Ty(C->getContext()), DL); in ReadDataFromGlobal() 512 MapTy = Type::getInt16Ty(C->getContext()); in FoldReinterpretLoadFromConstPtr()
|
| H A D | ValueTracking.cpp | 3143 Ty = Type::getInt16Ty(Ctx); in isBytewiseValue()
|
| /freebsd-12.1/contrib/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1834 } else if (ETy == Type::getInt16Ty(CPV->getContext())) { in bufferLEByte()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 14177 case MVT::i16: RetTyElement = Type::getInt16Ty(*DAG.getContext()); break; in LowerREM()
|