From 120cf5743b03d67d9f26ae05c2b79d98cc05f79d Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 23 Apr 2013 15:53:02 +0000 Subject: Write relocations in yaml2obj. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180115 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/yaml2obj/yaml2obj.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tools/yaml2obj/yaml2obj.cpp') diff --git a/tools/yaml2obj/yaml2obj.cpp b/tools/yaml2obj/yaml2obj.cpp index 5741d95c54..7f8663b824 100644 --- a/tools/yaml2obj/yaml2obj.cpp +++ b/tools/yaml2obj/yaml2obj.cpp @@ -186,6 +186,7 @@ struct COFFParser { errs() << "SectionData must be a collection of pairs of hex bytes"; return false; } + Sec.Relocations = YamlSection.Relocations; Sections.push_back(Sec); } return true; @@ -289,6 +290,12 @@ static bool layoutCOFF(COFFParser &CP) { i->Header.SizeOfRawData = i->Data.size(); i->Header.PointerToRawData = CurrentSectionDataOffset; CurrentSectionDataOffset += i->Header.SizeOfRawData; + if (!i->Relocations.empty()) { + i->Header.PointerToRelocations = CurrentSectionDataOffset; + i->Header.NumberOfRelocations = i->Relocations.size(); + CurrentSectionDataOffset += i->Header.NumberOfRelocations * + COFF::RelocationSize; + } // TODO: Handle alignment. } else { i->Header.SizeOfRawData = 0; @@ -374,6 +381,12 @@ void writeCOFF(COFFParser &CP, raw_ostream &OS) { i != e; ++i) { if (!i->Data.empty()) OS.write(reinterpret_cast(&i->Data[0]), i->Data.size()); + for (unsigned I2 = 0, E2 = i->Relocations.size(); I2 != E2; ++I2) { + const COFF::relocation &R = i->Relocations[I2]; + OS << binary_le(R.VirtualAddress) + << binary_le(R.SymbolTableIndex) + << binary_le(R.Type); + } } // Output symbol table. -- cgit v1.2.3