[llvm] [SystemZ][XRay] Implement XRay instrumentation for SystemZ (PR #113253)
Kai Nacke via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 4 09:00:27 PST 2024
https://github.com/redstar updated https://github.com/llvm/llvm-project/pull/113253
>From 51ae69ce7fee155317db2a5f4c06e50cbd2b4dc9 Mon Sep 17 00:00:00 2001
From: Kai Nacke <kai.peter.nacke at ibm.com>
Date: Mon, 21 Oct 2024 22:32:13 -0400
Subject: [PATCH 1/5] [SystemZ][XRay] Implement XRay instrumentation for
SystemZ
Expands pseudo instructions PATCHABLE_FUNCTION_ENTER and
PATCHABLE_RET into a small instruction sequence which calls into
the XRay library.
---
llvm/lib/CodeGen/XRayInstrumentation.cpp | 3 +-
llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp | 88 +++++++++++++++++++
llvm/lib/Target/SystemZ/SystemZAsmPrinter.h | 12 +++
llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp | 6 ++
llvm/lib/Target/SystemZ/SystemZSubtarget.h | 2 +
llvm/test/CodeGen/SystemZ/xray-01.ll | 39 ++++++++
6 files changed, 149 insertions(+), 1 deletion(-)
create mode 100644 llvm/test/CodeGen/SystemZ/xray-01.ll
diff --git a/llvm/lib/CodeGen/XRayInstrumentation.cpp b/llvm/lib/CodeGen/XRayInstrumentation.cpp
index d7cc5d5c2b41dd..8f718d884cd067 100644
--- a/llvm/lib/CodeGen/XRayInstrumentation.cpp
+++ b/llvm/lib/CodeGen/XRayInstrumentation.cpp
@@ -241,7 +241,8 @@ bool XRayInstrumentation::runOnMachineFunction(MachineFunction &MF) {
prependRetWithPatchableExit(MF, TII, op);
break;
}
- case Triple::ArchType::ppc64le: {
+ case Triple::ArchType::ppc64le:
+ case Triple::ArchType::systemz: {
// PPC has conditional returns. Turn them into branch and plain returns.
InstrumentationOptions op;
op.HandleTailcall = false;
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
index ed400e9eceb9ca..dbb21d30edaf0c 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
@@ -14,6 +14,7 @@
#include "SystemZAsmPrinter.h"
#include "MCTargetDesc/SystemZInstPrinter.h"
#include "MCTargetDesc/SystemZMCExpr.h"
+#include "MCTargetDesc/SystemZMCTargetDesc.h"
#include "SystemZConstantPoolValue.h"
#include "SystemZMCInstLower.h"
#include "TargetInfo/SystemZTargetInfo.h"
@@ -661,6 +662,23 @@ void SystemZAsmPrinter::emitInstruction(const MachineInstr *MI) {
LowerPATCHPOINT(*MI, Lower);
return;
+ case TargetOpcode::PATCHABLE_FUNCTION_ENTER:
+ LowerPATCHABLE_FUNCTION_ENTER(*MI, Lower);
+ return ;
+
+ case TargetOpcode::PATCHABLE_RET:
+ LowerPATCHABLE_RET(*MI, Lower);
+ return ;
+
+ case TargetOpcode::PATCHABLE_FUNCTION_EXIT:
+ llvm_unreachable("PATCHABLE_FUNCTION_EXIT should never be emitted");
+
+ case TargetOpcode::PATCHABLE_TAIL_CALL:
+ // TODO: Define a trampoline `__xray_FunctionTailExit` and differentiate a
+ // normal function exit from a tail exit.
+ llvm_unreachable("Tail call is handled in the normal case. See comments "
+ "around this assert.");
+
case SystemZ::EXRL_Pseudo: {
unsigned TargetInsOpc = MI->getOperand(0).getImm();
Register LenMinus1Reg = MI->getOperand(1).getReg();
@@ -843,6 +861,76 @@ void SystemZAsmPrinter::LowerPATCHPOINT(const MachineInstr &MI,
getSubtargetInfo());
}
+void SystemZAsmPrinter::LowerPATCHABLE_FUNCTION_ENTER(
+ const MachineInstr &MI, SystemZMCInstLower &Lower) {
+ // .begin:
+ // j .end # -> stmg %r2, %r15, 16(%r15)
+ // nop
+ // llilf %2, FuncID
+ // brasl %r14, __xray_FunctionEntry at GOT
+ // .end:
+ //
+ // Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
+ // of instructions change.
+ MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
+ MCSymbol *EndOfSled = OutContext.createTempSymbol();
+ OutStreamer->emitLabel(BeginOfSled);
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::J)
+ .addExpr(MCSymbolRefExpr::create(EndOfSled, OutContext)));
+ EmitNop(OutContext, *OutStreamer, 2, getSubtargetInfo());
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::LLILF).addReg(SystemZ::R2D).addImm(0));
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::BRASL)
+ .addReg(SystemZ::R14D)
+ .addExpr(MCSymbolRefExpr::create(
+ OutContext.getOrCreateSymbol("__xray_FunctionEntry"),
+ MCSymbolRefExpr::VK_PLT, OutContext)));
+ OutStreamer->emitLabel(EndOfSled);
+ recordSled(BeginOfSled, MI, SledKind::FUNCTION_ENTER, 2);
+}
+
+void SystemZAsmPrinter::LowerPATCHABLE_RET(const MachineInstr &MI,
+ SystemZMCInstLower &Lower) {
+ unsigned OpCode = MI.getOperand(0).getImm();
+ MCSymbol *FallthroughLabel = nullptr;
+ if (OpCode == SystemZ::CondReturn) {
+ FallthroughLabel = OutContext.createTempSymbol();
+ int64_t Cond0 = MI.getOperand(1).getImm();
+ int64_t Cond1 = MI.getOperand(2).getImm();
+ EmitToStreamer(*OutStreamer, MCInstBuilder(SystemZ::BRC)
+ .addImm(Cond0)
+ .addImm(Cond1 ^ Cond0)
+ .addExpr(MCSymbolRefExpr::create(
+ FallthroughLabel, OutContext)));
+ }
+ // .begin:
+ // br %r14 # -> stmg %r2, %r15, 24(%r15)
+ // nop
+ // nop
+ // llilf %2,FuncID
+ // j __xray_FunctionEntry at GOT
+ //
+ // Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
+ // of instructions change.
+ MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
+ OutStreamer->emitLabel(BeginOfSled);
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::BR).addReg(SystemZ::R14D));
+ EmitNop(OutContext, *OutStreamer, 4, getSubtargetInfo());
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::LLILF).addReg(SystemZ::R2D).addImm(0));
+ EmitToStreamer(*OutStreamer,
+ MCInstBuilder(SystemZ::J)
+ .addExpr(MCSymbolRefExpr::create(
+ OutContext.getOrCreateSymbol("__xray_FunctionExit"),
+ MCSymbolRefExpr::VK_PLT, OutContext)));
+ if (FallthroughLabel)
+ OutStreamer->emitLabel(FallthroughLabel);
+ recordSled(BeginOfSled, MI, SledKind::FUNCTION_EXIT, 2);
+}
+
// The *alignment* of 128-bit vector types is different between the software
// and hardware vector ABIs. If the there is an externally visible use of a
// vector type in the module it should be annotated with an attribute.
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
index 303cce1a1b6581..2696702b44551d 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
@@ -111,6 +111,15 @@ class LLVM_LIBRARY_VISIBILITY SystemZAsmPrinter : public AsmPrinter {
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
const char *ExtraCode, raw_ostream &OS) override;
+ bool runOnMachineFunction(MachineFunction &MF) override {
+ AsmPrinter::runOnMachineFunction(MF);
+
+ // Emit the XRay table for this function.
+ emitXRayTable();
+
+ return false;
+ }
+
bool doInitialization(Module &M) override {
SM.reset();
return AsmPrinter::doInitialization(M);
@@ -124,6 +133,9 @@ class LLVM_LIBRARY_VISIBILITY SystemZAsmPrinter : public AsmPrinter {
void LowerFENTRY_CALL(const MachineInstr &MI, SystemZMCInstLower &MCIL);
void LowerSTACKMAP(const MachineInstr &MI);
void LowerPATCHPOINT(const MachineInstr &MI, SystemZMCInstLower &Lower);
+ void LowerPATCHABLE_FUNCTION_ENTER(const MachineInstr &MI,
+ SystemZMCInstLower &Lower);
+ void LowerPATCHABLE_RET(const MachineInstr &MI, SystemZMCInstLower &Lower);
void emitAttributes(Module &M);
};
} // end namespace llvm
diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
index 91db858f5cdaf6..d3de2c9cda7269 100644
--- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
@@ -30,6 +30,7 @@
#include "llvm/CodeGen/SlotIndexes.h"
#include "llvm/CodeGen/StackMaps.h"
#include "llvm/CodeGen/TargetInstrInfo.h"
+#include "llvm/CodeGen/TargetOpcodes.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/CodeGen/VirtRegMap.h"
#include "llvm/MC/MCInstrDesc.h"
@@ -1792,6 +1793,11 @@ unsigned SystemZInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const {
return MI.getOperand(1).getImm();
else if (MI.getOpcode() == SystemZ::FENTRY_CALL)
return 6;
+ if (MI.getOpcode() == TargetOpcode::PATCHABLE_FUNCTION_ENTER)
+ return 18;
+ if (MI.getOpcode() == TargetOpcode::PATCHABLE_RET)
+ return 18 +
+ (MI.getOperand(0).getImm() == SystemZ::CondReturn ? 4 : 0);
return MI.getDesc().getSize();
}
diff --git a/llvm/lib/Target/SystemZ/SystemZSubtarget.h b/llvm/lib/Target/SystemZ/SystemZSubtarget.h
index 5fa7c8f194ebf3..761bc525b59d35 100644
--- a/llvm/lib/Target/SystemZ/SystemZSubtarget.h
+++ b/llvm/lib/Target/SystemZ/SystemZSubtarget.h
@@ -106,6 +106,8 @@ class SystemZSubtarget : public SystemZGenSubtargetInfo {
bool GETTER() const { return ATTRIBUTE; }
#include "SystemZGenSubtargetInfo.inc"
+ bool isXRaySupported() const override { return true; }
+
bool isAddressedViaADA(const GlobalValue *GV) const;
// Return true if GV can be accessed using LARL for reloc model RM
diff --git a/llvm/test/CodeGen/SystemZ/xray-01.ll b/llvm/test/CodeGen/SystemZ/xray-01.ll
new file mode 100644
index 00000000000000..7a364df2066763
--- /dev/null
+++ b/llvm/test/CodeGen/SystemZ/xray-01.ll
@@ -0,0 +1,39 @@
+; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
+
+define signext i32 @foo() "function-instrument"="xray-always" {
+; CHECK-LABEL: .Lxray_sled_0:
+; CHECK: j .Ltmp[[#l:]]
+; CHECK: bcr 0, %r0
+; CHECK: llilf %r2, 0
+; CHECK: brasl %r14, __xray_FunctionEntry at PLT
+; CHECK: .Ltmp[[#l]]:
+ ret i32 0
+; CHECK-LABEL: .Lxray_sled_1:
+; CHECK: br %r14
+; CHECK: bc 0, 0
+; CHECK: llilf %r2, 0
+; CHECK: j __xray_FunctionExit at PLT
+}
+
+; CHECK: .section xray_instr_map,"ao", at progbits,foo
+; CHECK: .Lxray_sleds_start0:
+; CHECK: [[TMP1:.Ltmp[0-9]+]]:
+; CHECK: .quad .Lxray_sled_0-[[TMP1]]
+; CHECK: .quad .Lfunc_begin0-([[TMP1]]+8)
+; CHECK: .byte 0x00
+; CHECK: .byte 0x01
+; CHECK: .byte 0x02
+; CHECK: .space 13
+; CHECK: [[TMP2:.Ltmp[0-9]+]]:
+; CHECK: .quad .Lxray_sled_1-[[TMP2]]
+; CHECK: .quad .Lfunc_begin0-([[TMP2]]+8)
+; CHECK: .byte 0x01
+; CHECK: .byte 0x01
+; CHECK: .byte 0x02
+; CHECK: .space 13
+; CHECK: .Lxray_sleds_end0:
+; CHECK: .section xray_fn_idx,"ao", at progbits,foo
+; CHECK: .p2align 4
+; CHECK: .Lxray_fn_idx0:
+; CHECK: .quad .Lxray_sleds_start0-.Lxray_fn_idx0
+; CHECK: .quad 2
>From 4338dacb1e8e8a29ed9e0e3665eca6a1a123a62a Mon Sep 17 00:00:00 2001
From: Kai Nacke <kai.peter.nacke at ibm.com>
Date: Tue, 22 Oct 2024 08:37:00 -0400
Subject: [PATCH 2/5] Fix formatting.
---
llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp | 4 ++--
llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp | 3 +--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
index dbb21d30edaf0c..7f3e07384b3666 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
@@ -664,11 +664,11 @@ void SystemZAsmPrinter::emitInstruction(const MachineInstr *MI) {
case TargetOpcode::PATCHABLE_FUNCTION_ENTER:
LowerPATCHABLE_FUNCTION_ENTER(*MI, Lower);
- return ;
+ return;
case TargetOpcode::PATCHABLE_RET:
LowerPATCHABLE_RET(*MI, Lower);
- return ;
+ return;
case TargetOpcode::PATCHABLE_FUNCTION_EXIT:
llvm_unreachable("PATCHABLE_FUNCTION_EXIT should never be emitted");
diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
index d3de2c9cda7269..d553c72589f599 100644
--- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
@@ -1796,8 +1796,7 @@ unsigned SystemZInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const {
if (MI.getOpcode() == TargetOpcode::PATCHABLE_FUNCTION_ENTER)
return 18;
if (MI.getOpcode() == TargetOpcode::PATCHABLE_RET)
- return 18 +
- (MI.getOperand(0).getImm() == SystemZ::CondReturn ? 4 : 0);
+ return 18 + (MI.getOperand(0).getImm() == SystemZ::CondReturn ? 4 : 0);
return MI.getDesc().getSize();
}
>From 56f63976d40bf3d362328331257300ce37fd9f4f Mon Sep 17 00:00:00 2001
From: Kai Nacke <kai.peter.nacke at ibm.com>
Date: Thu, 24 Oct 2024 09:02:31 -0400
Subject: [PATCH 3/5] Call to vector version of trampoline if vector extension
is enabled
---
llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
index 7f3e07384b3666..dc1a956274bd61 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
@@ -872,6 +872,10 @@ void SystemZAsmPrinter::LowerPATCHABLE_FUNCTION_ENTER(
//
// Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
// of instructions change.
+ bool HasVectorFeature =
+ TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector);
+ MCSymbol *FuncEntry = OutContext.getOrCreateSymbol(
+ HasVectorFeature ? "__xray_FunctionEntryVec" : "__xray_FunctionEntry");
MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
MCSymbol *EndOfSled = OutContext.createTempSymbol();
OutStreamer->emitLabel(BeginOfSled);
@@ -885,8 +889,7 @@ void SystemZAsmPrinter::LowerPATCHABLE_FUNCTION_ENTER(
MCInstBuilder(SystemZ::BRASL)
.addReg(SystemZ::R14D)
.addExpr(MCSymbolRefExpr::create(
- OutContext.getOrCreateSymbol("__xray_FunctionEntry"),
- MCSymbolRefExpr::VK_PLT, OutContext)));
+ FuncEntry, MCSymbolRefExpr::VK_PLT, OutContext)));
OutStreamer->emitLabel(EndOfSled);
recordSled(BeginOfSled, MI, SledKind::FUNCTION_ENTER, 2);
}
@@ -910,10 +913,14 @@ void SystemZAsmPrinter::LowerPATCHABLE_RET(const MachineInstr &MI,
// nop
// nop
// llilf %2,FuncID
- // j __xray_FunctionEntry at GOT
+ // j __xray_FunctionExit at GOT
//
// Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
// of instructions change.
+ bool HasVectorFeature =
+ TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector);
+ MCSymbol *FuncExit = OutContext.getOrCreateSymbol(
+ HasVectorFeature ? "__xray_FunctionExitVec" : "__xray_FunctionExit");
MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
OutStreamer->emitLabel(BeginOfSled);
EmitToStreamer(*OutStreamer,
@@ -924,8 +931,7 @@ void SystemZAsmPrinter::LowerPATCHABLE_RET(const MachineInstr &MI,
EmitToStreamer(*OutStreamer,
MCInstBuilder(SystemZ::J)
.addExpr(MCSymbolRefExpr::create(
- OutContext.getOrCreateSymbol("__xray_FunctionExit"),
- MCSymbolRefExpr::VK_PLT, OutContext)));
+ FuncExit, MCSymbolRefExpr::VK_PLT, OutContext)));
if (FallthroughLabel)
OutStreamer->emitLabel(FallthroughLabel);
recordSled(BeginOfSled, MI, SledKind::FUNCTION_EXIT, 2);
>From 8dee9024a5dc5bdb4e3affc4348c1dfd5a9f49d5 Mon Sep 17 00:00:00 2001
From: Kai Nacke <kai.peter.nacke at ibm.com>
Date: Mon, 4 Nov 2024 11:59:31 -0500
Subject: [PATCH 4/5] Make sure soft-float is honored, and extend test
---
llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp | 6 ++++--
llvm/test/CodeGen/SystemZ/xray-01.ll | 11 ++++++++---
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
index dc1a956274bd61..f958828076cbfb 100644
--- a/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
@@ -873,7 +873,8 @@ void SystemZAsmPrinter::LowerPATCHABLE_FUNCTION_ENTER(
// Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
// of instructions change.
bool HasVectorFeature =
- TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector);
+ TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector) &&
+ !TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureSoftFloat);
MCSymbol *FuncEntry = OutContext.getOrCreateSymbol(
HasVectorFeature ? "__xray_FunctionEntryVec" : "__xray_FunctionEntry");
MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
@@ -918,7 +919,8 @@ void SystemZAsmPrinter::LowerPATCHABLE_RET(const MachineInstr &MI,
// Update compiler-rt/lib/xray/xray_s390x.cpp accordingly when number
// of instructions change.
bool HasVectorFeature =
- TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector);
+ TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureVector) &&
+ !TM.getMCSubtargetInfo()->hasFeature(SystemZ::FeatureSoftFloat);
MCSymbol *FuncExit = OutContext.getOrCreateSymbol(
HasVectorFeature ? "__xray_FunctionExitVec" : "__xray_FunctionExit");
MCSymbol *BeginOfSled = OutContext.createTempSymbol("xray_sled_", true);
diff --git a/llvm/test/CodeGen/SystemZ/xray-01.ll b/llvm/test/CodeGen/SystemZ/xray-01.ll
index 7a364df2066763..ac4c7b8493ba6d 100644
--- a/llvm/test/CodeGen/SystemZ/xray-01.ll
+++ b/llvm/test/CodeGen/SystemZ/xray-01.ll
@@ -1,18 +1,23 @@
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
+; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck --check-prefixes=CHECK,NOVECTOR %s
+; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 | FileCheck --check-prefixes=CHECK,VECTOR %s
+; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 -mattr=+soft-float | FileCheck --check-prefixes=CHECK,NOVECTOR %s
+
define signext i32 @foo() "function-instrument"="xray-always" {
; CHECK-LABEL: .Lxray_sled_0:
; CHECK: j .Ltmp[[#l:]]
; CHECK: bcr 0, %r0
; CHECK: llilf %r2, 0
-; CHECK: brasl %r14, __xray_FunctionEntry at PLT
+; NOVECTOR: brasl %r14, __xray_FunctionEntry at PLT
+; VECTOR: brasl %r14, __xray_FunctionEntryVec at PLT
; CHECK: .Ltmp[[#l]]:
ret i32 0
; CHECK-LABEL: .Lxray_sled_1:
; CHECK: br %r14
; CHECK: bc 0, 0
; CHECK: llilf %r2, 0
-; CHECK: j __xray_FunctionExit at PLT
+; NOVECtOR: j __xray_FunctionExit at PLT
+; VECTOR: j __xray_FunctionExitVec at PLT
}
; CHECK: .section xray_instr_map,"ao", at progbits,foo
>From 64716a5185bb6553e5413b23e1cfbb845d2a865f Mon Sep 17 00:00:00 2001
From: Kai Nacke <kai.peter.nacke at ibm.com>
Date: Mon, 4 Nov 2024 12:00:10 -0500
Subject: [PATCH 5/5] Rename test
---
llvm/test/CodeGen/SystemZ/{xray-01.ll => xray.ll} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename llvm/test/CodeGen/SystemZ/{xray-01.ll => xray.ll} (100%)
diff --git a/llvm/test/CodeGen/SystemZ/xray-01.ll b/llvm/test/CodeGen/SystemZ/xray.ll
similarity index 100%
rename from llvm/test/CodeGen/SystemZ/xray-01.ll
rename to llvm/test/CodeGen/SystemZ/xray.ll
More information about the llvm-commits
mailing list