Skip to content

[SystemZ] Remove high inlining threshold multiplier. #106058

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 7, 2024

Conversation

JonPsson1
Copy link
Contributor

Due to recently reported problems with having the inlining threshold multiplier set fairly high (x3), this patch attempts to address the regressions seen after removing it.

  • The imagick regression needs continued activation of the existing handling for callees where an argument is used as a memcpy source. So with the multiplier set to 1, this gets a greater increment and the functions are still inlined.

  • perl: I found two functions that needed inlining that both access the same global many times which the caller also does. It seemed like a reasonable heuristic for inlining which was added after some various experiments.

  • povray: There is an important function which is accessing an Alloca of the caller multiple times. A similar heuristic is added for this case as with the global variables.

Results:

I tried this with both a multiplier of x1, and also x2. It seems that over all benchmarks, patch with x2 multplier gives best performance, but patch with x1 multiplier is still better than main with 2x multiplier.

Code size
Multiplier vs x3 (main)        main/x2         main/x1  patch/x2      patch/x1

./i500.perlbench_r      	 -7.4%   	-14.6%	   -6.2%   	-13.4%
./i505.mcf_r            	 +0.0%    	 +0.0%	   +0.0%    	 +0.0%
./i523.xalancbmk_r      	 -6.6%   	-11.1%	   -5.3%   	-10.5%
./i531.deepsjeng_r      	 +0.1%   	 -2.8%	   +0.1%   	 -2.8%
./i502.gcc_r            	 -5.4%   	-13.6%	   -3.4%   	-12.6%
./i520.omnetpp_r        	 -4.0%   	 -9.7%	   -2.7%   	 -8.7%
./i525.x264_r           	 -3.8%   	-12.3%	   +2.9%   	 -8.5%
./i541.leela_r          	 -1.0%   	 -9.1%	  +15.7%  	 +6.2%  *
./i557.xz_r             	 -3.1%   	 -6.2%	   -1.6%   	 -4.6%
./f507.cactuBSSN_r      	 -1.4%   	 -3.3%	   -0.7%   	 -2.9%
./f508.namd_r           	-21.8%  	-25.2%	  -21.8%  	-25.2%
./f510.parest_r         	 -3.4%   	-10.2%	   +3.1%   	 -8.8%
./f511.povray_r         	-12.5%  	-16.2%	   -5.9%   	-14.0%
./f519.lbm_r            	 +0.0%   	 +0.0%	   +0.0%   	 +0.0%
./f521.wrf_r            	 -0.0%   	 -0.2%	   -0.0%   	 -0.2%
./f526.blender_r        	 -2.5%   	 -6.5%	   -1.4%   	 -6.1%
./f527.cam4_r           	 -0.0%   	 -0.1%	   +0.0%   	 -0.1%
./f538.imagick_r        	 -2.0%   	 -5.2%	   -1.8%   	 -4.7%
./f544.nab_r            	 -6.1%   	-13.4%	   -4.9%   	-13.4%

Looks mostly the same with the patch applied, but leela is gaining in code size.

Runtime vs x3 (main)           main/x2          main/x1  patch/x2     patch/x1

f538.imagick_r                     +9%              +9%        -             -       
i500.perlbench_r                   +2%              +6%      +2%           +2%
f511.povray_r                        -              +4%      -1%         +0.5%       
f526.blender_r                     +2%              +4%      +3%           +2%
i541.leela_r                     +0.5%              +2%        -         +2.5%
i505.mcf_r                       -2.5%              -1%    -2.5%           -1%
...

Regarding the reported compiler regression, adjusting the multiplier still works also with the
patch applied (similar numbers as seen before w/out patch):

Patch, with InliningThresholdMultiplier = 1:

/usr/bin/time -v ./bin/opt -mtriple=systemz-unknown -mcpu=z16 -O3 -disable-output ./bad-42752cbe095.bc
        User time (seconds): 4.84
        Maximum resident set size (kbytes): 128208
        Average resident set size (kbytes): 0

Patch, with InliningThresholdMultiplier = 2:

/usr/bin/time -v ./bin/opt -mtriple=systemz-unknown -mcpu=z16 -O3 -disable-output ./bad-42752cbe095.bc
        User time (seconds): 9.35
        Maximum resident set size (kbytes): 160492
        Average resident set size (kbytes): 0

@llvmbot
Copy link
Member

llvmbot commented Aug 26, 2024

@llvm/pr-subscribers-backend-systemz

