Home
last modified time | relevance | path

Searched refs:isStructTy (Results 1 – 25 of 40) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSCCPSolver.cpp150 assert(!V->getType()->isStructTy() && "structs should use mergeInValue"); in markConstant()
169 assert(!V->getType()->isStructTy() &&
178 assert(!V->getType()->isStructTy() && "Should use getStructValueState"); in getValueState()
197 assert(V->getType()->isStructTy() && "Should use getValueState"); in getStructValueState()
418 assert(!V->getType()->isStructTy() && in getLatticeValueFor()
687 if (PN.getType()->isStructTy()) in visitPHINode()
738 if (!TrackedRetVals.empty() && !ResultOp->getType()->isStructTy()) { in visitReturnInst()
806 if (EVI.getType()->isStructTy()) in visitExtractValueInst()
819 if (AggVal->getType()->isStructTy()) { in visitExtractValueInst()
857 if (Val->getType()->isStructTy()) in visitInsertValueInst()
[all …]
H A DVNCoercion.cpp13 return Ty->isStructTy() || Ty->isArrayTy() || isa<ScalableVectorType>(Ty); in isFirstClassAggregateOrScalableType()
335 if (DepLI->getType()->isStructTy() || DepLI->getType()->isArrayTy()) in analyzeLoadFromClobberingLoad()
H A DLocal.cpp1526 return AI->getAllocatedType() && AI->getAllocatedType()->isStructTy(); in isStructure()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp154 } else if (ArgType->isStructTy() || ParamType->isStructTy()) { in createWrapper()
194 } else if (RtnType->isStructTy() || ExpectedRtnType->isStructTy()) { in createWrapper()
H A DWebAssemblyFastISel.cpp656 if (ArgTy->isStructTy() || ArgTy->isArrayTy()) in fastLowerArguments()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp105 if (V->getType()->isStructTy()) { in tryToReplaceWithConstant()
324 if (U->getType()->isStructTy()) { in findReturnsToZap()
621 assert(F->getReturnType()->isStructTy() && in runIPSCCP()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp486 if (SrcTy->isStructTy()) { in createCast()
487 assert(DestTy->isStructTy()); in createCast()
500 assert(!DestTy->isStructTy()); in createCast()
H A DDeadArgumentElimination.cpp967 assert((RetTy->isStructTy() || RetTy->isArrayTy()) && in RemoveDeadStuffFromFunction()
1042 assert(RetTy->isStructTy() || RetTy->isArrayTy()); in RemoveDeadStuffFromFunction()
H A DArgumentPromotion.cpp298 (ElTy->isStructTy() ? Type::getInt32Ty(F->getContext()) in doPromotion()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCCState.cpp44 if (Ty->isStructTy() && Ty->getStructNumElements() == 1 && in originalTypeIsF128()
H A DMipsFastISel.cpp1358 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) { in fastLowerArguments()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInlineAsm.cpp291 if (Ty->getReturnType()->isStructTy()) return false; in Verify()
H A DValue.cpp68 assert((VTy->isFirstClassType() || VTy->isVoidTy() || VTy->isStructTy()) && in Value()
H A DConstantFold.cpp708 if (Ty->isStructTy() || Ty->isArrayTy()) { in ConstantFoldCastInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DType.h223 bool isStructTy() const { return getTypeID() == StructTyID; } in isStructTy() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteOutArguments.cpp147 if ((SrcEltTy->isStructTy() && (SrcEltTy->getStructNumElements() != 1))) in checkArgumentUses()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp243 if (CstTy->isStructTy()) { in isConstantUsingVectorTy()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMCallLowering.cpp60 if (T->isStructTy()) { in isSupportedType()
H A DARMFastISel.cpp3034 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) in fastLowerArguments()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp1279 if (Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) in containsUndef()
1291 if (!(Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy())) in replaceUndef()
1300 if (Ty->isStructTy()) in replaceUndef()
H A DMicrosoftCXXABI.cpp2961 if (MemPtr->getType()->isStructTy()) in EmitMemberPointerIsNotNull()
2983 llvm::Constant *FirstField = Val->getType()->isStructTy() ? in MemberPointerConstantIsNull()
3124 if (MemPtr->getType()->isStructTy()) { in EmitMemberDataPointerAddress()
3420 if (MemPtr->getType()->isStructTy()) { in EmitLoadOfMemberFunctionPointer()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp813 if (Ty->isStructTy()) { in solveTypeName()
860 } else if (Ty->isStructTy()) { in solveDIType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp400 if (SrcTy->isStructTy()) { in ConstantFoldLoadThroughBitcast()
956 if (!Ty->isStructTy()) { in SymbolicallyEvaluateGEP()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp248 if (GN.PTy->isStructTy()) { in operator <<()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2493 if (NewRetTy->isStructTy()) in transformConstExprCastCall()

12