Home
last modified time | relevance | path

Searched refs:funcTy (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/Reactor/
DLLVMReactorDebugInfo.cpp105 auto funcTy = diBuilder->createSubroutineType(diBuilder->getOrCreateTypeArray(EltTys)); in DebugInfo() local
114 funcTy, // type in DebugInfo()
210 auto funcTy = diBuilder->createSubroutineType(diBuilder->getOrCreateTypeArray({})); in syncScope() local
224 funcTy, // type in syncScope()
DLLVMReactor.cpp936 auto funcTy = llvm::FunctionType::get(voidTy, { sizetTy, i8PtrTy, i8PtrTy, intTy }, false); in createLoad() local
937 auto func = jit->module->getOrInsertFunction("__atomic_load", funcTy); in createLoad()
994 auto funcTy = llvm::FunctionType::get(voidTy, { voidPtrTy, sizetTy }, false); in createStore() local
995 auto func = jit->module->getOrInsertFunction("__msan_unpoison", funcTy); in createStore()
1034 auto funcTy = llvm::FunctionType::get(voidTy, { sizetTy, i8PtrTy, i8PtrTy, intTy }, false); in createStore() local
1035 auto func = jit->module->getOrInsertFunction("__atomic_store", funcTy); in createStore()
1099 auto funcTy = llvm::FunctionType::get(voidTy, { voidPtrTy, sizetTy }, false); in createMaskedStore() local
1100 auto func = jit->module->getOrInsertFunction("__msan_unpoison", funcTy); in createMaskedStore()
3396 …auto funcTy = llvm::FunctionType::get(T(Float::type()), llvm::ArrayRef<llvm::Type *>(T(Float::type… in TransformFloat4PerElement() local
3397 auto func = jit->module->getOrInsertFunction(name, funcTy); in TransformFloat4PerElement()
[all …]
/external/llvm-project/flang/lib/Optimizer/Dialect/
DFIROps.cpp370 mlir::FunctionType funcTy; in parseCoordinateOp() local
371 if (parser.parseType(funcTy)) in parseCoordinateOp()
373 allOperandTypes = funcTy.getInputs(); in parseCoordinateOp()
374 allResultTypes = funcTy.getResults(); in parseCoordinateOp()
379 if (funcTy.getNumInputs()) { in parseCoordinateOp()
382 mlir::TypeAttr::get(funcTy.getInput(0))); in parseCoordinateOp()
/external/llvm-project/mlir/include/mlir/Conversion/StandardToLLVM/
DConvertStandardToLLVM.h74 LLVM::LLVMType convertFunctionSignature(FunctionType funcTy, bool isVariadic,
/external/llvm-project/mlir/lib/IR/
DAsmPrinter.cpp1793 .Case<FunctionType>([&](FunctionType funcTy) { in printType() argument
1795 interleaveComma(funcTy.getInputs(), [&](Type ty) { printType(ty); }); in printType()
1797 ArrayRef<Type> results = funcTy.getResults(); in printType()
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMDialect.cpp123 auto funcTy = FunctionType::get({op.arraySize().getType()}, {op.getType()}, in printAllocaOp() local
131 p << " : " << funcTy; in printAllocaOp()
/external/llvm-project/mlir/lib/Conversion/StandardToLLVM/
DStandardToLLVM.cpp227 FunctionType funcTy, bool isVariadic, in convertFunctionSignature() argument
234 for (auto &en : llvm::enumerate(funcTy.getInputs())) { in convertFunctionSignature()
251 funcTy.getNumResults() == 0 in convertFunctionSignature()
253 : unwrap(packFunctionResults(funcTy.getResults())); in convertFunctionSignature()