Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SOL] Allocate call arguments on a fixed stack object #84

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 34 additions & 9 deletions llvm/lib/Target/SBF/SBFISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@
//
//===----------------------------------------------------------------------===//

#include "SBFISelLowering.h"
#include "SBF.h"
#include "SBFRegisterInfo.h"
#include "SBFSubtarget.h"
#include "SBFTargetMachine.h"
#include "llvm/CodeGen/CallingConvLower.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
Expand All @@ -26,7 +23,6 @@
#include "llvm/IR/DiagnosticInfo.h"
#include "llvm/IR/DiagnosticPrinter.h"
#include "llvm/IR/IntrinsicsBPF.h" // TODO: jle.
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
Expand Down Expand Up @@ -466,9 +462,17 @@ SDValue SBFTargetLowering::LowerFormalArguments(
EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
EVT LocVT = VA.getLocVT();

unsigned Offset;
if (Subtarget->getHasDynamicFrames()) {
// In SBFv2, the arguments are stored on the start of the frame.
Offset = VA.getLocMemOffset() + PtrVT.getFixedSizeInBits() / 8;
} else {
Offset = SBFRegisterInfo::FrameLength - VA.getLocMemOffset();
}

// Arguments relative to SBF::R5
unsigned reg = MF.addLiveIn(SBF::R5, &SBF::GPRRegClass);
SDValue Const = DAG.getConstant(SBFRegisterInfo::FrameLength - VA.getLocMemOffset(), DL, MVT::i64);
SDValue Const = DAG.getConstant(Offset, DL, MVT::i64);
SDValue SDV = DAG.getCopyFromReg(Chain, DL, reg, getPointerTy(MF.getDataLayout()));
SDV = DAG.getNode(ISD::SUB, DL, PtrVT, SDV, Const);
SDV = DAG.getLoad(LocVT, DL, Chain, SDV, MachinePointerInfo());
Expand Down Expand Up @@ -587,7 +591,10 @@ SDValue SBFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
SDValue InFlag;

if (HasStackArgs) {
SDValue FramePtr = DAG.getCopyFromReg(Chain, CLI.DL, SBF::R10, getPointerTy(MF.getDataLayout()));
SDValue FramePtr = DAG.getCopyFromReg(Chain,
CLI.DL,
Subtarget->getRegisterInfo()->getFrameRegister(MF),
getPointerTy(MF.getDataLayout()));

// Stack arguments have to be walked in reverse order by inserting
// chained stores, this ensures their order is not changed by the scheduler
Expand All @@ -601,9 +608,27 @@ SDValue SBFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
assert(VA.isMemLoc());

EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
SDValue Const = DAG.getConstant(SBFRegisterInfo::FrameLength - VA.getLocMemOffset(), CLI.DL, MVT::i64);
SDValue PtrOff = DAG.getNode(ISD::SUB, CLI.DL, PtrVT, FramePtr, Const);
Chain = DAG.getStore(Chain, CLI.DL, Arg, PtrOff, MachinePointerInfo());
SDValue DstAddr;
MachinePointerInfo DstInfo;
if (Subtarget->getHasDynamicFrames()) {
// When dynamic frames are enabled, the frame size is only calculated
// after lowering instructions, so we must place arguments at the start
// of the frame.
int64_t Offset =
-(int64_t)VA.getLocMemOffset() - (PtrVT.getFixedSizeInBits() / 8);
LucasSte marked this conversation as resolved.
Show resolved Hide resolved
int FrameIndex = MF.getFrameInfo().CreateFixedObject(
VA.getLocVT().getFixedSizeInBits() / 8, Offset, false);
DstAddr = DAG.getFrameIndex(FrameIndex, PtrVT);
DstInfo = MachinePointerInfo::getFixedStack(MF, FrameIndex, Offset);
} else {
SDValue Const =
DAG.getConstant(SBFRegisterInfo::FrameLength - VA.getLocMemOffset(),
CLI.DL, MVT::i64);
DstAddr = DAG.getNode(ISD::SUB, CLI.DL, PtrVT, FramePtr, Const);
DstInfo = MachinePointerInfo();
}

Chain = DAG.getStore(Chain, CLI.DL, Arg, DstAddr, DstInfo);
}

// Pass the current stack frame pointer via SBF::R5, gluing the
Expand Down
32 changes: 32 additions & 0 deletions llvm/test/CodeGen/SBF/stack_args_v2.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
; RUN: llc -O2 -march=sbf -mcpu=sbfv2 < %s | FileCheck %s

; Function Attrs: nounwind uwtable
define i32 @foo(i32 %a, i32 %b, i32 %c) #0 {
; CHECK-LABEL: foo:
; CHECK: mov64 r4, 2
; CHECK: stxdw [r10 - 8], r4
; CHECK: mov64 r4, 3
; CHECK: stxdw [r10 - 16], r4
; CHECK: mov64 r5, r10
; CHECK: mov64 r4, 1
; CHECK: call bar
entry:
%call = tail call i32 @bar(i32 %a, i32 %b, i32 %c, i32 1, i32 2, i32 3) #3
ret i32 %call
}

; Function Attrs: nounwind uwtable
define i32 @bar(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f) #1 {
; CHECK-LABEL: bar:
; CHECK: ldxdw r1, [r5 - 8]
; CHECK: sub64 r0, r1
; CHECK: ldxdw r1, [r5 - 16]
; CHECK: add64 r0, r1
entry:
%g = add i32 %a, %b
%h = sub i32 %g, %c
%i = add i32 %h, %d
%j = sub i32 %i, %e
%k = add i32 %j, %f
ret i32 %k
}
Loading