llvm9.patch 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. Regressed by https://github.com/llvm/llvm-project/commit/2e97d2aa1bd3
  2. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::MatchFinder::addMatcher(clang::ast_matchers::internal::Matcher<clang::Stmt> const&, clang::ast_matchers::MatchFinder::MatchCallback*)
  3. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::MatchFinder::MatchCallback::~MatchCallback()
  4. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::MatchFinder::match(clang::ast_type_traits::DynTypedNode const&, clang::ASTContext&)
  5. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::MatchFinder::MatchFinder(clang::ast_matchers::MatchFinder::MatchFinderOptions)
  6. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::MatchFinder::~MatchFinder()
  7. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::cxxMethodDecl
  8. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::cxxRecordDecl
  9. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::unaryOperator
  10. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::cxxConstructExpr
  11. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::cxxConstructorDecl
  12. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::cxxOperatorCallExpr
  13. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::expr
  14. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::allOf
  15. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::anyOf
  16. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::eachOf
  17. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::unless
  18. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::varDecl
  19. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::callExpr
  20. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::castExpr
  21. ld: error: backend/src/libgbe.so: undefined reference to clang::ast_matchers::internal::hasAnyNameFunc(llvm::ArrayRef<llvm::StringRef const*>)
  22. ld: error: too many errors emitted, stopping now (use -error-limit=0 to see all errors)
  23. c++: error: linker command failed with exit code 1 (use -v to see invocation)
  24. Regressed by https://github.com/llvm/llvm-project/commit/13680223b9d8
  25. backend/src/llvm/llvm_intrinsic_lowering.cpp:80:19: error:
  26. no viable conversion from 'llvm::FunctionCallee' to 'llvm::Constant *'
  27. Constant* FCache = M->getOrInsertFunction(NewFn,
  28. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  29. backend/src/llvm/llvm_sampler_fix.cpp:85:18: error:
  30. no viable conversion from 'llvm::FunctionCallee' to 'llvm::Value *'
  31. ...Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  32. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. backend/src/llvm/llvm_sampler_fix.cpp:127:18: error:
  34. no viable conversion from 'llvm::FunctionCallee' to 'llvm::Value *'
  35. ...Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  36. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37. backend/src/llvm/llvm_profiling.cpp:166:27: error: no
  38. matching function for call to 'cast'
  39. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  40. ^~~~~~~~~~~~~~~~~~~~
  41. backend/src/llvm/llvm_device_enqueue.cpp:401:52: error:
  42. no matching function for call to 'cast'
  43. CallInst* newCI = builder.CreateCall(cast<llvm::Function>(mod->getOrInsertFunction(
  44. ^~~~~~~~~~~~~~~~~~~~
  45. /usr/local/llvm90/include/llvm/Support/Casting.h:256:44: note: candidate function [with X = llvm::Function, Y
  46. = llvm::FunctionCallee] not viable: expects an l-value for 1st argument
  47. inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  48. ^
  49. /usr/local/llvm90/include/llvm/Support/Casting.h:249:1: note: candidate template ignored: requirement
  50. '!is_simple_type<llvm::FunctionCallee>::value' was not satisfied [with X = llvm::Function, Y =
  51. llvm::FunctionCallee]
  52. cast(const Y &Val) {
  53. ^
  54. /usr/local/llvm90/include/llvm/Support/Casting.h:263:46: note: candidate template ignored: could not match
  55. 'Y *' against 'llvm::FunctionCallee'
  56. inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  57. ^
  58. /usr/local/llvm90/include/llvm/Support/Casting.h:271:1: note: candidate template ignored: could not match
  59. 'unique_ptr<type-parameter-0-1, default_delete<type-parameter-0-1> >' against 'llvm::FunctionCallee'
  60. cast(std::unique_ptr<Y> &&Val) {
  61. ^
  62. backend/src/llvm/llvm_profiling.cpp:188:25: error: no
  63. matching function for call to 'cast'
  64. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  65. ^~~~~~~~~~~~~~~~~~~~
  66. /usr/local/llvm90/include/llvm/Support/Casting.h:256:44: note: candidate function [with X = llvm::Function, Y
  67. = llvm::FunctionCallee] not viable: expects an l-value for 1st argument
  68. inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  69. ^
  70. /usr/local/llvm90/include/llvm/Support/Casting.h:249:1: note: candidate template ignored: requirement
  71. '!is_simple_type<llvm::FunctionCallee>::value' was not satisfied [with X = llvm::Function, Y =
  72. llvm::FunctionCallee]
  73. cast(const Y &Val) {
  74. ^
  75. /usr/local/llvm90/include/llvm/Support/Casting.h:263:46: note: candidate template ignored: could not match
  76. 'Y *' against 'llvm::FunctionCallee'
  77. inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  78. ^
  79. /usr/local/llvm90/include/llvm/Support/Casting.h:271:1: note: candidate template ignored: could not match
  80. 'unique_ptr<type-parameter-0-1, default_delete<type-parameter-0-1> >' against 'llvm::FunctionCallee'
  81. cast(std::unique_ptr<Y> &&Val) {
  82. ^
  83. --- backend/src/llvm/llvm_intrinsic_lowering.cpp.orig 2017-10-24 06:04:48 UTC
  84. +++ backend/src/llvm/llvm_intrinsic_lowering.cpp
  85. @@ -77,7 +77,11 @@ namespace gbe {
  86. std::vector<Type *> ParamTys;
  87. for (Value** I = ArgBegin; I != ArgEnd; ++I)
  88. ParamTys.push_back((*I)->getType());
  89. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  90. + FunctionCallee FCache = M->getOrInsertFunction(NewFn,
  91. +#else
  92. Constant* FCache = M->getOrInsertFunction(NewFn,
  93. +#endif
  94. FunctionType::get(RetTy, ParamTys, false));
  95. IRBuilder<> Builder(CI->getParent(), BasicBlock::iterator(CI));
  96. --- backend/src/llvm/llvm_sampler_fix.cpp.orig 2017-10-24 06:04:48 UTC
  97. +++ backend/src/llvm/llvm_sampler_fix.cpp
  98. @@ -82,7 +82,11 @@ namespace gbe {
  99. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 40
  100. Module *M = I->getParent()->getParent()->getParent();
  101. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 50
  102. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  103. + FunctionCallee samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  104. +#else
  105. Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  106. +#endif
  107. #else
  108. Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType(), nullptr);
  109. #endif
  110. @@ -124,7 +128,11 @@ namespace gbe {
  111. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 40
  112. Module *M = I->getParent()->getParent()->getParent();
  113. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 50
  114. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  115. + FunctionCallee samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  116. +#else
  117. Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType());
  118. +#endif
  119. #else
  120. Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", i32Ty, I->getOperand(0)->getType(), nullptr);
  121. #endif
  122. --- backend/src/llvm/llvm_profiling.cpp.orig 2017-10-24 06:04:48 UTC
  123. +++ backend/src/llvm/llvm_profiling.cpp
  124. @@ -163,10 +163,18 @@ namespace gbe
  125. // __gen_ocl_store_timestamp(int nth, int type);
  126. Value *Args[2] = {ConstantInt::get(intTy, pointNum++), ConstantInt::get(intTy, profilingType)};
  127. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 50
  128. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  129. + builder->CreateCall(module->getOrInsertFunction(
  130. +#else
  131. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  132. +#endif
  133. "__gen_ocl_calc_timestamp", Type::getVoidTy(module->getContext()),
  134. IntegerType::getInt32Ty(module->getContext()),
  135. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  136. + IntegerType::getInt32Ty(module->getContext())),
  137. +#else
  138. IntegerType::getInt32Ty(module->getContext()))),
  139. +#endif
  140. ArrayRef<Value*>(Args));
  141. #else
  142. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  143. @@ -185,10 +193,18 @@ namespace gbe
  144. Value *Args2[2] = {profilingBuf, ConstantInt::get(intTy, profilingType)};
  145. #if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 50
  146. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  147. + builder->CreateCall(module->getOrInsertFunction(
  148. +#else
  149. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  150. +#endif
  151. "__gen_ocl_store_profiling", Type::getVoidTy(module->getContext()),
  152. ptrTy,
  153. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  154. + IntegerType::getInt32Ty(module->getContext())),
  155. +#else
  156. IntegerType::getInt32Ty(module->getContext()))),
  157. +#endif
  158. ArrayRef<Value*>(Args2));
  159. #else
  160. builder->CreateCall(cast<llvm::Function>(module->getOrInsertFunction(
  161. --- backend/src/llvm/llvm_device_enqueue.cpp.orig 2017-10-24 06:04:48 UTC
  162. +++ backend/src/llvm/llvm_device_enqueue.cpp
  163. @@ -398,8 +398,13 @@ namespace gbe {
  164. std::vector<Type *> ParamTys;
  165. for (Value** iter = args.begin(); iter != args.end(); ++iter)
  166. ParamTys.push_back((*iter)->getType());
  167. +#if LLVM_VERSION_MAJOR * 10 + LLVM_VERSION_MINOR >= 90
  168. + CallInst* newCI = builder.CreateCall(mod->getOrInsertFunction(
  169. + "__gen_enqueue_kernel_slm", FunctionType::get(intTy, ParamTys, false)), args);
  170. +#else
  171. CallInst* newCI = builder.CreateCall(cast<llvm::Function>(mod->getOrInsertFunction(
  172. "__gen_enqueue_kernel_slm", FunctionType::get(intTy, ParamTys, false))), args);
  173. +#endif
  174. CI->replaceAllUsesWith(newCI);
  175. deadInsnSet.insert(CI);
  176. }