Author: Jonas Paulsson (JonPsson1)

Changes

Due to recently reported problems with having the inlining threshold multiplier set fairly high (x3), this patch attempts to address the regressions seen after removing it.

  • The imagick regression needs continued activation of the existing handling for callees where an argument is used as a memcpy source. So with the multiplier set to 1, this gets a greater increment and the functions are still inlined.

  • perl: I found two functions that needed inlining that both access the same global many times which the caller also does. It seemed like a reasonable heuristic for inlining which was added after some various experiments.

  • povray: There is an important function which is accessing an Alloca of the caller multiple times. A similar heuristic is added for this case as with the global variables.

Results:

I tried this with both a multiplier of x1, and also x2. It seems that over all benchmarks, patch with x2 multplier gives best performance, but patch with x1 multiplier is still better than main with 2x multiplier.

Code size
Multiplier vs x3 (main)        main/x2         main/x1  patch/x2      patch/x1

./i500.perlbench_r      	 -7.4%   	-14.6%	   -6.2%   	-13.4%
./i505.mcf_r            	 +0.0%    	 +0.0%	   +0.0%    	 +0.0%
./i523.xalancbmk_r      	 -6.6%   	-11.1%	   -5.3%   	-10.5%
./i531.deepsjeng_r      	 +0.1%   	 -2.8%	   +0.1%   	 -2.8%
./i502.gcc_r            	 -5.4%   	-13.6%	   -3.4%   	-12.6%
./i520.omnetpp_r        	 -4.0%   	 -9.7%	   -2.7%   	 -8.7%
./i525.x264_r           	 -3.8%   	-12.3%	   +2.9%   	 -8.5%
./i541.leela_r          	 -1.0%   	 -9.1%	  +15.7%  	 +6.2%  *
./i557.xz_r             	 -3.1%   	 -6.2%	   -1.6%   	 -4.6%
./f507.cactuBSSN_r      	 -1.4%   	 -3.3%	   -0.7%   	 -2.9%
./f508.namd_r           	-21.8%  	-25.2%	  -21.8%  	-25.2%
./f510.parest_r         	 -3.4%   	-10.2%	   +3.1%   	 -8.8%
./f511.povray_r         	-12.5%  	-16.2%	   -5.9%   	-14.0%
./f519.lbm_r            	 +0.0%   	 +0.0%	   +0.0%   	 +0.0%
./f521.wrf_r            	 -0.0%   	 -0.2%	   -0.0%   	 -0.2%
./f526.blender_r        	 -2.5%   	 -6.5%	   -1.4%   	 -6.1%
./f527.cam4_r           	 -0.0%   	 -0.1%	   +0.0%   	 -0.1%
./f538.imagick_r        	 -2.0%   	 -5.2%	   -1.8%   	 -4.7%
./f544.nab_r            	 -6.1%   	-13.4%	   -4.9%   	-13.4%

Looks mostly the same with the patch applied, but leela is gaining in code size.

Runtime vs x3 (main)           main/x2          main/x1  patch/x2     patch/x1

f538.imagick_r                     +9%              +9%        -             -       
i500.perlbench_r                   +2%              +6%      +2%           +2%
f511.povray_r                        -              +4%      -1%         +0.5%       
f526.blender_r                     +2%              +4%      +3%           +2%
i541.leela_r                     +0.5%              +2%        -         +2.5%
i505.mcf_r                       -2.5%              -1%    -2.5%           -1%
...

Regarding the reported compiler regression, adjusting the multiplier still works also with the
patch applied (similar numbers as seen before w/out patch):

Patch, with InliningThresholdMultiplier = 1:

/usr/bin/time -v ./bin/opt -mtriple=systemz-unknown -mcpu=z16 -O3 -disable-output ./bad-42752cbe095.bc
        User time (seconds): 4.84
        Maximum resident set size (kbytes): 128208
        Average resident set size (kbytes): 0

Patch, with InliningThresholdMultiplier = 2:

/usr/bin/time -v ./bin/opt -mtriple=systemz-unknown -mcpu=z16 -O3 -disable-output ./bad-42752cbe095.bc
        User time (seconds): 9.35
        Maximum resident set size (kbytes): 160492
        Average resident set size (kbytes): 0


Full diff: https://github.com/llvm/llvm-project/pull/106058.diff

