2020-04-03 15:13:13 +02:00
|
|
|
//===- lib/MC/MCSymbolXCOFF.cpp - XCOFF Code Symbol Representation --------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCSectionXCOFF.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
MCSectionXCOFF *MCSymbolXCOFF::getRepresentedCsect() const {
|
|
|
|
assert(RepresentedCsect &&
|
|
|
|
"Trying to get csect representation of this symbol but none was set.");
|
2020-07-06 16:18:06 +02:00
|
|
|
assert(getSymbolTableName().equals(RepresentedCsect->getSymbolTableName()) &&
|
|
|
|
"SymbolTableNames need to be the same for this symbol and its csect "
|
|
|
|
"representation.");
|
2020-04-03 15:13:13 +02:00
|
|
|
return RepresentedCsect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCSymbolXCOFF::setRepresentedCsect(MCSectionXCOFF *C) {
|
|
|
|
assert(C && "Assigned csect should not be null.");
|
|
|
|
assert((!RepresentedCsect || RepresentedCsect == C) &&
|
2020-08-11 21:26:19 +02:00
|
|
|
"Trying to set a csect that doesn't match the one that this symbol is "
|
|
|
|
"already mapped to.");
|
2020-07-06 16:18:06 +02:00
|
|
|
assert(getSymbolTableName().equals(C->getSymbolTableName()) &&
|
|
|
|
"SymbolTableNames need to be the same for this symbol and its csect "
|
|
|
|
"representation.");
|
2020-04-03 15:13:13 +02:00
|
|
|
RepresentedCsect = C;
|
|
|
|
}
|