[llvm] r185069 - [SystemZ] Allow LA and LARL to be rematerialized
Richard Sandiford
rsandifo at linux.vnet.ibm.com
Thu Jun 27 02:42:10 PDT 2013
Author: rsandifo
Date: Thu Jun 27 04:42:10 2013
New Revision: 185069
URL: http://llvm.org/viewvc/llvm-project?rev=185069&view=rev
Log:
[SystemZ] Allow LA and LARL to be rematerialized
Modified:
llvm/trunk/lib/Target/SystemZ/SystemZInstrInfo.td
llvm/trunk/test/CodeGen/SystemZ/frame-01.ll
llvm/trunk/test/CodeGen/SystemZ/la-01.ll
llvm/trunk/test/DebugInfo/SystemZ/variable-loc.ll
Modified: llvm/trunk/lib/Target/SystemZ/SystemZInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZInstrInfo.td?rev=185069&r1=185068&r2=185069&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZInstrInfo.td (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZInstrInfo.td Thu Jun 27 04:42:10 2013
@@ -417,7 +417,8 @@ def STRVG : StoreRXY<"strvg", 0xE32F, st
//===----------------------------------------------------------------------===//
// Load BDX-style addresses.
-let neverHasSideEffects = 1, Function = "la" in {
+let neverHasSideEffects = 1, isAsCheapAsAMove = 1, isReMaterializable = 1,
+ Function = "la" in {
let PairType = "12" in
def LA : InstRX<0x41, (outs GR64:$R1), (ins laaddr12pair:$XBD2),
"la\t$R1, $XBD2",
@@ -430,7 +431,8 @@ let neverHasSideEffects = 1, Function =
// Load a PC-relative address. There's no version of this instruction
// with a 16-bit offset, so there's no relaxation.
-let neverHasSideEffects = 1 in {
+let neverHasSideEffects = 1, isAsCheapAsAMove = 1, isMoveImm = 1,
+ isReMaterializable = 1 in {
def LARL : InstRIL<0xC00, (outs GR64:$R1), (ins pcrel32:$I2),
"larl\t$R1, $I2",
[(set GR64:$R1, pcrel32:$I2)]>;
Modified: llvm/trunk/test/CodeGen/SystemZ/frame-01.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/SystemZ/frame-01.ll?rev=185069&r1=185068&r2=185069&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/SystemZ/frame-01.ll (original)
+++ llvm/trunk/test/CodeGen/SystemZ/frame-01.ll Thu Jun 27 04:42:10 2013
@@ -3,6 +3,8 @@
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
+declare void @foo(i32 *)
+
; The CFA offset is 160 (the caller-allocated part of the frame) + 168.
define void @f1(i64 %x) {
; CHECK: f1:
@@ -108,3 +110,17 @@ define void @f7(i64 %x) {
store volatile i64 %x, i64* %ptr
ret void
}
+
+; Make sure that LA can be rematerialized.
+define void @f8() {
+; CHECK: f8:
+; CHECK: la %r2, 164(%r15)
+; CHECK: brasl %r14, foo at PLT
+; CHECK: la %r2, 164(%r15)
+; CHECK: brasl %r14, foo at PLT
+; CHECK: br %r14
+ %ptr = alloca i32
+ call void @foo(i32 *%ptr)
+ call void @foo(i32 *%ptr)
+ ret void
+}
Modified: llvm/trunk/test/CodeGen/SystemZ/la-01.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/SystemZ/la-01.ll?rev=185069&r1=185068&r2=185069&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/SystemZ/la-01.ll (original)
+++ llvm/trunk/test/CodeGen/SystemZ/la-01.ll Thu Jun 27 04:42:10 2013
@@ -15,6 +15,8 @@ define void @df() {
ret void
}
+declare void @foo(i32 *)
+
; Test a load of a fully-aligned external variable.
define i32 *@f1() {
; CHECK: f1:
@@ -78,3 +80,16 @@ define void() *@f8() {
; CHECK-NEXT: br %r14
ret void() *@df
}
+
+; Test that LARL can be rematerialized.
+define i32 @f9() {
+; CHECK: f9:
+; CHECK: larl %r2, d2
+; CHECK: brasl %r14, foo at PLT
+; CHECK: larl %r2, d2
+; CHECK: brasl %r14, foo at PLT
+; CHECK: br %r14
+ call void @foo(i32 *@d2)
+ call void @foo(i32 *@d2)
+ ret i32 0
+}
Modified: llvm/trunk/test/DebugInfo/SystemZ/variable-loc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/SystemZ/variable-loc.ll?rev=185069&r1=185068&r2=185069&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/SystemZ/variable-loc.ll (original)
+++ llvm/trunk/test/DebugInfo/SystemZ/variable-loc.ll Thu Jun 27 04:42:10 2013
@@ -8,8 +8,7 @@
;
; CHECK: main:
; CHECK: aghi %r15, -568
-; CHECK: la [[MAIN_ARR:%r[0-9]+]], 164(%r11)
-; CHECK: lgr %r2, [[MAIN_ARR]]
+; CHECK: la %r2, 164(%r11)
; CHECK: brasl %r14, populate_array at PLT
;
; Now check that the debugging information reflects this:
More information about the llvm-commits
mailing list