| /freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/ |
| H A D | CIRTypes.h | 36 bool isSized(mlir::Type ty);
|
| H A D | CIRTypes.td | 304 DeclareTypeInterfaceMethods<CIR_SizedTypeInterface, ["isSized"]>, 326 bool $cppClass::isSized() const { 327 return ::cir::isSized(getElementType()); 338 DeclareTypeInterfaceMethods<CIR_SizedTypeInterface, ["isSized"]>, 381 bool $cppClass::isSized() const { 382 return ::cir::isSized(getElementType());
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Type.cpp | 266 return ATy->getElementType()->isSized(Visited); in isSizedDerivedType() 269 return VTy->getElementType()->isSized(Visited); in isSizedDerivedType() 272 return TTy->getLayoutType()->isSized(Visited); in isSizedDerivedType() 274 return cast<StructType>(this)->isSized(Visited); in isSizedDerivedType() 661 bool StructType::isSized(SmallPtrSetImpl<Type*> *Visited) const { in isSized() function in StructType 687 if (!Ty->isSized(Visited)) in isSized() 978 LayoutType->isSized()) && in TargetTypeInfo()
|
| H A D | Value.cpp | 896 if (ArgMemTy->isSized()) { in getPointerDereferenceableBytes() 947 if (GV->getValueType()->isSized() && !GV->hasExternalWeakLinkage()) { in getPointerDereferenceableBytes() 973 if (ObjectType->isSized()) { in getPointerAlignment() 989 if (EltTy->isSized()) in getPointerAlignment()
|
| H A D | DataLayout.cpp | 769 assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!"); in getAlignment() 972 assert(ElemTy->isSized() && "Element type must be sized"); in getGEPIndicesForOffset()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LowLevelTypeUtils.cpp | 34 if (Ty.isSized() && !Ty.isScalableTargetExtTy()) { in getLLTForType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 462 if (!AI->isArrayAllocation() && ATy->isSized() && !ATy->isScalableTy()) in visitMemoryReference() 470 if (GTy->isSized()) in visitMemoryReference() 473 if (!BaseAlign && GTy->isSized()) in visitMemoryReference() 487 if (!Align && Ty && Ty->isSized()) in visitMemoryReference()
|
| H A D | GlobalsModRef.cpp | 753 if (GVType->isSized() && InputGVType->isSized() && in isNonEscapingGlobalNoAlias()
|
| H A D | MemoryBuiltins.cpp | 924 if (!MemoryTy|| !MemoryTy->isSized()) { in visitArgument() 985 if (!GV.getValueType()->isSized() || GV.hasExternalWeakLinkage() || in visitGlobalVariable() 1280 if (!I.getAllocatedType()->isSized()) in visitAllocaInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Reg2Mem.cpp | 42 if (!Inst.getType()->isSized()) in valueEscapes()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Type.h | 231 bool isSized(SmallPtrSetImpl<Type *> *Visited = nullptr) const { 236 return LLVMTy->isSized(&LLVMVisited);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsTargetObjectFile.cpp | 141 if (!Ty->isSized()) in IsGlobalInSmallSectionImpl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/CIR/Interfaces/ |
| H A D | CIRTypeInterfaces.td | 113 /*methodName=*/"isSized",
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVTargetObjectFile.cpp | 98 if (!Ty->isSized()) in isGlobalInSmallSection()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreTargetObjectFile.cpp | 122 if (TM.getCodeModel() == CodeModel::Small || !ObjType->isSized() || in SelectSectionForGlobal()
|
| H A D | XCoreLowerThreadLocal.cpp | 136 !GV->getType()->isSized() || isZeroLengthArray(GV->getType())) in lowerGlobal()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenTypes.cpp | 427 if (!cir::isSized(elemTy)) { in convertType() 441 if (!cir::isSized(elemTy)) { in convertType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetMachine.cpp | 114 if (!GV->getValueType()->isSized()) in isLargeGlobalValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 480 if (AI.getAllocatedType()->isSized()) { in visitAllocaInst() 500 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() || in visitAllocaInst() 849 if (!AI->getAllocatedType()->isSized()) in isObjectSizeLessThanOrEq() 936 if (!AllocTy || !AllocTy->isSized()) in canReplaceGEPIdxWithZero()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/ |
| H A D | CIRTypes.cpp | 24 bool cir::isSized(mlir::Type ty) { in isSized() function in cir 26 return sizedTy.isSized(); in isSized()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/FuzzMutate/ |
| H A D | OpDescriptor.h | 179 if (T->isSized()) in sizedPtrType()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Type.h | 308 bool isSized(SmallPtrSetImpl<Type*> *Visited = nullptr) const {
|
| H A D | DataLayout.h | 675 assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!"); in getTypeSizeInBits()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 637 if (!ResultType->isSized()) { in ConvertType() 651 if (!EltTy->isSized()) { in ConvertType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MemoryTaggingSupport.cpp | 195 if (AI.getAllocatedType()->isSized() && in getAllocaInterestingness()
|