<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 19, 2015 at 8:11 AM, Rohleder, Roman (Contractor) via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div lang="EN-US" link="blue" vlink="purple"><div><p class="MsoNormal">Hello everyone,<br><br>while working on a simple PE-Parser, using the llvm/Support/COFF.h Header, to validate if a given File is a PE-File and to read the Machine Field I was experiencing some troubles.<br><br>It seemed the Fields were somehow misaligned and I could pinpoint the source of the misalignment to be the "NumberOfSections" field inside the "header"-struct (a.k.a. IMAGE_FILE_HEADER in winnt.h).<br><br>It is defined as "int32_t" in COFF.h, while in winnt.h it is defined as "WORD" and in the "Microsoft Portable Executable and Common Object File Format Specification", which is also cited on top of the COFF.h, also defines the Field to be 2 Bytes in Size.<br><br>A simple change to "uint16_t" did the trick.<br><br>Correct me if I am wrong, or if I was using it wrongly somehow.<br></p></div></div></blockquote><div><br></div><div>Hi,</div><div><br></div><div>The contents of Support/COFF.h are intended to be useful as a temporary, in-memory, representation for LLVM's COFF writing implementation.  It is not intended to be layout compatible with the bytes inside of a COFF file.  Layout compatible COFF types are defined in Object/COFF.h</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div lang="EN-US" link="blue" vlink="purple"><div><p class="MsoNormal"><br>Kind Regards<br>Roman<u></u><u></u></p></div></div>
<br>
______________________________________________________________<br><br>The information contained in this electronic mail transmission <br>may be privileged and confidential, and therefore, protected <br>from disclosure. If you have received this communication in <br>error, please notify us immediately by replying to this <br>message and deleting it from your computer without copying <br>or disclosing it.<br>______________________________________________________________<br><br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br></div></div>