Skip to content

Commit 6be1578

Browse files
committed
[SystemZ] Recognize mrecord-mcount in backend
Emit the __mcount_loc section for all fentry calls. Review: Ulrich Weigand https://reviews.llvm.org/D71629
1 parent 63e2aa5 commit 6be1578

File tree

4 files changed

+60
-3
lines changed

4 files changed

+60
-3
lines changed

llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@
1616
#include "SystemZConstantPoolValue.h"
1717
#include "SystemZMCInstLower.h"
1818
#include "TargetInfo/SystemZTargetInfo.h"
19+
#include "llvm/BinaryFormat/ELF.h"
1920
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
2021
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
2122
#include "llvm/IR/Mangler.h"
2223
#include "llvm/MC/MCExpr.h"
2324
#include "llvm/MC/MCInstBuilder.h"
25+
#include "llvm/MC/MCSectionELF.h"
2426
#include "llvm/MC/MCStreamer.h"
2527
#include "llvm/Support/TargetRegistry.h"
2628

@@ -553,6 +555,16 @@ static unsigned EmitNop(MCContext &OutContext, MCStreamer &OutStreamer,
553555
void SystemZAsmPrinter::LowerFENTRY_CALL(const MachineInstr &MI,
554556
SystemZMCInstLower &Lower) {
555557
MCContext &Ctx = MF->getContext();
558+
if (MF->getFunction().hasFnAttribute("mrecord-mcount")) {
559+
MCSymbol *DotSym = OutContext.createTempSymbol();
560+
OutStreamer->PushSection();
561+
OutStreamer->SwitchSection(
562+
Ctx.getELFSection("__mcount_loc", ELF::SHT_PROGBITS, ELF::SHF_ALLOC));
563+
OutStreamer->EmitSymbolValue(DotSym, 8);
564+
OutStreamer->PopSection();
565+
OutStreamer->EmitLabel(DotSym);
566+
}
567+
556568
if (MF->getFunction().hasFnAttribute("mnop-mcount")) {
557569
EmitNop(Ctx, *OutStreamer, 6, getSubtargetInfo());
558570
return;

llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,12 @@ class SystemZDAGToDAGISel : public SelectionDAGISel {
347347

348348
bool runOnMachineFunction(MachineFunction &MF) override {
349349
const Function &F = MF.getFunction();
350-
if (F.hasFnAttribute("mnop-mcount") &&
351-
F.getFnAttribute("fentry-call").getValueAsString() != "true")
352-
report_fatal_error("mnop-mcount only supported with fentry-call");
350+
if (F.getFnAttribute("fentry-call").getValueAsString() != "true") {
351+
if (F.hasFnAttribute("mnop-mcount"))
352+
report_fatal_error("mnop-mcount only supported with fentry-call");
353+
if (F.hasFnAttribute("mrecord-mcount"))
354+
report_fatal_error("mrecord-mcount only supported with fentry-call");
355+
}
353356

354357
Subtarget = &MF.getSubtarget<SystemZSubtarget>();
355358
return SelectionDAGISel::runOnMachineFunction(MF);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
; RUN: llc %s -mtriple=s390x-linux-gnu -mcpu=z10 -o - -verify-machineinstrs \
2+
; RUN: | FileCheck %s
3+
4+
define void @test1() #0 {
5+
entry:
6+
ret void
7+
8+
; CHECK-LABEL: test1:
9+
; CHECK: .section __mcount_loc,"a",@progbits
10+
; CHECK: .quad .Ltmp0
11+
; CHECK: .text
12+
; CHECK: .Ltmp0:
13+
; CHECK: brasl %r0, __fentry__@PLT
14+
; CHECK: br %r14
15+
}
16+
17+
define void @test2() #1 {
18+
entry:
19+
ret void
20+
21+
; CHECK-LABEL: test2:
22+
; CHECK: .section __mcount_loc,"a",@progbits
23+
; CHECK: .quad .Ltmp1
24+
; CHECK: .text
25+
; CHECK: .Ltmp1:
26+
; CHECK: brcl 0, .Ltmp2
27+
; CHECK: .Ltmp2:
28+
; CHECK: br %r14
29+
}
30+
31+
attributes #0 = { "fentry-call"="true" "mrecord-mcount" }
32+
attributes #1 = { "fentry-call"="true" "mnop-mcount" "mrecord-mcount" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; RUN: not llc %s -mtriple=s390x-linux-gnu -o - 2>&1 | FileCheck %s
2+
;
3+
; CHECK: LLVM ERROR: mrecord-mcount only supported with fentry-call
4+
5+
define void @test1() #0 {
6+
entry:
7+
ret void
8+
}
9+
10+
attributes #0 = { "instrument-function-entry-inlined"="mcount" "mrecord-mcount" }

0 commit comments

Comments
 (0)