[PATCH] D46418: obj2yaml: Correctly round-trip default alignment.

Peter Collingbourne via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 4 09:34:43 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL331537: obj2yaml: Correctly round-trip default alignment. (authored by pcc, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D46418?vs=145141&id=145212#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D46418

Files:
  llvm/trunk/test/ObjectYAML/COFF/default-alignment.yaml
  llvm/trunk/tools/obj2yaml/coff2yaml.cpp


Index: llvm/trunk/test/ObjectYAML/COFF/default-alignment.yaml
===================================================================
--- llvm/trunk/test/ObjectYAML/COFF/default-alignment.yaml
+++ llvm/trunk/test/ObjectYAML/COFF/default-alignment.yaml
@@ -0,0 +1,15 @@
+# RUN: yaml2obj %s | obj2yaml | FileCheck %s
+
+# CHECK:      Characteristics: [ IMAGE_SCN_CNT_INITIALIZED_DATA, IMAGE_SCN_MEM_READ ]
+# CHECK-NEXT: SectionData:     '01'
+
+--- !COFF
+header:
+  Machine:         IMAGE_FILE_MACHINE_AMD64
+  Characteristics: []
+sections:
+  - Name:            .rdata
+    Characteristics: [ IMAGE_SCN_CNT_INITIALIZED_DATA, IMAGE_SCN_MEM_READ ]
+    SectionData:     01
+symbols:
+...
Index: llvm/trunk/tools/obj2yaml/coff2yaml.cpp
===================================================================
--- llvm/trunk/tools/obj2yaml/coff2yaml.cpp
+++ llvm/trunk/tools/obj2yaml/coff2yaml.cpp
@@ -159,7 +159,8 @@
     NewYAMLSection.Header.PointerToRelocations =
         COFFSection->PointerToRelocations;
     NewYAMLSection.Header.SizeOfRawData = COFFSection->SizeOfRawData;
-    NewYAMLSection.Alignment = ObjSection.getAlignment();
+    uint32_t Shift = (COFFSection->Characteristics >> 20) & 0xF;
+    NewYAMLSection.Alignment = (1U << Shift) >> 1;
     assert(NewYAMLSection.Alignment <= 8192);
 
     ArrayRef<uint8_t> sectionData;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46418.145212.patch
Type: text/x-patch
Size: 1334 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180504/9e0f634b/attachment.bin>


More information about the llvm-commits mailing list