Home
last modified time | relevance | path

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

123

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h535 template <class DataType> struct OptionValue;
539 template <class DataType, bool isClass>
542 using WrapperType = OptionValue<DataType>;
546 const DataType &getValue() const { llvm_unreachable("no default value"); }
551 bool compare(const DataType & /*V*/) const { return false; }
562 template <class DataType> class OptionValueCopy : public GenericOptionValue {
563 DataType Value;
576 const DataType &getValue() const {
581 void setValue(const DataType &V) {
586 bool compare(const DataType &V) const { return Valid && (Value != V); }
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h99 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { in isLegalMaskedLoadStore() argument
104 if (isa<FixedVectorType>(DataType) && ST->getMinRVVVectorSizeInBits() == 0) in isLegalMaskedLoadStore()
107 return isLegalElementTypeForRVV(DataType->getScalarType()); in isLegalMaskedLoadStore()
110 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument
111 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedLoad()
113 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument
114 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedStore()
117 bool isLegalMaskedGatherScatter(Type *DataType, Align Alignment) { in isLegalMaskedGatherScatter() argument
122 if (isa<FixedVectorType>(DataType) && ST->getMinRVVVectorSizeInBits() == 0) in isLegalMaskedGatherScatter()
125 return isLegalElementTypeForRVV(DataType->getScalarType()); in isLegalMaskedGatherScatter()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h226 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { in isLegalMaskedLoadStore() argument
231 if (isa<FixedVectorType>(DataType) && !ST->useSVEForFixedLengthVectors()) in isLegalMaskedLoadStore()
234 return isLegalElementTypeForSVE(DataType->getScalarType()); in isLegalMaskedLoadStore()
237 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument
238 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) const { in isLegalMaskedGatherScatter() argument
246 if (isa<FixedVectorType>(DataType) || !ST->hasSVE()) in isLegalMaskedGatherScatter()
249 return isLegalElementTypeForSVE(DataType->getScalarType()); in isLegalMaskedGatherScatter()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h226 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
227 bool isLegalMaskedStore(Type *DataType, Align Alignment);
228 bool isLegalNTLoad(Type *DataType, Align Alignment);
229 bool isLegalNTStore(Type *DataType, Align Alignment);
230 bool isLegalMaskedGather(Type *DataType, Align Alignment);
231 bool isLegalMaskedScatter(Type *DataType, Align Alignment);
232 bool isLegalMaskedExpandLoad(Type *DataType);
233 bool isLegalMaskedCompressStore(Type *DataType);
234 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DX86TargetTransformInfo.cpp4498 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument
4499 return isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedStore()
4502 bool X86TTIImpl::isLegalNTLoad(Type *DataType, Align Alignment) { in isLegalNTLoad() argument
4503 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTLoad()
4513 bool X86TTIImpl::isLegalNTStore(Type *DataType, Align Alignment) { in isLegalNTStore() argument
4514 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTStore()
4518 if (ST->hasSSE4A() && (DataType->isFloatTy() || DataType->isDoubleTy())) in isLegalNTStore()
4603 bool X86TTIImpl::isLegalMaskedScatter(Type *DataType, Align Alignment) { in isLegalMaskedScatter() argument
4607 return isLegalMaskedGather(DataType, Alignment); in isLegalMaskedScatter()
4610 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h644 bool isLegalMaskedStore(Type *DataType, Align Alignment) const;
646 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const;
649 bool isLegalNTStore(Type *DataType, Align Alignment) const;
651 bool isLegalNTLoad(Type *DataType, Align Alignment) const;
654 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const;
656 bool isLegalMaskedGather(Type *DataType, Align Alignment) const;
659 bool isLegalMaskedCompressStore(Type *DataType) const;
661 bool isLegalMaskedExpandLoad(Type *DataType) const;
668 bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1511 virtual bool isLegalMaskedStore(Type *DataType, Align Alignment) = 0;
[all …]
H A DTargetTransformInfoImpl.h231 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { in isLegalMaskedStore() argument
235 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const { in isLegalMaskedLoad() argument
239 bool isLegalNTStore(Type *DataType, Align Alignment) const { in isLegalNTStore() argument
242 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTStore()
246 bool isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() argument
249 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTLoad()
253 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { in isLegalMaskedScatter() argument
257 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() argument
261 bool isLegalMaskedCompressStore(Type *DataType) const { return false; } in isLegalMaskedCompressStore() argument
263 bool isLegalMaskedExpandLoad(Type *DataType) const { return false; } in isLegalMaskedExpandLoad() argument
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexnames.c279 ACPI_OBJECT_TYPE DataType, in AcpiExGetNameString() argument
295 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType || in AcpiExGetNameString()
296 ACPI_TYPE_LOCAL_BANK_FIELD == DataType || in AcpiExGetNameString()
297 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType) in AcpiExGetNameString()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp375 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() argument
377 return TTIImpl->isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
380 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, in isLegalMaskedLoad() argument
382 return TTIImpl->isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedLoad()
385 bool TargetTransformInfo::isLegalNTStore(Type *DataType, in isLegalNTStore() argument
387 return TTIImpl->isLegalNTStore(DataType, Alignment); in isLegalNTStore()
390 bool TargetTransformInfo::isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() argument
391 return TTIImpl->isLegalNTLoad(DataType, Alignment); in isLegalNTLoad()
394 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, in isLegalMaskedGather() argument
396 return TTIImpl->isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp325 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { in isLegalMaskedStore() argument
326 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedStore()
329 bool HexagonTTIImpl::isLegalMaskedLoad(Type *DataType, Align /*Alignment*/) { in isLegalMaskedLoad() argument
330 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedLoad()
H A DHexagonTargetTransformInfo.h164 bool isLegalMaskedStore(Type *DataType, Align Alignment);
165 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAPValue.h303 UnionData, AddrLabelDiffData> DataType;
304 static const size_t DataSize = sizeof(DataType);
306 DataType Data;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h78 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DSystemZTargetTransformInfo.cpp359 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() argument
360 EVT VT = TLI->getValueType(DL, DataType); in hasDivRemOp()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dactbl1.h540 UINT8 DataType; member
593 UINT8 DataType; member
2122 UINT8 DataType;
2146 /* Values for DataType field above */
2108 UINT8 DataType; global() member
H A Dacinterp.h587 ACPI_OBJECT_TYPE DataType,
/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmtbinfo1.c589 {ACPI_DMT_UINT8, ACPI_CDAT1_OFFSET (DataType), "Data Type", 0},
636 {ACPI_DMT_UINT8, ACPI_CDAT5_OFFSET (DataType), "Data Type", 0},
1522 {ACPI_DMT_UINT8, ACPI_HMAT1_OFFSET (DataType), "Data Type", 0},
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCommandLine.rst1400 template <class DataType, bool ExternalStorage = false,
1401 class ParserClass = parser<DataType> >
1429 template <class DataType, class Storage = bool,
1430 class ParserClass = parser<DataType> >
1451 template <class DataType, class Storage = bool,
1452 class ParserClass = parser<DataType> >
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1472 bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment) const { in isLegalMaskedStore() argument
1474 TTI.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore()
1479 bool isLegalMaskedLoad(Type *DataType, Value *Ptr, Align Alignment) const { in isLegalMaskedLoad() argument
1481 TTI.isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedLoad()
1486 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { in isLegalMaskedScatter() argument
1487 return TTI.isLegalMaskedScatter(DataType, Alignment); in isLegalMaskedScatter()
1492 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() argument
1493 return TTI.isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwinnt.d3567 DWORD DataType;
/netbsd-src/external/gpl3/binutils/dist/binutils/po/
H A Dhr.po5424 msgid "Seg Offset Type SymVec DataType\n"
H A Dda.po4799 msgid "Seg Offset Type SymVec DataType\n"
H A Dzh_CN.po6471 msgid "Seg Offset Type SymVec DataType\n"
/netbsd-src/external/gpl3/binutils.old/dist/binutils/po/
H A Dhr.po5424 msgid "Seg Offset Type SymVec DataType\n"
H A Dzh_CN.po6471 msgid "Seg Offset Type SymVec DataType\n"

123