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