From: Krzysztof Raszkowski Date: Fri, 7 Feb 2020 14:02:25 +0000 (+0100) Subject: gallium/swr: Fix llvm11 compilation issues X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff8265b64ff19380170b50b7016191c9d53fbd1e;p=mesa.git gallium/swr: Fix llvm11 compilation issues Reviewed-by: Jan Zielinski Tested-by: Marge Bot Part-of: --- diff --git a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py index 0cd7ae7a781..656a7fa3cd3 100644 --- a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py +++ b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py @@ -98,17 +98,26 @@ def parse_ir_builder(input_file): functions = [] lines = input_file.readlines() + deprecated = None idx = 0 while idx < len(lines) - 1: line = lines[idx].rstrip() idx += 1 + if deprecated is None: + deprecated = re.search(r'LLVM_ATTRIBUTE_DEPRECATED', line) + #match = re.search(r'\*Create', line) match = re.search(r'[\*\s]Create(\w*)\(', line) if match is not None: #print('Line: %s' % match.group(1)) + # Skip function if LLVM_ATTRIBUTE_DEPRECATED found before + if deprecated is not None: + deprecated = None + continue + if re.search(r'^\s*Create', line) is not None: func_sig = lines[idx-2].rstrip() + line else: @@ -168,6 +177,7 @@ def parse_ir_builder(input_file): func_name == 'CreateMaskedLoad' or func_name == 'CreateStore' or func_name == 'CreateMaskedStore' or + func_name == 'CreateFCmpHelper' or func_name == 'CreateElementUnorderedAtomicMemCpy'): ignore = True diff --git a/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp b/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp index 1418d65e2d0..e6aa57265b7 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp @@ -234,12 +234,12 @@ namespace SwrJit /// @param pVecPassthru - SIMD wide vector of values to load when lane is inactive Value* Builder::GATHER_PTR(Value* pVecSrcPtr, Value* pVecMask, Value* pVecPassthru) { - return MASKED_GATHER(pVecSrcPtr, 4, pVecMask, pVecPassthru); + return MASKED_GATHER(pVecSrcPtr, AlignType(4), pVecMask, pVecPassthru); } void Builder::SCATTER_PTR(Value* pVecDstPtr, Value* pVecSrc, Value* pVecMask) { - MASKED_SCATTER(pVecSrc, pVecDstPtr, 4, pVecMask); + MASKED_SCATTER(pVecSrc, pVecDstPtr, AlignType(4), pVecMask); } void Builder::Gather4(const SWR_FORMAT format, diff --git a/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h b/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h index fe4c5dd38a4..429d5779a4d 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h +++ b/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h @@ -84,7 +84,7 @@ virtual CallInst* MASKED_LOAD(Value* Ptr, Type* Ty = nullptr, MEM_CLIENT usage = MEM_CLIENT::MEM_CLIENT_INTERNAL) { - return IRB()->CreateMaskedLoad(Ptr, Align, Mask, PassThru, Name); + return IRB()->CreateMaskedLoad(Ptr, AlignType(Align), Mask, PassThru, Name); } virtual StoreInst* STORE(Value *Val, Value *Ptr, bool isVolatile = false, Type* Ty = nullptr, MEM_CLIENT usage = MEM_CLIENT::MEM_CLIENT_INTERNAL) @@ -96,7 +96,7 @@ virtual StoreInst* STORE(Value* Val, Value* BasePtr, const std::initializer_list virtual CallInst* MASKED_STORE(Value *Val, Value *Ptr, unsigned Align, Value *Mask, Type* Ty = nullptr, MEM_CLIENT usage = MEM_CLIENT::MEM_CLIENT_INTERNAL) { - return IRB()->CreateMaskedStore(Val, Ptr, Align, Mask); + return IRB()->CreateMaskedStore(Val, Ptr, AlignType(Align), Mask); } LoadInst* LOADV(Value* BasePtr, const std::initializer_list& offset, const llvm::Twine& name = ""); diff --git a/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h b/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h index 616c73b254a..242c98c9353 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h +++ b/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h @@ -29,6 +29,12 @@ ******************************************************************************/ #pragma once +#if LLVM_VERSION_MAJOR > 10 + typedef llvm::Align AlignType; +#else + typedef unsigned AlignType; +#endif + Constant* C(bool i); Constant* C(char i); Constant* C(uint8_t i); diff --git a/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp b/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp index fc5157e89c9..f9ae0e96b9c 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp @@ -48,6 +48,12 @@ namespace SwrJit { using namespace llvm; +#if LLVM_VERSION_MAJOR > 10 + typedef unsigned IntrinsicID; +#else + typedef Intrinsic::ID IntrinsicID; +#endif + enum TargetArch { AVX = 0, @@ -68,13 +74,13 @@ namespace SwrJit struct X86Intrinsic { - Intrinsic::ID intrin[NUM_WIDTHS]; + IntrinsicID intrin[NUM_WIDTHS]; EmuFunc emuFunc; }; // Map of intrinsics that haven't been moved to the new mechanism yet. If used, these get the // previous behavior of mapping directly to avx/avx2 intrinsics. - static std::map intrinsicMap = { + static std::map intrinsicMap = { {"meta.intrinsic.BEXTR_32", Intrinsic::x86_bmi_bextr_32}, {"meta.intrinsic.VPSHUFB", Intrinsic::x86_avx2_pshuf_b}, {"meta.intrinsic.VCVTPS2PH", Intrinsic::x86_vcvtps2ph_256}, @@ -313,13 +319,13 @@ namespace SwrJit Function* pFunc = pCallInst->getCalledFunction(); assert(pFunc); - auto& intrinsic = intrinsicMap2[mTarget][pFunc->getName()]; + auto& intrinsic = intrinsicMap2[mTarget][pFunc->getName().str()]; TargetWidth vecWidth; Type* pElemTy; GetRequestedWidthAndType(pCallInst, pFunc->getName(), &vecWidth, &pElemTy); // Check if there is a native intrinsic for this instruction - Intrinsic::ID id = intrinsic.intrin[vecWidth]; + IntrinsicID id = intrinsic.intrin[vecWidth]; if (id == DOUBLE) { // Double pump the next smaller SIMD intrinsic @@ -375,16 +381,16 @@ namespace SwrJit assert(pFunc); // Forward to the advanced support if found - if (intrinsicMap2[mTarget].find(pFunc->getName()) != intrinsicMap2[mTarget].end()) + if (intrinsicMap2[mTarget].find(pFunc->getName().str()) != intrinsicMap2[mTarget].end()) { return ProcessIntrinsicAdvanced(pCallInst); } - SWR_ASSERT(intrinsicMap.find(pFunc->getName()) != intrinsicMap.end(), + SWR_ASSERT(intrinsicMap.find(pFunc->getName().str()) != intrinsicMap.end(), "Unimplemented intrinsic %s.", - pFunc->getName()); + pFunc->getName().str()); - Intrinsic::ID x86Intrinsic = intrinsicMap[pFunc->getName()]; + Intrinsic::ID x86Intrinsic = intrinsicMap[pFunc->getName().str()]; Function* pX86IntrinFunc = Intrinsic::getDeclaration(B->JM()->mpCurrentModule, x86Intrinsic);