[PATCH] D154047: [PowerPC][NFC] expose issue on absol-jump-table-enabled.ll (relocation-model=pic + ppc-use-absolute-jumptables)
Ting Wang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 29 01:25:09 PDT 2023
tingwang created this revision.
tingwang added reviewers: shchenz, nemanjai, kamaub, PowerPC.
tingwang added a project: LLVM.
Herald added a project: All.
tingwang requested review of this revision.
Herald added a subscriber: llvm-commits.
To me, it is expected that when ppc-use-absolute-jumptables is turned on, jump table entries should use MachineJumpTableInfo::EK_BlockAddress encoding.
However added test cases show otherwise...
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D154047
Files:
llvm/test/CodeGen/PowerPC/absol-jump-table-enabled.ll
Index: llvm/test/CodeGen/PowerPC/absol-jump-table-enabled.ll
===================================================================
--- llvm/test/CodeGen/PowerPC/absol-jump-table-enabled.ll
+++ llvm/test/CodeGen/PowerPC/absol-jump-table-enabled.ll
@@ -7,6 +7,39 @@
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -o - \
; RUN: -ppc-use-absolute-jumptables -ppc-asm-full-reg-names \
; RUN: -verify-machineinstrs %s | FileCheck %s -check-prefix=CHECK-BE
+; RUN: llc -mtriple=powerpc64-ibm-aix-xcoff -o - \
+; RUN: -ppc-use-absolute-jumptables -ppc-asm-full-reg-names \
+; RUN: -verify-machineinstrs %s | FileCheck %s -check-prefix=CHECK-AIX
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=true --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-A-PIC-LE
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=false --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-R-PIC-LE
+; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=true --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-A-PIC-BE
+; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=false --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-R-PIC-BE
+; RUN: llc -mtriple=powerpc64-ibm-aix-xcoff -o - \
+; RUN: -ppc-use-absolute-jumptables=true --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-A-PIC-AIX
+; RUN: llc -mtriple=powerpc64-ibm-aix-xcoff -o - \
+; RUN: -ppc-use-absolute-jumptables=false --relocation-model=pic < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-R-PIC-AIX
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=true --relocation-model=static < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-A-STATIC-LE
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=false --relocation-model=static < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-R-STATIC-LE
+; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=true --relocation-model=static < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-A-STATIC-BE
+; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -o - \
+; RUN: -ppc-use-absolute-jumptables=false --relocation-model=static < %s | FileCheck %s \
+; RUN: -check-prefix=CHECK-R-STATIC-BE
%struct.node = type { i8, ptr }
@@ -27,6 +60,44 @@
; CHECK-BE: mtctr r[[REG]]
; CHECK-BE: bctr
; CHECK-BE: blr
+;
+; CHECK-AIX-LABEL: jumpTableTest:
+; CHECK-AIX: # %bb.0: # %entry
+; CHECK-AIX: rldic r[[REG:[0-9]+]], r[[REG]], 2, 30
+; CHECK-AIX: lwax r[[REG]], r[[REG]], r[[REG1:[0-9]+]]
+; CHECK-AIX: mtctr r[[REG]]
+; CHECK-AIX: bctr
+; CHECK-AIX: blr
+;
+; CHECK-A-PIC-LE-LABEL: .LJTI0_0:
+; CHECK-A-PIC-LE: .long .LBB0_6-.LJTI0_0
+;
+; CHECK-R-PIC-LE-LABEL: .LJTI0_0:
+; CHECK-R-PIC-LE: .long .LBB0_6-.LJTI0_0
+;
+; CHECK-A-PIC-BE-LABEL: .LJTI0_0:
+; CHECK-A-PIC-BE: .long .LBB0_9-.LJTI0_0
+;
+; CHECK-R-PIC-BE-LABEL: .LJTI0_0:
+; CHECK-R-PIC-BE: .long .LBB0_9-.LJTI0_0
+;
+; CHECK-A-PIC-AIX-LABEL: L..JTI0_0:
+; CHECK-A-PIC-AIX: .vbyte 4, L..BB0_9-L..JTI0_0
+;
+; CHECK-R-PIC-AIX-LABEL: L..JTI0_0:
+; CHECK-R-PIC-AIX: .vbyte 4, L..BB0_9-L..JTI0_0
+;
+; CHECK-A-STATIC-LE-LABEL: .LJTI0_0:
+; CHECK-A-STATIC-LE: .quad .LBB0_6
+;
+; CHECK-R-STATIC-LE-LABEL: .LJTI0_0:
+; CHECK-R-STATIC-LE: .long .LBB0_6-.LJTI0_0
+;
+; CHECK-A-STATIC-BE-LABEL: .LJTI0_0:
+; CHECK-A-STATIC-BE: .quad .LBB0_9
+;
+; CHECK-R-STATIC-BE-LABEL: .LJTI0_0:
+; CHECK-R-STATIC-BE: .long .LBB0_9-.LJTI0_0
entry:
%cmp36 = icmp eq ptr %list, null
br i1 %cmp36, label %while.end, label %while.body
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154047.535669.patch
Type: text/x-patch
Size: 4111 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230629/fddda6de/attachment-0001.bin>
More information about the llvm-commits
mailing list