Skip to content

Commit d9198f6

Browse files
committed
[Clang][BPF]: Force sign/zero extension for return values in caller
Currently bpf supports calling kernel functions (x86_64, arm64, etc.) in bpf programs. Tejun discovered a problem where the x86_64 func return value (a unsigned char type) is stored in 8-bit subregister %al and the other 56-bits in %rax might be garbage. But based on current bpf ABI, the bpf program assumes the whole %rax holds the correct value as the callee is supposed to do necessary sign/zero extension. This mismatch between bpf and x86_64 caused the incorrect results. To resolve this problem, this patch forced caller to do needed sign/zero extension for 8/16-bit return values as well. Note that 32-bit return values already had sign/zero extension even without this patch. For example, for the test case attached to this patch: $ cat t.c _Bool bar_bool(void); unsigned char bar_char(void); short bar_short(void); int bar_int(void); int foo_bool(void) { if (bar_bool() != 1) return 0; else return 1; } int foo_char(void) { if (bar_char() != 10) return 0; else return 1; } int foo_short(void) { if (bar_short() != 10) return 0; else return 1; } int foo_int(void) { if (bar_int() != 10) return 0; else return 1; } Without this patch, generated call insns in IR looks like: %call = call zeroext i1 @bar_bool() %call = call zeroext i8 @bar_char() %call = call signext i16 @bar_short() %call = call i32 @bar_int() So it is assumed that zero extension has been done for return values of bar_bool()and bar_char(). Sign extension has been done for the return value of bar_short(). The return value of bar_int() does not have any assumption so caller needs to do necessary shifting to get correct 32bit values. With this patch, generated call insns in IR looks like: %call = call i1 @bar_bool() %call = call i8 @bar_char() %call = call i16 @bar_short() %call = call i32 @bar_int() There are no assumptions for return values of the above four function calls, so necessary shifting is necessary for all of them. The following is the objdump file difference for function foo_char(). Without this patch: 0000000000000010 <foo_char>: 2: 85 10 00 00 ff ff ff ff call -1 3: bf 01 00 00 00 00 00 00 r1 = r0 4: b7 00 00 00 01 00 00 00 r0 = 1 5: 15 01 01 00 0a 00 00 00 if r1 == 10 goto +1 <LBB1_2> 6: b7 00 00 00 00 00 00 00 r0 = 0 0000000000000038 <LBB1_2>: 7: 95 00 00 00 00 00 00 00 exit With this patch: 0000000000000018 <foo_char>: 3: 85 10 00 00 ff ff ff ff call -1 4: bf 01 00 00 00 00 00 00 r1 = r0 5: 57 01 00 00 ff 00 00 00 r1 &= 255 6: b7 00 00 00 01 00 00 00 r0 = 1 7: 15 01 01 00 0a 00 00 00 if r1 == 10 goto +1 <LBB1_2> 8: b7 00 00 00 00 00 00 00 r0 = 0 0000000000000048 <LBB1_2>: 9: 95 00 00 00 00 00 00 00 exit The zero extension of the return 'char' value is done here. Differential Revision: https://reviews.llvm.org/D131598
1 parent 53ce22e commit d9198f6

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

clang/lib/CodeGen/TargetInfo.cpp

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11499,6 +11499,56 @@ class CSKYTargetCodeGenInfo : public TargetCodeGenInfo {
1149911499
};
1150011500
} // end anonymous namespace
1150111501

11502+
//===----------------------------------------------------------------------===//
11503+
// BPF ABI Implementation
11504+
//===----------------------------------------------------------------------===//
11505+
11506+
namespace {
11507+
11508+
class BPFABIInfo : public DefaultABIInfo {
11509+
public:
11510+
BPFABIInfo(CodeGenTypes &CGT) : DefaultABIInfo(CGT) {}
11511+
11512+
ABIArgInfo classifyReturnType(QualType RetTy) const {
11513+
if (RetTy->isVoidType())
11514+
return ABIArgInfo::getIgnore();
11515+
11516+
if (isAggregateTypeForABI(RetTy))
11517+
return getNaturalAlignIndirect(RetTy);
11518+
11519+
// Treat an enum type as its underlying type.
11520+
if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
11521+
RetTy = EnumTy->getDecl()->getIntegerType();
11522+
11523+
ASTContext &Context = getContext();
11524+
if (const auto *EIT = RetTy->getAs<BitIntType>())
11525+
if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty))
11526+
return getNaturalAlignIndirect(RetTy);
11527+
11528+
// Caller will do necessary sign/zero extension.
11529+
return ABIArgInfo::getDirect();
11530+
}
11531+
11532+
void computeInfo(CGFunctionInfo &FI) const override {
11533+
FI.getReturnInfo() = classifyReturnType(FI.getReturnType());
11534+
for (auto &I : FI.arguments())
11535+
I.info = classifyArgumentType(I.type);
11536+
}
11537+
11538+
};
11539+
11540+
class BPFTargetCodeGenInfo : public TargetCodeGenInfo {
11541+
public:
11542+
BPFTargetCodeGenInfo(CodeGenTypes &CGT)
11543+
: TargetCodeGenInfo(std::make_unique<BPFABIInfo>(CGT)) {}
11544+
11545+
const BPFABIInfo &getABIInfo() const {
11546+
return static_cast<const BPFABIInfo&>(TargetCodeGenInfo::getABIInfo());
11547+
}
11548+
};
11549+
11550+
}
11551+
1150211552
//===----------------------------------------------------------------------===//
1150311553
// Driver code
1150411554
//===----------------------------------------------------------------------===//
@@ -11727,6 +11777,9 @@ const TargetCodeGenInfo &CodeGenModule::getTargetCodeGenInfo() {
1172711777
: hasFP64 ? 64
1172811778
: 32));
1172911779
}
11780+
case llvm::Triple::bpfeb:
11781+
case llvm::Triple::bpfel:
11782+
return SetCGInfo(new BPFTargetCodeGenInfo(Types));
1173011783
}
1173111784
}
1173211785

clang/test/CodeGen/bpf-abiinfo.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// REQUIRES: bpf-registered-target
2+
// RUN: %clang_cc1 -triple bpf -O2 -emit-llvm -disable-llvm-passes %s -o - | FileCheck %s
3+
4+
_Bool bar_bool(void);
5+
unsigned char bar_char(void);
6+
short bar_short(void);
7+
int bar_int(void);
8+
9+
int foo_bool(void) {
10+
if (bar_bool() != 1) return 0; else return 1;
11+
}
12+
// CHECK: %call = call i1 @bar_bool()
13+
int foo_char(void) {
14+
if (bar_char() != 10) return 0; else return 1;
15+
}
16+
// CHECK: %call = call i8 @bar_char()
17+
int foo_short(void) {
18+
if (bar_short() != 10) return 0; else return 1;
19+
}
20+
// CHECK: %call = call i16 @bar_short()
21+
int foo_int(void) {
22+
if (bar_int() != 10) return 0; else return 1;
23+
}
24+
// CHECK: %call = call i32 @bar_int()

0 commit comments

Comments
 (0)