bpf: recognize target specific option -mattr=dwarfris in clang
authorYonghong Song <yhs@fb.com>
Fri, 15 Jun 2018 15:53:31 +0000 (15:53 +0000)
committerYonghong Song <yhs@fb.com>
Fri, 15 Jun 2018 15:53:31 +0000 (15:53 +0000)
The following is the usage example with clang:
  bash-4.2$ clang -target bpf -O2 -g -c -Xclang -target-feature -Xclang +dwarfris t.c
  bash-4.2$ llvm-objdump -S -d t.o

  t.o:    file format ELF64-BPF

  Disassembly of section .text:
  test:
  ; int test(void) {
       0:       b7 00 00 00 00 00 00 00         r0 = 0
  ; return 0;
         1:       95 00 00 00 00 00 00 00         exit
  bash-4.2$ cat t.c
  int test(void) {
    return 0;
  }
  bash-4.2$

Signed-off-by: Yonghong Song <yhs@fb.com>
llvm-svn: 334839

clang/lib/Basic/Targets/BPF.h

index 61a7dda..7f97f81 100644 (file)
@@ -47,7 +47,7 @@ public:
                         MacroBuilder &Builder) const override;
 
   bool hasFeature(StringRef Feature) const override {
-    return Feature == "bpf" || Feature == "alu32";
+    return Feature == "bpf" || Feature == "alu32" || Feature == "dwarfris";
   }
 
   void setFeatureEnabled(llvm::StringMap<bool> &Features, StringRef Name,