Searched refs:DataType (Results 1 - 18 of 18) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h99 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { argument
104 if (isa<FixedVectorType>(DataType) && ST->getMinRVVVectorSizeInBits() == 0)
107 return isLegalElementTypeForRVV(DataType->getScalarType());
110 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { argument
111 return isLegalMaskedLoadStore(DataType, Alignment);
113 bool isLegalMaskedStore(Type *DataType, Align Alignment) { argument
114 return isLegalMaskedLoadStore(DataType, Alignment);
117 bool isLegalMaskedGatherScatter(Type *DataType, Align Alignment) { argument
122 if (isa<FixedVectorType>(DataType) && ST->getMinRVVVectorSizeInBits() == 0)
125 return isLegalElementTypeForRVV(DataType
128 isLegalMaskedGather(Type *DataType, Align Alignment) argument
131 isLegalMaskedScatter(Type *DataType, Align Alignment) argument
[all...]
/netbsd-current/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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h226 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { argument
231 if (isa<FixedVectorType>(DataType) && !ST->useSVEForFixedLengthVectors())
234 return isLegalElementTypeForSVE(DataType->getScalarType());
237 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { argument
238 return isLegalMaskedLoadStore(DataType, Alignment);
241 bool isLegalMaskedStore(Type *DataType, Align Alignment) { argument
242 return isLegalMaskedLoadStore(DataType, Alignment);
245 bool isLegalMaskedGatherScatter(Type *DataType) const {
246 if (isa<FixedVectorType>(DataType) || !ST->hasSVE())
249 return isLegalElementTypeForSVE(DataType
252 isLegalMaskedGather(Type *DataType, Align Alignment) const argument
255 isLegalMaskedScatter(Type *DataType, Align Alignment) const argument
259 isLegalNTStore(Type *DataType, Align Alignment) argument
[all...]
/netbsd-current/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) { argument
4499 return isLegalMaskedLoad(DataType, Alignment);
4502 bool X86TTIImpl::isLegalNTLoad(Type *DataType, Align Alignment) { argument
4503 unsigned DataSize = DL.getTypeStoreSize(DataType);
4513 bool X86TTIImpl::isLegalNTStore(Type *DataType, Align Alignment) { argument
4514 unsigned DataSize = DL.getTypeStoreSize(DataType);
4518 if (ST->hasSSE4A() && (DataType->isFloatTy() || DataType->isDoubleTy()))
4603 bool X86TTIImpl::isLegalMaskedScatter(Type *DataType, Align Alignment) { argument
4607 return isLegalMaskedGather(DataType, Alignmen
4610 hasDivRemOp(Type *DataType, bool IsSigned) argument
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/executer/
H A Dexnames.c264 * PARAMETERS: DataType - Object type to be associated with this
279 ACPI_OBJECT_TYPE DataType,
295 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType ||
296 ACPI_TYPE_LOCAL_BANK_FIELD == DataType ||
297 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType)
314 * DataType is not a field name.
278 AcpiExGetNameString( ACPI_OBJECT_TYPE DataType, UINT8 *InAmlAddress, char **OutNameString, UINT32 *OutNameLength) argument
/netbsd-current/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, Alig
[all...]
H A DTargetTransformInfoImpl.h231 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { argument
235 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const { argument
239 bool isLegalNTStore(Type *DataType, Align Alignment) const { argument
242 unsigned DataSize = DL.getTypeStoreSize(DataType);
246 bool isLegalNTLoad(Type *DataType, Align Alignment) const { argument
249 unsigned DataSize = DL.getTypeStoreSize(DataType);
253 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { argument
257 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { argument
261 bool isLegalMaskedCompressStore(Type *DataType) const { return false; }
263 bool isLegalMaskedExpandLoad(Type *DataType) cons
265 hasDivRemOp(Type *DataType, bool IsSigned) const argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp375 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, argument
377 return TTIImpl->isLegalMaskedStore(DataType, Alignment);
380 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, argument
382 return TTIImpl->isLegalMaskedLoad(DataType, Alignment);
385 bool TargetTransformInfo::isLegalNTStore(Type *DataType, argument
387 return TTIImpl->isLegalNTStore(DataType, Alignment);
390 bool TargetTransformInfo::isLegalNTLoad(Type *DataType, Align Alignment) const { argument
391 return TTIImpl->isLegalNTLoad(DataType, Alignment);
394 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, argument
396 return TTIImpl->isLegalMaskedGather(DataType, Alignmen
399 isLegalMaskedScatter(Type *DataType, Align Alignment) const argument
412 hasDivRemOp(Type *DataType, bool IsSigned) const argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp325 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { argument
326 return HexagonMaskedVMem && ST.isTypeForHVX(DataType);
329 bool HexagonTTIImpl::isLegalMaskedLoad(Type *DataType, Align /*Alignment*/) { argument
330 return HexagonMaskedVMem && ST.isTypeForHVX(DataType);
H A DHexagonTargetTransformInfo.h164 bool isLegalMaskedStore(Type *DataType, Align Alignment);
165 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
/netbsd-current/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) { argument
360 EVT VT = TLI->getValueType(DL, DataType);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAPValue.h303 UnionData, AddrLabelDiffData> DataType; typedef in class:clang::APValue
304 static const size_t DataSize = sizeof(DataType);
306 DataType Data;
/netbsd-current/sys/external/bsd/acpica/dist/include/
H A Dactbl1.h540 UINT8 DataType; member in struct:acpi_cdat_dslbis
593 UINT8 DataType; member in struct:acpi_cdat_sslbis
2108 UINT8 DataType; member in struct:acpi_hmat_locality
2132 /* Values for DataType field above */
H A Dacinterp.h587 ACPI_OBJECT_TYPE DataType,
/netbsd-current/sys/external/bsd/acpica/dist/common/
H A Ddmtbinfo1.c486 {ACPI_DMT_UINT8, ACPI_CDAT1_OFFSET (DataType), "Data Type", 0},
533 {ACPI_DMT_UINT8, ACPI_CDAT5_OFFSET (DataType), "Data Type", 0},
1402 {ACPI_DMT_UINT8, ACPI_HMAT1_OFFSET (DataType), "Data Type", 0},
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1471 /// for the given \p DataType and kind of access to \p Ptr.
1472 bool isLegalMaskedStore(Type *DataType, Value *Ptr, Align Alignment) const { argument
1474 TTI.isLegalMaskedStore(DataType, Alignment);
1478 /// for the given \p DataType and kind of access to \p Ptr.
1479 bool isLegalMaskedLoad(Type *DataType, Value *Ptr, Align Alignment) const { argument
1481 TTI.isLegalMaskedLoad(DataType, Alignment);
1485 /// for the given \p DataType.
1486 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { argument
1487 return TTI.isLegalMaskedScatter(DataType, Alignment);
1491 /// for the given \p DataType
1492 isLegalMaskedGather(Type *DataType, Align Alignment) const argument
[all...]

Completed in 622 milliseconds