| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | Bitfields.h | 157 static_assert(std::is_unsigned<StorageType>::value, 161 using BP = BitPatterns<StorageType, Bitfield::Bits>; 178 static IntegerType extract(StorageType Packed) { 185 static StorageType test(StorageType Packed) { return Packed & Mask; } 253 template <typename Bitfield, typename StorageType> 254 static typename Bitfield::Type get(StorageType Packed) { 255 using I = bitfields_details::Impl<Bitfield, StorageType>; 261 template <typename Bitfield, typename StorageType> 262 static StorageType test(StorageType Packed) { 263 using I = bitfields_details::Impl<Bitfield, StorageType>; [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | DarwinSDKInfo.h | 34 using StorageType = uint64_t; 40 : Value(((StorageType(FromOS) * StorageType(llvm::Triple::LastOSType) + in OSEnvPair() 41 StorageType(FromEnv)) in OSEnvPair() 43 (StorageType(ToOS) * StorageType(llvm::Triple::LastOSType) + in OSEnvPair() 44 StorageType(ToEnv))) {} in OSEnvPair() 75 StorageType Value; 120 llvm::DenseMap<OSEnvPair::StorageType, 123 llvm::DenseMap<OSEnvPair::StorageType, 157 llvm::DenseMap<OSEnvPair::StorageType, Optional<RelatedTargetVersionMapping>>
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 367 DIGenericSubrange(LLVMContext &C, StorageType Storage, 565 DIFile(LLVMContext &C, StorageType Storage, 1075 DINodeArray Annotations, StorageType Storage, 1279 StorageType Storage, 1285 StorageType Storage, 1395 StorageType Storage, bool ShouldCreate = true); 1877 MDString *TargetFuncName, StorageType Storage, 2104 StorageType Storage, 3078 StorageType Storage, 3088 StorageType Storage, [all …]
|
| H A D | Metadata.h | 70 enum StorageType { Uniqued, Distinct, Temporary }; enum 86 Metadata(unsigned ID, StorageType Storage) in Metadata() 984 static size_t getAllocSize(StorageType Storage, size_t NumOps) { 991 static bool isResizable(StorageType Storage) { return Storage != Uniqued; } 1025 explicit Header(size_t NumOps, StorageType Storage); 1058 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, 1062 void *operator new(size_t Size, size_t NumOps, StorageType Storage); 1223 static T *storeImpl(T *N, StorageType Storage, StoreT &Store); 1224 template <class T> static T *storeImpl(T *N, StorageType Storage); 1333 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash, [all …]
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 348 DISubrange::DISubrange(LLVMContext &C, StorageType Storage, in DISubrange() 362 int64_t Lo, StorageType Storage, in getImpl() 469 StorageType Storage, in getImpl() 544 DIEnumerator::DIEnumerator(LLVMContext &C, StorageType Storage, in DIEnumerator() 658 Metadata *Rank, Metadata *Annotations, StorageType Storage, in getImpl() 762 StorageType Storage, in getImpl() 769 DIFile::DIFile(LLVMContext &C, StorageType Storage, in DIFile() 836 MDString *SDK, StorageType Storage, bool ShouldCreate) { in getImpl() 984 StorageType Storage, bool ShouldCreate) { in getImpl() 1024 StorageType Storage, in DILexicalBlockBase() [all …]
|
| H A D | MetadataImpl.h | 28 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl() 42 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl()
|
| H A D | Metadata.cpp | 524 void *MDNode::operator new(size_t Size, size_t NumOps, StorageType Storage) { in operator new() 541 MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, in MDNode() 569 MDNode::Header::Header(size_t NumOps, StorageType Storage) { in Header() 922 StorageType Storage, bool ShouldCreate) { in getImpl()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGRecordLayoutBuilder.cpp | 182 llvm::Type *StorageType); 313 llvm::Type *StorageType = nullptr; in lowerUnion() local 344 StorageType = FieldType; in lowerUnion() 352 if (!StorageType || in lowerUnion() 355 getSize(FieldType) > getSize(StorageType))) in lowerUnion() 356 StorageType = FieldType; in lowerUnion() 359 if (!StorageType) in lowerUnion() 363 if (LayoutSize < getSize(StorageType)) in lowerUnion() 364 StorageType = getByteArrayType(LayoutSize); in lowerUnion() 365 FieldTypes.push_back(StorageType); in lowerUnion() [all …]
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | Types.h | 75 template <typename ConcreteType, typename BaseType, typename StorageType, 77 using TypeBase = detail::StorageUserBase<ConcreteType, BaseType, StorageType,
|
| H A D | Attributes.h | 27 template <typename ConcreteType, typename BaseType, typename StorageType, 29 using AttrBase = detail::StorageUserBase<ConcreteType, BaseType, StorageType,
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | TemplateName.h | 197 using StorageType = variable 201 StorageType Storage;
|
| /llvm-project-15.0.7/clang/lib/Basic/ |
| H A D | DarwinSDKInfo.cpp | 84 llvm::DenseMap<OSEnvPair::StorageType, Optional<RelatedTargetVersionMapping>> in parseDarwinSDKSettingsJSON()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | RDFGraph.h | 719 using StorageType = std::vector<value_type>; member 721 bool isDelimiter(const StorageType::value_type &P, NodeId N = 0) const { 728 StorageType Stack;
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | TemplateName.cpp | 66 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 763 std::string StorageType = std::string(getStorageType(getType())); in writePCHReadDecls() local 765 if (StorageType != getType()) { in writePCHReadDecls() 767 OS << " SmallVector<" << StorageType << ", 4> " in writePCHReadDecls() 777 if (StorageType != getType()) { in writePCHReadDecls()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 1866 typedef Functor StorageType; 1880 typedef ResType(*StorageType)(ArgType); 1908 typedef typename CallableTraits<Callable>::StorageType CallableStorageType;
|