Home
last modified time | relevance | path

Searched refs:DataType (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h545 template <class DataType> struct OptionValue;
549 template <class DataType, bool isClass>
552 using WrapperType = OptionValue<DataType>;
556 const DataType &getValue() const { llvm_unreachable("no default value"); }
562 bool compare(const DataType & /*V*/) const { return false; }
573 template <class DataType> class OptionValueCopy : public GenericOptionValue {
574 DataType Value;
587 const DataType &getValue() const {
592 void setValue(const DataType &V) {
598 bool compare(const DataType &V) const { return Valid && (Value == V); }
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h258 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { in isLegalMaskedLoadStore() argument
263 if (isa<FixedVectorType>(DataType) && !ST->useSVEForFixedLengthVectors() && in isLegalMaskedLoadStore()
264 DataType->getPrimitiveSizeInBits() != 128) in isLegalMaskedLoadStore()
267 return isElementTypeLegalForScalableVector(DataType->getScalarType()); in isLegalMaskedLoadStore()
270 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument
271 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedLoad()
274 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument
275 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedStore()
278 bool isLegalMaskedGatherScatter(Type *DataType) const { in isLegalMaskedGatherScatter() argument
283 auto *DataTypeFVTy = dyn_cast<FixedVectorType>(DataType); in isLegalMaskedGatherScatter()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVETargetTransformInfo.h136 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedLoad() argument
137 return isVectorLaneType(*getLaneType(DataType)); in isLegalMaskedLoad()
139 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedStore() argument
140 return isVectorLaneType(*getLaneType(DataType)); in isLegalMaskedStore()
142 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedGather() argument
143 return isVectorLaneType(*getLaneType(DataType)); in isLegalMaskedGather()
145 bool isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) { in isLegalMaskedScatter() argument
146 return isVectorLaneType(*getLaneType(DataType)); in isLegalMaskedScatter()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h257 using DataType = DataT; variable
261 using IntervalReferences = SmallVector<const DataType *, 4>;
264 using IntervalVector = SmallVector<DataType, 4>;
425 [](const DataType *LHS, const DataType *RHS) { in createTree()
431 [](const DataType *LHS, const DataType *RHS) { in createTree()
453 using value_type = DataType;
454 using difference_type = DataType;
455 using pointer = DataType *;
456 using reference = DataType &;
552 const DataType *current() const { in current()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h94 bool hasActiveVectorLength(unsigned Opcode, Type *DataType,
220 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { in isLegalMaskedLoadStore() argument
224 EVT DataTypeVT = TLI->getValueType(DL, DataType); in isLegalMaskedLoadStore()
238 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument
239 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedLoad()
241 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument
242 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedStore()
245 bool isLegalMaskedGatherScatter(Type *DataType, Align Alignment) { in isLegalMaskedGatherScatter() argument
249 EVT DataTypeVT = TLI->getValueType(DL, DataType); in isLegalMaskedGatherScatter()
262 bool isLegalMaskedGather(Type *DataType, Align Alignment) { in isLegalMaskedGather() argument
[all …]
H A DRISCVGatherScatterLowering.cpp67 bool tryCreateStridedLoadStore(IntrinsicInst *II, Type *DataType, Value *Ptr,
488 Type *DataType, in tryCreateStridedLoadStore() argument
493 EVT DataTypeVT = TLI->getValueType(*DL, DataType); in tryCreateStridedLoadStore()
522 {DataType, BasePtr->getType(), Stride->getType()}, in tryCreateStridedLoadStore()
527 {DataType, BasePtr->getType(), Stride->getType()}, in tryCreateStridedLoadStore()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h779 bool isLegalMaskedStore(Type *DataType, Align Alignment) const;
781 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const;
784 bool isLegalNTStore(Type *DataType, Align Alignment) const;
786 bool isLegalNTLoad(Type *DataType, Align Alignment) const;
793 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const;
795 bool isLegalMaskedGather(Type *DataType, Align Alignment) const;
804 bool isLegalMaskedCompressStore(Type *DataType, Align Alignment) const;
806 bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment) const;
809 bool isLegalStridedLoadStore(Type *DataType, Align Alignment) const;
812 bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) const;
[all …]
H A DTargetTransformInfoImpl.h266 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { in isLegalMaskedStore() argument
270 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const { in isLegalMaskedLoad() argument
274 bool isLegalNTStore(Type *DataType, Align Alignment) const { in isLegalNTStore() argument
277 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTStore()
281 bool isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() argument
284 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTLoad()
292 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { in isLegalMaskedScatter() argument
296 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() argument
300 bool forceScalarizeMaskedGather(VectorType *DataType, Align Alignment) const { in forceScalarizeMaskedGather() argument
304 bool forceScalarizeMaskedScatter(VectorType *DataType, in forceScalarizeMaskedScatter() argument
[all …]
/freebsd/stand/efi/include/Protocol/
H A DIp4Config2.h211 IN EFI_IP4_CONFIG2_DATA_TYPE DataType,
253 IN EFI_IP4_CONFIG2_DATA_TYPE DataType,
282 IN EFI_IP4_CONFIG2_DATA_TYPE DataType,
303 IN EFI_IP4_CONFIG2_DATA_TYPE DataType,
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h263 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
264 bool isLegalMaskedStore(Type *DataType, Align Alignment);
265 bool isLegalNTLoad(Type *DataType, Align Alignment);
266 bool isLegalNTStore(Type *DataType, Align Alignment);
272 bool isLegalMaskedGatherScatter(Type *DataType, Align Alignment);
273 bool isLegalMaskedGather(Type *DataType, Align Alignment);
274 bool isLegalMaskedScatter(Type *DataType, Align Alignment);
275 bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment);
276 bool isLegalMaskedCompressStore(Type *DataType, Align Alignment);
279 bool hasDivRemOp(Type *DataType, bool IsSigned);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp459 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() argument
461 return TTIImpl->isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
464 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, in isLegalMaskedLoad() argument
466 return TTIImpl->isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedLoad()
469 bool TargetTransformInfo::isLegalNTStore(Type *DataType, in isLegalNTStore() argument
471 return TTIImpl->isLegalNTStore(DataType, Alignment); in isLegalNTStore()
474 bool TargetTransformInfo::isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() argument
475 return TTIImpl->isLegalNTLoad(DataType, Alignment); in isLegalNTLoad()
483 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, in isLegalMaskedGather() argument
485 return TTIImpl->isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
[all …]
/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexnames.c387 ACPI_OBJECT_TYPE DataType, in AcpiExGetNameString() argument
403 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType || in AcpiExGetNameString()
404 ACPI_TYPE_LOCAL_BANK_FIELD == DataType || in AcpiExGetNameString()
405 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType) in AcpiExGetNameString()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetTransformInfo.cpp13 bool MipsTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() argument
14 EVT VT = TLI->getValueType(DL, DataType); in hasDivRemOp()
H A DMipsTargetTransformInfo.h35 bool hasDivRemOp(Type *DataType, bool IsSigned);
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp343 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { in isLegalMaskedStore() argument
346 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedStore()
349 bool HexagonTTIImpl::isLegalMaskedLoad(Type *DataType, Align /*Alignment*/) { in isLegalMaskedLoad() argument
352 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedLoad()
H A DHexagonTargetTransformInfo.h160 bool isLegalMaskedStore(Type *DataType, Align Alignment);
161 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h416 typedef T DataType; typedef
418 DataType data;
424 RangeData(B base, S size, DataType d) : Range<B, S>(base, size), data(d) {} in RangeData()
714 typedef T DataType; typedef
717 DataType data;
721 AddressData(B a, DataType d) : addr(a), data(d) {} in AddressData()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp1015 bool PPCTTIImpl::hasActiveVectorLength(unsigned Opcode, Type *DataType, in hasActiveVectorLength() argument
1024 if (isa<FixedVectorType>(DataType)) { in hasActiveVectorLength()
1025 unsigned VecWidth = DataType->getPrimitiveSizeInBits(); in hasActiveVectorLength()
1028 Type *ScalarTy = DataType->getScalarType(); in hasActiveVectorLength()
H A DPPCTargetTransformInfo.h144 bool hasActiveVectorLength(unsigned Opcode, Type *DataType,
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h82 bool hasDivRemOp(Type *DataType, bool IsSigned);
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl1.h650 UINT8 DataType; member
703 UINT8 DataType; member
2233 UINT8 DataType; member
/freebsd/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdioctl.c1946 if (FORENSIC_DATA_TYPE_CHECK_FATAL == pForensicData->DataType) in ostiGetForensicDataIOCTLRsp()
1954 switch (pForensicData->DataType) in ostiGetForensicDataIOCTLRsp()
1970 … TI_DBG1(("ostiGetForensicDataIOCTLRsp: forensic data type error %d\n", pForensicData->DataType)); in ostiGetForensicDataIOCTLRsp()
3063 ForensicData.DataType = pForensicDataPayload->DataType; in tdsaForensicDataGetIoctl()
3065 switch (ForensicData.DataType) in tdsaForensicDataGetIoctl()
3096 …_DBG1(("tdsaGetForensicDataIoctl: forensic data type error %d\n", pForensicDataPayload->DataType)); in tdsaForensicDataGetIoctl()
H A Dtdmisc.c541 forensicData.DataType = TYPE_FATAL; in tiCOMReset()
559 …TI_DBG1(("tiCOMReset:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, fo… in tiCOMReset()
1817 forensicData.DataType = TYPE_NON_FATAL; in tiCOMShutDown()
1835 …TI_DBG1(("tiCOMShutDown:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, … in tiCOMShutDown()
H A Dtdioctl.h551 bit32 DataType; member
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtbinfo1.c697 {ACPI_DMT_UINT8, ACPI_CDAT1_OFFSET (DataType), "Data Type", 0},
744 {ACPI_DMT_UINT8, ACPI_CDAT5_OFFSET (DataType), "Data Type", 0},
1630 {ACPI_DMT_UINT8, ACPI_HMAT1_OFFSET (DataType), "Data Type", 0},

12