You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
//===- GOT.cpp ------------------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "mcld/LD/LDSection.h"
|
|
#include "mcld/IRBuilder.h"
|
|
#include "mcld/Support/MsgHandling.h"
|
|
#include "mcld/Target/GOT.h"
|
|
|
|
#include <llvm/Support/Casting.h>
|
|
|
|
#include <cstring>
|
|
#include <cstdlib>
|
|
|
|
namespace mcld {
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// GOT
|
|
//===----------------------------------------------------------------------===//
|
|
GOT::GOT(LDSection& pSection) : m_Section(pSection) {
|
|
m_SectionData = IRBuilder::CreateSectionData(pSection);
|
|
}
|
|
|
|
GOT::~GOT() {
|
|
}
|
|
|
|
void GOT::finalizeSectionSize() {
|
|
uint32_t offset = 0;
|
|
SectionData::iterator frag, fragEnd = m_SectionData->end();
|
|
for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
|
|
frag->setOffset(offset);
|
|
offset += frag->size();
|
|
}
|
|
|
|
m_Section.setSize(offset);
|
|
}
|
|
|
|
} // namespace mcld
|