[llvm-branch-commits] Revert "[RISCV] Make X5 allocatable for JALR on CPUs without RAS" (PR #78946)

2024-01-21 Thread Wang Pengcheng via llvm-branch-commits
wangpc-pp wrote: Sorry for the noise, this is for testing spr tools. https://github.com/llvm/llvm-project/pull/78946 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-com

[llvm-branch-commits] Revert "[RISCV] Make X5 allocatable for JALR on CPUs without RAS" (PR #78946)

2024-01-21 Thread Wang Pengcheng via llvm-branch-commits
https://github.com/wangpc-pp closed https://github.com/llvm/llvm-project/pull/78946 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] Revert "[RISCV] Make X5 allocatable for JALR on CPUs without RAS" (PR #78946)

2024-01-21 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-risc-v Author: Wang Pengcheng (wangpc-pp) Changes This reverts commit 333963a9c75b2f79bff73227eae0c72747ac945e. --- Full diff: https://github.com/llvm/llvm-project/pull/78946.diff 4 Files Affected: - (modified) llvm/lib/Target/RISCV/RISCVFea

[llvm-branch-commits] Revert "[RISCV] Make X5 allocatable for JALR on CPUs without RAS" (PR #78946)

2024-01-21 Thread Wang Pengcheng via llvm-branch-commits
https://github.com/wangpc-pp created https://github.com/llvm/llvm-project/pull/78946 This reverts commit 333963a9c75b2f79bff73227eae0c72747ac945e. ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin

[llvm-branch-commits] [llvm] [MLGO] Remove absl dependency from scripts (PR #78880)

2024-01-21 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/78880 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] [MLGO] Remove absl dependency from scripts (PR #78880)

2024-01-21 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin approved this pull request. LGTM, some nits https://github.com/llvm/llvm-project/pull/78880 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-c

[llvm-branch-commits] [llvm] [MLGO] Remove absl dependency from scripts (PR #78880)

2024-01-21 Thread Mircea Trofin via llvm-branch-commits
@@ -156,10 +88,86 @@ def main(argv): ) -def entrypoint(): -multiprocessing.set_start_method("fork") -app.run(main) - - if __name__ == "__main__": -entrypoint() +parser = argparse.ArgumentParser( mtrofin wrote: nit: could you factor all t

[llvm-branch-commits] [llvm] [MLGO] Remove absl dependency from scripts (PR #78880)

2024-01-21 Thread Mircea Trofin via llvm-branch-commits
@@ -12,43 +12,38 @@ --default_args="" """ -from absl import app -from absl import flags -from absl import logging +import logging +import argparse mtrofin wrote: can the imports be in alphabetical order, or does `black` not do that for us? https://github.c