3 Files Affected:

  • (modified) llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp (+74-5)
  • (modified) llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h (+1-1)
  • (modified) llvm/test/CodeGen/SystemZ/inline-thresh-adjust.ll (+136-3)
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp b/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
index 3cd1e05aa5d18c..44dd61c0fe20b2 100644
--- a/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
@@ -53,20 +53,89 @@ static bool isUsedAsMemCpySource(const Value *V, bool &OtherUse) {
   return UsedAsMemCpySource;
 }
 
+static void countNumMemAccesses(const Value *Ptr, unsigned &NumStores,
+                                unsigned &NumLoads, const Function *F) {
+  if (!isa<PointerType>(Ptr->getType()))
+    return;
+  for (const User *U : Ptr->users())
+    if (const Instruction *User = dyn_cast<Instruction>(U)) {
+      if (User->getParent()->getParent() == F) {
+        if (const auto *SI = dyn_cast<StoreInst>(User)) {
+          if (SI->getPointerOperand() == Ptr && !SI->isVolatile())
+            NumStores++;
+        }
+        else if (const auto *LI = dyn_cast<LoadInst>(User)) {
+          if (LI->getPointerOperand() == Ptr && !LI->isVolatile())
+            NumLoads++;
+        }
+        else if (const auto *GEP = dyn_cast<GetElementPtrInst>(User)) {
+          if (GEP->getPointerOperand() == Ptr)
+            countNumMemAccesses(GEP, NumStores, NumLoads, F);
+        }
+      }
+    }
+}
+
 unsigned SystemZTTIImpl::adjustInliningThreshold(const CallBase *CB) const {
   unsigned Bonus = 0;
+  const Function *Caller = CB->getParent()->getParent();
+  const Function *Callee = CB->getCalledFunction();
+  if (!Callee)
+    return 0;
+  const Module *M = Caller->getParent();
 
   // Increase the threshold if an incoming argument is used only as a memcpy
   // source.
-  if (Function *Callee = CB->getCalledFunction())
-    for (Argument &Arg : Callee->args()) {
-      bool OtherUse = false;
-      if (isUsedAsMemCpySource(&Arg, OtherUse) && !OtherUse)
-        Bonus += 150;
+  for (const Argument &Arg : Callee->args()) {
+    bool OtherUse = false;
+    if (isUsedAsMemCpySource(&Arg, OtherUse) && !OtherUse) {
+      Bonus = 1000;
+      break;
     }
+  }
+
+  // Give bonus for globals used much in both caller and callee.
+  std::set<const GlobalVariable *> CalleeGlobals;
+  std::set<const GlobalVariable *> CallerGlobals;
+  for (const GlobalVariable &Global : M->globals())
+    for (const User *U : Global.users())
+      if (const Instruction *User = dyn_cast<Instruction>(U)) {
+        if (User->getParent()->getParent() == Callee)
+          CalleeGlobals.insert(&Global);
+        if (User->getParent()->getParent() == Caller)
+          CallerGlobals.insert(&Global);
+      }
+  for (auto *GV : CalleeGlobals)
+    if (CallerGlobals.count(GV)) {
+      unsigned CalleeStores = 0, CalleeLoads = 0;
+      unsigned CallerStores = 0, CallerLoads = 0;
+      countNumMemAccesses(GV, CalleeStores, CalleeLoads, Callee);
+      countNumMemAccesses(GV, CallerStores, CallerLoads, Caller);
+      if ((CalleeStores + CalleeLoads) > 10 &&
+          (CallerStores + CallerLoads) > 10) {
+        Bonus = 1000;
+        break;
+      }
+    }
+
+  // Give bonus when Callee accesses an Alloca of Caller heavily.
+  unsigned NumStores = 0;
+  unsigned NumLoads = 0;
+  for (unsigned OpIdx = 0; OpIdx != Callee->arg_size(); ++OpIdx) {
+    Value    *CallerArg = CB->getArgOperand(OpIdx);
+    Argument *CalleeArg = Callee->getArg(OpIdx);
+    if (isa<AllocaInst>(CallerArg))
+      countNumMemAccesses(CalleeArg, NumStores, NumLoads, Callee);
+  }
+  if (NumLoads > 10)
+    Bonus += NumLoads * 50;
+  if (NumStores > 10)
+    Bonus += NumStores * 50;
+  Bonus = std::min(Bonus, unsigned(1000));
 
   LLVM_DEBUG(if (Bonus)
                dbgs() << "++ SZTTI Adding inlining bonus: " << Bonus << "\n";);
+
   return Bonus;
 }
 
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h b/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
index 47db8f132337fc..75edbd0c33bae7 100644
--- a/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
+++ b/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
@@ -38,7 +38,7 @@ class SystemZTTIImpl : public BasicTTIImplBase<SystemZTTIImpl> {
   /// \name Scalar TTI Implementations
   /// @{
 
-  unsigned getInliningThresholdMultiplier() const { return 3; }
+  unsigned getInliningThresholdMultiplier() const { return 1; }
   unsigned adjustInliningThreshold(const CallBase *CB) const;
 
   InstructionCost getIntImmCost(const APInt &Imm, Type *Ty,
diff --git a/llvm/test/CodeGen/SystemZ/inline-thresh-adjust.ll b/llvm/test/CodeGen/SystemZ/inline-thresh-adjust.ll
index fbcfffa0bb7719..f7c83c7af7021b 100644
--- a/llvm/test/CodeGen/SystemZ/inline-thresh-adjust.ll
+++ b/llvm/test/CodeGen/SystemZ/inline-thresh-adjust.ll
@@ -1,13 +1,13 @@
 ; RUN: opt < %s -mtriple=systemz-unknown -mcpu=z15 -passes='cgscc(inline)' -disable-output \
 ; RUN:   -debug-only=inline,systemztti 2>&1 | FileCheck %s
 ; REQUIRES: asserts
-;
+
 ; Check that the inlining threshold is incremented for a function using an
 ; argument only as a memcpy source.
-
+;
 ; CHECK: Inlining calls in: root_function
 ; CHECK:     Inlining {{.*}} Call:   call void @leaf_function_A(ptr %Dst)
-; CHECK:     ++ SZTTI Adding inlining bonus: 150
+; CHECK:     ++ SZTTI Adding inlining bonus: 1000
 ; CHECK:     Inlining {{.*}} Call:   call void @leaf_function_B(ptr %Dst, ptr %Src)
 
 define void @leaf_function_A(ptr %Dst)  {
@@ -30,3 +30,136 @@ entry:
 }
 
 declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg)
+
+; Check that the inlining threshold is incremented in case of multiple
+; accesses of a global variable by both caller and callee (which is true here
+; after the first call is inlined).
+;
+; CHECK: Inlining calls in: Caller1
+; CHECK: ++ SZTTI Adding inlining bonus: 1000
+
+@GlobV = external global i32
+
+define i64 @Caller1(i1 %cond1, i32 %0) #0 {
+entry:
+  br i1 %cond1, label %sw.bb3437, label %fake_end
+
+common.ret:                                       ; preds = %fake_end, %sw.bb3437
+  ret i64 0
+
+sw.bb3437:                                        ; preds = %entry
+  %call34652 = call i32 @Callee1(ptr null, i32 %0)
+  br label %common.ret
+
+fake_end:                                         ; preds = %entry
+  %call57981 = call i32 @Callee1(ptr null, i32 0)
+  br label %common.ret
+}
+
+define i32 @Callee1(ptr %rex, i32 %parenfloor) #0 {
+entry:
+  %cmp21 = icmp slt i32 %parenfloor, 0
+  br i1 %cmp21, label %for.body, label %for.end
+
+common.ret:                                       ; preds = %for.end, %for.body
+  ret i32 0
+
+for.body:                                         ; preds = %entry
+  %0 = load i32, ptr @GlobV, align 4
+  %inc = or i32 %0, 1
+  store i32 %inc, ptr @GlobV, align 4
+  store i64 0, ptr %rex, align 8
+  %1 = load i32, ptr @GlobV, align 4
+  %inc28 = or i32 %1, 1
+  store i32 %inc28, ptr @GlobV, align 4
+  store i64 0, ptr %rex, align 8
+  %2 = load i32, ptr @GlobV, align 4
+  %inc35 = or i32 %2, 1
+  store i32 %inc35, ptr @GlobV, align 4
+  store i32 0, ptr %rex, align 8
+  br label %common.ret
+
+for.end:                                          ; preds = %entry
+  store i32 0, ptr @GlobV, align 4
+  store i32 0, ptr %rex, align 8
+  %3 = load i32, ptr @GlobV, align 4
+  %inc42 = or i32 %3, 1
+  store i32 %inc42, ptr @GlobV, align 4
+  store i32 0, ptr %rex, align 8
+  %4 = load i32, ptr @GlobV, align 4
+  %inc48 = or i32 %4, 1
+  store i32 %inc48, ptr @GlobV, align 4
+  br label %common.ret
+}
+
+; Check that the inlining threshold is incremented for a function that is
+; accessing an alloca of the caller multiple times.
+;
+; CHECK: Inlining calls in: Caller2
+; CHECK: ++ SZTTI Adding inlining bonus: 550
+
+define i1 @Caller2() {
+entry:
+  %A = alloca [80 x i64], align 8
+  call void @Callee2(ptr %A)
+  ret i1 false
+}
+
+define void @Callee2(ptr nocapture readonly %Arg) {
+entry:
+  %nonzero = getelementptr i8, ptr %Arg, i64 48
+  %0 = load i32, ptr %nonzero, align 8
+  %tobool1.not = icmp eq i32 %0, 0
+  br i1 %tobool1.not, label %if.else38, label %if.then2
+
+if.then2:                                         ; preds = %entry
+  %1 = load i32, ptr %Arg, align 4
+  %tobool4.not = icmp eq i32 %1, 0
+  br i1 %tobool4.not, label %common.ret, label %if.then5
+
+if.then5:                                         ; preds = %if.then2
+  %2 = load double, ptr %Arg, align 8
+  %slab_den = getelementptr i8, ptr %Arg, i64 24
+  %3 = load double, ptr %slab_den, align 8
+  %mul = fmul double %2, %3
+  %cmp = fcmp olt double %mul, 0.000000e+00
+  br i1 %cmp, label %common.ret, label %if.end55
+
+common.ret:                                       ; preds = %if.end100, %if.else79, %if.end55, %if.else38, %if.then5, %if.then2
+  ret void
+
+if.else38:                                        ; preds = %entry
+  %4 = load double, ptr %Arg, align 8
+  %cmp52 = fcmp ogt double %4, 0.000000e+00
+  br i1 %cmp52, label %common.ret, label %if.end55
+
+if.end55:                                         ; preds = %if.else38, %if.then5
+  %arrayidx57 = getelementptr i8, ptr %Arg, i64 52
+  %5 = load i32, ptr %arrayidx57, align 4
+  %tobool58.not = icmp eq i32 %5, 0
+  br i1 %tobool58.not, label %common.ret, label %if.then59
+
+if.then59:                                        ; preds = %if.end55
+  %arrayidx61 = getelementptr i8, ptr %Arg, i64 64
+  %6 = load i32, ptr %arrayidx61, align 4
+  %tobool62.not = icmp eq i32 %6, 0
+  br i1 %tobool62.not, label %if.else79, label %if.end100
+
+if.else79:                                        ; preds = %if.then59
+  %arrayidx84 = getelementptr i8, ptr %Arg, i64 8
+  %7 = load double, ptr %arrayidx84, align 8
+  %arrayidx87 = getelementptr i8, ptr %Arg, i64 32
+  %8 = load double, ptr %arrayidx87, align 8
+  %mul88 = fmul double %7, %8
+  %9 = fcmp olt double %mul88, 0.000000e+00
+  br i1 %9, label %common.ret, label %if.end100
+
+if.end100:                                        ; preds = %if.else79, %if.then59
+  %arrayidx151 = getelementptr i8, ptr %Arg, i64 16
+  %10 = load double, ptr %arrayidx151, align 8
+  %arrayidx154 = getelementptr i8, ptr %Arg, i64 40
+  %11 = load double, ptr %arrayidx154, align 8
+  %mul155 = fmul double %10, %11
+  %cmp181 = fcmp olt double %mul155, 0.000000e+00
+  br label %common.ret
+}

