[PATCH] D61532: implement of the parsing symbol table for xcoffobjfile and output as yaml format

Digger via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 3 13:13:08 PDT 2019


DiggerLin created this revision.
DiggerLin added reviewers: sfertile, hubert.reinterpretcast, MaskRay.
Herald added subscribers: llvm-commits, jsji, rupprecht, hiraditya.
Herald added a project: LLVM.

the implement of the parsing symbol table do not support parsing auxiliary entries of symbol. I will create a new issue to implement it.

the xcoff object file (aix_xcoff.o)which used in the test are comed from

-bash-4.2$ cat test.c
extern int i;
extern int TestforXcoff;
int main()
{
i++;
TestforXcoff--;
}


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D61532

Files:
  llvm/include/llvm/BinaryFormat/XCOFF.h
  llvm/include/llvm/Object/XCOFFObjectFile.h
  llvm/include/llvm/ObjectYAML/XCOFFYAML.h
  llvm/lib/Object/XCOFFObjectFile.cpp
  llvm/lib/ObjectYAML/XCOFFYAML.cpp
  llvm/test/tools/obj2yaml/Inputs/aix_xcoff.o
  llvm/test/tools/obj2yaml/aix_xcoff.test
  llvm/tools/llvm-readobj/XCOFFDumper.cpp
  llvm/tools/obj2yaml/xcoff2yaml.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61532.198073.patch
Type: text/x-patch
Size: 27145 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190503/fc3cef35/attachment.bin>


More information about the llvm-commits mailing list