2010-03-19 10:43:15 +00:00
|
|
|
//===- lib/MC/MCObjectWriter.cpp - MCObjectWriter implementation ----------===//
|
2010-03-19 09:28:59 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-12-24 21:22:02 +00:00
|
|
|
#include "llvm/MC/MCAssembler.h"
|
2010-12-18 06:27:54 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2010-03-19 09:28:59 +00:00
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2010-12-18 06:27:54 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-03-19 09:28:59 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
MCObjectWriter::~MCObjectWriter() {
|
|
|
|
}
|
2010-09-30 16:52:03 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
bool MCObjectWriter::isSymbolRefDifferenceFullyResolved(
|
2015-03-25 19:24:39 +00:00
|
|
|
const MCAssembler &Asm, const MCSymbolRefExpr *A, const MCSymbolRefExpr *B,
|
|
|
|
bool InSet) const {
|
2010-12-18 06:27:54 +00:00
|
|
|
// Modified symbol references cannot be resolved.
|
|
|
|
if (A->getKind() != MCSymbolRefExpr::VK_None ||
|
|
|
|
B->getKind() != MCSymbolRefExpr::VK_None)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCSymbol &SA = A->getSymbol();
|
|
|
|
const MCSymbol &SB = B->getSymbol();
|
2015-04-06 16:10:05 +00:00
|
|
|
if (SA.isUndefined() || SB.isUndefined())
|
2010-12-18 06:27:54 +00:00
|
|
|
return false;
|
|
|
|
|
2015-05-29 21:45:01 +00:00
|
|
|
if (!SA.getFragment() || !SB.getFragment())
|
2012-01-31 23:02:57 +00:00
|
|
|
return false;
|
2010-12-24 21:22:02 +00:00
|
|
|
|
2015-10-05 12:07:05 +00:00
|
|
|
return isSymbolRefDifferenceFullyResolvedImpl(Asm, SA, SB, InSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
|
|
|
|
const MCAssembler &Asm, const MCSymbol &A, const MCSymbol &B,
|
|
|
|
bool InSet) const {
|
|
|
|
return isSymbolRefDifferenceFullyResolvedImpl(Asm, A, *B.getFragment(), InSet,
|
|
|
|
false);
|
2010-12-18 06:27:54 +00:00
|
|
|
}
|
2011-02-16 03:25:55 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
bool MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
|
2015-05-16 01:01:55 +00:00
|
|
|
const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
|
2015-04-17 21:15:17 +00:00
|
|
|
bool InSet, bool IsPCRel) const {
|
2015-05-16 01:01:55 +00:00
|
|
|
const MCSection &SecA = SymA.getSection();
|
2015-05-26 00:36:57 +00:00
|
|
|
const MCSection &SecB = *FB.getParent();
|
2011-02-16 03:25:55 +00:00
|
|
|
// On ELF and COFF A - B is absolute if A and B are in the same section.
|
|
|
|
return &SecA == &SecB;
|
|
|
|
}
|
2015-03-25 13:16:53 +00:00
|
|
|
|
2015-05-20 15:10:03 +00:00
|
|
|
bool MCObjectWriter::isWeak(const MCSymbol &) const { return false; }
|