@JonPsson1
Copy link
Contributor Author

Continuing from #94612

@JonPsson1 JonPsson1 requested a review from nikic August 26, 2024 11:23
Copy link

github-actions bot commented Aug 26, 2024

✅ With the latest revision this PR passed the C/C++ code formatter.

@JonPsson1
Copy link
Contributor Author

Tried patch/x2 (see table above), with adjustments for accesses (GV/Alloca) of 500 instead of 1000, which was similar in performance as with 1000, except that the big code increase in leela nearly all went away.

@JonPsson1
Copy link
Contributor Author

Rebase and finalization in the direction of removing the multiplier entirely.

@uweigand
Copy link
Member

This LGTM and should be OK to commit with the formatting issues fixed (and ideally we've have re-confirmed the performance results).

Copy link
Member

@uweigand uweigand left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@JonPsson1 JonPsson1 merged commit 76aa370 into llvm:main Oct 7, 2024
8 checks passed
@JonPsson1 JonPsson1 deleted the Inliner branch October 7, 2024 09:00
Kyvangka1610 added a commit to Kyvangka1610/llvm-project that referenced this pull request Oct 7, 2024
* commit 'FETCH_HEAD':
  [X86] getIntImmCostInst - pull out repeated Imm.getBitWidth() calls. NFC.
  [X86] Add test coverage for llvm#111323
  [Driver] Use empty multilib file in another test (llvm#111352)
  [clang][OpenMP][test] Use x86_64-linux-gnu triple for test referencing avx512f feature (llvm#111337)
  [doc] Fix Kaleidoscope tutorial chapter 3 code snippet and full listing discrepancies (llvm#111289)
  [Flang][OpenMP] Improve entry block argument creation and binding (llvm#110267)
  [x86] combineMul - handle 0/-1 KnownBits cases before MUL_IMM logic (REAPPLIED)
  [llvm-dis] Fix non-deterministic disassembly across multiple inputs (llvm#110988)
  [lldb][test] TestDataFormatterLibcxxOptionalSimulator.py: change order of ifdefs
  [lldb][test] Add libcxx-simulators test for std::optional (llvm#111133)
  [x86] combineMul - use computeKnownBits directly to find MUL_IMM constant splat. (REAPPLIED)
  Reland "[lldb][test] TestDataFormatterLibcxxStringSimulator.py: add new padding layout" (llvm#111123)
  Revert "[x86] combineMul - use computeKnownBits directly to find MUL_IMM constant splat."
  update_test_checks: fix a simple regression  (llvm#111347)
  [LegalizeVectorTypes] Always widen fabs (llvm#111298)
  [lsan] Make ReportUnsuspendedThreads return bool also for Fuchsia
  [mlir][vector] Add more tests for ConvertVectorToLLVM (6/n) (llvm#111121)
  [bazel] port 9144fed
  [SystemZ] Remove inlining threshold multiplier. (llvm#106058)
  [LegalizeVectorTypes] When widening don't check for libcalls if promoted (llvm#111297)
  [clang][Driver] Improve multilib custom error reporting (llvm#110804)
  [clang][Driver] Rename "FatalError" key to "Error" in multilib.yaml (llvm#110804)
  [LLVM][Maintainers] Update release managers (llvm#111164)
  [Clang][Driver] Add option to provide path for multilib's YAML config file (llvm#109640)
  [LoopVectorize] Remove redundant code in emitSCEVChecks (llvm#111132)
  [AMDGPU] Only emit SCOPE_SYS global_wb (llvm#110636)
  [ELF] Change Ctx::target to unique_ptr (llvm#111260)
  [ELF] Pass Ctx & to some free functions
  [RISCV] Only disassemble fcvtmod.w.d if the rounding mode is rtz. (llvm#111308)
  [Clang] Remove the special-casing for RequiresExprBodyDecl in BuildResolvedCallExpr() after fd87d76 (llvm#111277)
  [ELF] Pass Ctx & to InputFile
  [clang-format] Add AlignFunctionDeclarations to AlignConsecutiveDeclarations (llvm#108241)
  [AMDGPU] Support preloading hidden kernel arguments (llvm#98861)
  [ELF] Move static nextGroupId isInGroup to LinkerDriver
  [clangd] Add ArgumentLists config option under Completion (llvm#111322)
  [ELF] Pass Ctx & to SyntheticSections
  [ELF] Pass Ctx & to Symbols
  [ELF] Pass Ctx & to Symbols
  [ELF] getRelocTargetVA: pass Ctx and Relocation. NFC
  [clang-tidy] Avoid capturing a local variable in a static lambda in UseRangesCheck (llvm#111282)
  [VPlan] Use pointer to member 0 as VPInterleaveRecipe's pointer arg. (llvm#106431)
  [clangd] Simplify ternary expressions with std::optional::value_or (NFC) (llvm#111309)
  [libc++][format][2/3] Optimizes c-string arguments. (llvm#101805)
  [RISCV] Combine RVBUnary and RVKUnary into classes that are more similar to ALU(W)_r(r/i). NFC (llvm#111279)
  [ELF] Pass Ctx & to InputFiles
  [libc] GPU RPC interface: add return value to `rpc_host_call` (llvm#111288)

Signed-off-by: kyvangka1610 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants