Home
last modified time | relevance | path

Searched refs:createStructTy (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/mlir/include/mlir/Dialect/LLVMIR/
DLLVMTypes.h190 static LLVMType createStructTy(MLIRContext *context,
195 static LLVMType createStructTy(MLIRContext *context, in createStructTy() function
197 return createStructTy(context, llvm::None, name); in createStructTy()
200 static LLVMType createStructTy(ArrayRef<LLVMType> elements,
206 return createStructTy(ele0.getContext(), elements, name, isPacked);
212 createStructTy(StringRef name, LLVMType elt1, Args... elts) { in createStructTy() function
215 return createStructTy(elt1.getContext(), fields, opt_name); in createStructTy()
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMTypes.cpp229 LLVMType LLVMType::createStructTy(MLIRContext *context, in createStructTy() function in LLVMType
/external/llvm-project/mlir/lib/Conversion/GPUCommon/
DConvertLaunchFuncToRuntimeCalls.cpp497 auto structType = LLVM::LLVMType::createStructTy(argumentTypes, StringRef()); in generateParamsArray()