| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugSymbolRVASubsection.h | 28 using ArrayType = FixedStreamArray<support::ulittle32_t>; 36 ArrayType::Iterator begin() const { return RVAs.begin(); } in begin() 37 ArrayType::Iterator end() const { return RVAs.end(); } in end() 42 ArrayType RVAs;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGVTT.cpp | 45 llvm::ArrayType *ArrayType = in EmitVTTDefinition() local 46 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size()); in EmitVTTDefinition() 90 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents); in EmitVTTDefinition() 118 llvm::ArrayType *ArrayType = in GetAddrOfVTT() local 119 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size()); in GetAddrOfVTT() 123 Name, ArrayType, llvm::GlobalValue::ExternalLinkage, Align); in GetAddrOfVTT()
|
| H A D | CGExprConstant.cpp | 63 Ty = llvm::ArrayType::get(Ty, PadSize.getQuantity()); in getPadding() 326 if (isa<llvm::ArrayType>(CA->getType()) || in split() 393 EmitArrayConstant(CodeGenModule &CGM, llvm::ArrayType *DesiredType, 411 if (llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(DesiredTy)) { in buildFrom() 954 llvm::ArrayType::get(CommonElementType, NonzeroLength), in EmitArrayConstant() 964 FillerType = llvm::ArrayType::get(FillerType, TrailingZeroes); in EmitArrayConstant() 1074 Ty = llvm::ArrayType::get(Ty, NumPadBytes); in VisitCastExpr() 1234 llvm::ArrayType *Desired = in EmitArrayInitialization() 2154 llvm::ArrayType *Desired = in tryEmitPrivate() 2315 llvm::ArrayType *ATy = in EmitNullConstant() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SanitizerStats.cpp | 25 StatTy = ArrayType::get(Type::getInt8PtrTy(M->getContext()), 2); in SanitizerStatReport() 32 ArrayType *SanitizerStatReport::makeModuleStatsArrayTy() { in makeModuleStatsArrayTy() 33 return ArrayType::get(StatTy, Inits.size()); in makeModuleStatsArrayTy() 47 ArrayType *StatTy = ArrayType::get(Int8PtrTy, 2); in create()
|
| H A D | ModuleUtils.cpp | 57 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size()); in appendToGlobalArray() 100 ArrayType *ATy = ArrayType::get(Int8PtrTy, Init.size()); in appendToUsedList()
|
| H A D | CtorUtils.cpp | 36 ArrayType *ATy = in removeGlobalCtors() 37 ArrayType::get(OldCA->getType()->getElementType(), CAList.size()); in removeGlobalCtors()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 65 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() 66 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType() 70 createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) { in createLoweredInitializer() 126 ArrayType *AT = dyn_cast<ArrayType>(Ty); in isZeroLengthArray() 141 ArrayType *NewType = createLoweredType(GV->getValueType()); in lowerGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | SanitizerStats.h | 45 ArrayType *StatTy; 49 ArrayType *makeModuleStatsArrayTy();
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrOrderFile.cpp | 61 ArrayType *BufferTy; 62 ArrayType *MapTy; 76 ArrayType::get(Type::getInt64Ty(Ctx), INSTR_ORDER_FILE_BUFFER_SIZE); in createOrderFileData() 78 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions); in createOrderFileData()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DerivedTypes.h | 356 class ArrayType : public Type { 362 ArrayType(Type *ElType, uint64_t NumEl); 365 ArrayType(const ArrayType &) = delete; 366 ArrayType &operator=(const ArrayType &) = delete; 372 static ArrayType *get(Type *ElementType, uint64_t NumElements); 384 return cast<ArrayType>(this)->getNumElements(); in getArrayNumElements()
|
| H A D | Constants.h | 413 ConstantArray(ArrayType *T, ArrayRef<Constant *> Val); 420 static Constant *get(ArrayType *T, ArrayRef<Constant *> V); 423 static Constant *getImpl(ArrayType *T, ArrayRef<Constant *> V); 428 inline ArrayType *getType() const { 429 return cast<ArrayType>(Value::getType()); 712 Type *Ty = ArrayType::get(ElementTy, NumElements); 736 inline ArrayType *getType() const { 737 return cast<ArrayType>(Value::getType());
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TypeNodes.td | 62 def ArrayType : TypeNode<Type, 1>; 63 def ConstantArrayType : TypeNode<ArrayType>; 64 def IncompleteArrayType : TypeNode<ArrayType>; 65 def VariableArrayType : TypeNode<ArrayType>; 66 def DependentSizedArrayType : TypeNode<ArrayType>, AlwaysDependent;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Program.cpp | 127 QualType Ty = ASTCtx.getIncompleteArrayType(ElemTy, ArrayType::Normal, 0); in getOrCreateDummy() 306 if (auto ArrayType = Ty->getAsArrayTypeUnsafe()) { in createDescriptor() local 307 QualType ElemTy = ArrayType->getElementType(); in createDescriptor() 309 if (auto CAT = dyn_cast<ConstantArrayType>(ArrayType)) { in createDescriptor() 336 if (isa<IncompleteArrayType>(ArrayType)) { in createDescriptor()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Type.cpp | 112 if (auto *ATy = dyn_cast<ArrayType>(this)) { in isEmptyTy() 173 if (auto *ATy = dyn_cast<ArrayType>(this)) in isSizedDerivedType() 597 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) in ArrayType() function in ArrayType 604 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { in get() 608 ArrayType *&Entry = in get() 612 Entry = new (pImpl->Alloc) ArrayType(ElementType, NumElements); in get() 616 bool ArrayType::isValidElementType(Type *ElemTy) { in isValidElementType()
|
| H A D | Constants.cpp | 1086 if (auto *AT = dyn_cast<ArrayType>(getType())) in getSequentialElement() 1109 if (auto *AT = dyn_cast<ArrayType>(Ty)) in getElementCount() 1121 if (ArrayType *ATy = dyn_cast<ArrayType>(getType())) in getSequentialElement() 1144 if (auto *AT = dyn_cast<ArrayType>(Ty)) in getNumElements() 1156 if (ArrayType *ATy = dyn_cast<ArrayType>(getType())) in getSequentialElement() 2898 if (ArrayType *ATy = dyn_cast<ArrayType>(getType())) in getElementType() 2924 if (ArrayType *AT = dyn_cast<ArrayType>(getType())) in getNumElements() 2955 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) in getImpl() 2982 if (isa<ArrayType>(Ty)) { in getImpl() 3038 Type *Ty = ArrayType::get(ElementType, Elts.size()); in getFP() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtIterator.cpp | 26 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { in FindVA()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | Analysis.cpp | 56 else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { in ComputeLinearIndex() 105 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { in ComputeValueVTs() 150 if (ArrayType *ATy = dyn_cast<ArrayType>(&Ty)) { in computeValueLLTs() 388 if (ArrayType *AT = dyn_cast<ArrayType>(T)) in indexReallyValid()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 178 } else if (auto *DArrTy = dyn_cast<ArrayType>(DstTy)) { in areTypesIsomorphic() 179 if (DArrTy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements()) in areTypesIsomorphic() 299 return *Entry = ArrayType::get(ElementTypes[0], in get() 300 cast<ArrayType>(Ty)->getNumElements()); in get() 769 ArrayType *DAT = cast<ArrayType>(DGV->getValueType()); in computeTypeMapping() 770 ArrayType *SAT = cast<ArrayType>(SGV.getValueType()); in computeTypeMapping() 846 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements(); in getArrayElements() 888 Type *EltTy = cast<ArrayType>(TypeMap.get(SrcGV->getValueType())) in linkAppendingVarProto() 914 ArrayType *DstTy = cast<ArrayType>(DstGV->getValueType()); in linkAppendingVarProto() 936 ArrayType *NewType = ArrayType::get(EltTy, NewSize); in linkAppendingVarProto()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | BinaryStreamArray.h | 158 typedef VarStreamArray<ValueType, Extractor> ArrayType; typedef 161 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E, in VarStreamArrayIterator() 248 const ArrayType *Array{nullptr};
|
| /freebsd-13.1/sys/dev/hptrr/ |
| H A D | hptintf.h | 498 HPT_U8 ArrayType; /* array type */ member 525 HPT_U8 ArrayType; /* array type */ member 547 HPT_U8 ArrayType; /* array type */ member 580 HPT_U8 ArrayType; /* array type */ member 960 HPT_U8 ArrayType; /* 1-level array type */ member 976 HPT_U8 ArrayType; /* 1-level array type */ member 998 HPT_U8 ArrayType; /* 1-level array type */ member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetLoweringObjectFile.cpp | 124 return cast<ArrayType>(C->getType())->getNumElements() == 1; in IsNullTerminatedString() 261 if (ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) { in getKindForGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbolTypeArray.h | 21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::ArrayType)
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | DeadArgumentElimination.cpp | 336 else if (ArrayType *ATy = dyn_cast<ArrayType>(RetTy)) in NumRetVals() 351 else if (ArrayType *ATy = dyn_cast<ArrayType>(RetTy)) in getRetComponentType() 826 assert(isa<ArrayType>(RetTy) && "unexpected multi-value return"); in RemoveDeadStuffFromFunction() 827 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size()); in RemoveDeadStuffFromFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetObjectFile.cpp | 242 if (isa<ArrayType>(GType)) { in isGlobalInSmallSection() 308 const ArrayType *ATy = cast<const ArrayType>(Ty); in getSmallestAddressableSize()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerModuleLDSPass.cpp | 94 ArrayType *ATy = in removeFromUsedList() 95 ArrayType::get(Type::getInt8PtrTy(M.getContext()), Init.size()); in removeFromUsedList() 242 Type *ATy = ArrayType::get(Type::getInt8Ty(Ctx), Padding); in processUsedLDS()
|