| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/ |
| H A D | WebAssemblyTypeUtilities.h | 50 return Ty->isArrayTy() && in isWebAssemblyTableType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | PatternInit.cpp | 62 if (Ty->isArrayTy()) { in initializationPatternFor()
|
| H A D | CGDecl.cpp | 1314 if (Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) in containsUndef() 1326 if (!(Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy())) in replaceUndef() 1337 if (Ty->isArrayTy()) in replaceUndef()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | VNCoercion.cpp | 14 return Ty->isStructTy() || Ty->isArrayTy() || isa<ScalableVectorType>(Ty); in isFirstClassAggregateOrScalableType() 235 if (DepLI->getType()->isStructTy() || DepLI->getType()->isArrayTy()) in analyzeLoadFromClobberingLoad()
|
| H A D | Local.cpp | 1865 (AI->getAllocatedType() && AI->getAllocatedType()->isArrayTy()); in isArray()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64Arm64ECCallLowering.cpp | 294 if (T->isArrayTy()) { in canonicalizeThunkType() 410 if (Arg.getType()->isArrayTy() || Arg.getType()->isStructTy() || in buildExitThunk() 484 if (ArgTy->isArrayTy() || ArgTy->isStructTy() || in buildEntryThunk()
|
| H A D | AArch64PromoteConstant.cpp | 248 } else if (CstTy->isArrayTy()) in isConstantUsingVectorTy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Type.h | 252 bool isArrayTy() const { return getTypeID() == ArrayTyID; } in isArrayTy() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | DeadArgumentElimination.cpp | 970 assert((RetTy->isStructTy() || RetTy->isArrayTy()) && in removeDeadStuffFromFunction() 1045 assert(RetTy->isStructTy() || RetTy->isArrayTy()); in removeDeadStuffFromFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVGlobalRegistry.cpp | 335 assert(LLVMTy->isArrayTy()); in getOrCreateConsIntArray() 406 assert(LLVMTy->isArrayTy()); in getOrCreateConsIntArray() 688 if (Ty->isArrayTy()) { in createSPIRVType()
|
| H A D | SPIRVInstructionSelector.cpp | 1509 if (GVType->isArrayTy()) { in selectGlobalValue()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 287 if (eltType->isArrayTy()) { in isPaddingForCoerceAndExpand()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMCallLowering.cpp | 58 if (T->isArrayTy()) in isSupportedType()
|
| H A D | ARMFastISel.cpp | 3043 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) in fastLowerArguments()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
| H A D | RISCVCallLowering.cpp | 363 if (T->isArrayTy()) in isSupportedReturnType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
| H A D | AggressiveInstCombine.cpp | 542 if (!GEP->getSourceElementType()->isArrayTy()) in tryToRecognizeTableBasedCttz()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.h | 1115 return Ty->isArrayTy(); in functionArgumentNeedsConsecutiveRegisters()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyFastISel.cpp | 657 if (ArgTy->isStructTy() || ArgTy->isArrayTy()) in fastLowerArguments()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteAlloca.cpp | 699 assert(!AccessTy->isAggregateType() || AccessTy->isArrayTy()); in tryPromoteAllocaToVector()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetLibraryInfo.cpp | 1043 return (ParamTy->isArrayTy() && ParamTy->getArrayNumElements() == 2 && in isValidProtoForLibFunc()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsFastISel.cpp | 1352 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) { in fastLowerArguments()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 5093 if (T->isArrayTy()) { in classifyArgument() 5364 if (A->getType()->isArrayTy()) { in visitCallBase()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Constants.cpp | 1580 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) && in get()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 5047 bool IsArray = Ty->isArrayTy(); in parseFunctionBody() 5094 bool IsArray = CurTy->isArrayTy(); in parseFunctionBody()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | Attributor.h | 5414 if (!Ty->isArrayTy())
|