forked from OSchip/llvm-project
BPF: support type exist/size and enum exist/value relocations
Four new CO-RE relocations are introduced: - TYPE_EXISTENCE: whether a typedef/record/enum type exists - TYPE_SIZE: the size of a typedef/record/enum type - ENUM_VALUE_EXISTENCE: whether an enum value of an enum type exists - ENUM_VALUE: the enum value of an enum type These additional relocations will make CO-RE bpf programs more adaptive for potential kernel internal data structure changes. Differential Revision: https://reviews.llvm.org/D83878
This commit is contained in:
parent
3bfbc5df87
commit
6d218b4adb
|
@ -165,6 +165,8 @@ private:
|
|||
|
||||
Value *computeBaseAndAccessKey(CallInst *Call, CallInfo &CInfo,
|
||||
std::string &AccessKey, MDNode *&BaseMeta);
|
||||
MDNode *computeAccessKey(CallInst *Call, CallInfo &CInfo,
|
||||
std::string &AccessKey, bool &IsInt32Ret);
|
||||
uint64_t getConstant(const Value *IndexValue);
|
||||
bool transformGEPChain(Module &M, CallInst *Call, CallInfo &CInfo);
|
||||
};
|
||||
|
@ -285,6 +287,34 @@ bool BPFAbstractMemberAccess::IsPreserveDIAccessIndexCall(const CallInst *Call,
|
|||
CInfo.AccessIndex = InfoKind;
|
||||
return true;
|
||||
}
|
||||
if (GV->getName().startswith("llvm.bpf.preserve.type.info")) {
|
||||
CInfo.Kind = BPFPreserveFieldInfoAI;
|
||||
CInfo.Metadata = Call->getMetadata(LLVMContext::MD_preserve_access_index);
|
||||
if (!CInfo.Metadata)
|
||||
report_fatal_error("Missing metadata for llvm.preserve.type.info intrinsic");
|
||||
uint64_t Flag = getConstant(Call->getArgOperand(1));
|
||||
if (Flag >= BPFCoreSharedInfo::MAX_PRESERVE_TYPE_INFO_FLAG)
|
||||
report_fatal_error("Incorrect flag for llvm.bpf.preserve.type.info intrinsic");
|
||||
if (Flag == BPFCoreSharedInfo::PRESERVE_TYPE_INFO_EXISTENCE)
|
||||
CInfo.AccessIndex = BPFCoreSharedInfo::TYPE_EXISTENCE;
|
||||
else
|
||||
CInfo.AccessIndex = BPFCoreSharedInfo::TYPE_SIZE;
|
||||
return true;
|
||||
}
|
||||
if (GV->getName().startswith("llvm.bpf.preserve.enum.value")) {
|
||||
CInfo.Kind = BPFPreserveFieldInfoAI;
|
||||
CInfo.Metadata = Call->getMetadata(LLVMContext::MD_preserve_access_index);
|
||||
if (!CInfo.Metadata)
|
||||
report_fatal_error("Missing metadata for llvm.preserve.enum.value intrinsic");
|
||||
uint64_t Flag = getConstant(Call->getArgOperand(2));
|
||||
if (Flag >= BPFCoreSharedInfo::MAX_PRESERVE_ENUM_VALUE_FLAG)
|
||||
report_fatal_error("Incorrect flag for llvm.bpf.preserve.enum.value intrinsic");
|
||||
if (Flag == BPFCoreSharedInfo::PRESERVE_ENUM_VALUE_EXISTENCE)
|
||||
CInfo.AccessIndex = BPFCoreSharedInfo::ENUM_VALUE_EXISTENCE;
|
||||
else
|
||||
CInfo.AccessIndex = BPFCoreSharedInfo::ENUM_VALUE;
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -847,26 +877,92 @@ Value *BPFAbstractMemberAccess::computeBaseAndAccessKey(CallInst *Call,
|
|||
return Base;
|
||||
}
|
||||
|
||||
MDNode *BPFAbstractMemberAccess::computeAccessKey(CallInst *Call,
|
||||
CallInfo &CInfo,
|
||||
std::string &AccessKey,
|
||||
bool &IsInt32Ret) {
|
||||
DIType *Ty = stripQualifiers(cast<DIType>(CInfo.Metadata), false);
|
||||
assert(!Ty->getName().empty());
|
||||
|
||||
int64_t PatchImm;
|
||||
std::string AccessStr("0");
|
||||
if (CInfo.AccessIndex == BPFCoreSharedInfo::TYPE_EXISTENCE) {
|
||||
PatchImm = 1;
|
||||
} else if (CInfo.AccessIndex == BPFCoreSharedInfo::TYPE_SIZE) {
|
||||
// typedef debuginfo type has size 0, get the eventual base type.
|
||||
DIType *BaseTy = stripQualifiers(Ty, true);
|
||||
PatchImm = BaseTy->getSizeInBits() / 8;
|
||||
} else {
|
||||
// ENUM_VALUE_EXISTENCE and ENUM_VALUE
|
||||
IsInt32Ret = false;
|
||||
|
||||
const auto *CE = cast<ConstantExpr>(Call->getArgOperand(1));
|
||||
const GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
|
||||
assert(GV->hasInitializer());
|
||||
const ConstantDataArray *DA = cast<ConstantDataArray>(GV->getInitializer());
|
||||
assert(DA->isString());
|
||||
StringRef ValueStr = DA->getAsString();
|
||||
|
||||
// ValueStr format: <EnumeratorStr>:<Value>
|
||||
size_t Separator = ValueStr.find_first_of(':');
|
||||
StringRef EnumeratorStr = ValueStr.substr(0, Separator);
|
||||
|
||||
// Find enumerator index in the debuginfo
|
||||
DIType *BaseTy = stripQualifiers(Ty, true);
|
||||
const auto *CTy = cast<DICompositeType>(BaseTy);
|
||||
assert(CTy->getTag() == dwarf::DW_TAG_enumeration_type);
|
||||
int EnumIndex = 0;
|
||||
for (const auto Element : CTy->getElements()) {
|
||||
const auto *Enum = cast<DIEnumerator>(Element);
|
||||
if (Enum->getName() == EnumeratorStr) {
|
||||
AccessStr = std::to_string(EnumIndex);
|
||||
break;
|
||||
}
|
||||
EnumIndex++;
|
||||
}
|
||||
|
||||
if (CInfo.AccessIndex == BPFCoreSharedInfo::ENUM_VALUE) {
|
||||
StringRef EValueStr = ValueStr.substr(Separator + 1);
|
||||
PatchImm = std::stoll(std::string(EValueStr));
|
||||
} else {
|
||||
PatchImm = 1;
|
||||
}
|
||||
}
|
||||
|
||||
AccessKey = "llvm." + Ty->getName().str() + ":" +
|
||||
std::to_string(CInfo.AccessIndex) + std::string(":") +
|
||||
std::to_string(PatchImm) + std::string("$") + AccessStr;
|
||||
|
||||
return Ty;
|
||||
}
|
||||
|
||||
/// Call/Kind is the base preserve_*_access_index() call. Attempts to do
|
||||
/// transformation to a chain of relocable GEPs.
|
||||
bool BPFAbstractMemberAccess::transformGEPChain(Module &M, CallInst *Call,
|
||||
CallInfo &CInfo) {
|
||||
std::string AccessKey;
|
||||
MDNode *TypeMeta;
|
||||
Value *Base =
|
||||
computeBaseAndAccessKey(Call, CInfo, AccessKey, TypeMeta);
|
||||
if (!Base)
|
||||
return false;
|
||||
Value *Base = nullptr;
|
||||
bool IsInt32Ret;
|
||||
|
||||
IsInt32Ret = CInfo.Kind == BPFPreserveFieldInfoAI;
|
||||
if (CInfo.Kind == BPFPreserveFieldInfoAI && CInfo.Metadata) {
|
||||
TypeMeta = computeAccessKey(Call, CInfo, AccessKey, IsInt32Ret);
|
||||
} else {
|
||||
Base = computeBaseAndAccessKey(Call, CInfo, AccessKey, TypeMeta);
|
||||
if (!Base)
|
||||
return false;
|
||||
}
|
||||
|
||||
BasicBlock *BB = Call->getParent();
|
||||
GlobalVariable *GV;
|
||||
|
||||
if (GEPGlobals.find(AccessKey) == GEPGlobals.end()) {
|
||||
IntegerType *VarType;
|
||||
if (CInfo.Kind == BPFPreserveFieldInfoAI)
|
||||
if (IsInt32Ret)
|
||||
VarType = Type::getInt32Ty(BB->getContext()); // 32bit return value
|
||||
else
|
||||
VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr arith
|
||||
VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value
|
||||
|
||||
GV = new GlobalVariable(M, VarType, false, GlobalVariable::ExternalLinkage,
|
||||
NULL, AccessKey);
|
||||
|
@ -879,8 +975,11 @@ bool BPFAbstractMemberAccess::transformGEPChain(Module &M, CallInst *Call,
|
|||
|
||||
if (CInfo.Kind == BPFPreserveFieldInfoAI) {
|
||||
// Load the global variable which represents the returned field info.
|
||||
auto *LDInst = new LoadInst(Type::getInt32Ty(BB->getContext()), GV, "",
|
||||
Call);
|
||||
LoadInst *LDInst;
|
||||
if (IsInt32Ret)
|
||||
LDInst = new LoadInst(Type::getInt32Ty(BB->getContext()), GV, "", Call);
|
||||
else
|
||||
LDInst = new LoadInst(Type::getInt64Ty(BB->getContext()), GV, "", Call);
|
||||
Call->replaceAllUsesWith(LDInst);
|
||||
Call->eraseFromParent();
|
||||
return true;
|
||||
|
|
|
@ -24,6 +24,10 @@ public:
|
|||
FIELD_RSHIFT_U64,
|
||||
BTF_TYPE_ID_LOCAL,
|
||||
BTF_TYPE_ID_REMOTE,
|
||||
TYPE_EXISTENCE,
|
||||
TYPE_SIZE,
|
||||
ENUM_VALUE_EXISTENCE,
|
||||
ENUM_VALUE,
|
||||
|
||||
MAX_FIELD_RELOC_KIND,
|
||||
};
|
||||
|
@ -35,6 +39,20 @@ public:
|
|||
MAX_BTF_TYPE_ID_FLAG,
|
||||
};
|
||||
|
||||
enum PreserveTypeInfo : uint32_t {
|
||||
PRESERVE_TYPE_INFO_EXISTENCE = 0,
|
||||
PRESERVE_TYPE_INFO_SIZE,
|
||||
|
||||
MAX_PRESERVE_TYPE_INFO_FLAG,
|
||||
};
|
||||
|
||||
enum PreserveEnumValue : uint32_t {
|
||||
PRESERVE_ENUM_VALUE_EXISTENCE = 0,
|
||||
PRESERVE_ENUM_VALUE,
|
||||
|
||||
MAX_PRESERVE_ENUM_VALUE_FLAG,
|
||||
};
|
||||
|
||||
/// The attribute attached to globals representing a field access
|
||||
static constexpr StringRef AmaAttr = "btf_ama";
|
||||
/// The attribute attached to globals representing a type id
|
||||
|
|
|
@ -994,12 +994,13 @@ void BTFDebug::generatePatchImmReloc(const MCSymbol *ORSym, uint32_t RootId,
|
|||
|
||||
FieldReloc.OffsetNameOff = addString(IndexPattern);
|
||||
FieldReloc.RelocKind = std::stoull(std::string(RelocKindStr));
|
||||
PatchImms[GVar] = std::stoul(std::string(PatchImmStr));
|
||||
PatchImms[GVar] = std::make_pair(std::stoll(std::string(PatchImmStr)),
|
||||
FieldReloc.RelocKind);
|
||||
} else {
|
||||
StringRef RelocStr = AccessPattern.substr(FirstDollar + 1);
|
||||
FieldReloc.OffsetNameOff = addString("0");
|
||||
FieldReloc.RelocKind = std::stoull(std::string(RelocStr));
|
||||
PatchImms[GVar] = RootId;
|
||||
PatchImms[GVar] = std::make_pair(RootId, FieldReloc.RelocKind);
|
||||
}
|
||||
FieldRelocTable[SecNameOff].push_back(FieldReloc);
|
||||
}
|
||||
|
@ -1209,14 +1210,21 @@ bool BTFDebug::InstLower(const MachineInstr *MI, MCInst &OutMI) {
|
|||
auto *GVar = dyn_cast<GlobalVariable>(GVal);
|
||||
if (GVar) {
|
||||
// Emit "mov ri, <imm>"
|
||||
uint32_t Imm;
|
||||
int64_t Imm;
|
||||
uint32_t Reloc;
|
||||
if (GVar->hasAttribute(BPFCoreSharedInfo::AmaAttr) ||
|
||||
GVar->hasAttribute(BPFCoreSharedInfo::TypeIdAttr))
|
||||
Imm = PatchImms[GVar];
|
||||
else
|
||||
GVar->hasAttribute(BPFCoreSharedInfo::TypeIdAttr)) {
|
||||
Imm = PatchImms[GVar].first;
|
||||
Reloc = PatchImms[GVar].second;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
OutMI.setOpcode(BPF::MOV_ri);
|
||||
if (Reloc == BPFCoreSharedInfo::ENUM_VALUE_EXISTENCE ||
|
||||
Reloc == BPFCoreSharedInfo::ENUM_VALUE)
|
||||
OutMI.setOpcode(BPF::LD_imm64);
|
||||
else
|
||||
OutMI.setOpcode(BPF::MOV_ri);
|
||||
OutMI.addOperand(MCOperand::createReg(MI->getOperand(0).getReg()));
|
||||
OutMI.addOperand(MCOperand::createImm(Imm));
|
||||
return true;
|
||||
|
@ -1230,7 +1238,7 @@ bool BTFDebug::InstLower(const MachineInstr *MI, MCInst &OutMI) {
|
|||
const GlobalValue *GVal = MO.getGlobal();
|
||||
auto *GVar = dyn_cast<GlobalVariable>(GVal);
|
||||
if (GVar && GVar->hasAttribute(BPFCoreSharedInfo::AmaAttr)) {
|
||||
uint32_t Imm = PatchImms[GVar];
|
||||
uint32_t Imm = PatchImms[GVar].first;
|
||||
OutMI.setOpcode(MI->getOperand(1).getImm());
|
||||
if (MI->getOperand(0).isImm())
|
||||
OutMI.addOperand(MCOperand::createImm(MI->getOperand(0).getImm()));
|
||||
|
|
|
@ -251,7 +251,7 @@ class BTFDebug : public DebugHandlerBase {
|
|||
StringMap<std::vector<std::string>> FileContent;
|
||||
std::map<std::string, std::unique_ptr<BTFKindDataSec>> DataSecEntries;
|
||||
std::vector<BTFTypeStruct *> StructTypes;
|
||||
std::map<const GlobalVariable *, uint32_t> PatchImms;
|
||||
std::map<const GlobalVariable *, std::pair<int64_t, uint32_t>> PatchImms;
|
||||
std::map<StringRef, std::pair<bool, std::vector<BTFTypeDerived *>>>
|
||||
FixupDerivedTypes;
|
||||
std::set<const Function *>ProtoFunctions;
|
||||
|
|
|
@ -0,0 +1,99 @@
|
|||
; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck %s
|
||||
; RUN: llc -march=bpfel -mattr=+alu32 -filetype=asm -o - %s | FileCheck %s
|
||||
;
|
||||
; Source:
|
||||
; enum AA { VAL1 = -100, VAL2 = 0xffff8000 };
|
||||
; typedef enum { VAL10 = 0xffffFFFF80000000 } __BB;
|
||||
; int test() {
|
||||
; return __builtin_preserve_enum_value(*(enum AA *)VAL1, 0) +
|
||||
; __builtin_preserve_enum_value(*(enum AA *)VAL2, 1) +
|
||||
; __builtin_preserve_enum_value(*(__BB *)VAL10, 1);
|
||||
; }
|
||||
; Compiler flag to generate IR:
|
||||
; clang -target bpf -S -O2 -g -emit-llvm t1.c
|
||||
|
||||
@0 = private unnamed_addr constant [10 x i8] c"VAL1:-100\00", align 1
|
||||
@1 = private unnamed_addr constant [16 x i8] c"VAL2:4294934528\00", align 1
|
||||
@2 = private unnamed_addr constant [18 x i8] c"VAL10:-2147483648\00", align 1
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
define dso_local i32 @test() local_unnamed_addr #0 !dbg !18 {
|
||||
entry:
|
||||
%0 = tail call i64 @llvm.bpf.preserve.enum.value(i32 0, i8* getelementptr inbounds ([10 x i8], [10 x i8]* @0, i64 0, i64 0), i64 0), !dbg !23, !llvm.preserve.access.index !3
|
||||
%1 = tail call i64 @llvm.bpf.preserve.enum.value(i32 1, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @1, i64 0, i64 0), i64 1), !dbg !24, !llvm.preserve.access.index !3
|
||||
%add = add i64 %1, %0, !dbg !25
|
||||
%2 = tail call i64 @llvm.bpf.preserve.enum.value(i32 2, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @2, i64 0, i64 0), i64 1), !dbg !26, !llvm.preserve.access.index !13
|
||||
%add1 = add i64 %add, %2, !dbg !27
|
||||
%conv = trunc i64 %add1 to i32, !dbg !23
|
||||
ret i32 %conv, !dbg !28
|
||||
}
|
||||
|
||||
; CHECK: r{{[0-9]+}} = 1 ll
|
||||
; CHECK: r{{[0-9]+}} = 4294934528 ll
|
||||
; CHECK: r{{[0-9]+}} = -2147483648 ll
|
||||
; CHECK: exit
|
||||
|
||||
; CHECK: .long 16 # BTF_KIND_ENUM(id = 4)
|
||||
; CHECK: .long 57 # BTF_KIND_TYPEDEF(id = 5)
|
||||
|
||||
; CHECK: .ascii ".text" # string offset=10
|
||||
; CHECK: .ascii "AA" # string offset=16
|
||||
; CHECK: .byte 48 # string offset=29
|
||||
; CHECK: .byte 49 # string offset=55
|
||||
; CHECK: .ascii "__BB" # string offset=57
|
||||
|
||||
; CHECK: .long 16 # FieldReloc
|
||||
; CHECK-NEXT: .long 10 # Field reloc section string offset=10
|
||||
; CHECK-NEXT: .long 3
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 4
|
||||
; CHECK-NEXT: .long 29
|
||||
; CHECK-NEXT: .long 10
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 4
|
||||
; CHECK-NEXT: .long 55
|
||||
; CHECK-NEXT: .long 11
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 5
|
||||
; CHECK-NEXT: .long 29
|
||||
; CHECK-NEXT: .long 11
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
declare i64 @llvm.bpf.preserve.enum.value(i32, i8*, i64) #1
|
||||
|
||||
attributes #0 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
attributes #1 = { nounwind readnone }
|
||||
|
||||
!llvm.dbg.cu = !{!0}
|
||||
!llvm.module.flags = !{!14, !15, !16}
|
||||
!llvm.ident = !{!17}
|
||||
|
||||
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !12, splitDebugInlining: false, nameTableKind: None)
|
||||
!1 = !DIFile(filename: "t1.c", directory: "/tmp/home/yhs/tmp1")
|
||||
!2 = !{!3, !8}
|
||||
!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "AA", file: !1, line: 1, baseType: !4, size: 64, elements: !5)
|
||||
!4 = !DIBasicType(name: "long int", size: 64, encoding: DW_ATE_signed)
|
||||
!5 = !{!6, !7}
|
||||
!6 = !DIEnumerator(name: "VAL1", value: -100)
|
||||
!7 = !DIEnumerator(name: "VAL2", value: 4294934528)
|
||||
!8 = !DICompositeType(tag: DW_TAG_enumeration_type, file: !1, line: 2, baseType: !9, size: 64, elements: !10)
|
||||
!9 = !DIBasicType(name: "long unsigned int", size: 64, encoding: DW_ATE_unsigned)
|
||||
!10 = !{!11}
|
||||
!11 = !DIEnumerator(name: "VAL10", value: 18446744071562067968, isUnsigned: true)
|
||||
!12 = !{!13}
|
||||
!13 = !DIDerivedType(tag: DW_TAG_typedef, name: "__BB", file: !1, line: 2, baseType: !8)
|
||||
!14 = !{i32 7, !"Dwarf Version", i32 4}
|
||||
!15 = !{i32 2, !"Debug Info Version", i32 3}
|
||||
!16 = !{i32 1, !"wchar_size", i32 4}
|
||||
!17 = !{!"clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)"}
|
||||
!18 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 3, type: !19, scopeLine: 3, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !22)
|
||||
!19 = !DISubroutineType(types: !20)
|
||||
!20 = !{!21}
|
||||
!21 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
||||
!22 = !{}
|
||||
!23 = !DILocation(line: 4, column: 10, scope: !18)
|
||||
!24 = !DILocation(line: 5, column: 10, scope: !18)
|
||||
!25 = !DILocation(line: 4, column: 61, scope: !18)
|
||||
!26 = !DILocation(line: 6, column: 10, scope: !18)
|
||||
!27 = !DILocation(line: 5, column: 61, scope: !18)
|
||||
!28 = !DILocation(line: 4, column: 3, scope: !18)
|
|
@ -0,0 +1,98 @@
|
|||
; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck %s
|
||||
; RUN: llc -march=bpfel -mattr=+alu32 -filetype=asm -o - %s | FileCheck %s
|
||||
;
|
||||
; Source:
|
||||
; enum AA { VAL = 100 };
|
||||
; typedef int (*func_t)(void);
|
||||
; struct s2 { int a[10]; };
|
||||
; int test() {
|
||||
; return __builtin_preserve_type_info(*(func_t *)0, 0) +
|
||||
; __builtin_preserve_type_info(*(struct s2 *)0, 0) +
|
||||
; __builtin_preserve_type_info(*(enum AA *)0, 0);
|
||||
; }
|
||||
; Compiler flag to generate IR:
|
||||
; clang -target bpf -S -O2 -g -emit-llvm t1.c
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
define dso_local i32 @test() local_unnamed_addr #0 !dbg !17 {
|
||||
entry:
|
||||
%0 = tail call i32 @llvm.bpf.preserve.type.info(i32 0, i64 0), !dbg !19, !llvm.preserve.access.index !8
|
||||
%1 = tail call i32 @llvm.bpf.preserve.type.info(i32 1, i64 0), !dbg !20, !llvm.preserve.access.index !21
|
||||
%add = add i32 %1, %0, !dbg !27
|
||||
%2 = tail call i32 @llvm.bpf.preserve.type.info(i32 2, i64 0), !dbg !28, !llvm.preserve.access.index !3
|
||||
%add1 = add i32 %add, %2, !dbg !29
|
||||
ret i32 %add1, !dbg !30
|
||||
}
|
||||
|
||||
; CHECK: r{{[0-9]+}} = 1
|
||||
; CHECK: r{{[0-9]+}} = 1
|
||||
; CHECK: r{{[0-9]+}} = 1
|
||||
; CHECK: exit
|
||||
|
||||
; CHECK: .long 16 # BTF_KIND_TYPEDEF(id = 4)
|
||||
; CHECK: .long 49 # BTF_KIND_STRUCT(id = 7)
|
||||
; CHECK: .long 74 # BTF_KIND_ENUM(id = 10)
|
||||
|
||||
; CHECK: .ascii ".text" # string offset=10
|
||||
; CHECK: .ascii "func_t" # string offset=16
|
||||
; CHECK: .byte 48 # string offset=23
|
||||
; CHECK: .ascii "s2" # string offset=49
|
||||
; CHECK: .ascii "AA" # string offset=74
|
||||
|
||||
; CHECK: .long 16 # FieldReloc
|
||||
; CHECK-NEXT: .long 10 # Field reloc section string offset=10
|
||||
; CHECK-NEXT: .long 3
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 4
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 8
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 7
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 8
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 10
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 8
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
declare i32 @llvm.bpf.preserve.type.info(i32, i64) #1
|
||||
|
||||
attributes #0 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
attributes #1 = { nounwind readnone }
|
||||
|
||||
!llvm.dbg.cu = !{!0}
|
||||
!llvm.module.flags = !{!13, !14, !15}
|
||||
!llvm.ident = !{!16}
|
||||
|
||||
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !7, splitDebugInlining: false, nameTableKind: None)
|
||||
!1 = !DIFile(filename: "t1.c", directory: "/tmp/home/yhs/tmp1")
|
||||
!2 = !{!3}
|
||||
!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "AA", file: !1, line: 1, baseType: !4, size: 32, elements: !5)
|
||||
!4 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
|
||||
!5 = !{!6}
|
||||
!6 = !DIEnumerator(name: "VAL", value: 100, isUnsigned: true)
|
||||
!7 = !{!8}
|
||||
!8 = !DIDerivedType(tag: DW_TAG_typedef, name: "func_t", file: !1, line: 2, baseType: !9)
|
||||
!9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
|
||||
!10 = !DISubroutineType(types: !11)
|
||||
!11 = !{!12}
|
||||
!12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
||||
!13 = !{i32 7, !"Dwarf Version", i32 4}
|
||||
!14 = !{i32 2, !"Debug Info Version", i32 3}
|
||||
!15 = !{i32 1, !"wchar_size", i32 4}
|
||||
!16 = !{!"clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)"}
|
||||
!17 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 4, type: !10, scopeLine: 4, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !18)
|
||||
!18 = !{}
|
||||
!19 = !DILocation(line: 5, column: 10, scope: !17)
|
||||
!20 = !DILocation(line: 6, column: 10, scope: !17)
|
||||
!21 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s2", file: !1, line: 3, size: 320, elements: !22)
|
||||
!22 = !{!23}
|
||||
!23 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !21, file: !1, line: 3, baseType: !24, size: 320)
|
||||
!24 = !DICompositeType(tag: DW_TAG_array_type, baseType: !12, size: 320, elements: !25)
|
||||
!25 = !{!26}
|
||||
!26 = !DISubrange(count: 10)
|
||||
!27 = !DILocation(line: 5, column: 56, scope: !17)
|
||||
!28 = !DILocation(line: 7, column: 10, scope: !17)
|
||||
!29 = !DILocation(line: 6, column: 59, scope: !17)
|
||||
!30 = !DILocation(line: 5, column: 3, scope: !17)
|
|
@ -0,0 +1,98 @@
|
|||
; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck %s
|
||||
; RUN: llc -march=bpfel -mattr=+alu32 -filetype=asm -o - %s | FileCheck %s
|
||||
;
|
||||
; Source:
|
||||
; enum AA { VAL = 100 };
|
||||
; typedef int (*func_t)(void);
|
||||
; struct s2 { int a[10]; };
|
||||
; int test() {
|
||||
; return __builtin_preserve_type_info(*(func_t *)0, 1) +
|
||||
; __builtin_preserve_type_info(*(struct s2 *)0, 1) +
|
||||
; __builtin_preserve_type_info(*(enum AA *)0, 1);
|
||||
; }
|
||||
; Compiler flag to generate IR:
|
||||
; clang -target bpf -S -O2 -g -emit-llvm t1.c
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
define dso_local i32 @test() local_unnamed_addr #0 !dbg !17 {
|
||||
entry:
|
||||
%0 = tail call i32 @llvm.bpf.preserve.type.info(i32 0, i64 1), !dbg !19, !llvm.preserve.access.index !8
|
||||
%1 = tail call i32 @llvm.bpf.preserve.type.info(i32 1, i64 1), !dbg !20, !llvm.preserve.access.index !21
|
||||
%add = add i32 %1, %0, !dbg !27
|
||||
%2 = tail call i32 @llvm.bpf.preserve.type.info(i32 2, i64 1), !dbg !28, !llvm.preserve.access.index !3
|
||||
%add1 = add i32 %add, %2, !dbg !29
|
||||
ret i32 %add1, !dbg !30
|
||||
}
|
||||
|
||||
; CHECK: r{{[0-9]+}} = 8
|
||||
; CHECK: r{{[0-9]+}} = 40
|
||||
; CHECK: r{{[0-9]+}} = 4
|
||||
; CHECK: exit
|
||||
|
||||
; CHECK: .long 16 # BTF_KIND_TYPEDEF(id = 4)
|
||||
; CHECK: .long 49 # BTF_KIND_STRUCT(id = 7)
|
||||
; CHECK: .long 74 # BTF_KIND_ENUM(id = 10)
|
||||
|
||||
; CHECK: .ascii ".text" # string offset=10
|
||||
; CHECK: .ascii "func_t" # string offset=16
|
||||
; CHECK: .byte 48 # string offset=23
|
||||
; CHECK: .ascii "s2" # string offset=49
|
||||
; CHECK: .ascii "AA" # string offset=74
|
||||
|
||||
; CHECK: .long 16 # FieldReloc
|
||||
; CHECK-NEXT: .long 10 # Field reloc section string offset=10
|
||||
; CHECK-NEXT: .long 3
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 4
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 7
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 10
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
declare i32 @llvm.bpf.preserve.type.info(i32, i64) #1
|
||||
|
||||
attributes #0 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
attributes #1 = { nounwind readnone }
|
||||
|
||||
!llvm.dbg.cu = !{!0}
|
||||
!llvm.module.flags = !{!13, !14, !15}
|
||||
!llvm.ident = !{!16}
|
||||
|
||||
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !7, splitDebugInlining: false, nameTableKind: None)
|
||||
!1 = !DIFile(filename: "t1.c", directory: "/tmp/home/yhs/tmp1")
|
||||
!2 = !{!3}
|
||||
!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "AA", file: !1, line: 1, baseType: !4, size: 32, elements: !5)
|
||||
!4 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
|
||||
!5 = !{!6}
|
||||
!6 = !DIEnumerator(name: "VAL", value: 100, isUnsigned: true)
|
||||
!7 = !{!8}
|
||||
!8 = !DIDerivedType(tag: DW_TAG_typedef, name: "func_t", file: !1, line: 2, baseType: !9)
|
||||
!9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
|
||||
!10 = !DISubroutineType(types: !11)
|
||||
!11 = !{!12}
|
||||
!12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
||||
!13 = !{i32 7, !"Dwarf Version", i32 4}
|
||||
!14 = !{i32 2, !"Debug Info Version", i32 3}
|
||||
!15 = !{i32 1, !"wchar_size", i32 4}
|
||||
!16 = !{!"clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)"}
|
||||
!17 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 4, type: !10, scopeLine: 4, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !18)
|
||||
!18 = !{}
|
||||
!19 = !DILocation(line: 5, column: 10, scope: !17)
|
||||
!20 = !DILocation(line: 6, column: 10, scope: !17)
|
||||
!21 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s2", file: !1, line: 3, size: 320, elements: !22)
|
||||
!22 = !{!23}
|
||||
!23 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !21, file: !1, line: 3, baseType: !24, size: 320)
|
||||
!24 = !DICompositeType(tag: DW_TAG_array_type, baseType: !12, size: 320, elements: !25)
|
||||
!25 = !{!26}
|
||||
!26 = !DISubrange(count: 10)
|
||||
!27 = !DILocation(line: 5, column: 56, scope: !17)
|
||||
!28 = !DILocation(line: 7, column: 10, scope: !17)
|
||||
!29 = !DILocation(line: 6, column: 59, scope: !17)
|
||||
!30 = !DILocation(line: 5, column: 3, scope: !17)
|
|
@ -0,0 +1,114 @@
|
|||
; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck %s
|
||||
; RUN: llc -march=bpfel -mattr=+alu32 -filetype=asm -o - %s | FileCheck %s
|
||||
;
|
||||
; Source:
|
||||
; enum AA { VAL = 100 };
|
||||
; typedef int (*func_t)(void);
|
||||
; struct s2 { int a[10]; };
|
||||
; int test() {
|
||||
; func_t f;
|
||||
; struct s2 s;
|
||||
; enum AA a;
|
||||
; return __builtin_preserve_type_info(f, 1) +
|
||||
; __builtin_preserve_type_info(s, 1) +
|
||||
; __builtin_preserve_type_info(a, 1);
|
||||
; }
|
||||
; Compiler flag to generate IR:
|
||||
; clang -target bpf -S -O2 -g -emit-llvm t1.c
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
define dso_local i32 @test() local_unnamed_addr #0 !dbg !17 {
|
||||
entry:
|
||||
call void @llvm.dbg.declare(metadata [10 x i32]* undef, metadata !20, metadata !DIExpression()), !dbg !28
|
||||
call void @llvm.dbg.declare(metadata i32 ()** undef, metadata !19, metadata !DIExpression()), !dbg !29
|
||||
call void @llvm.dbg.declare(metadata i32* undef, metadata !27, metadata !DIExpression()), !dbg !30
|
||||
%0 = tail call i32 @llvm.bpf.preserve.type.info(i32 0, i64 1), !dbg !31, !llvm.preserve.access.index !8
|
||||
%1 = tail call i32 @llvm.bpf.preserve.type.info(i32 1, i64 1), !dbg !32, !llvm.preserve.access.index !21
|
||||
%add = add i32 %1, %0, !dbg !33
|
||||
%2 = tail call i32 @llvm.bpf.preserve.type.info(i32 2, i64 1), !dbg !34, !llvm.preserve.access.index !3
|
||||
%add1 = add i32 %add, %2, !dbg !35
|
||||
ret i32 %add1, !dbg !36
|
||||
}
|
||||
|
||||
; CHECK: r{{[0-9]+}} = 8
|
||||
; CHECK: r{{[0-9]+}} = 40
|
||||
; CHECK: r{{[0-9]+}} = 4
|
||||
; CHECK: exit
|
||||
|
||||
; CHECK: .long 16 # BTF_KIND_TYPEDEF(id = 4)
|
||||
; CHECK: .long 49 # BTF_KIND_STRUCT(id = 7)
|
||||
; CHECK: .long 74 # BTF_KIND_ENUM(id = 10)
|
||||
|
||||
; CHECK: .ascii ".text" # string offset=10
|
||||
; CHECK: .ascii "func_t" # string offset=16
|
||||
; CHECK: .byte 48 # string offset=23
|
||||
; CHECK: .ascii "s2" # string offset=49
|
||||
; CHECK: .ascii "AA" # string offset=74
|
||||
|
||||
; CHECK: .long 16 # FieldReloc
|
||||
; CHECK-NEXT: .long 10 # Field reloc section string offset=10
|
||||
; CHECK-NEXT: .long 3
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 4
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 7
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
|
||||
; CHECK-NEXT: .long 10
|
||||
; CHECK-NEXT: .long 23
|
||||
; CHECK-NEXT: .long 9
|
||||
|
||||
; Function Attrs: nounwind readnone speculatable willreturn
|
||||
declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
|
||||
|
||||
; Function Attrs: nounwind readnone
|
||||
declare i32 @llvm.bpf.preserve.type.info(i32, i64) #2
|
||||
|
||||
attributes #0 = { nounwind readnone "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
||||
attributes #1 = { nounwind readnone speculatable willreturn }
|
||||
attributes #2 = { nounwind readnone }
|
||||
|
||||
!llvm.dbg.cu = !{!0}
|
||||
!llvm.module.flags = !{!13, !14, !15}
|
||||
!llvm.ident = !{!16}
|
||||
|
||||
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !7, splitDebugInlining: false, nameTableKind: None)
|
||||
!1 = !DIFile(filename: "t1.c", directory: "/tmp/home/yhs/tmp1")
|
||||
!2 = !{!3}
|
||||
!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "AA", file: !1, line: 1, baseType: !4, size: 32, elements: !5)
|
||||
!4 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
|
||||
!5 = !{!6}
|
||||
!6 = !DIEnumerator(name: "VAL", value: 100, isUnsigned: true)
|
||||
!7 = !{!8}
|
||||
!8 = !DIDerivedType(tag: DW_TAG_typedef, name: "func_t", file: !1, line: 2, baseType: !9)
|
||||
!9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
|
||||
!10 = !DISubroutineType(types: !11)
|
||||
!11 = !{!12}
|
||||
!12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
||||
!13 = !{i32 7, !"Dwarf Version", i32 4}
|
||||
!14 = !{i32 2, !"Debug Info Version", i32 3}
|
||||
!15 = !{i32 1, !"wchar_size", i32 4}
|
||||
!16 = !{!"clang version 12.0.0 (https://github.com/llvm/llvm-project.git d8b1394a0f4bbf57c254f69f8d3aa5381a89b5cd)"}
|
||||
!17 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 4, type: !10, scopeLine: 4, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !18)
|
||||
!18 = !{!19, !20, !27}
|
||||
!19 = !DILocalVariable(name: "f", scope: !17, file: !1, line: 5, type: !8)
|
||||
!20 = !DILocalVariable(name: "s", scope: !17, file: !1, line: 6, type: !21)
|
||||
!21 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s2", file: !1, line: 3, size: 320, elements: !22)
|
||||
!22 = !{!23}
|
||||
!23 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !21, file: !1, line: 3, baseType: !24, size: 320)
|
||||
!24 = !DICompositeType(tag: DW_TAG_array_type, baseType: !12, size: 320, elements: !25)
|
||||
!25 = !{!26}
|
||||
!26 = !DISubrange(count: 10)
|
||||
!27 = !DILocalVariable(name: "a", scope: !17, file: !1, line: 7, type: !3)
|
||||
!28 = !DILocation(line: 6, column: 13, scope: !17)
|
||||
!29 = !DILocation(line: 5, column: 10, scope: !17)
|
||||
!30 = !DILocation(line: 7, column: 11, scope: !17)
|
||||
!31 = !DILocation(line: 8, column: 10, scope: !17)
|
||||
!32 = !DILocation(line: 9, column: 10, scope: !17)
|
||||
!33 = !DILocation(line: 8, column: 45, scope: !17)
|
||||
!34 = !DILocation(line: 10, column: 10, scope: !17)
|
||||
!35 = !DILocation(line: 9, column: 45, scope: !17)
|
||||
!36 = !DILocation(line: 8, column: 3, scope: !17)
|
Loading…
Reference in New Issue