[llvm] 775d2f3 - [LoongArch][MC] Support to get the FixupKind for BL (#72938)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 21 03:00:33 PST 2023
Author: ZhaoQi
Date: 2023-11-21T19:00:29+08:00
New Revision: 775d2f3201cf7fb657aaf58d1b37c130bd9eb8f9
URL: https://github.com/llvm/llvm-project/commit/775d2f3201cf7fb657aaf58d1b37c130bd9eb8f9
DIFF: https://github.com/llvm/llvm-project/commit/775d2f3201cf7fb657aaf58d1b37c130bd9eb8f9.diff
LOG: [LoongArch][MC] Support to get the FixupKind for BL (#72938)
Previously, bolt could not get FixupKind for BL correctly, because bolt
cannot get target-flags for BL. Here just add support in MCCodeEmitter.
Fixes https://github.com/llvm/llvm-project/pull/72826.
Added:
Modified:
llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchMCCodeEmitter.cpp
llvm/test/CodeGen/LoongArch/test_bl_fixupkind.mir
Removed:
################################################################################
diff --git a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchMCCodeEmitter.cpp b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchMCCodeEmitter.cpp
index fbe817a2b5475a2..45169becca37b75 100644
--- a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchMCCodeEmitter.cpp
+++ b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchMCCodeEmitter.cpp
@@ -259,6 +259,7 @@ LoongArchMCCodeEmitter::getExprOpValue(const MCInst &MI, const MCOperand &MO,
FixupKind = LoongArch::fixup_loongarch_b21;
break;
case LoongArch::B:
+ case LoongArch::BL:
FixupKind = LoongArch::fixup_loongarch_b26;
break;
}
diff --git a/llvm/test/CodeGen/LoongArch/test_bl_fixupkind.mir b/llvm/test/CodeGen/LoongArch/test_bl_fixupkind.mir
index 2c1d41be77112f0..70cd5fb8d7eb690 100644
--- a/llvm/test/CodeGen/LoongArch/test_bl_fixupkind.mir
+++ b/llvm/test/CodeGen/LoongArch/test_bl_fixupkind.mir
@@ -1,14 +1,10 @@
-## Tagged as "Expectedly Failed" until the following patch fix it
-# XFAIL: *
# RUN: llc --mtriple=loongarch64 --filetype=obj %s -o - | \
# RUN: llvm-objdump -d - | FileCheck %s
# REQUIRES: asserts
-## Check that bl can get fixupkind correctly.
-## When BL has target-flags(loongarch-call), there is no error. But without
-## this flag, an assertion error will appear:
-## Assertion `FixupKind != LoongArch::fixup_loongarch_invalid && "Unhandled expression!"' failed.
+## Check that bl can get fixupkind correctly, whether BL contains
+## target-flags(loongarch-call) or not.
--- |
target datalayout = "e-m:e-p:64:64-i64:64-i128:128-n64-S128"
More information about the llvm-commits
mailing list