Home
last modified time | relevance | path

Searched refs:StructTy (Results 226 – 250 of 319) sorted by relevance

12345678910>>...13

/dports/devel/llvm11/llvm-11.0.1.src/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp752 Type *StructTy = cast<PointerType>(A->getType())->getElementType(); in performCallSlotOptzn() local
753 if (!StructTy->isSized()) { in performCallSlotOptzn()
760 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp781 Type *StructTy = cast<PointerType>(A->getType())->getElementType(); in performCallSlotOptzn() local
782 if (!StructTy->isSized()) { in performCallSlotOptzn()
789 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn()
/dports/devel/llvm70/llvm-7.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h838 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
839 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h852 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
853 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm10/llvm-10.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h922 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
923 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h922 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
923 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h922 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
923 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h887 if (StructType* StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
888 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/include/llvm-c/
H A DCore.h393 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy);
394 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
395 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy);
/dports/devel/llvm90/llvm-9.0.1.src/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp873 Type *StructTy = cast<PointerType>(A->getType())->getElementType(); in performCallSlotOptzn() local
874 if (!StructTy->isSized()) { in performCallSlotOptzn()
881 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp870 Type *StructTy = cast<PointerType>(A->getType())->getElementType(); in performCallSlotOptzn() local
871 if (!StructTy->isSized()) { in performCallSlotOptzn()
878 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn()
/dports/devel/llvm70/llvm-7.0.1.src/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp870 Type *StructTy = cast<PointerType>(A->getType())->getElementType(); in performCallSlotOptzn() local
871 if (!StructTy->isSized()) { in performCallSlotOptzn()
878 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn()
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/lib/VMCore/
H A DCore.cpp302 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) { in LLVMCountStructElementTypes() argument
303 return unwrap<StructType>(StructTy)->getNumElements(); in LLVMCountStructElementTypes()
306 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) { in LLVMGetStructElementTypes() argument
307 StructType *Ty = unwrap<StructType>(StructTy); in LLVMGetStructElementTypes()
313 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) { in LLVMIsPackedStruct() argument
314 return unwrap<StructType>(StructTy)->isPacked(); in LLVMIsPackedStruct()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/unittests/Frontend/
H A DOpenMPIRBuilderTest.cpp964 Type *StructTy = StructType::get(I32Ty, I32PtrTy); in TEST_F() local
965 Type *StructPtrTy = StructTy->getPointerTo(); in TEST_F()
973 FunctionCallee RetStructFunc = M->getOrInsertFunction("ret_struct", StructTy); in TEST_F()
975 M->getOrInsertFunction("take_struct", VoidTy, StructTy); in TEST_F()
1024 EXPECT_EQ(Arg3Type->getPointerElementType(), StructTy); in TEST_F()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/unittests/Frontend/
H A DOpenMPIRBuilderTest.cpp964 Type *StructTy = StructType::get(I32Ty, I32PtrTy); in TEST_F() local
965 Type *StructPtrTy = StructTy->getPointerTo(); in TEST_F()
973 FunctionCallee RetStructFunc = M->getOrInsertFunction("ret_struct", StructTy); in TEST_F()
975 M->getOrInsertFunction("take_struct", VoidTy, StructTy); in TEST_F()
1024 EXPECT_EQ(Arg3Type->getPointerElementType(), StructTy); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1059 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1060 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1037 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1038 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1099 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1100 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm11/llvm-11.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1037 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1038 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1099 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1100 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1142 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1143 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1142 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1143 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1142 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1143 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1142 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1143 DstTy = StructTy->getElementType(0); in getInstructionLatency()
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1142 if (StructType *StructTy = dyn_cast<StructType>(DstTy)) in getInstructionLatency() local
1143 DstTy = StructTy->getElementType(0); in getInstructionLatency()

12345678910>>...13