LLVM 19.0.0git
MCObjectWriter.cpp
Go to the documentation of this file.
1//===- lib/MC/MCObjectWriter.cpp - MCObjectWriter implementation ----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "llvm/MC/MCExpr.h"
11#include "llvm/MC/MCFragment.h"
12#include "llvm/MC/MCSymbol.h"
13namespace llvm {
14class MCSection;
15}
16
17using namespace llvm;
18
20
22 const MCAssembler &Asm, const MCSymbolRefExpr *A, const MCSymbolRefExpr *B,
23 bool InSet) const {
24 // Modified symbol references cannot be resolved.
25 if (A->getKind() != MCSymbolRefExpr::VK_None ||
26 B->getKind() != MCSymbolRefExpr::VK_None)
27 return false;
28
29 const MCSymbol &SA = A->getSymbol();
30 const MCSymbol &SB = B->getSymbol();
31 assert(!SA.isUndefined() && !SB.isUndefined());
32 MCFragment *FB = SB.getFragment();
33 if (!FB || !SA.getFragment())
34 return false;
35
36 return isSymbolRefDifferenceFullyResolvedImpl(Asm, SA, *FB, InSet, /*IsPCRel=*/false);
37}
38
40 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
41 bool InSet, bool IsPCRel) const {
42 const MCSection &SecA = SymA.getSection();
43 const MCSection &SecB = *FB.getParent();
44 // On ELF and COFF A - B is absolute if A and B are in the same section.
45 return &SecA == &SecB;
46}
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
MCSection * getParent() const
Definition: MCFragment.h:94
virtual bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, bool InSet, bool IsPCRel) const
virtual ~MCObjectWriter()
bool isSymbolRefDifferenceFullyResolved(const MCAssembler &Asm, const MCSymbolRefExpr *A, const MCSymbolRefExpr *B, bool InSet) const
Check whether the difference (A - B) between two symbol references is fully resolved.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:36
Represent a reference to a symbol from inside an expression.
Definition: MCExpr.h:188
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
bool isUndefined(bool SetUsed=true) const
isUndefined - Check if this symbol undefined (i.e., implicitly defined).
Definition: MCSymbol.h:259
MCSection & getSection() const
Get the section associated with a defined, non-absolute symbol.
Definition: MCSymbol.h:269
MCFragment * getFragment(bool SetUsed=true) const
Definition: MCSymbol.h:397
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18