Skip to content

Commit

Permalink
[BPF] Remove exit-on-error flag in test (PR27766)
Browse files Browse the repository at this point in the history
The exit-on-error flag on the many_args1.ll test is needed to avoid an
unreachable in BPFTargetLowering::LowerCall. We can also avoid it by ignoring
any superfluous arguments to the call (i.e. any arguments after the first 5).

Fixes PR27766.

Differential Revision: http://reviews.llvm.org/D20471

v2 of r270419

llvm-svn: 270440
  • Loading branch information
rovka committed May 23, 2016
1 parent e73bf3c commit b2da611
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
11 changes: 7 additions & 4 deletions llvm/lib/Target/BPF/BPFISelLowering.cpp
Expand Up @@ -209,6 +209,8 @@ SDValue BPFTargetLowering::LowerFormalArguments(
return Chain;
}

const unsigned BPFTargetLowering::MaxArgs = 5;

SDValue BPFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
SmallVectorImpl<SDValue> &InVals) const {
SelectionDAG &DAG = CLI.DAG;
Expand Down Expand Up @@ -241,9 +243,8 @@ SDValue BPFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,

unsigned NumBytes = CCInfo.getNextStackOffset();

if (Outs.size() >= 6) {
if (Outs.size() > MaxArgs)
fail(CLI.DL, DAG, "too many args to ", Callee);
}

for (auto &Arg : Outs) {
ISD::ArgFlagsTy Flags = Arg.Flags;
Expand All @@ -257,10 +258,12 @@ SDValue BPFTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Chain = DAG.getCALLSEQ_START(
Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true), CLI.DL);

SmallVector<std::pair<unsigned, SDValue>, 5> RegsToPass;
SmallVector<std::pair<unsigned, SDValue>, MaxArgs> RegsToPass;

// Walk arg assignments
for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
for (unsigned i = 0,
e = std::min(static_cast<unsigned>(ArgLocs.size()), MaxArgs);
i != e; ++i) {
CCValAssign &VA = ArgLocs[i];
SDValue Arg = OutVals[i];

Expand Down
3 changes: 3 additions & 0 deletions llvm/lib/Target/BPF/BPFISelLowering.h
Expand Up @@ -58,6 +58,9 @@ class BPFTargetLowering : public TargetLowering {
SelectionDAG &DAG,
SmallVectorImpl<SDValue> &InVals) const;

// Maximum number of arguments to a call
static const unsigned MaxArgs;

// Lower a call into CALLSEQ_START - BPFISD:CALL - CALLSEQ_END chain
SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
SmallVectorImpl<SDValue> &InVals) const override;
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/BPF/many_args1.ll
@@ -1,4 +1,4 @@
; RUN: not llc -march=bpf -exit-on-error < %s 2> %t1
; RUN: not llc -march=bpf < %s 2> %t1
; RUN: FileCheck %s < %t1
; CHECK: too many args

Expand Down

0 comments on commit b2da611

Please sign in to comment.