Commit e4507fb8c94b ("bpf: disable DwarfUsesRelocationsAcrossSections")
disables MCAsmInfo DwarfUsesRelocationsAcrossSections unconditionally
so that dwarf will not use cross section (between dwarf and symbol table)
relocations. This new debug format enables pahole to dump structures
correctly as libdwarves.so does not have BPF backend support yet.
This new debug format, however, breaks bcc (https://github.com/iovisor/bcc)
source debug output as llvm in-memory Dwarf support has some issues to
handle it. More specifically, with DwarfUsesRelocationsAcrossSections
disabled, JIT compiler does not generate .debug_abbrev and Dwarf
DIE (debug info entry) processing is not happy about this.
This patch introduces a new flag -mattr=dwarfris
(dwarf relocation in section) to disable DwarfUsesRelocationsAcrossSections.
DwarfUsesRelocationsAcrossSections is true by default.
Signed-off-by: Yonghong Song <yhs@fb.com>
llvm-svn: 326505
57 lines
1.6 KiB
TableGen
57 lines
1.6 KiB
TableGen
//===-- BPF.td - Describe the BPF Target Machine -----------*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
include "BPFRegisterInfo.td"
|
|
include "BPFCallingConv.td"
|
|
include "BPFInstrInfo.td"
|
|
|
|
def BPFInstrInfo : InstrInfo;
|
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
def : Proc<"generic", []>;
|
|
def : Proc<"v1", []>;
|
|
def : Proc<"v2", []>;
|
|
def : Proc<"probe", []>;
|
|
|
|
def DummyFeature : SubtargetFeature<"dummy", "isDummyMode",
|
|
"true", "unused feature">;
|
|
|
|
def ALU32 : SubtargetFeature<"alu32", "HasAlu32", "true",
|
|
"Enable ALU32 instructions">;
|
|
|
|
def DwarfRIS: SubtargetFeature<"dwarfris", "UseDwarfRIS", "true",
|
|
"Disable MCAsmInfo DwarfUsesRelocationsAcrossSections">;
|
|
|
|
def BPFInstPrinter : AsmWriter {
|
|
string AsmWriterClassName = "InstPrinter";
|
|
bit isMCAsmWriter = 1;
|
|
}
|
|
|
|
def BPFAsmParser : AsmParser {
|
|
bit HasMnemonicFirst = 0;
|
|
}
|
|
|
|
def BPFAsmParserVariant : AsmParserVariant {
|
|
int Variant = 0;
|
|
string Name = "BPF";
|
|
string BreakCharacters = ".";
|
|
string TokenizingCharacters = "#()[]=:.<>!+*";
|
|
}
|
|
|
|
def BPF : Target {
|
|
let InstructionSet = BPFInstrInfo;
|
|
let AssemblyWriters = [BPFInstPrinter];
|
|
let AssemblyParsers = [BPFAsmParser];
|
|
let AssemblyParserVariants = [BPFAsmParserVariant];
|
|
}
|